forked from open-webui/open-webui
		
	main #2
					 7 changed files with 76 additions and 44 deletions
				
			
		|  | @ -548,13 +548,13 @@ | ||||||
| 
 | 
 | ||||||
| 					<div class="pt-1"> | 					<div class="pt-1"> | ||||||
| 						<div class="flex justify-between items-center text-xs"> | 						<div class="flex justify-between items-center text-xs"> | ||||||
| 							<div class=" text-sm font-medium">Experimental</div> | 							<div class=" text-sm font-medium">{$i18n.t('Experimental')}</div> | ||||||
| 							<button | 							<button | ||||||
| 								class=" text-xs font-medium text-gray-500" | 								class=" text-xs font-medium text-gray-500" | ||||||
| 								type="button" | 								type="button" | ||||||
| 								on:click={() => { | 								on:click={() => { | ||||||
| 									showExperimentalOllama = !showExperimentalOllama; | 									showExperimentalOllama = !showExperimentalOllama; | ||||||
| 								}}>{showExperimentalOllama ? 'Hide' : 'Show'}</button | 								}}>{showExperimentalOllama ? $i18n.t('Hide') : $i18n.t('Show')}</button | ||||||
| 							> | 							> | ||||||
| 						</div> | 						</div> | ||||||
| 					</div> | 					</div> | ||||||
|  | @ -566,7 +566,7 @@ | ||||||
| 							}} | 							}} | ||||||
| 						> | 						> | ||||||
| 							<div class=" mb-2 flex w-full justify-between"> | 							<div class=" mb-2 flex w-full justify-between"> | ||||||
| 								<div class="  text-sm font-medium">Upload a GGUF model</div> | 								<div class="  text-sm font-medium">{$i18n.t('Upload a GGUF model')}</div> | ||||||
| 
 | 
 | ||||||
| 								<button | 								<button | ||||||
| 									class="p-1 px-3 text-xs flex rounded transition" | 									class="p-1 px-3 text-xs flex rounded transition" | ||||||
|  | @ -580,9 +580,9 @@ | ||||||
| 									type="button" | 									type="button" | ||||||
| 								> | 								> | ||||||
| 									{#if modelUploadMode === 'file'} | 									{#if modelUploadMode === 'file'} | ||||||
| 										<span class="ml-2 self-center">File Mode</span> | 										<span class="ml-2 self-center">{$i18n.t('File Mode')}</span> | ||||||
| 									{:else} | 									{:else} | ||||||
| 										<span class="ml-2 self-center">URL Mode</span> | 										<span class="ml-2 self-center">{$i18n.t('URL Mode')}</span> | ||||||
| 									{/if} | 									{/if} | ||||||
| 								</button> | 								</button> | ||||||
| 							</div> | 							</div> | ||||||
|  | @ -686,7 +686,7 @@ | ||||||
| 							{#if (modelUploadMode === 'file' && modelInputFile && modelInputFile.length > 0) || (modelUploadMode === 'url' && modelFileUrl !== '')} | 							{#if (modelUploadMode === 'file' && modelInputFile && modelInputFile.length > 0) || (modelUploadMode === 'url' && modelFileUrl !== '')} | ||||||
| 								<div> | 								<div> | ||||||
| 									<div> | 									<div> | ||||||
| 										<div class=" my-2.5 text-sm font-medium">Modelfile Content</div> | 										<div class=" my-2.5 text-sm font-medium">{$i18n.t('Modelfile Content')}</div> | ||||||
| 										<textarea | 										<textarea | ||||||
| 											bind:value={modelFileContent} | 											bind:value={modelFileContent} | ||||||
| 											class="w-full rounded py-2 px-4 text-sm dark:text-gray-300 dark:bg-gray-800 outline-none resize-none" | 											class="w-full rounded py-2 px-4 text-sm dark:text-gray-300 dark:bg-gray-800 outline-none resize-none" | ||||||
|  | @ -696,16 +696,17 @@ | ||||||
| 								</div> | 								</div> | ||||||
| 							{/if} | 							{/if} | ||||||
| 							<div class=" mt-1 text-xs text-gray-400 dark:text-gray-500"> | 							<div class=" mt-1 text-xs text-gray-400 dark:text-gray-500"> | ||||||
| 								To access the GGUF models available for downloading, <a | 								{$i18n.t('To access the GGUF models available for downloading,')} | ||||||
|  | 								<a | ||||||
| 									class=" text-gray-500 dark:text-gray-300 font-medium underline" | 									class=" text-gray-500 dark:text-gray-300 font-medium underline" | ||||||
| 									href="https://huggingface.co/models?search=gguf" | 									href="https://huggingface.co/models?search=gguf" | ||||||
| 									target="_blank">click here.</a | 									target="_blank">{$i18n.t('click here.')}</a | ||||||
| 								> | 								> | ||||||
| 							</div> | 							</div> | ||||||
| 
 | 
 | ||||||
| 							{#if uploadProgress !== null} | 							{#if uploadProgress !== null} | ||||||
| 								<div class="mt-2"> | 								<div class="mt-2"> | ||||||
| 									<div class=" mb-2 text-xs">Upload Progress</div> | 									<div class=" mb-2 text-xs">{$i18n.t('Upload Progress')}</div> | ||||||
| 
 | 
 | ||||||
| 									<div class="w-full rounded-full dark:bg-gray-800"> | 									<div class="w-full rounded-full dark:bg-gray-800"> | ||||||
| 										<div | 										<div | ||||||
|  | @ -740,7 +741,10 @@ | ||||||
| 								type="button" | 								type="button" | ||||||
| 								on:click={() => { | 								on:click={() => { | ||||||
| 									showLiteLLMParams = !showLiteLLMParams; | 									showLiteLLMParams = !showLiteLLMParams; | ||||||
| 								}}>{showLiteLLMParams ? 'Hide Additional Params' : 'Show Additional Params'}</button | 								}} | ||||||
|  | 								>{showLiteLLMParams | ||||||
|  | 									? $i18n.t('Hide Additional Params') | ||||||
|  | 									: $i18n.t('Show Additional Params')}</button | ||||||
| 							> | 							> | ||||||
| 						</div> | 						</div> | ||||||
| 					</div> | 					</div> | ||||||
|  |  | ||||||
|  | @ -117,17 +117,18 @@ | ||||||
| 	"Enable Chat History": "Chat-Verlauf aktivieren", | 	"Enable Chat History": "Chat-Verlauf aktivieren", | ||||||
| 	"Enable New Sign Ups": "Neue Anmeldungen aktivieren", | 	"Enable New Sign Ups": "Neue Anmeldungen aktivieren", | ||||||
| 	"Enabled": "Aktiviert", | 	"Enabled": "Aktiviert", | ||||||
| 	"Enter OpenAI API Key": "OpenAI-API-Key eingeben", |  | ||||||
| 	"Enter stop sequence": "Stop-Sequenz eingeben", | 	"Enter stop sequence": "Stop-Sequenz eingeben", | ||||||
| 	"Enter Your Email": "Geben Deine E-Mail-Adresse ein", | 	"Enter Your Email": "Geben Deine E-Mail-Adresse ein", | ||||||
| 	"Enter Your Full Name": "Gebe Deinen vollständigen Namen ein", | 	"Enter Your Full Name": "Gebe Deinen vollständigen Namen ein", | ||||||
| 	"Enter Your Password": "Gebe Dein Passwort ein", | 	"Enter Your Password": "Gebe Dein Passwort ein", | ||||||
|  | 	"Experimental": "Experimentell", | ||||||
| 	"Export All Chats (All Users)": "Alle Chats exportieren (alle Benutzer)", | 	"Export All Chats (All Users)": "Alle Chats exportieren (alle Benutzer)", | ||||||
| 	"Export Chats": "Chats exportieren", | 	"Export Chats": "Chats exportieren", | ||||||
| 	"Export Documents Mapping": "Dokumentenmapping exportieren", | 	"Export Documents Mapping": "Dokumentenmapping exportieren", | ||||||
| 	"Export Modelfiles": "Modelfiles exportieren", | 	"Export Modelfiles": "Modelfiles exportieren", | ||||||
| 	"Export Prompts": "Prompts exportieren", | 	"Export Prompts": "Prompts exportieren", | ||||||
| 	"Failed to read clipboard contents": "Fehler beim Lesen des Zwischenablageninhalts", | 	"Failed to read clipboard contents": "Fehler beim Lesen des Zwischenablageninhalts", | ||||||
|  | 	"File Mode": "File Mode", | ||||||
| 	"File not found.": "Datei nicht gefunden.", | 	"File not found.": "Datei nicht gefunden.", | ||||||
| 	"Focus chat input": "Chat-Eingabe fokussieren", | 	"Focus chat input": "Chat-Eingabe fokussieren", | ||||||
| 	"Format your variables using square brackets like this:": "Formatiere Deine Variablen mit eckigen Klammern wie folgt:", | 	"Format your variables using square brackets like this:": "Formatiere Deine Variablen mit eckigen Klammern wie folgt:", | ||||||
|  | @ -137,6 +138,7 @@ | ||||||
| 	"General Settings": "Allgemeine Einstellungen", | 	"General Settings": "Allgemeine Einstellungen", | ||||||
| 	"Hello, {{name}}": "Hallo, {{name}}", | 	"Hello, {{name}}": "Hallo, {{name}}", | ||||||
| 	"Hide": "Verbergen", | 	"Hide": "Verbergen", | ||||||
|  | 	"Hide Additional Params": "Hide Additional Params", | ||||||
| 	"How can I help you today?": "Wie kann ich Dir heute helfen?", | 	"How can I help you today?": "Wie kann ich Dir heute helfen?", | ||||||
| 	"Image Generation (Experimental)": "Bildgenerierung (experimentell)", | 	"Image Generation (Experimental)": "Bildgenerierung (experimentell)", | ||||||
| 	"Image Settings": "Bildeinstellungen", | 	"Image Settings": "Bildeinstellungen", | ||||||
|  | @ -179,6 +181,7 @@ | ||||||
| 	"Model Tag Name": "Modell-Tag-Name", | 	"Model Tag Name": "Modell-Tag-Name", | ||||||
| 	"Modelfile": "Modelfiles", | 	"Modelfile": "Modelfiles", | ||||||
| 	"Modelfile Advanced Settings": "Erweiterte Modelfileseinstellungen", | 	"Modelfile Advanced Settings": "Erweiterte Modelfileseinstellungen", | ||||||
|  | 	"Modelfile Content": "Modelfile Content", | ||||||
| 	"Modelfiles": "Modelfiles", | 	"Modelfiles": "Modelfiles", | ||||||
| 	"Models": "Modelle", | 	"Models": "Modelle", | ||||||
| 	"My Documents": "Meine Dokumente", | 	"My Documents": "Meine Dokumente", | ||||||
|  | @ -186,7 +189,7 @@ | ||||||
| 	"My Prompts": "Meine Prompts", | 	"My Prompts": "Meine Prompts", | ||||||
| 	"Name": "Name", | 	"Name": "Name", | ||||||
| 	"Name Tag": "Namens-Tag", | 	"Name Tag": "Namens-Tag", | ||||||
| 	"Name your modelfile": "", | 	"Name your modelfile": "Name your modelfile", | ||||||
| 	"New Chat": "Neuer Chat", | 	"New Chat": "Neuer Chat", | ||||||
| 	"New Password": "Neues Passwort", | 	"New Password": "Neues Passwort", | ||||||
| 	"Not sure what to add?": "Nicht sicher, was hinzugefügt werden soll?", | 	"Not sure what to add?": "Nicht sicher, was hinzugefügt werden soll?", | ||||||
|  | @ -198,8 +201,8 @@ | ||||||
| 	"Only": "Nur", | 	"Only": "Nur", | ||||||
| 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Nur alphanumerische Zeichen und Bindestriche sind im Befehlsstring erlaubt.", | 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Nur alphanumerische Zeichen und Bindestriche sind im Befehlsstring erlaubt.", | ||||||
| 	"Oops! Hold tight! Your files are still in the processing oven. We're cooking them up to perfection. Please be patient and we'll let you know once they're ready.": "Hoppla! Warte noch einen Moment! Die Dateien sind noch im der Verarbeitung. Bitte habe etwas Geduld und wir informieren Dich, sobald sie bereit sind.", | 	"Oops! Hold tight! Your files are still in the processing oven. We're cooking them up to perfection. Please be patient and we'll let you know once they're ready.": "Hoppla! Warte noch einen Moment! Die Dateien sind noch im der Verarbeitung. Bitte habe etwas Geduld und wir informieren Dich, sobald sie bereit sind.", | ||||||
| 	"Oops! Looks like the URL is invalid. Please double-check and try again.": "", | 	"Oops! Looks like the URL is invalid. Please double-check and try again.": "Oops! Looks like the URL is invalid. Please double-check and try again.", | ||||||
| 	"Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "", | 	"Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.", | ||||||
| 	"Open": "Öffne", | 	"Open": "Öffne", | ||||||
| 	"Open AI": "Open AI", | 	"Open AI": "Open AI", | ||||||
| 	"Open new chat": "Neuen Chat öffnen", | 	"Open new chat": "Neuen Chat öffnen", | ||||||
|  | @ -257,6 +260,7 @@ | ||||||
| 	"Share to OpenWebUI Community": "Mit OpenWebUI Community teilen", | 	"Share to OpenWebUI Community": "Mit OpenWebUI Community teilen", | ||||||
| 	"short-summary": "kurze-zusammenfassung", | 	"short-summary": "kurze-zusammenfassung", | ||||||
| 	"Show": "Anzeigen", | 	"Show": "Anzeigen", | ||||||
|  | 	"Show Additional Params": "Show Additional Params", | ||||||
| 	"Show shortcuts": "Verknüpfungen anzeigen", | 	"Show shortcuts": "Verknüpfungen anzeigen", | ||||||
| 	"sidebar": "Seitenleiste", | 	"sidebar": "Seitenleiste", | ||||||
| 	"Sign in": "Anmelden", | 	"Sign in": "Anmelden", | ||||||
|  | @ -282,12 +286,13 @@ | ||||||
| 	"Theme": "Design", | 	"Theme": "Design", | ||||||
| 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Dadurch werden Deine wertvollen Unterhaltungen sicher in der Backend-Datenbank gespeichert. Vielen Dank!", | 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Dadurch werden Deine wertvollen Unterhaltungen sicher in der Backend-Datenbank gespeichert. Vielen Dank!", | ||||||
| 	"This setting does not sync across browsers or devices.": "Diese Einstellung wird nicht zwischen Browsern oder Geräten synchronisiert.", | 	"This setting does not sync across browsers or devices.": "Diese Einstellung wird nicht zwischen Browsern oder Geräten synchronisiert.", | ||||||
| 	"Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "", | 	"Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.", | ||||||
| 	"Title": "Titel", | 	"Title": "Titel", | ||||||
| 	"Title Auto-Generation": "Automatische Titelgenerierung", | 	"Title Auto-Generation": "Automatische Titelgenerierung", | ||||||
| 	"Title Generation Prompt": "Prompt für Titelgenerierung", | 	"Title Generation Prompt": "Prompt für Titelgenerierung", | ||||||
| 	"to": "für", | 	"to": "für", | ||||||
| 	"To access the available model names for downloading,": "Um auf die verfügbaren Modellnamen zum Herunterladen zuzugreifen,", | 	"To access the available model names for downloading,": "Um auf die verfügbaren Modellnamen zum Herunterladen zuzugreifen,", | ||||||
|  | 	"To access the GGUF models available for downloading,": "To access the GGUF models available for downloading,", | ||||||
| 	"Toggle settings": "Einstellungen umschalten", | 	"Toggle settings": "Einstellungen umschalten", | ||||||
| 	"Toggle sidebar": "Seitenleiste umschalten", | 	"Toggle sidebar": "Seitenleiste umschalten", | ||||||
| 	"Top K": "Top K", | 	"Top K": "Top K", | ||||||
|  | @ -295,8 +300,11 @@ | ||||||
| 	"Trouble accessing Ollama?": "Probleme beim Zugriff auf Ollama?", | 	"Trouble accessing Ollama?": "Probleme beim Zugriff auf Ollama?", | ||||||
| 	"TTS Settings": "TTS-Einstellungen", | 	"TTS Settings": "TTS-Einstellungen", | ||||||
| 	"Uh-oh! There was an issue connecting to {{provider}}.": "Ups! Es gab ein Problem bei der Verbindung mit {{provider}}.", | 	"Uh-oh! There was an issue connecting to {{provider}}.": "Ups! Es gab ein Problem bei der Verbindung mit {{provider}}.", | ||||||
| 	"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "", | 	"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Unknown File Type '{{file_type}}', but accepting and treating as plain text", | ||||||
|  | 	"Upload a GGUF model": "Upload a GGUF model", | ||||||
| 	"Upload files": "Dateien hochladen", | 	"Upload files": "Dateien hochladen", | ||||||
|  | 	"Upload Progress": "Upload Progress", | ||||||
|  | 	"URL Mode": "URL Mode", | ||||||
| 	"Use '#' in the prompt input to load and select your documents.": "Verwende '#' in der Prompt-Eingabe, um Deine Dokumente zu laden und auszuwählen.", | 	"Use '#' in the prompt input to load and select your documents.": "Verwende '#' in der Prompt-Eingabe, um Deine Dokumente zu laden und auszuwählen.", | ||||||
| 	"user": "Benutzer", | 	"user": "Benutzer", | ||||||
| 	"User Permissions": "Benutzerberechtigungen", | 	"User Permissions": "Benutzerberechtigungen", | ||||||
|  |  | ||||||
|  | @ -117,17 +117,18 @@ | ||||||
| 	"Enable Chat History": "Enable Chat History", | 	"Enable Chat History": "Enable Chat History", | ||||||
| 	"Enable New Sign Ups": "Enable New Sign Ups", | 	"Enable New Sign Ups": "Enable New Sign Ups", | ||||||
| 	"Enabled": "Enabled", | 	"Enabled": "Enabled", | ||||||
| 	"Enter OpenAI API Key": "Enter OpenAI API Key", |  | ||||||
| 	"Enter stop sequence": "Enter stop sequence", | 	"Enter stop sequence": "Enter stop sequence", | ||||||
| 	"Enter Your Email": "Enter Your Email", | 	"Enter Your Email": "Enter Your Email", | ||||||
| 	"Enter Your Full Name": "Enter Your Full Name", | 	"Enter Your Full Name": "Enter Your Full Name", | ||||||
| 	"Enter Your Password": "Enter Your Password", | 	"Enter Your Password": "Enter Your Password", | ||||||
|  | 	"Experimental": "Experimental", | ||||||
| 	"Export All Chats (All Users)": "Export All Chats (All Users)", | 	"Export All Chats (All Users)": "Export All Chats (All Users)", | ||||||
| 	"Export Chats": "Export Chats", | 	"Export Chats": "Export Chats", | ||||||
| 	"Export Documents Mapping": "Export Documents Mapping", | 	"Export Documents Mapping": "Export Documents Mapping", | ||||||
| 	"Export Modelfiles": "Export Modelfiles", | 	"Export Modelfiles": "Export Modelfiles", | ||||||
| 	"Export Prompts": "Export Prompts", | 	"Export Prompts": "Export Prompts", | ||||||
| 	"Failed to read clipboard contents": "Failed to read clipboard contents", | 	"Failed to read clipboard contents": "Failed to read clipboard contents", | ||||||
|  | 	"File Mode": "File Mode", | ||||||
| 	"File not found.": "File not found.", | 	"File not found.": "File not found.", | ||||||
| 	"Focus chat input": "Focus chat input", | 	"Focus chat input": "Focus chat input", | ||||||
| 	"Format your variables using square brackets like this:": "Format your variables using square brackets like this:", | 	"Format your variables using square brackets like this:": "Format your variables using square brackets like this:", | ||||||
|  | @ -137,6 +138,7 @@ | ||||||
| 	"General Settings": "General Settings", | 	"General Settings": "General Settings", | ||||||
| 	"Hello, {{name}}": "Hello, {{name}}", | 	"Hello, {{name}}": "Hello, {{name}}", | ||||||
| 	"Hide": "Hide", | 	"Hide": "Hide", | ||||||
|  | 	"Hide Additional Params": "Hide Additional Params", | ||||||
| 	"How can I help you today?": "How can I help you today?", | 	"How can I help you today?": "How can I help you today?", | ||||||
| 	"Image Generation (Experimental)": "Image Generation (Experimental)", | 	"Image Generation (Experimental)": "Image Generation (Experimental)", | ||||||
| 	"Image Settings": "Image Settings", | 	"Image Settings": "Image Settings", | ||||||
|  | @ -179,6 +181,7 @@ | ||||||
| 	"Model Tag Name": "Model Tag Name", | 	"Model Tag Name": "Model Tag Name", | ||||||
| 	"Modelfile": "Modelfile", | 	"Modelfile": "Modelfile", | ||||||
| 	"Modelfile Advanced Settings": "Modelfile Advanced Settings", | 	"Modelfile Advanced Settings": "Modelfile Advanced Settings", | ||||||
|  | 	"Modelfile Content": "Modelfile Content", | ||||||
| 	"Modelfiles": "Modelfiles", | 	"Modelfiles": "Modelfiles", | ||||||
| 	"Models": "Models", | 	"Models": "Models", | ||||||
| 	"My Documents": "My Documents", | 	"My Documents": "My Documents", | ||||||
|  | @ -257,6 +260,7 @@ | ||||||
| 	"Share to OpenWebUI Community": "Share to OpenWebUI Community", | 	"Share to OpenWebUI Community": "Share to OpenWebUI Community", | ||||||
| 	"short-summary": "short-summary", | 	"short-summary": "short-summary", | ||||||
| 	"Show": "Show", | 	"Show": "Show", | ||||||
|  | 	"Show Additional Params": "Show Additional Params", | ||||||
| 	"Show shortcuts": "Show shortcuts", | 	"Show shortcuts": "Show shortcuts", | ||||||
| 	"sidebar": "sidebar", | 	"sidebar": "sidebar", | ||||||
| 	"Sign in": "Sign in", | 	"Sign in": "Sign in", | ||||||
|  | @ -288,6 +292,7 @@ | ||||||
| 	"Title Generation Prompt": "Title Generation Prompt", | 	"Title Generation Prompt": "Title Generation Prompt", | ||||||
| 	"to": "to", | 	"to": "to", | ||||||
| 	"To access the available model names for downloading,": "To access the available model names for downloading,", | 	"To access the available model names for downloading,": "To access the available model names for downloading,", | ||||||
|  | 	"To access the GGUF models available for downloading,": "To access the GGUF models available for downloading,", | ||||||
| 	"Toggle settings": "Toggle settings", | 	"Toggle settings": "Toggle settings", | ||||||
| 	"Toggle sidebar": "Toggle sidebar", | 	"Toggle sidebar": "Toggle sidebar", | ||||||
| 	"Top K": "Top K", | 	"Top K": "Top K", | ||||||
|  | @ -296,7 +301,10 @@ | ||||||
| 	"TTS Settings": "TTS Settings", | 	"TTS Settings": "TTS Settings", | ||||||
| 	"Uh-oh! There was an issue connecting to {{provider}}.": "Uh-oh! There was an issue connecting to {{provider}}.", | 	"Uh-oh! There was an issue connecting to {{provider}}.": "Uh-oh! There was an issue connecting to {{provider}}.", | ||||||
| 	"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Unknown File Type '{{file_type}}', but accepting and treating as plain text", | 	"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Unknown File Type '{{file_type}}', but accepting and treating as plain text", | ||||||
|  | 	"Upload a GGUF model": "Upload a GGUF model", | ||||||
| 	"Upload files": "Upload files", | 	"Upload files": "Upload files", | ||||||
|  | 	"Upload Progress": "Upload Progress", | ||||||
|  | 	"URL Mode": "URL Mode", | ||||||
| 	"Use '#' in the prompt input to load and select your documents.": "Use '#' in the prompt input to load and select your documents.", | 	"Use '#' in the prompt input to load and select your documents.": "Use '#' in the prompt input to load and select your documents.", | ||||||
| 	"user": "user", | 	"user": "user", | ||||||
| 	"User Permissions": "User Permissions", | 	"User Permissions": "User Permissions", | ||||||
|  |  | ||||||
|  | @ -18,7 +18,7 @@ | ||||||
| 	"Add message": "اضافه کردن پیغام", | 	"Add message": "اضافه کردن پیغام", | ||||||
| 	"add tags": "اضافه کردن تگ\u200cها", | 	"add tags": "اضافه کردن تگ\u200cها", | ||||||
| 	"Adjusting these settings will apply changes universally to all users.": "با تنظیم این تنظیمات، تغییرات به طور کلی برای همه کاربران اعمال می شود.", | 	"Adjusting these settings will apply changes universally to all users.": "با تنظیم این تنظیمات، تغییرات به طور کلی برای همه کاربران اعمال می شود.", | ||||||
| 	"admin": "admin", | 	"admin": "مدیر", | ||||||
| 	"Admin Panel": "پنل مدیریت", | 	"Admin Panel": "پنل مدیریت", | ||||||
| 	"Admin Settings": "تنظیمات مدیریت", | 	"Admin Settings": "تنظیمات مدیریت", | ||||||
| 	"Advanced Model Params": "پارامترهای پیشرفته مدل", | 	"Advanced Model Params": "پارامترهای پیشرفته مدل", | ||||||
|  | @ -117,17 +117,18 @@ | ||||||
| 	"Enable Chat History": "تاریخچه چت را فعال کنید", | 	"Enable Chat History": "تاریخچه چت را فعال کنید", | ||||||
| 	"Enable New Sign Ups": "فعال کردن ثبت نام\u200cهای جدید", | 	"Enable New Sign Ups": "فعال کردن ثبت نام\u200cهای جدید", | ||||||
| 	"Enabled": "فعال", | 	"Enabled": "فعال", | ||||||
| 	"Enter OpenAI API Key": "کلید OpenAI API را وارد کنید", |  | ||||||
| 	"Enter stop sequence": "توالی توقف را وارد کنید", | 	"Enter stop sequence": "توالی توقف را وارد کنید", | ||||||
| 	"Enter Your Email": "ایمیل خود را وارد کنید", | 	"Enter Your Email": "ایمیل خود را وارد کنید", | ||||||
| 	"Enter Your Full Name": "نام کامل خود را وارد کنید", | 	"Enter Your Full Name": "نام کامل خود را وارد کنید", | ||||||
| 	"Enter Your Password": "رمز عبور خود را وارد کنید", | 	"Enter Your Password": "رمز عبور خود را وارد کنید", | ||||||
|  | 	"Experimental": "آزمایشی", | ||||||
| 	"Export All Chats (All Users)": "اکسپورت از همه گپ\u200cها(همه کاربران)", | 	"Export All Chats (All Users)": "اکسپورت از همه گپ\u200cها(همه کاربران)", | ||||||
| 	"Export Chats": "اکسپورت از گپ\u200cها", | 	"Export Chats": "اکسپورت از گپ\u200cها", | ||||||
| 	"Export Documents Mapping": "اکسپورت از نگاشت اسناد", | 	"Export Documents Mapping": "اکسپورت از نگاشت اسناد", | ||||||
| 	"Export Modelfiles": "اکسپورت از فایل\u200cهای مدل", | 	"Export Modelfiles": "اکسپورت از فایل\u200cهای مدل", | ||||||
| 	"Export Prompts": "اکسپورت از پرامپت\u200cها", | 	"Export Prompts": "اکسپورت از پرامپت\u200cها", | ||||||
| 	"Failed to read clipboard contents": "خواندن محتوای کلیپ بورد ناموفق بود", | 	"Failed to read clipboard contents": "خواندن محتوای کلیپ بورد ناموفق بود", | ||||||
|  | 	"File Mode": "حالت فایل", | ||||||
| 	"File not found.": "فایل یافت نشد.", | 	"File not found.": "فایل یافت نشد.", | ||||||
| 	"Focus chat input": "فوکوس کردن ورودی گپ", | 	"Focus chat input": "فوکوس کردن ورودی گپ", | ||||||
| 	"Format your variables using square brackets like this:": "متغیرهای خود را با استفاده از براکت مربع به شکل زیر قالب بندی کنید:", | 	"Format your variables using square brackets like this:": "متغیرهای خود را با استفاده از براکت مربع به شکل زیر قالب بندی کنید:", | ||||||
|  | @ -137,6 +138,7 @@ | ||||||
| 	"General Settings": "تنظیمات عمومی", | 	"General Settings": "تنظیمات عمومی", | ||||||
| 	"Hello, {{name}}": "سلام، {{name}}", | 	"Hello, {{name}}": "سلام، {{name}}", | ||||||
| 	"Hide": "پنهان", | 	"Hide": "پنهان", | ||||||
|  | 	"Hide Additional Params": "پنهان کردن پارامترهای اضافه", | ||||||
| 	"How can I help you today?": "امروز چطور می توانم کمک تان کنم؟", | 	"How can I help you today?": "امروز چطور می توانم کمک تان کنم؟", | ||||||
| 	"Image Generation (Experimental)": "تولید تصویر (آزمایشی)", | 	"Image Generation (Experimental)": "تولید تصویر (آزمایشی)", | ||||||
| 	"Image Settings": "تنظیمات تصویر", | 	"Image Settings": "تنظیمات تصویر", | ||||||
|  | @ -179,6 +181,7 @@ | ||||||
| 	"Model Tag Name": "نام تگ مدل", | 	"Model Tag Name": "نام تگ مدل", | ||||||
| 	"Modelfile": "فایل مدل", | 	"Modelfile": "فایل مدل", | ||||||
| 	"Modelfile Advanced Settings": "تنظیمات پیشرفته فایل\u200cمدل", | 	"Modelfile Advanced Settings": "تنظیمات پیشرفته فایل\u200cمدل", | ||||||
|  | 	"Modelfile Content": "محتویات فایل مدل", | ||||||
| 	"Modelfiles": "فایل\u200cهای مدل", | 	"Modelfiles": "فایل\u200cهای مدل", | ||||||
| 	"Models": "مدل\u200cها", | 	"Models": "مدل\u200cها", | ||||||
| 	"My Documents": "اسناد من", | 	"My Documents": "اسناد من", | ||||||
|  | @ -186,20 +189,20 @@ | ||||||
| 	"My Prompts": "پرامپت\u200cهای من", | 	"My Prompts": "پرامپت\u200cهای من", | ||||||
| 	"Name": "نام", | 	"Name": "نام", | ||||||
| 	"Name Tag": "نام تگ", | 	"Name Tag": "نام تگ", | ||||||
| 	"Name your modelfile": "", | 	"Name your modelfile": "فایل مدل را نام\u200cگذاری کنید", | ||||||
| 	"New Chat": "گپ جدید", | 	"New Chat": "گپ جدید", | ||||||
| 	"New Password": "رمز عبور جدید", | 	"New Password": "رمز عبور جدید", | ||||||
| 	"Not sure what to add?": "مطمئن نیستید چه چیزی را اضافه کنید؟", | 	"Not sure what to add?": "مطمئن نیستید چه چیزی را اضافه کنید؟", | ||||||
| 	"Not sure what to write? Switch to": "مطمئن نیستید چه بنویسید؟ تغییر به", | 	"Not sure what to write? Switch to": "مطمئن نیستید چه بنویسید؟ تغییر به", | ||||||
| 	"Off": "خاموش", | 	"Off": "خاموش", | ||||||
| 	"Okay, Let's Go!": "باشه، بزن بریم!", | 	"Okay, Let's Go!": "باشه، بزن بریم!", | ||||||
| 	"Ollama Version": "نسخه Ollama", | 	"Ollama Version": "نسخه اولاما", | ||||||
| 	"On": "روشن", | 	"On": "روشن", | ||||||
| 	"Only": "فقط", | 	"Only": "فقط", | ||||||
| 	"Only alphanumeric characters and hyphens are allowed in the command string.": "فقط کاراکترهای الفبایی و خط فاصله در رشته فرمان مجاز هستند.", | 	"Only alphanumeric characters and hyphens are allowed in the command string.": "فقط کاراکترهای الفبایی و خط فاصله در رشته فرمان مجاز هستند.", | ||||||
| 	"Oops! Hold tight! Your files are still in the processing oven. We're cooking them up to perfection. Please be patient and we'll let you know once they're ready.": "اوه! فایل های شما هنوز در فر پردازش هستند. ما آنها را کامل می پزیم. لطفا صبور باشید، به محض آماده شدن به شما اطلاع خواهیم داد.", | 	"Oops! Hold tight! Your files are still in the processing oven. We're cooking them up to perfection. Please be patient and we'll let you know once they're ready.": "اوه! فایل های شما هنوز در فر پردازش هستند. ما آنها را کامل می پزیم. لطفا صبور باشید، به محض آماده شدن به شما اطلاع خواهیم داد.", | ||||||
| 	"Oops! Looks like the URL is invalid. Please double-check and try again.": "", | 	"Oops! Looks like the URL is invalid. Please double-check and try again.": "اوه! به نظر می رسد URL نامعتبر است. لطفاً دوباره بررسی کنید و دوباره امتحان کنید.", | ||||||
| 	"Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "", | 	"Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "اوه! شما از یک روش پشتیبانی نشده (فقط frontend) استفاده می کنید. لطفاً WebUI را از بکند اجرا کنید.", | ||||||
| 	"Open": "باز", | 	"Open": "باز", | ||||||
| 	"Open AI": "Open AI", | 	"Open AI": "Open AI", | ||||||
| 	"Open new chat": "باز کردن گپ جدید", | 	"Open new chat": "باز کردن گپ جدید", | ||||||
|  | @ -207,7 +210,7 @@ | ||||||
| 	"or": "روشن", | 	"or": "روشن", | ||||||
| 	"Parameters": "پارامترها", | 	"Parameters": "پارامترها", | ||||||
| 	"Password": "رمز عبور", | 	"Password": "رمز عبور", | ||||||
| 	"pending": "pending", | 	"pending": "در انتظار", | ||||||
| 	"Permission denied when accessing microphone: {{error}}": "هنگام دسترسی به میکروفون، اجازه داده نشد: {{error}}", | 	"Permission denied when accessing microphone: {{error}}": "هنگام دسترسی به میکروفون، اجازه داده نشد: {{error}}", | ||||||
| 	"Playground": "زمین بازی", | 	"Playground": "زمین بازی", | ||||||
| 	"Profile": "پروفایل", | 	"Profile": "پروفایل", | ||||||
|  | @ -257,6 +260,7 @@ | ||||||
| 	"Share to OpenWebUI Community": "اشتراک گذاری با OpenWebUI Community", | 	"Share to OpenWebUI Community": "اشتراک گذاری با OpenWebUI Community", | ||||||
| 	"short-summary": "خلاصه کوتاه", | 	"short-summary": "خلاصه کوتاه", | ||||||
| 	"Show": "نمایش", | 	"Show": "نمایش", | ||||||
|  | 	"Show Additional Params": "نمایش پارامترهای اضافه", | ||||||
| 	"Show shortcuts": "نمایش میانبرها", | 	"Show shortcuts": "نمایش میانبرها", | ||||||
| 	"sidebar": "نوار کناری", | 	"sidebar": "نوار کناری", | ||||||
| 	"Sign in": "ورود", | 	"Sign in": "ورود", | ||||||
|  | @ -282,12 +286,13 @@ | ||||||
| 	"Theme": "قالب", | 	"Theme": "قالب", | ||||||
| 	"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!": "این تضمین می کند که مکالمات ارزشمند شما به طور ایمن در پایگاه داده بکند ذخیره می شود. تشکر!", | ||||||
| 	"This setting does not sync across browsers or devices.": "این تنظیم در مرورگرها یا دستگاه\u200cها همگام\u200cسازی نمی\u200cشود.", | 	"This setting does not sync across browsers or devices.": "این تنظیم در مرورگرها یا دستگاه\u200cها همگام\u200cسازی نمی\u200cشود.", | ||||||
| 	"Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "", | 	"Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "با فشردن کلید Tab در ورودی چت پس از هر بار تعویض، چندین متغیر را به صورت متوالی به روزرسانی کنید.", | ||||||
| 	"Title": "عنوان", | 	"Title": "عنوان", | ||||||
| 	"Title Auto-Generation": "تولید خودکار عنوان", | 	"Title Auto-Generation": "تولید خودکار عنوان", | ||||||
| 	"Title Generation Prompt": "پرامپت تولید عنوان", | 	"Title Generation Prompt": "پرامپت تولید عنوان", | ||||||
| 	"to": "به", | 	"to": "به", | ||||||
| 	"To access the available model names for downloading,": "برای دسترسی به نام مدل های موجود برای دانلود،", | 	"To access the available model names for downloading,": "برای دسترسی به نام مدل های موجود برای دانلود،", | ||||||
|  | 	"To access the GGUF models available for downloading,": "برای دسترسی به مدل\u200cهای GGUF موجود برای دانلود،", | ||||||
| 	"Toggle settings": "نمایش/عدم نمایش تنظیمات", | 	"Toggle settings": "نمایش/عدم نمایش تنظیمات", | ||||||
| 	"Toggle sidebar": "نمایش/عدم نمایش نوار کناری", | 	"Toggle sidebar": "نمایش/عدم نمایش نوار کناری", | ||||||
| 	"Top K": "Top K", | 	"Top K": "Top K", | ||||||
|  | @ -295,10 +300,13 @@ | ||||||
| 	"Trouble accessing Ollama?": "در دسترسی به اولاما مشکل دارید؟", | 	"Trouble accessing Ollama?": "در دسترسی به اولاما مشکل دارید؟", | ||||||
| 	"TTS Settings": "تنظیمات TTS", | 	"TTS Settings": "تنظیمات TTS", | ||||||
| 	"Uh-oh! There was an issue connecting to {{provider}}.": "اوه اوه! مشکلی در اتصال به {{provider}} وجود داشت.", | 	"Uh-oh! There was an issue connecting to {{provider}}.": "اوه اوه! مشکلی در اتصال به {{provider}} وجود داشت.", | ||||||
| 	"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "", | 	"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "نوع فایل '{{file_type}}' ناشناخته است، به عنوان یک فایل متنی ساده با آن برخورد می شود.", | ||||||
|  | 	"Upload a GGUF model": "آپلود یک مدل GGUF", | ||||||
| 	"Upload files": "بارگذاری فایل\u200cها", | 	"Upload files": "بارگذاری فایل\u200cها", | ||||||
|  | 	"Upload Progress": "پیشرفت آپلود", | ||||||
|  | 	"URL Mode": "URL Mode", | ||||||
| 	"Use '#' in the prompt input to load and select your documents.": "در پرامپت از '#' برای لود و انتخاب اسناد خود استفاده کنید.", | 	"Use '#' in the prompt input to load and select your documents.": "در پرامپت از '#' برای لود و انتخاب اسناد خود استفاده کنید.", | ||||||
| 	"user": "user", | 	"user": "کاربر", | ||||||
| 	"User Permissions": "مجوزهای کاربر", | 	"User Permissions": "مجوزهای کاربر", | ||||||
| 	"Users": "کاربران", | 	"Users": "کاربران", | ||||||
| 	"Utilize": "استفاده کنید", | 	"Utilize": "استفاده کنید", | ||||||
|  |  | ||||||
|  | @ -117,17 +117,18 @@ | ||||||
| 	"Enable Chat History": "Activer l'historique du chat", | 	"Enable Chat History": "Activer l'historique du chat", | ||||||
| 	"Enable New Sign Ups": "Activer les nouvelles inscriptions", | 	"Enable New Sign Ups": "Activer les nouvelles inscriptions", | ||||||
| 	"Enabled": "Activé", | 	"Enabled": "Activé", | ||||||
| 	"Enter OpenAI API Key": "Entrez la clé API OpenAI", |  | ||||||
| 	"Enter stop sequence": "Entrez la séquence d'arrêt", | 	"Enter stop sequence": "Entrez la séquence d'arrêt", | ||||||
| 	"Enter Your Email": "Entrez votre email", | 	"Enter Your Email": "Entrez votre email", | ||||||
| 	"Enter Your Full Name": "Entrez votre nom complet", | 	"Enter Your Full Name": "Entrez votre nom complet", | ||||||
| 	"Enter Your Password": "Entrez votre mot de passe", | 	"Enter Your Password": "Entrez votre mot de passe", | ||||||
|  | 	"Experimental": "Expérimental", | ||||||
| 	"Export All Chats (All Users)": "Exporter tous les chats (tous les utilisateurs)", | 	"Export All Chats (All Users)": "Exporter tous les chats (tous les utilisateurs)", | ||||||
| 	"Export Chats": "Exporter les chats", | 	"Export Chats": "Exporter les chats", | ||||||
| 	"Export Documents Mapping": "Exporter la correspondance des documents", | 	"Export Documents Mapping": "Exporter la correspondance des documents", | ||||||
| 	"Export Modelfiles": "Exporter les fichiers de modèle", | 	"Export Modelfiles": "Exporter les fichiers de modèle", | ||||||
| 	"Export Prompts": "Exporter les prompts", | 	"Export Prompts": "Exporter les prompts", | ||||||
| 	"Failed to read clipboard contents": "Échec de la lecture du contenu du presse-papiers", | 	"Failed to read clipboard contents": "Échec de la lecture du contenu du presse-papiers", | ||||||
|  | 	"File Mode": "Mode fichier", | ||||||
| 	"File not found.": "Fichier non trouvé.", | 	"File not found.": "Fichier non trouvé.", | ||||||
| 	"Focus chat input": "Concentrer sur l'entrée du chat", | 	"Focus chat input": "Concentrer sur l'entrée du chat", | ||||||
| 	"Format your variables using square brackets like this:": "Formatez vos variables en utilisant des crochets comme ceci :", | 	"Format your variables using square brackets like this:": "Formatez vos variables en utilisant des crochets comme ceci :", | ||||||
|  | @ -137,6 +138,7 @@ | ||||||
| 	"General Settings": "Paramètres généraux", | 	"General Settings": "Paramètres généraux", | ||||||
| 	"Hello, {{name}}": "Bonjour, {{name}}", | 	"Hello, {{name}}": "Bonjour, {{name}}", | ||||||
| 	"Hide": "Cacher", | 	"Hide": "Cacher", | ||||||
|  | 	"Hide Additional Params": "Hide Additional Params", | ||||||
| 	"How can I help you today?": "Comment puis-je vous aider aujourd'hui ?", | 	"How can I help you today?": "Comment puis-je vous aider aujourd'hui ?", | ||||||
| 	"Image Generation (Experimental)": "Génération d'image (Expérimental)", | 	"Image Generation (Experimental)": "Génération d'image (Expérimental)", | ||||||
| 	"Image Settings": "Paramètres d'image", | 	"Image Settings": "Paramètres d'image", | ||||||
|  | @ -179,6 +181,7 @@ | ||||||
| 	"Model Tag Name": "Nom de tag du modèle", | 	"Model Tag Name": "Nom de tag du modèle", | ||||||
| 	"Modelfile": "Fichier de modèle", | 	"Modelfile": "Fichier de modèle", | ||||||
| 	"Modelfile Advanced Settings": "Paramètres avancés du fichier de modèle", | 	"Modelfile Advanced Settings": "Paramètres avancés du fichier de modèle", | ||||||
|  | 	"Modelfile Content": "Contenu du fichier de modèle", | ||||||
| 	"Modelfiles": "Fichiers de modèle", | 	"Modelfiles": "Fichiers de modèle", | ||||||
| 	"Models": "Modèles", | 	"Models": "Modèles", | ||||||
| 	"My Documents": "Mes documents", | 	"My Documents": "Mes documents", | ||||||
|  | @ -186,7 +189,7 @@ | ||||||
| 	"My Prompts": "Mes prompts", | 	"My Prompts": "Mes prompts", | ||||||
| 	"Name": "Nom", | 	"Name": "Nom", | ||||||
| 	"Name Tag": "Tag de nom", | 	"Name Tag": "Tag de nom", | ||||||
| 	"Name your modelfile": "", | 	"Name your modelfile": "Nommez votre fichier de modèle", | ||||||
| 	"New Chat": "Nouveau chat", | 	"New Chat": "Nouveau chat", | ||||||
| 	"New Password": "Nouveau mot de passe", | 	"New Password": "Nouveau mot de passe", | ||||||
| 	"Not sure what to add?": "Vous ne savez pas quoi ajouter ?", | 	"Not sure what to add?": "Vous ne savez pas quoi ajouter ?", | ||||||
|  | @ -198,8 +201,8 @@ | ||||||
| 	"Only": "Seulement", | 	"Only": "Seulement", | ||||||
| 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Seuls les caractères alphanumériques et les tirets sont autorisés dans la chaîne de commande.", | 	"Only alphanumeric characters and hyphens are allowed in the command string.": "Seuls les caractères alphanumériques et les tirets sont autorisés dans la chaîne de commande.", | ||||||
| 	"Oops! Hold tight! Your files are still in the processing oven. We're cooking them up to perfection. Please be patient and we'll let you know once they're ready.": "Oups ! Tenez bon ! Vos fichiers sont encore dans le four. Nous les cuisinons à la perfection. Soyez patient et nous vous informerons dès qu'ils seront prêts.", | 	"Oops! Hold tight! Your files are still in the processing oven. We're cooking them up to perfection. Please be patient and we'll let you know once they're ready.": "Oups ! Tenez bon ! Vos fichiers sont encore dans le four. Nous les cuisinons à la perfection. Soyez patient et nous vous informerons dès qu'ils seront prêts.", | ||||||
| 	"Oops! Looks like the URL is invalid. Please double-check and try again.": "", | 	"Oops! Looks like the URL is invalid. Please double-check and try again.": "Oops! Looks like the URL is invalid. Please double-check and try again.", | ||||||
| 	"Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "", | 	"Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.": "Oops! You're using an unsupported method (frontend only). Please serve the WebUI from the backend.", | ||||||
| 	"Open": "Ouvrir", | 	"Open": "Ouvrir", | ||||||
| 	"Open AI": "Open AI", | 	"Open AI": "Open AI", | ||||||
| 	"Open new chat": "Ouvrir un nouveau chat", | 	"Open new chat": "Ouvrir un nouveau chat", | ||||||
|  | @ -257,6 +260,7 @@ | ||||||
| 	"Share to OpenWebUI Community": "Partager avec la communauté OpenWebUI", | 	"Share to OpenWebUI Community": "Partager avec la communauté OpenWebUI", | ||||||
| 	"short-summary": "résumé court", | 	"short-summary": "résumé court", | ||||||
| 	"Show": "Montrer", | 	"Show": "Montrer", | ||||||
|  | 	"Show Additional Params": "Show Additional Params", | ||||||
| 	"Show shortcuts": "Afficher les raccourcis", | 	"Show shortcuts": "Afficher les raccourcis", | ||||||
| 	"sidebar": "barre latérale", | 	"sidebar": "barre latérale", | ||||||
| 	"Sign in": "Se connecter", | 	"Sign in": "Se connecter", | ||||||
|  | @ -282,12 +286,13 @@ | ||||||
| 	"Theme": "Thème", | 	"Theme": "Thème", | ||||||
| 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Cela garantit que vos précieuses conversations sont en sécurité dans votre base de données. Merci !", | 	"This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Cela garantit que vos précieuses conversations sont en sécurité dans votre base de données. Merci !", | ||||||
| 	"This setting does not sync across browsers or devices.": "Ce paramètre ne se synchronise pas entre les navigateurs ou les appareils.", | 	"This setting does not sync across browsers or devices.": "Ce paramètre ne se synchronise pas entre les navigateurs ou les appareils.", | ||||||
| 	"Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "", | 	"Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.", | ||||||
| 	"Title": "Titre", | 	"Title": "Titre", | ||||||
| 	"Title Auto-Generation": "Génération automatique de titre", | 	"Title Auto-Generation": "Génération automatique de titre", | ||||||
| 	"Title Generation Prompt": "Prompt de génération de titre", | 	"Title Generation Prompt": "Prompt de génération de titre", | ||||||
| 	"to": "à", | 	"to": "à", | ||||||
| 	"To access the available model names for downloading,": "Pour accéder aux noms de modèles disponibles pour le téléchargement,", | 	"To access the available model names for downloading,": "Pour accéder aux noms de modèles disponibles pour le téléchargement,", | ||||||
|  | 	"To access the GGUF models available for downloading,": "To access the GGUF models available for downloading,", | ||||||
| 	"Toggle settings": "Basculer les paramètres", | 	"Toggle settings": "Basculer les paramètres", | ||||||
| 	"Toggle sidebar": "Basculer la barre latérale", | 	"Toggle sidebar": "Basculer la barre latérale", | ||||||
| 	"Top K": "Top K", | 	"Top K": "Top K", | ||||||
|  | @ -295,8 +300,11 @@ | ||||||
| 	"Trouble accessing Ollama?": "Problèmes d'accès à Ollama ?", | 	"Trouble accessing Ollama?": "Problèmes d'accès à Ollama ?", | ||||||
| 	"TTS Settings": "Paramètres TTS", | 	"TTS Settings": "Paramètres TTS", | ||||||
| 	"Uh-oh! There was an issue connecting to {{provider}}.": "Uh-oh ! Il y a eu un problème de connexion à {{provider}}.", | 	"Uh-oh! There was an issue connecting to {{provider}}.": "Uh-oh ! Il y a eu un problème de connexion à {{provider}}.", | ||||||
| 	"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "", | 	"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Unknown File Type '{{file_type}}', but accepting and treating as plain text", | ||||||
|  | 	"Upload a GGUF model": "Upload a GGUF model", | ||||||
| 	"Upload files": "Téléverser des fichiers", | 	"Upload files": "Téléverser des fichiers", | ||||||
|  | 	"Upload Progress": "Upload Progress", | ||||||
|  | 	"URL Mode": "URL Mode", | ||||||
| 	"Use '#' in the prompt input to load and select your documents.": "Utilisez '#' dans l'entrée du prompt pour charger et sélectionner vos documents.", | 	"Use '#' in the prompt input to load and select your documents.": "Utilisez '#' dans l'entrée du prompt pour charger et sélectionner vos documents.", | ||||||
| 	"user": "Utilisateur", | 	"user": "Utilisateur", | ||||||
| 	"User Permissions": "Permissions d'utilisateur", | 	"User Permissions": "Permissions d'utilisateur", | ||||||
|  | @ -313,7 +321,7 @@ | ||||||
| 	"Whisper (Local)": "Chuchotement (Local)", | 	"Whisper (Local)": "Chuchotement (Local)", | ||||||
| 	"Write a prompt suggestion (e.g. Who are you?)": "Écrivez un prompt (e.x. Qui est-tu ?)", | 	"Write a prompt suggestion (e.g. Who are you?)": "Écrivez un prompt (e.x. Qui est-tu ?)", | ||||||
| 	"Write a summary in 50 words that summarizes [topic or keyword].": "Ecrivez un résumé en 50 mots [sujet ou mot-clé]", | 	"Write a summary in 50 words that summarizes [topic or keyword].": "Ecrivez un résumé en 50 mots [sujet ou mot-clé]", | ||||||
| 	"You": "", | 	"You": "You", | ||||||
| 	"You're a helpful assistant.": "Vous êtes un assistant utile", | 	"You're a helpful assistant.": "Vous êtes un assistant utile", | ||||||
| 	"You're now logged in.": "Vous êtes maintenant connecté." | 	"You're now logged in.": "Vous êtes maintenant connecté." | ||||||
| } | } | ||||||
|  |  | ||||||
|  | @ -21,7 +21,6 @@ | ||||||
| 	"admin": "Адмін", | 	"admin": "Адмін", | ||||||
| 	"Admin Panel": "Панель адміністратора", | 	"Admin Panel": "Панель адміністратора", | ||||||
| 	"Admin Settings": "Налаштування адміністратора", | 	"Admin Settings": "Налаштування адміністратора", | ||||||
| 	"Advanced": "Просунутий", |  | ||||||
| 	"Advanced Model Params": "Розширені параметри моделі", | 	"Advanced Model Params": "Розширені параметри моделі", | ||||||
| 	"Advanced Parameters": "Розширені параметри", | 	"Advanced Parameters": "Розширені параметри", | ||||||
| 	"all": "всі", | 	"all": "всі", | ||||||
|  | @ -35,7 +34,6 @@ | ||||||
| 	"API Key": "Ключ API", | 	"API Key": "Ключ API", | ||||||
| 	"API RPM": "API RPM", | 	"API RPM": "API RPM", | ||||||
| 	"are allowed - Activate this command by typing": "дозволено - активізуйте цю команду набором", | 	"are allowed - Activate this command by typing": "дозволено - активізуйте цю команду набором", | ||||||
| 	"assistant": "Асистент", |  | ||||||
| 	"Audio": "Аудіо", | 	"Audio": "Аудіо", | ||||||
| 	"Auto-playback response": "Автоматичне відтворення відповіді", | 	"Auto-playback response": "Автоматичне відтворення відповіді", | ||||||
| 	"Auto-send input after 3 sec.": "Автоматична відправка вводу через 3 сек.", | 	"Auto-send input after 3 sec.": "Автоматична відправка вводу через 3 сек.", | ||||||
|  | @ -119,9 +117,6 @@ | ||||||
| 	"Enable Chat History": "Увімкнути історію чату", | 	"Enable Chat History": "Увімкнути історію чату", | ||||||
| 	"Enable New Sign Ups": "Дозволити нові реєстрації", | 	"Enable New Sign Ups": "Дозволити нові реєстрації", | ||||||
| 	"Enabled": "Увімкнено", | 	"Enabled": "Увімкнено", | ||||||
| 	"Enter a user message here": "Введіть тут своє повідомлення", |  | ||||||
| 	"Enter an assistant message here": "Введіть тут повідомлення асистенту", |  | ||||||
| 	"Enter OpenAI API Key": "Введіть ключ API OpenAI", |  | ||||||
| 	"Enter stop sequence": "Введіть символ зупинки", | 	"Enter stop sequence": "Введіть символ зупинки", | ||||||
| 	"Enter Your Email": "Введіть вашу електронну пошту", | 	"Enter Your Email": "Введіть вашу електронну пошту", | ||||||
| 	"Enter Your Full Name": "Введіть ваше повне ім'я", | 	"Enter Your Full Name": "Введіть ваше повне ім'я", | ||||||
|  | @ -143,6 +138,7 @@ | ||||||
| 	"General Settings": "Загальні налаштування", | 	"General Settings": "Загальні налаштування", | ||||||
| 	"Hello, {{name}}": "Привіт, {{name}}", | 	"Hello, {{name}}": "Привіт, {{name}}", | ||||||
| 	"Hide": "Приховати", | 	"Hide": "Приховати", | ||||||
|  | 	"Hide Additional Params": "Hide Additional Params", | ||||||
| 	"How can I help you today?": "Як я можу допомогти вам сьогодні?", | 	"How can I help you today?": "Як я можу допомогти вам сьогодні?", | ||||||
| 	"Image Generation (Experimental)": "Генерування зображень (експериментально)", | 	"Image Generation (Experimental)": "Генерування зображень (експериментально)", | ||||||
| 	"Image Settings": "Налаштування зображення", | 	"Image Settings": "Налаштування зображення", | ||||||
|  | @ -200,7 +196,6 @@ | ||||||
| 	"Not sure what to write? Switch to": "Не впевнений, що писати? Переключитися на", | 	"Not sure what to write? Switch to": "Не впевнений, що писати? Переключитися на", | ||||||
| 	"Off": "Вимк", | 	"Off": "Вимк", | ||||||
| 	"Okay, Let's Go!": "Гаразд, давайте почнемо!", | 	"Okay, Let's Go!": "Гаразд, давайте почнемо!", | ||||||
| 	"Ollama API URL": "Ollama API URL", |  | ||||||
| 	"Ollama Version": "Версія Ollama", | 	"Ollama Version": "Версія Ollama", | ||||||
| 	"On": "Увімк", | 	"On": "Увімк", | ||||||
| 	"Only": "Тільки", | 	"Only": "Тільки", | ||||||
|  | @ -265,6 +260,7 @@ | ||||||
| 	"Share to OpenWebUI Community": "Поділитися зі спільнотою OpenWebUI", | 	"Share to OpenWebUI Community": "Поділитися зі спільнотою OpenWebUI", | ||||||
| 	"short-summary": "короткий зміст", | 	"short-summary": "короткий зміст", | ||||||
| 	"Show": "Показати", | 	"Show": "Показати", | ||||||
|  | 	"Show Additional Params": "Show Additional Params", | ||||||
| 	"Show shortcuts": "Показати клавіатурні скорочення", | 	"Show shortcuts": "Показати клавіатурні скорочення", | ||||||
| 	"sidebar": "бокова панель", | 	"sidebar": "бокова панель", | ||||||
| 	"Sign in": "Увійти", | 	"Sign in": "Увійти", | ||||||
|  | @ -290,13 +286,13 @@ | ||||||
| 	"Theme": "Тема", | 	"Theme": "Тема", | ||||||
| 	"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!": "Це забезпечує збереження ваших цінних розмов у безпечному бекенд-сховищі. Дякуємо!", | ||||||
| 	"This setting does not sync across browsers or devices.": "Це налаштування не синхронізується між браузерами або пристроями.", | 	"This setting does not sync across browsers or devices.": "Це налаштування не синхронізується між браузерами або пристроями.", | ||||||
| 	"Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "", | 	"Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.": "Tip: Update multiple variable slots consecutively by pressing the tab key in the chat input after each replacement.", | ||||||
| 	"Title": "Заголовок", | 	"Title": "Заголовок", | ||||||
| 	"Title Auto-Generation": "Автогенерація заголовків", | 	"Title Auto-Generation": "Автогенерація заголовків", | ||||||
| 	"Title Generation Prompt": "Запит на генерування заголовків", | 	"Title Generation Prompt": "Запит на генерування заголовків", | ||||||
| 	"to": "до", | 	"to": "до", | ||||||
| 	"To access the available model names for downloading,": "Щоб отримати доступ до назв доступних для завантаження моделей,", | 	"To access the available model names for downloading,": "Щоб отримати доступ до назв доступних для завантаження моделей,", | ||||||
| 	"to chat input.": "для вводу в чат.", | 	"To access the GGUF models available for downloading,": "To access the GGUF models available for downloading,", | ||||||
| 	"Toggle settings": "Переключити налаштування", | 	"Toggle settings": "Переключити налаштування", | ||||||
| 	"Toggle sidebar": "Переключити бокову панель", | 	"Toggle sidebar": "Переключити бокову панель", | ||||||
| 	"Top K": "Top K", | 	"Top K": "Top K", | ||||||
|  | @ -304,8 +300,8 @@ | ||||||
| 	"Trouble accessing Ollama?": "Проблеми з доступом до Ollama?", | 	"Trouble accessing Ollama?": "Проблеми з доступом до Ollama?", | ||||||
| 	"TTS Settings": "Налаштування TTS", | 	"TTS Settings": "Налаштування TTS", | ||||||
| 	"Uh-oh! There was an issue connecting to {{provider}}.": "Ой! Виникла проблема при підключенні до {{provider}}.", | 	"Uh-oh! There was an issue connecting to {{provider}}.": "Ой! Виникла проблема при підключенні до {{provider}}.", | ||||||
| 	"Upload a GGUF model": "Завантажити GGUF модель", |  | ||||||
| 	"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Невідомий тип файлу '{{file_type}}', але приймається та обробляється як звичайний текст", | 	"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Невідомий тип файлу '{{file_type}}', але приймається та обробляється як звичайний текст", | ||||||
|  | 	"Upload a GGUF model": "Завантажити GGUF модель", | ||||||
| 	"Upload files": "Завантажити файли", | 	"Upload files": "Завантажити файли", | ||||||
| 	"Upload Progress": "Прогрес завантаження", | 	"Upload Progress": "Прогрес завантаження", | ||||||
| 	"URL Mode": "Режим URL", | 	"URL Mode": "Режим URL", | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue