chore: format

This commit is contained in:
Timothy Jaeryang Baek 2026-01-09 19:46:32 +04:00
parent f4d99135e4
commit 636ba171a4
64 changed files with 245 additions and 109 deletions

View file

@ -6,7 +6,6 @@
import Leaderboard from './Evaluations/Leaderboard.svelte';
import Feedbacks from './Evaluations/Feedbacks.svelte';
const i18n = getContext('i18n');
let selectedTab;

View file

@ -45,9 +45,7 @@
loading = true;
try {
const result = await getLeaderboard(localStorage.token, searchQuery);
const statsMap = new Map(
(result?.entries ?? []).map((e) => [e.model_id, e])
);
const statsMap = new Map((result?.entries ?? []).map((e) => [e.model_id, e]));
rankedModels = $models
.filter((m) => m?.owned_by !== 'arena' && !m?.info?.meta?.hidden)
@ -106,7 +104,9 @@
<ModelModal bind:show={showModal} model={selectedModel} onClose={closeModal} />
<div class="pt-0.5 pb-1 gap-1 flex flex-col md:flex-row justify-between sticky top-0 z-10 bg-white dark:bg-gray-900">
<div
class="pt-0.5 pb-1 gap-1 flex flex-col md:flex-row justify-between sticky top-0 z-10 bg-white dark:bg-gray-900"
>
<div class="flex items-center text-xl font-medium px-0.5 gap-2 shrink-0">
{$i18n.t('Leaderboard')}
<span class="text-lg text-gray-500">{rankedModels.length}</span>
@ -123,9 +123,13 @@
</Tooltip>
</div>
<div class="scrollbar-hidden relative whitespace-nowrap overflow-x-auto max-w-full rounded-sm min-h-[100px]">
<div
class="scrollbar-hidden relative whitespace-nowrap overflow-x-auto max-w-full rounded-sm min-h-[100px]"
>
{#if loading}
<div class="absolute inset-0 flex items-center justify-center z-10 bg-white/50 dark:bg-gray-900/50">
<div
class="absolute inset-0 flex items-center justify-center z-10 bg-white/50 dark:bg-gray-900/50"
>
<Spinner className="size-5" />
</div>
{/if}
@ -133,25 +137,27 @@
{#if !rankedModels.length && !loading}
<div class="text-center text-xs text-gray-500 py-1">{$i18n.t('No models found')}</div>
{:else if rankedModels.length}
<table class="w-full text-sm text-left text-gray-500 dark:text-gray-400 {loading ? 'opacity-20' : ''}">
<table
class="w-full text-sm text-left text-gray-500 dark:text-gray-400 {loading
? 'opacity-20'
: ''}"
>
<thead class="text-xs text-gray-800 uppercase bg-transparent dark:text-gray-200">
<tr class="border-b-[1.5px] border-gray-50 dark:border-gray-850/30">
{#each [
{ key: 'rating', label: 'RK', class: 'w-3' },
{ key: 'name', label: 'Model', class: '' },
{ key: 'rating', label: 'Rating', class: 'text-right w-fit' },
{ key: 'won', label: 'Won', class: 'text-right w-5' },
{ key: 'lost', label: 'Lost', class: 'text-right w-5' }
] as col}
{#each [{ key: 'rating', label: 'RK', class: 'w-3' }, { key: 'name', label: 'Model', class: '' }, { key: 'rating', label: 'Rating', class: 'text-right w-fit' }, { key: 'won', label: 'Won', class: 'text-right w-5' }, { key: 'lost', label: 'Lost', class: 'text-right w-5' }] as col}
<th
scope="col"
class="px-2.5 py-2 cursor-pointer select-none {col.class}"
on:click={() => toggleSort(col.key)}
>
<div class="flex gap-1.5 items-center {col.class.includes('right') ? 'justify-end' : ''}">
<div
class="flex gap-1.5 items-center {col.class.includes('right') ? 'justify-end' : ''}"
>
{$i18n.t(col.label)}
{#if orderBy === col.key}
{#if direction === 'asc'}<ChevronUp className="size-2" />{:else}<ChevronDown className="size-2" />{/if}
{#if direction === 'asc'}<ChevronUp className="size-2" />{:else}<ChevronDown
className="size-2"
/>{/if}
{:else}
<span class="invisible"><ChevronUp className="size-2" /></span>
{/if}
@ -184,13 +190,17 @@
</td>
<td class="px-3 py-1.5 text-right font-medium text-green-500 w-10">
{#if model.stats.won === '-'}-{:else}
<span class="hidden group-hover:inline">{((Number(model.stats.won) / model.stats.count) * 100).toFixed(1)}%</span>
<span class="hidden group-hover:inline"
>{((Number(model.stats.won) / model.stats.count) * 100).toFixed(1)}%</span
>
<span class="group-hover:hidden">{model.stats.won}</span>
{/if}
</td>
<td class="px-3 py-1.5 text-right font-medium text-red-500 w-10">
{#if model.stats.lost === '-'}-{:else}
<span class="hidden group-hover:inline">{((Number(model.stats.lost) / model.stats.count) * 100).toFixed(1)}%</span>
<span class="hidden group-hover:inline"
>{((Number(model.stats.lost) / model.stats.count) * 100).toFixed(1)}%</span
>
<span class="group-hover:hidden">{model.stats.lost}</span>
{/if}
</td>
@ -204,8 +214,12 @@
<div class="text-gray-500 text-xs mt-1.5 w-full flex justify-end">
<div class="text-right">
<div class="line-clamp-1">
{$i18n.t('The evaluation leaderboard is based on the Elo rating system and is updated in real-time.')}
{$i18n.t(
'The evaluation leaderboard is based on the Elo rating system and is updated in real-time.'
)}
</div>
{$i18n.t('The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.')}
{$i18n.t(
'The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.'
)}
</div>
</div>

View file

@ -386,10 +386,7 @@
clearInterval(getVoicesLoop);
const voiceId = getVoiceId();
const voice =
voices
?.filter((v) => v.voiceURI === voiceId)
?.at(0) ?? undefined;
const voice = voices?.filter((v) => v.voiceURI === voiceId)?.at(0) ?? undefined;
currentUtterance = new SpeechSynthesisUtterance(content);
currentUtterance.rate = $settings.audio?.tts?.playbackRate ?? 1;
@ -494,14 +491,12 @@
audioCache.set(content, new Audio(url));
}
} else if ($config.audio.tts.engine !== '') {
const res = await synthesizeOpenAISpeech(
localStorage.token,
getVoiceId(),
content
).catch((error) => {
console.error(error);
return null;
});
const res = await synthesizeOpenAISpeech(localStorage.token, getVoiceId(), content).catch(
(error) => {
console.error(error);
return null;
}
);
if (res) {
const blob = await res.blob();

View file

@ -55,11 +55,23 @@
<HtmlToken {id} {token} {onSourceClick} />
{:else if token.type === 'link'}
{#if token.tokens}
<a href={token.href} target="_blank" rel="nofollow" title={token.title} on:click={(e) => handleLinkClick(e, token.href)}>
<a
href={token.href}
target="_blank"
rel="nofollow"
title={token.title}
on:click={(e) => handleLinkClick(e, token.href)}
>
<svelte:self id={`${id}-a`} tokens={token.tokens} {onSourceClick} {done} />
</a>
{:else}
<a href={token.href} target="_blank" rel="nofollow" title={token.title} on:click={(e) => handleLinkClick(e, token.href)}>{token.text}</a>
<a
href={token.href}
target="_blank"
rel="nofollow"
title={token.title}
on:click={(e) => handleLinkClick(e, token.href)}>{token.text}</a
>
{/if}
{:else if token.type === 'image'}
<Image src={token.href} alt={token.text} />

View file

@ -228,10 +228,7 @@
clearInterval(getVoicesLoop);
const voiceId = getVoiceId();
const voice =
voices
?.filter((v) => v.voiceURI === voiceId)
?.at(0) ?? undefined;
const voice = voices?.filter((v) => v.voiceURI === voiceId)?.at(0) ?? undefined;
console.log(voice);
@ -312,17 +309,15 @@
}
} else {
for (const [idx, sentence] of messageContentParts.entries()) {
const res = await synthesizeOpenAISpeech(
localStorage.token,
voiceId,
sentence
).catch((error) => {
console.error(error);
toast.error(`${error}`);
const res = await synthesizeOpenAISpeech(localStorage.token, voiceId, sentence).catch(
(error) => {
console.error(error);
toast.error(`${error}`);
speaking = false;
loadingSpeech = false;
});
speaking = false;
loadingSpeech = false;
}
);
if (res && speaking) {
const blob = await res.blob();
@ -336,7 +331,6 @@
}
};
let preprocessedDetailsCache = [];
function preprocessForEditing(content: string): string {

View file

@ -519,6 +519,7 @@
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. about the Roman Empire": "",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -782,6 +783,7 @@
"File": "",
"File added successfully.": "",
"File content updated successfully.": "",
"File Context": "",
"File Mode": "وضع الملف",
"File not found.": "لم يتم العثور على الملف.",
"File removed successfully.": "",
@ -937,6 +939,7 @@
"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.": "",
"Info": "معلومات",
"Initials": "",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "",
"Input Key (e.g. text, unet_name, steps)": "",
@ -1429,7 +1432,6 @@
"Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "",
"Rich Text Input for Chat": "",
"RK": "",
"Role": "منصب",
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",

View file

@ -519,6 +519,7 @@
"e.g. 60": "مثال: 60",
"e.g. A filter to remove profanity from text": "مثال: مرشح لإزالة الألفاظ النابية من النص",
"e.g. about the Roman Empire": "",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "",
"e.g. My Filter": "مثال: مرشحي",
"e.g. My Tools": "مثال: أدواتي",
@ -782,6 +783,7 @@
"File": "ملف",
"File added successfully.": "تم إضافة الملف بنجاح.",
"File content updated successfully.": "تم تحديث محتوى الملف بنجاح.",
"File Context": "",
"File Mode": "وضع الملف",
"File not found.": "لم يتم العثور على الملف.",
"File removed successfully.": "تم حذف الملف بنجاح.",
@ -937,6 +939,7 @@
"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.": "يؤثر على سرعة استجابة الخوارزمية للتغذية الراجعة من النص المُولد. معدل تعلم منخفض يؤدي إلى تعديلات أبطأ، بينما معدل أعلى يجعلها أكثر استجابة.",
"Info": "معلومات",
"Initials": "",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "",
"Input Key (e.g. text, unet_name, steps)": "",
@ -1429,7 +1432,6 @@
"Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "",
"Rich Text Input for Chat": "إدخال نص منسق للمحادثة",
"RK": "RK",
"Role": "منصب",
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",

View file

@ -519,6 +519,7 @@
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "напр. Филтър за премахване на нецензурни думи от текста",
"e.g. about the Roman Empire": "",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "",
"e.g. My Filter": "напр. Моят филтър",
"e.g. My Tools": "напр. Моите инструменти",
@ -782,6 +783,7 @@
"File": "Файл",
"File added successfully.": "Файлът е добавен успешно.",
"File content updated successfully.": "Съдържанието на файла е актуализирано успешно.",
"File Context": "",
"File Mode": "Файлов режим",
"File not found.": "Файл не е намерен.",
"File removed successfully.": "Файлът е премахнат успешно.",
@ -937,6 +939,7 @@
"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.": "",
"Info": "Информация",
"Initials": "",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "",
"Input Key (e.g. text, unet_name, steps)": "",
@ -1425,7 +1428,6 @@
"Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "",
"Rich Text Input for Chat": "Богат текстов вход за чат",
"RK": "RK",
"Role": "Роля",
"Rosé Pine": "Rose pine",
"Rosé Pine Dawn": "Rose pine Dawn",

View file

@ -519,6 +519,7 @@
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. about the Roman Empire": "",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -782,6 +783,7 @@
"File": "",
"File added successfully.": "",
"File content updated successfully.": "",
"File Context": "",
"File Mode": "ফাইল মোড",
"File not found.": "ফাইল পাওয়া যায়নি",
"File removed successfully.": "",
@ -937,6 +939,7 @@
"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.": "",
"Info": "তথ্য",
"Initials": "",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "",
"Input Key (e.g. text, unet_name, steps)": "",
@ -1425,7 +1428,6 @@
"Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "",
"Rich Text Input for Chat": "",
"RK": "",
"Role": "পদবি",
"Rosé Pine": "রোজ পাইন",
"Rosé Pine Dawn": "ভোরের রোজ পাইন",

View file

@ -519,6 +519,7 @@
"e.g. 60": "དཔེར་ན། ༦༠",
"e.g. A filter to remove profanity from text": "དཔེར་ན། ཡིག་རྐྱང་ནས་ཚིག་རྩུབ་འདོར་བྱེད་ཀྱི་འཚག་མ།",
"e.g. about the Roman Empire": "",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "",
"e.g. My Filter": "དཔེར་ན། ངའི་འཚག་མ།",
"e.g. My Tools": "དཔེར་ན། ངའི་ལག་ཆ།",
@ -782,6 +783,7 @@
"File": "ཡིག་ཆ།",
"File added successfully.": "ཡིག་ཆ་ལེགས་པར་བསྣན་ཟིན།",
"File content updated successfully.": "ཡིག་ཆའི་ནང་དོན་ལེགས་པར་གསར་སྒྱུར་བྱས་ཟིན།",
"File Context": "",
"File Mode": "ཡིག་ཆའི་མ་དཔེ།",
"File not found.": "ཡིག་ཆ་མ་རྙེད།",
"File removed successfully.": "ཡིག་ཆ་ལེགས་པར་བསུབས་ཟིན།",
@ -937,6 +939,7 @@
"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.": "བཟོས་པའི་ཡིག་རྐྱང་ནས་ཐོན་པའི་བསམ་འཆར་ལ་ཨང་རྩིས་ཀྱིས་ཇི་ཙམ་མགྱོགས་པོར་ལན་འདེབས་བྱེད་པར་ཤུགས་རྐྱེན་ཐེབས་པ། སྦྱོང་ཚད་དམའ་བས་ལེགས་སྒྲིག་དལ་བ་ཡོང་ངེས། དེ་བཞིན་དུ་སྦྱོང་ཚད་མཐོ་བས་ཨང་རྩིས་དེ་ལན་འདེབས་ཆེ་བ་བཟོ་ངེས།",
"Info": "གནས་ཚུལ།",
"Initials": "",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "ནང་དོན་ཆ་ཚང་དེ་ནང་དོན་དུ་བཅུག་ནས་སྒྲུབ་རིམ་ཆ་ཚང་བྱེད་པ། འདི་ནི་འདྲི་བ་རྙོག་འཛིང་ཅན་གྱི་ཆེད་དུ་འོས་སྦྱོར་བྱེད།",
"Input": "",
"Input Key (e.g. text, unet_name, steps)": "",
@ -1424,7 +1427,6 @@
"Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "",
"Rich Text Input for Chat": "ཁ་བརྡའི་ཆེད་དུ་ཡིག་རྐྱང་ཕུན་སུམ་ཚོགས་པའི་ནང་འཇུག",
"RK": "RK",
"Role": "གནས་ཚད།",
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",

View file

@ -519,6 +519,7 @@
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. about the Roman Empire": "",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -782,6 +783,7 @@
"File": "",
"File added successfully.": "",
"File content updated successfully.": "",
"File Context": "",
"File Mode": "Način datoteke",
"File not found.": "Datoteka nije pronađena.",
"File removed successfully.": "",
@ -937,6 +939,7 @@
"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.": "",
"Info": "Informacije",
"Initials": "",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "",
"Input Key (e.g. text, unet_name, steps)": "",
@ -1426,7 +1429,6 @@
"Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "",
"Rich Text Input for Chat": "",
"RK": "",
"Role": "Uloga",
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",

View file

@ -519,6 +519,7 @@
"e.g. 60": "p. ex. 60",
"e.g. A filter to remove profanity from text": "p. ex. Un filtre per eliminar paraules malsonants del text",
"e.g. about the Roman Empire": "p. ex. sobre l'imperi Romà",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "p. ex. en",
"e.g. My Filter": "p. ex. El meu filtre",
"e.g. My Tools": "p. ex. Les meves eines",
@ -782,6 +783,7 @@
"File": "Arxiu",
"File added successfully.": "L'arxiu s'ha afegit correctament.",
"File content updated successfully.": "El contingut de l'arxiu s'ha actualitzat correctament.",
"File Context": "",
"File Mode": "Mode d'arxiu",
"File not found.": "No s'ha trobat l'arxiu.",
"File removed successfully.": "Arxiu eliminat correctament.",
@ -937,6 +939,7 @@
"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.": "Influeix amb la rapidesa amb què l'algoritme respon als comentaris del text generat. Una taxa d'aprenentatge més baixa donarà lloc a ajustos més lents, mentre que una taxa d'aprenentatge més alta farà que l'algorisme sigui més sensible.",
"Info": "Informació",
"Initials": "Inicials",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Injectar tot el contingut com a context per a un processament complet, això es recomana per a consultes complexes.",
"Input": "Entrada",
"Input Key (e.g. text, unet_name, steps)": "Entra la clau (p. ex. text, unet_name, steps)",
@ -1426,7 +1429,6 @@
"Retrieved {{count}} sources_other": "S'han obtingut {{count}} sources_other",
"Retrieved 1 source": "S'ha obtingut una font",
"Rich Text Input for Chat": "Entrada de text ric per al xat",
"RK": "RK",
"Role": "Rol",
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Albada Rosé Pine",

View file

@ -519,6 +519,7 @@
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. about the Roman Empire": "",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -782,6 +783,7 @@
"File": "",
"File added successfully.": "",
"File content updated successfully.": "",
"File Context": "",
"File Mode": "File mode",
"File not found.": "Wala makit-an ang file.",
"File removed successfully.": "",
@ -937,6 +939,7 @@
"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.": "",
"Info": "",
"Initials": "",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "",
"Input Key (e.g. text, unet_name, steps)": "",
@ -1425,7 +1428,6 @@
"Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "",
"Rich Text Input for Chat": "",
"RK": "",
"Role": "Papel",
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Aube Pine Rosé",

View file

@ -519,6 +519,7 @@
"e.g. 60": "např. 60",
"e.g. A filter to remove profanity from text": "např. Filtr pro odstranění vulgarismů z textu",
"e.g. about the Roman Empire": "",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "např. cs",
"e.g. My Filter": "např. Můj filtr",
"e.g. My Tools": "např. Moje nástroje",
@ -782,6 +783,7 @@
"File": "Soubor",
"File added successfully.": "Soubor byl úspěšně přidán.",
"File content updated successfully.": "Obsah souboru byl úspěšně aktualizován.",
"File Context": "",
"File Mode": "Režim souboru",
"File not found.": "Soubor nenalezen.",
"File removed successfully.": "Soubor byl úspěšně odstraněn.",
@ -937,6 +939,7 @@
"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.": "Ovlivňuje, jak rychle algoritmus reaguje na zpětnou vazbu z generovaného textu. Nižší míra učení povede k pomalejším úpravám, zatímco vyšší míra učení učiní algoritmus citlivějším.",
"Info": "Info",
"Initials": "",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Vložit celý obsah jako kontext pro komplexní zpracování, doporučeno pro složité dotazy.",
"Input": "Vstup",
"Input Key (e.g. text, unet_name, steps)": "Vstupní klíč (např. text, unet_name, steps)",
@ -1427,7 +1430,6 @@
"Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "",
"Rich Text Input for Chat": "Pokročilé formátování vstupního pole konverzace",
"RK": "RK",
"Role": "Role",
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",

View file

@ -519,6 +519,7 @@
"e.g. 60": "f.eks. 60",
"e.g. A filter to remove profanity from text": "f.eks. Et filter til at fjerne upassende ord fra tekst",
"e.g. about the Roman Empire": "f.eks. om Romerriget",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "f.eks. en",
"e.g. My Filter": "f.eks. Mit Filter",
"e.g. My Tools": "f.eks. Mine Værktøjer",
@ -782,6 +783,7 @@
"File": "Fil",
"File added successfully.": "Fil tilføjet.",
"File content updated successfully.": "Filens indhold er opdateret.",
"File Context": "",
"File Mode": "Filtilstand",
"File not found.": "Filen blev ikke fundet.",
"File removed successfully.": "Fil fjernet.",
@ -937,6 +939,7 @@
"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.": "Påvirker hvor hurtigt algoritmen reagerer på feedback fra den genererede tekst. En lavere indlæringshastighed vil resultere i langsommere justeringer, mens en højere indlæringshastighed vil gøre algoritmen mere responsiv.",
"Info": "Info",
"Initials": "Initialer",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Injicer alt indhold som kontekst til omfattende behandling, dette anbefales til komplekse forespørgsler.",
"Input": "Input",
"Input Key (e.g. text, unet_name, steps)": "Inputnøgler (f.eks. text, unet_name, steps)",
@ -1425,7 +1428,6 @@
"Retrieved {{count}} sources_other": "Fandt {{count}} kildehenvisninger",
"Retrieved 1 source": "Fandt en kildehenvisning",
"Rich Text Input for Chat": "Rich text input til chat",
"RK": "RK",
"Role": "Rolle",
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",

View file

@ -519,6 +519,7 @@
"e.g. 60": "z. B. 60",
"e.g. A filter to remove profanity from text": "z. B. Ein Filter zum Entfernen von Schimpfwörtern",
"e.g. about the Roman Empire": "z. B. über das Römische Reich",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "z. B. de",
"e.g. My Filter": "z. B. Mein Filter",
"e.g. My Tools": "z. B. Meine Werkzeuge",
@ -782,6 +783,7 @@
"File": "Datei",
"File added successfully.": "Datei erfolgreich hinzugefügt.",
"File content updated successfully.": "Dateiinhalt erfolgreich aktualisiert.",
"File Context": "",
"File Mode": "Datei-Modus",
"File not found.": "Datei nicht gefunden.",
"File removed successfully.": "Datei erfolgreich entfernt.",
@ -937,6 +939,7 @@
"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.": "Beeinflusst, wie schnell der Algorithmus auf Feedback aus dem generierten Text reagiert. Eine niedrigere Lernrate führt zu langsameren Anpassungen, während eine höhere Lernrate den Algorithmus reaktionsschneller macht.",
"Info": "Info",
"Initials": "Initialen",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Gesamten Inhalt als Kontext für umfassende Verarbeitung einfügen; dies wird für komplexe Abfragen empfohlen.",
"Input": "Eingabe",
"Input Key (e.g. text, unet_name, steps)": "Eingabeschlüssel (z. B. text, unet_name, steps)",
@ -1425,7 +1428,6 @@
"Retrieved {{count}} sources_other": "{{count}} Quellen abgerufen",
"Retrieved 1 source": "1 Quelle abgerufen",
"Rich Text Input for Chat": "Rich-Text-Eingabe für Chat",
"RK": "RK",
"Role": "Rolle",
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",

View file

@ -519,6 +519,7 @@
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. about the Roman Empire": "",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -782,6 +783,7 @@
"File": "",
"File added successfully.": "",
"File content updated successfully.": "",
"File Context": "",
"File Mode": "Bark Mode",
"File not found.": "Bark not found.",
"File removed successfully.": "",
@ -937,6 +939,7 @@
"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.": "",
"Info": "",
"Initials": "",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "",
"Input Key (e.g. text, unet_name, steps)": "",
@ -1425,7 +1428,6 @@
"Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "",
"Rich Text Input for Chat": "",
"RK": "",
"Role": "Role",
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",

View file

@ -519,6 +519,7 @@
"e.g. 60": "π.χ. 60",
"e.g. A filter to remove profanity from text": "π.χ. Ένα φίλτρο για να αφαιρέσετε βρισιές από το κείμενο",
"e.g. about the Roman Empire": "",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "π.χ. en",
"e.g. My Filter": "π.χ. Το Φίλτρο Μου",
"e.g. My Tools": "π.χ. Τα Εργαλεία Μου",
@ -782,6 +783,7 @@
"File": "Αρχείο",
"File added successfully.": "Το αρχείο προστέθηκε με επιτυχία.",
"File content updated successfully.": "Το περιεχόμενο του αρχείου ενημερώθηκε με επιτυχία.",
"File Context": "",
"File Mode": "Λειτουργία Αρχείου",
"File not found.": "Αρχείο δεν βρέθηκε.",
"File removed successfully.": "Το αρχείο αφαιρέθηκε με επιτυχία.",
@ -937,6 +939,7 @@
"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.": "",
"Info": "Πληροφορίες",
"Initials": "",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Εισάγετε ολόκληρο το περιεχόμενο ως συμφραζόμενο για ολοκληρωμένη επεξεργασία. Αυτό συνιστάται για σύνθετα ερωτήματα.",
"Input": "",
"Input Key (e.g. text, unet_name, steps)": "",
@ -1425,7 +1428,6 @@
"Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "",
"Rich Text Input for Chat": "Πλούσιο Εισαγωγή Κειμένου για Συνομιλία",
"RK": "",
"Role": "Ρόλος",
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",

View file

@ -519,6 +519,7 @@
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. about the Roman Empire": "",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -782,6 +783,7 @@
"File": "",
"File added successfully.": "",
"File content updated successfully.": "",
"File Context": "",
"File Mode": "",
"File not found.": "",
"File removed successfully.": "",
@ -937,6 +939,7 @@
"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.": "",
"Info": "",
"Initials": "",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "",
"Input Key (e.g. text, unet_name, steps)": "",
@ -1425,7 +1428,6 @@
"Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "",
"Rich Text Input for Chat": "",
"RK": "",
"Role": "",
"Rosé Pine": "",
"Rosé Pine Dawn": "",

View file

@ -519,6 +519,7 @@
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. about the Roman Empire": "",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -782,6 +783,7 @@
"File": "",
"File added successfully.": "",
"File content updated successfully.": "",
"File Context": "",
"File Mode": "",
"File not found.": "",
"File removed successfully.": "",
@ -937,6 +939,7 @@
"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.": "",
"Info": "",
"Initials": "",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "",
"Input Key (e.g. text, unet_name, steps)": "",
@ -1425,7 +1428,6 @@
"Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "",
"Rich Text Input for Chat": "",
"RK": "",
"Role": "",
"Rosé Pine": "",
"Rosé Pine Dawn": "",

View file

@ -519,6 +519,7 @@
"e.g. 60": "p.ej. 60",
"e.g. A filter to remove profanity from text": "p.ej. Un filtro para eliminar malas palabras del texto",
"e.g. about the Roman Empire": "p.ej. sobre el imperio romano",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "p.ej. es",
"e.g. My Filter": "p.ej. Mi Filtro",
"e.g. My Tools": "p.ej. Mis Herramientas",
@ -782,6 +783,7 @@
"File": "Archivo",
"File added successfully.": "Archivo añadido correctamente.",
"File content updated successfully.": "Contenido del archivo actualizado correctamente.",
"File Context": "",
"File Mode": "Modo de Archivo",
"File not found.": "Archivo no encontrado.",
"File removed successfully.": "Archivo eliminado correctamente.",
@ -937,6 +939,7 @@
"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.": "Influye en la rápidez de respuesta a la realimentación desde el texto generado. Una tasa de aprendizaje más baja resulta en un ajustado más lento, mientras que una tasa de aprendizaje más alta hará que el algoritmo sea más reactivo.",
"Info": "Información",
"Initials": "Iniciales",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Inyecta el contenido completo como contexto para un procesado comprensivo, recomendado para consultas complejas.",
"Input": "Entrada",
"Input Key (e.g. text, unet_name, steps)": "Ingresa Clave (ej. text, unet_name. steps)",
@ -1426,7 +1429,6 @@
"Retrieved {{count}} sources_other": "Recuperadas {{count}} otras fuentes",
"Retrieved 1 source": "Recuperada una fuente",
"Rich Text Input for Chat": "Entrada de Texto Enriquecido para el Chat",
"RK": "RK",
"Role": "Rol",
"Rosé Pine": "Pino Rosa",
"Rosé Pine Dawn": "Pino Rosa Amanecer",

View file

@ -519,6 +519,7 @@
"e.g. 60": "nt 60",
"e.g. A filter to remove profanity from text": "nt filter, mis eemaldab tekstist roppused",
"e.g. about the Roman Empire": "",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "nt en",
"e.g. My Filter": "nt Minu Filter",
"e.g. My Tools": "nt Minu Tööriistad",
@ -782,6 +783,7 @@
"File": "Fail",
"File added successfully.": "Fail edukalt lisatud.",
"File content updated successfully.": "Faili sisu edukalt uuendatud.",
"File Context": "",
"File Mode": "Faili režiim",
"File not found.": "Faili ei leitud.",
"File removed successfully.": "Fail edukalt eemaldatud.",
@ -937,6 +939,7 @@
"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.": "Mõjutab, kui kiiresti algoritm reageerib genereeritud teksti tagasisidele. Madalam õppimiskiirus annab tulemuseks aeglasemad kohandused, samas kui kõrgem õppimiskiirus muudab algoritmi tundlikumaks.",
"Info": "Info",
"Initials": "Initsiaalid",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Inject the entire content as context for comprehensive processing, this is recommended for complex queries.",
"Input": "Sisend",
"Input Key (e.g. text, unet_name, steps)": "Input Võti (e.g. text, unet_name, steps)",
@ -1425,7 +1428,6 @@
"Retrieved {{count}} sources_other": "Retrieved {{count}} allikad_other",
"Retrieved 1 source": "Retrieved 1 allikas",
"Rich Text Input for Chat": "Rikasteksti sisend vestluse jaoks",
"RK": "RK",
"Role": "Roll",
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",

View file

@ -519,6 +519,7 @@
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "adib. Testutik lizunkeriak kentzeko iragazki bat",
"e.g. about the Roman Empire": "",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "",
"e.g. My Filter": "adib. Nire Iragazkia",
"e.g. My Tools": "adib. Nire Tresnak",
@ -782,6 +783,7 @@
"File": "Fitxategia",
"File added successfully.": "Fitxategia ongi gehitu da.",
"File content updated successfully.": "Fitxategiaren edukia ongi eguneratu da.",
"File Context": "",
"File Mode": "Fitxategi Modua",
"File not found.": "Ez da fitxategia aurkitu.",
"File removed successfully.": "Fitxategia ongi ezabatu da.",
@ -937,6 +939,7 @@
"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.": "",
"Info": "Informazioa",
"Initials": "",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "",
"Input Key (e.g. text, unet_name, steps)": "",
@ -1425,7 +1428,6 @@
"Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "",
"Rich Text Input for Chat": "Testu aberastuko sarrera txaterako",
"RK": "RK",
"Role": "Rola",
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",

View file

@ -519,6 +519,7 @@
"e.g. 60": "مثلا 60",
"e.g. A filter to remove profanity from text": "مثلا فیلتری برای حذف ناسزا از متن",
"e.g. about the Roman Empire": "",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "مثلاً en",
"e.g. My Filter": "مثلا فیلتر من",
"e.g. My Tools": "مثلا ابزارهای من",
@ -782,6 +783,7 @@
"File": "پرونده",
"File added successfully.": "پرونده با موفقیت افزوده شد.",
"File content updated successfully.": "محتوای پرونده با موفقیت به\u200cروز شد.",
"File Context": "",
"File Mode": "حالت پرونده",
"File not found.": "پرونده یافت نشد.",
"File removed successfully.": "پرونده با موفقیت حذف شد.",
@ -937,6 +939,7 @@
"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.": "تأثیر می\u200cگذارد که الگوریتم چقدر سریع به بازخورد متن تولید شده پاسخ می\u200cدهد. نرخ یادگیری پایین\u200cتر منجر به تنظیمات کندتر می\u200cشود، در حالی که نرخ یادگیری بالاتر الگوریتم را پاسخگوتر می\u200cکند.",
"Info": "اطلاعات",
"Initials": "حروف اول",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "کل محتوا را به عنوان زمینه برای پردازش جامع تزریق کنید، این برای پرس\u200cوجوهای پیچیده توصیه می\u200cشود.",
"Input": "ورودی",
"Input Key (e.g. text, unet_name, steps)": "کلید ورودی (مثلاً text, unet_name, steps)",
@ -1425,7 +1428,6 @@
"Retrieved {{count}} sources_other": "{{count}} منبع بازیابی شد",
"Retrieved 1 source": "۱ منبع بازیابی شد",
"Rich Text Input for Chat": "ورودی متن غنی برای چت",
"RK": "RK",
"Role": "نقش",
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",

View file

@ -519,6 +519,7 @@
"e.g. 60": "esim. 60",
"e.g. A filter to remove profanity from text": "esim. suodatin, joka poistaa kirosanoja tekstistä",
"e.g. about the Roman Empire": "esim. Rooman valtakunta",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "esim. en",
"e.g. My Filter": "esim. Oma suodatin",
"e.g. My Tools": "esim. Omat työkalut",
@ -782,6 +783,7 @@
"File": "Tiedosto",
"File added successfully.": "Tiedosto lisätty onnistuneesti.",
"File content updated successfully.": "Tiedoston sisältö päivitetty onnistuneesti.",
"File Context": "",
"File Mode": "Tiedostotila",
"File not found.": "Tiedostoa ei löytynyt.",
"File removed successfully.": "Tiedosto poistettu onnistuneesti.",
@ -937,6 +939,7 @@
"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.": "Kuinka nopeasti algoritmi mukautuu generoidun tekstin palautteeseen. Alempi oppimisnopeus hidastaa mukautumista, kun taas nopeampi oppimisnopeus tekee algoritmistä reagoivamman.",
"Info": "Tiedot",
"Initials": "Nimikirjaimet",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Upota koko sisältö kontekstiin kattavaa käsittelyä varten. Tätä suositellaan monimutkaisille kyselyille.",
"Input": "Tekstikenttä",
"Input Key (e.g. text, unet_name, steps)": "Syötteen arvo (esim. text, unet_namme, steps)",
@ -1425,7 +1428,6 @@
"Retrieved {{count}} sources_other": "Noudettu {{count}} sources_other",
"Retrieved 1 source": "1 lähde noudettu",
"Rich Text Input for Chat": "Rikasteksti-kenttä chattiin",
"RK": "RK",
"Role": "Rooli",
"Rosé Pine": "Rosépuu",
"Rosé Pine Dawn": "Rosépuu aamunkoitto",

View file

@ -519,6 +519,7 @@
"e.g. 60": "par ex. 60",
"e.g. A filter to remove profanity from text": "par ex. un filtre pour retirer les vulgarités du texte",
"e.g. about the Roman Empire": "",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "par ex. fr",
"e.g. My Filter": "par ex. Mon Filtre",
"e.g. My Tools": "par ex. Mes Outils",
@ -782,6 +783,7 @@
"File": "Fichier",
"File added successfully.": "Fichier ajouté avec succès.",
"File content updated successfully.": "Contenu du fichier mis à jour avec succès.",
"File Context": "",
"File Mode": "Mode fichier",
"File not found.": "Fichier introuvable.",
"File removed successfully.": "Fichier supprimé avec succès.",
@ -937,6 +939,7 @@
"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.": "Influe sur la rapidité avec laquelle l'algorithme répond aux retours d'information du texte généré. Un taux d'apprentissage plus bas entraînera des ajustements plus lents, tandis qu'un taux d'apprentissage plus élevé rendra l'algorithme plus réactif.",
"Info": "Info",
"Initials": "",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Injecter l'ensemble du contenu comme contexte pour un traitement complet, recommandé pour les requêtes complexes.",
"Input": "",
"Input Key (e.g. text, unet_name, steps)": "",
@ -1426,7 +1429,6 @@
"Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "",
"Rich Text Input for Chat": "Saisie de texte enrichi pour la conversation",
"RK": "Rang",
"Role": "Rôle",
"Rosé Pine": "Pin rosé",
"Rosé Pine Dawn": "Aube de Pin Rosé",

View file

@ -519,6 +519,7 @@
"e.g. 60": "par ex. 60",
"e.g. A filter to remove profanity from text": "par ex. un filtre pour retirer les vulgarités du texte",
"e.g. about the Roman Empire": "",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "par ex. fr",
"e.g. My Filter": "par ex. Mon Filtre",
"e.g. My Tools": "par ex. Mes Outils",
@ -782,6 +783,7 @@
"File": "Fichier",
"File added successfully.": "Fichier ajouté avec succès.",
"File content updated successfully.": "Contenu du fichier mis à jour avec succès.",
"File Context": "",
"File Mode": "Mode fichier",
"File not found.": "Fichier introuvable.",
"File removed successfully.": "Fichier supprimé avec succès.",
@ -937,6 +939,7 @@
"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.": "Influe sur la rapidité avec laquelle l'algorithme répond aux retours d'information du texte généré. Un taux d'apprentissage plus bas entraînera des ajustements plus lents, tandis qu'un taux d'apprentissage plus élevé rendra l'algorithme plus réactif.",
"Info": "Info",
"Initials": "Initiales",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Injecter l'ensemble du contenu comme contexte pour un traitement complet, recommandé pour les requêtes complexes.",
"Input": "",
"Input Key (e.g. text, unet_name, steps)": "",
@ -1426,7 +1429,6 @@
"Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "Une source récupérée",
"Rich Text Input for Chat": "Saisie de texte enrichi pour la conversation",
"RK": "Rang",
"Role": "Rôle",
"Rosé Pine": "Pin rosé",
"Rosé Pine Dawn": "Aube de Pin Rosé",

View file

@ -519,6 +519,7 @@
"e.g. 60": "e.g. 60",
"e.g. A filter to remove profanity from text": "p.ej. Un filtro para eliminar a profanidade do texto",
"e.g. about the Roman Empire": "",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "",
"e.g. My Filter": "p.ej. O meu Filtro",
"e.g. My Tools": "p.ej. As miñas ferramentas",
@ -782,6 +783,7 @@
"File": "Arquivo",
"File added successfully.": "Arquivo agregado correctamente.",
"File content updated successfully.": "Contido do Arquivo actualizado correctamente.",
"File Context": "",
"File Mode": "Modo de Arquivo",
"File not found.": "Arquivo non encontrado.",
"File removed successfully.": "Arquivo eliminado correctamente.",
@ -937,6 +939,7 @@
"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.": "",
"Info": "Información",
"Initials": "",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "",
"Input Key (e.g. text, unet_name, steps)": "",
@ -1425,7 +1428,6 @@
"Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "",
"Rich Text Input for Chat": "Entrada de texto enriquecido para chat",
"RK": "RK",
"Role": "Rol",
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",

View file

@ -519,6 +519,7 @@
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. about the Roman Empire": "",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -782,6 +783,7 @@
"File": "",
"File added successfully.": "",
"File content updated successfully.": "",
"File Context": "",
"File Mode": "מצב קובץ",
"File not found.": "הקובץ לא נמצא.",
"File removed successfully.": "",
@ -937,6 +939,7 @@
"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.": "",
"Info": "מידע",
"Initials": "",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "",
"Input Key (e.g. text, unet_name, steps)": "",
@ -1426,7 +1429,6 @@
"Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "",
"Rich Text Input for Chat": "",
"RK": "",
"Role": "תפקיד",
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",

View file

@ -519,6 +519,7 @@
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. about the Roman Empire": "",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -782,6 +783,7 @@
"File": "",
"File added successfully.": "",
"File content updated successfully.": "",
"File Context": "",
"File Mode": "फ़ाइल मोड",
"File not found.": "फ़ाइल प्राप्त नहीं हुई।",
"File removed successfully.": "",
@ -937,6 +939,7 @@
"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.": "",
"Info": "सूचना-विषयक",
"Initials": "",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "",
"Input Key (e.g. text, unet_name, steps)": "",
@ -1425,7 +1428,6 @@
"Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "",
"Rich Text Input for Chat": "",
"RK": "",
"Role": "भूमिका",
"Rosé Pine": "रोसे पिन",
"Rosé Pine Dawn": "रोसे पिन डेन",

View file

@ -519,6 +519,7 @@
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. about the Roman Empire": "",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -782,6 +783,7 @@
"File": "",
"File added successfully.": "",
"File content updated successfully.": "",
"File Context": "",
"File Mode": "Način datoteke",
"File not found.": "Datoteka nije pronađena.",
"File removed successfully.": "",
@ -937,6 +939,7 @@
"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.": "",
"Info": "Informacije",
"Initials": "",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "",
"Input Key (e.g. text, unet_name, steps)": "",
@ -1426,7 +1429,6 @@
"Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "",
"Rich Text Input for Chat": "",
"RK": "",
"Role": "Uloga",
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",

View file

@ -519,6 +519,7 @@
"e.g. 60": "pl. 60",
"e.g. A filter to remove profanity from text": "pl. Egy szűrő a trágárság eltávolítására a szövegből",
"e.g. about the Roman Empire": "",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "",
"e.g. My Filter": "pl. Az én szűrőm",
"e.g. My Tools": "pl. Az én eszközeim",
@ -782,6 +783,7 @@
"File": "Fájl",
"File added successfully.": "Fájl sikeresen hozzáadva.",
"File content updated successfully.": "Fájl tartalom sikeresen frissítve.",
"File Context": "",
"File Mode": "Fájl mód",
"File not found.": "Fájl nem található.",
"File removed successfully.": "Fájl sikeresen eltávolítva.",
@ -937,6 +939,7 @@
"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.": "Befolyásolja, hogy az algoritmus milyen gyorsan reagál a generált szöveg visszajelzéseire. Alacsonyabb tanulási ráta lassabb调整okat eredményez, míg magasabb ráta gyorsabb reagálást biztosít.",
"Info": "Információ",
"Initials": "",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Az összes tartalom kontextusként való befecskendezése átfogó feldolgozáshoz, ez összetett lekérdezésekhez ajánlott.",
"Input": "",
"Input Key (e.g. text, unet_name, steps)": "",
@ -1425,7 +1428,6 @@
"Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "",
"Rich Text Input for Chat": "Formázott szövegbevitel a chathez",
"RK": "RK",
"Role": "Szerep",
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",

View file

@ -519,6 +519,7 @@
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. about the Roman Empire": "",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -782,6 +783,7 @@
"File": "Berkas",
"File added successfully.": "",
"File content updated successfully.": "",
"File Context": "",
"File Mode": "Mode File",
"File not found.": "File tidak ditemukan.",
"File removed successfully.": "",
@ -937,6 +939,7 @@
"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.": "",
"Info": "Info",
"Initials": "",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "",
"Input Key (e.g. text, unet_name, steps)": "",
@ -1424,7 +1427,6 @@
"Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "",
"Rich Text Input for Chat": "",
"RK": "",
"Role": "Peran",
"Rosé Pine": "Pinus Rosé",
"Rosé Pine Dawn": "Rosé Pine Fajar",

View file

@ -519,6 +519,7 @@
"e.g. 60": "m.sh. 60",
"e.g. A filter to remove profanity from text": "m.sh. Scagaire chun profanity a bhaint as téacs",
"e.g. about the Roman Empire": "",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "m.sh. en",
"e.g. My Filter": "m.sh. Mo Scagaire",
"e.g. My Tools": "m.sh. Mo Uirlisí",
@ -782,6 +783,7 @@
"File": "Comhad",
"File added successfully.": "D'éirigh leis an gcomhad a chur leis.",
"File content updated successfully.": "D'éirigh le hábhar an chomhaid a nuashonrú.",
"File Context": "",
"File Mode": "Mód Comhad",
"File not found.": "Níor aimsíodh an comhad.",
"File removed successfully.": "D'éirigh le baint an chomhaid.",
@ -937,6 +939,7 @@
"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.": "Bíonn tionchar aige ar chomh tapa agus a fhreagraíonn an t-algartam d'aiseolas ón téacs ginte. Beidh coigeartuithe níos moille mar thoradh ar ráta foghlama níos ísle, agus déanfaidh ráta foghlama níos airde an t-algartam níos freagraí.",
"Info": "Eolas",
"Initials": "Túslitreacha",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Instealladh an t-ábhar ar fad mar chomhthéacs do phróiseáil chuimsitheach, moltar é seo le haghaidh ceisteanna casta.",
"Input": "Ionchur",
"Input Key (e.g. text, unet_name, steps)": "Eochair Ionchuir (m.sh. téacs, unet_name, céimeanna)",
@ -1425,7 +1428,6 @@
"Retrieved {{count}} sources_other": "Aisghafa {{count}} foinsí_eile",
"Retrieved 1 source": "Aisghafa 1 fhoinse",
"Rich Text Input for Chat": "Ionchur Saibhir Téacs don Chomhrá",
"RK": "RK",
"Role": "Ról",
"Rosé Pine": "Péine Rosé",
"Rosé Pine Dawn": "Rosé Péine Breacadh an lae",

View file

@ -519,6 +519,7 @@
"e.g. 60": "ad esempio 60",
"e.g. A filter to remove profanity from text": "ad esempio un filtro per rimuovere le parolacce dal testo",
"e.g. about the Roman Empire": "",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "ad esempio en",
"e.g. My Filter": "ad esempio il Mio Filtro",
"e.g. My Tools": "ad esempio i Miei Strumenti",
@ -782,6 +783,7 @@
"File": "File",
"File added successfully.": "File aggiunto con successo.",
"File content updated successfully.": "Contenuto del file aggiornato con successo.",
"File Context": "",
"File Mode": "Modalità File",
"File not found.": "File non trovato.",
"File removed successfully.": "File rimosso con successo.",
@ -937,6 +939,7 @@
"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.": "Influenza la velocità con cui l'algoritmo risponde al feedback del testo generato. Un tasso di apprendimento più basso comporterà aggiustamenti più lenti, mentre un tasso di apprendimento più alto renderà l'algoritmo più reattivo.",
"Info": "Informazioni",
"Initials": "",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Inietta l'intero contenuto come contesto per un'elaborazione completa, questo è consigliato per query complesse.",
"Input": "",
"Input Key (e.g. text, unet_name, steps)": "",
@ -1426,7 +1429,6 @@
"Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "",
"Rich Text Input for Chat": "Input di testo ricco per la chat",
"RK": "RK",
"Role": "Ruolo",
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",

View file

@ -519,6 +519,7 @@
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "例: テキストから不適切な表現を削除するフィルター",
"e.g. about the Roman Empire": "",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -782,6 +783,7 @@
"File": "ファイル",
"File added successfully.": "ファイル追加が成功しました。",
"File content updated successfully.": "ファイルコンテンツ追加が成功しました。",
"File Context": "",
"File Mode": "ファイルモード",
"File not found.": "ファイルが見つかりません。",
"File removed successfully.": "ファイル削除が成功しました。",
@ -937,6 +939,7 @@
"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.": "生成されたテキストからのフィードバックに対するアルゴリズムの応答速度を影響します。低い学習率はより遅い調整をもたらし、高い学習率はアルゴリズムをより反応的にします。",
"Info": "情報",
"Initials": "イニシャル",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "全文を取り込むことで全体を処理します。複雑な問い合わせの場合に推奨されます。",
"Input": "入力",
"Input Key (e.g. text, unet_name, steps)": "入力キー",
@ -1424,7 +1427,6 @@
"Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "",
"Rich Text Input for Chat": "チャットのリッチテキスト入力",
"RK": "",
"Role": "ロール",
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",

View file

@ -519,6 +519,7 @@
"e.g. 60": "მაგ: 60",
"e.g. A filter to remove profanity from text": "",
"e.g. about the Roman Empire": "",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "მაგ: en",
"e.g. My Filter": "მაგ: ჩემი ფილტრი",
"e.g. My Tools": "მაგ: ჩემი ხელსაწყოები",
@ -782,6 +783,7 @@
"File": "ფაილი",
"File added successfully.": "ფაილი წარმატებით დაემატა.",
"File content updated successfully.": "ფაილის შემცველობა წარმატებით განახლდა.",
"File Context": "",
"File Mode": "ფაილის რეჟიმი",
"File not found.": "ფაილი ნაპოვნი არაა.",
"File removed successfully.": "ფაილი წარმატებით წაიშალა.",
@ -937,6 +939,7 @@
"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.": "",
"Info": "ინფორმაცია",
"Initials": "ინიციალები",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "შეყვანა",
"Input Key (e.g. text, unet_name, steps)": "",
@ -1425,7 +1428,6 @@
"Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "",
"Rich Text Input for Chat": "",
"RK": "RK",
"Role": "როლი",
"Rosé Pine": "ვარდისფერი ფიჭვი",
"Rosé Pine Dawn": "ვარდისფერი ფიჭვის გარიჟრაჟი",

View file

@ -519,6 +519,7 @@
"e.g. 60": "amedya. 60",
"e.g. A filter to remove profanity from text": "e.g. Imzizdig akken ad yekkes tukksa n sser seg uḍris",
"e.g. about the Roman Empire": "",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "amedya kab",
"e.g. My Filter": "amedya Imsizdeg-iw",
"e.g. My Tools": "amedya ifecka-inu",
@ -782,6 +783,7 @@
"File": "Afaylu",
"File added successfully.": "Afaylu yettwarna akken iwata.",
"File content updated successfully.": "Agbur n ufaylu yettwaleqqem akken iwata.",
"File Context": "",
"File Mode": "Askar n ufaylu",
"File not found.": "Ur yettwaf ara ufaylu-nni.",
"File removed successfully.": "Afaylu yettwakkes akken iwata.",
@ -937,6 +939,7 @@
"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.": "",
"Info": "Talɣut",
"Initials": "Isekkilen imezwura",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "Anekcum",
"Input Key (e.g. text, unet_name, steps)": "",
@ -1425,7 +1428,6 @@
"Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "Yufa-d 1 n uɣbalu",
"Rich Text Input for Chat": "Aḍris anesbaɣur",
"RK": "RK",
"Role": "Tamlilt",
"Rosé Pine": "Pin rosé",
"Rosé Pine Dawn": "Rosé Pine Dawn",

View file

@ -519,6 +519,7 @@
"e.g. 60": "예: 60",
"e.g. A filter to remove profanity from text": "예: 텍스트에서 비속어를 제거하는 필터",
"e.g. about the Roman Empire": "",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "예: en",
"e.g. My Filter": "예: 내 필터",
"e.g. My Tools": "예: 내 도구",
@ -782,6 +783,7 @@
"File": "파일",
"File added successfully.": "파일이 성공적으로 추가되었습니다",
"File content updated successfully.": "내용이 성공적으로 업데이트되었습니다",
"File Context": "",
"File Mode": "파일 모드",
"File not found.": "파일을 찾을 수 없습니다.",
"File removed successfully.": "파일이 성공적으로 삭제되었습니다",
@ -937,6 +939,7 @@
"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.": "생성된 텍스트의 피드백에 알고리즘이 얼마나 빨리 반응하는지에 영향을 미칩니다. 학습률이 낮을수록 조정 속도가 느려지고 학습률이 높아지면 알고리즘의 반응 속도가 빨라집니다.",
"Info": "정보",
"Initials": "",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "전체 콘텐츠를 포괄적인 처리를 위해 컨텍스트로 삽입하세요. 이는 복잡한 쿼리에 권장됩니다.",
"Input": "입력",
"Input Key (e.g. text, unet_name, steps)": "",
@ -1424,7 +1427,6 @@
"Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "검색된 source 1개",
"Rich Text Input for Chat": "다양한 텍스트 서식 사용",
"RK": "RK",
"Role": "역할",
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",

View file

@ -519,6 +519,7 @@
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. about the Roman Empire": "",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -782,6 +783,7 @@
"File": "Rinkmena",
"File added successfully.": "",
"File content updated successfully.": "",
"File Context": "",
"File Mode": "Rinkmenų rėžimas",
"File not found.": "Failas nerastas.",
"File removed successfully.": "",
@ -937,6 +939,7 @@
"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.": "",
"Info": "Informacija",
"Initials": "",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "",
"Input Key (e.g. text, unet_name, steps)": "",
@ -1427,7 +1430,6 @@
"Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "",
"Rich Text Input for Chat": "",
"RK": "",
"Role": "Rolė",
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",

View file

@ -519,6 +519,7 @@
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. about the Roman Empire": "",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -782,6 +783,7 @@
"File": "Fail",
"File added successfully.": "",
"File content updated successfully.": "",
"File Context": "",
"File Mode": "Mod Fail",
"File not found.": "Fail tidak dijumpai",
"File removed successfully.": "",
@ -937,6 +939,7 @@
"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.": "",
"Info": "Maklumat",
"Initials": "",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "",
"Input Key (e.g. text, unet_name, steps)": "",
@ -1424,7 +1427,6 @@
"Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "",
"Rich Text Input for Chat": "",
"RK": "",
"Role": "Peranan",
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",

View file

@ -519,6 +519,7 @@
"e.g. 60": "f.eks. 60",
"e.g. A filter to remove profanity from text": "f.eks. et filter for å fjerne banning fra tekst",
"e.g. about the Roman Empire": "",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "",
"e.g. My Filter": "f.eks. Mitt filter",
"e.g. My Tools": "f.eks. Mine verktøy",
@ -782,6 +783,7 @@
"File": "Fil",
"File added successfully.": "Filen er lagt til.",
"File content updated successfully.": "Filens innhold er oppdatert.",
"File Context": "",
"File Mode": "Filmodus",
"File not found.": "Finner ikke filen.",
"File removed successfully.": "Filen er fjernet.",
@ -937,6 +939,7 @@
"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.": "",
"Info": "Info",
"Initials": "",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "",
"Input Key (e.g. text, unet_name, steps)": "",
@ -1425,7 +1428,6 @@
"Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "",
"Rich Text Input for Chat": "Rik tekstinndata for chat",
"RK": "RK",
"Role": "Rolle",
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",

View file

@ -519,6 +519,7 @@
"e.g. 60": "bijv. 60",
"e.g. A filter to remove profanity from text": "bijv. Een filter om gevloek uit tekst te verwijderen",
"e.g. about the Roman Empire": "",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "",
"e.g. My Filter": "bijv. Mijn filter",
"e.g. My Tools": "bijv. Mijn gereedschappen",
@ -782,6 +783,7 @@
"File": "Bestand",
"File added successfully.": "Bestand succesvol toegevoegd.",
"File content updated successfully.": "Bestandsinhoud succesvol bijgewerkt.",
"File Context": "",
"File Mode": "Bestandsmodus",
"File not found.": "Bestand niet gevonden.",
"File removed successfully.": "Bestand succesvol verwijderd.",
@ -937,6 +939,7 @@
"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.": "Beïnvloedt hoe snel het algoritme reageert op feedback van de gegenereerde tekst. Een lagere leersnelheid resulteert in langzamere aanpassingen, terwijl een hogere leersnelheid het algoritme responsiever maakt.",
"Info": "Info",
"Initials": "",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Injecteer de volledige inhoud als context voor uitgebreide verwerking, dit wordt aanbevolen voor complexe query's.",
"Input": "",
"Input Key (e.g. text, unet_name, steps)": "",
@ -1425,7 +1428,6 @@
"Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "",
"Rich Text Input for Chat": "Rijke tekstinvoer voor chatten",
"RK": "RK",
"Role": "Rol",
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",

View file

@ -519,6 +519,7 @@
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. about the Roman Empire": "",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -782,6 +783,7 @@
"File": "",
"File added successfully.": "",
"File content updated successfully.": "",
"File Context": "",
"File Mode": "ਫਾਈਲ ਮੋਡ",
"File not found.": "ਫਾਈਲ ਨਹੀਂ ਮਿਲੀ।",
"File removed successfully.": "",
@ -937,6 +939,7 @@
"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.": "",
"Info": "ਜਾਣਕਾਰੀ",
"Initials": "",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "",
"Input Key (e.g. text, unet_name, steps)": "",
@ -1425,7 +1428,6 @@
"Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "",
"Rich Text Input for Chat": "",
"RK": "",
"Role": "ਭੂਮਿਕਾ",
"Rosé Pine": "ਰੋਜ਼ ਪਾਈਨ",
"Rosé Pine Dawn": "ਰੋਜ਼ ਪਾਈਨ ਡਾਨ",

View file

@ -519,6 +519,7 @@
"e.g. 60": "np. 60",
"e.g. A filter to remove profanity from text": "np. Filtr usuwający wulgaryzmy",
"e.g. about the Roman Empire": "np. o Imperium Rzymskim",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "np. pl",
"e.g. My Filter": "np. Mój Filtr",
"e.g. My Tools": "np. Moje Narzędzia",
@ -782,6 +783,7 @@
"File": "Plik",
"File added successfully.": "Plik dodany pomyślnie.",
"File content updated successfully.": "Treść pliku zaktualizowana pomyślnie.",
"File Context": "",
"File Mode": "Tryb pliku",
"File not found.": "Plik nie znaleziony.",
"File removed successfully.": "Plik usunięty pomyślnie.",
@ -937,6 +939,7 @@
"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.": "Wpływa na szybkość reakcji algorytmu na feedback. Niższy 'learning rate' to wolniejsze zmiany, wyższy to szybsza reakcja.",
"Info": "Info",
"Initials": "Inicjały",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Wstrzyknij całą treść jako kontekst (zalecane dla złożonych zapytań).",
"Input": "Wejście",
"Input Key (e.g. text, unet_name, steps)": "Klucz wejściowy (np. text, unet_name, steps)",
@ -1427,7 +1430,6 @@
"Retrieved {{count}} sources_other": "Pobrano {{count}} źródeł",
"Retrieved 1 source": "Pobrano 1 źródło",
"Rich Text Input for Chat": "Bogaty tekst w czacie",
"RK": "RK",
"Role": "Rola",
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",

View file

@ -519,6 +519,7 @@
"e.g. 60": "por exemplo, 60",
"e.g. A filter to remove profanity from text": "Exemplo: Um filtro para remover palavrões do texto",
"e.g. about the Roman Empire": "Por exemplo, sobre o Império Romano.",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "por exemplo, en",
"e.g. My Filter": "Exemplo: Meu Filtro",
"e.g. My Tools": "Exemplo: Minhas Ferramentas",
@ -782,6 +783,7 @@
"File": "Arquivo",
"File added successfully.": "Arquivo adicionado com sucesso.",
"File content updated successfully.": "Arquivo de conteúdo atualizado com sucesso.",
"File Context": "",
"File Mode": "Modo de Arquivo",
"File not found.": "Arquivo não encontrado.",
"File removed successfully.": "Arquivo removido com sucesso.",
@ -937,6 +939,7 @@
"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.": "Influencia a rapidez com que o algoritmo responde ao feedback do texto gerado. Uma taxa de aprendizado menor resultará em ajustes mais lentos, enquanto uma taxa de aprendizado maior tornará o algoritmo mais responsivo.",
"Info": "Informação",
"Initials": "Iniciais",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Injete todo o conteúdo como contexto para processamento abrangente; isso é recomendado para consultas complexas.",
"Input": "Entrada",
"Input Key (e.g. text, unet_name, steps)": "Chave de entrada (por exemplo, texto, unet_name, etapas)",
@ -1426,7 +1429,6 @@
"Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "1 fonte recuperada",
"Rich Text Input for Chat": "Entrada de rich text para o chat",
"RK": "",
"Role": "Função",
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",

View file

@ -519,6 +519,7 @@
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. about the Roman Empire": "",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -782,6 +783,7 @@
"File": "",
"File added successfully.": "",
"File content updated successfully.": "",
"File Context": "",
"File Mode": "Modo de Ficheiro",
"File not found.": "Ficheiro não encontrado.",
"File removed successfully.": "",
@ -937,6 +939,7 @@
"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.": "",
"Info": "Informação",
"Initials": "",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "",
"Input Key (e.g. text, unet_name, steps)": "",
@ -1426,7 +1429,6 @@
"Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "",
"Rich Text Input for Chat": "",
"RK": "",
"Role": "Função",
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",

View file

@ -519,6 +519,7 @@
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. about the Roman Empire": "",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -782,6 +783,7 @@
"File": "Fișier",
"File added successfully.": "Fișierul a fost adăugat cu succes.",
"File content updated successfully.": "Conținutul fișierului a fost actualizat cu succes.",
"File Context": "",
"File Mode": "Mod Fișier",
"File not found.": "Fișierul nu a fost găsit.",
"File removed successfully.": "Fișierul a fost eliminat cu succes.",
@ -937,6 +939,7 @@
"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.": "",
"Info": "Informații",
"Initials": "",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "",
"Input Key (e.g. text, unet_name, steps)": "",
@ -1426,7 +1429,6 @@
"Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "",
"Rich Text Input for Chat": "Introducere text îmbogățit pentru chat",
"RK": "RK",
"Role": "Rol",
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",

View file

@ -519,6 +519,7 @@
"e.g. 60": "например, 60",
"e.g. A filter to remove profanity from text": "например, фильтр для удаления ненормативной лексики из текста",
"e.g. about the Roman Empire": "",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "например, en",
"e.g. My Filter": "например, мой фильтр",
"e.g. My Tools": "например, мой инструмент",
@ -782,6 +783,7 @@
"File": "Файл",
"File added successfully.": "Файл успешно добавлен.",
"File content updated successfully.": "Содержимое файла успешно обновлено.",
"File Context": "",
"File Mode": "Режим файла",
"File not found.": "Файл не найден.",
"File removed successfully.": "Файл успешно удален.",
@ -937,6 +939,7 @@
"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.": "Влияет на то, насколько быстро алгоритм реагирует на обратную связь из сгенерированного текста. Более низкая скорость обучения приведет к более медленной корректировке, в то время как более высокая скорость обучения сделает алгоритм более отзывчивым.",
"Info": "Информация",
"Initials": "Инициалы",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Использовать весь контент в качестве контекста для комплексной обработки, это рекомендуется для сложных запросов.",
"Input": "Ввод",
"Input Key (e.g. text, unet_name, steps)": "Введите ключ (например, text, unet_name, steps)",
@ -1427,7 +1430,6 @@
"Retrieved {{count}} sources_other": "Найдено {{count}} источников",
"Retrieved 1 source": "Найден 1 источник",
"Rich Text Input for Chat": "Ввод обогащённого текста (Rich text) в чат",
"RK": "RK",
"Role": "Роль",
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",

View file

@ -519,6 +519,7 @@
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. about the Roman Empire": "",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -782,6 +783,7 @@
"File": "Súbor",
"File added successfully.": "Súbor bol úspešne pridaný.",
"File content updated successfully.": "Obsah súboru bol úspešne aktualizovaný.",
"File Context": "",
"File Mode": "Režim súboru",
"File not found.": "Súbor nenájdený.",
"File removed successfully.": "Súbor bol úspešne odstránený.",
@ -937,6 +939,7 @@
"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.": "",
"Info": "Info",
"Initials": "",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "",
"Input Key (e.g. text, unet_name, steps)": "",
@ -1427,7 +1430,6 @@
"Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "",
"Rich Text Input for Chat": "Vstup pre chat vo formáte Rich Text",
"RK": "RK",
"Role": "Funkcia",
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",

View file

@ -519,6 +519,7 @@
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. about the Roman Empire": "",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -782,6 +783,7 @@
"File": "Датотека",
"File added successfully.": "",
"File content updated successfully.": "",
"File Context": "",
"File Mode": "Режим датотеке",
"File not found.": "Датотека није пронађена.",
"File removed successfully.": "",
@ -937,6 +939,7 @@
"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.": "",
"Info": "Инфо",
"Initials": "",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "",
"Input Key (e.g. text, unet_name, steps)": "",
@ -1426,7 +1429,6 @@
"Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "",
"Rich Text Input for Chat": "Богат унос текста у ћаскању",
"RK": "",
"Role": "Улога",
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",

View file

@ -519,6 +519,7 @@
"e.g. 60": "t.ex. 60",
"e.g. A filter to remove profanity from text": "t.ex. Ett filter för att ta bort svordomar från text",
"e.g. about the Roman Empire": "",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "t.ex. en",
"e.g. My Filter": "t.ex. Mitt filter",
"e.g. My Tools": "t.ex. Mina verktyg",
@ -782,6 +783,7 @@
"File": "Fil",
"File added successfully.": "Filen har lagts till.",
"File content updated successfully.": "Filinnehållet har uppdaterats.",
"File Context": "",
"File Mode": "Fil-läge",
"File not found.": "Fil hittades inte.",
"File removed successfully.": "Filen har tagits bort.",
@ -937,6 +939,7 @@
"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.": "Påverkar hur snabbt algoritmen svarar på feedback från den genererade texten. En lägre inlärningshastighet resulterar i långsammare justeringar, medan en högre inlärningshastighet gör algoritmen mer responsiv.",
"Info": "Information",
"Initials": "Initialer",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Injicera hela innehållet som kontext för omfattande bearbetning, detta rekommenderas för komplexa frågor.",
"Input": "Input",
"Input Key (e.g. text, unet_name, steps)": "Inputnyckel (t.ex. text, unet_name, steps)",
@ -1425,7 +1428,6 @@
"Retrieved {{count}} sources_other": "Hämtade från {{count}} källor",
"Retrieved 1 source": "Hämtade från en källa",
"Rich Text Input for Chat": "Rich Text-inmatning för chatt",
"RK": "RK",
"Role": "Roll",
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",

View file

@ -519,6 +519,7 @@
"e.g. 60": "เช่น 60",
"e.g. A filter to remove profanity from text": "เช่น ตัวกรองเพื่อลบคำหยาบออกจากข้อความ",
"e.g. about the Roman Empire": "",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "เช่น en",
"e.g. My Filter": "เช่น My Filter",
"e.g. My Tools": "เช่น My Tools",
@ -782,6 +783,7 @@
"File": "ไฟล์",
"File added successfully.": "เพิ่มไฟล์สำเร็จแล้ว",
"File content updated successfully.": "อัปเดตเนื้อหาไฟล์สำเร็จแล้ว",
"File Context": "",
"File Mode": "โหมดไฟล์",
"File not found.": "ไม่พบไฟล์",
"File removed successfully.": "ลบไฟล์สำเร็จแล้ว",
@ -937,6 +939,7 @@
"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.": "มีผลต่อความเร็วที่อัลกอริทึมตอบสนองต่อข้อเสนอแนะจากข้อความที่สร้างขึ้น ค่า Learning Rate ที่ต่ำจะทำให้การปรับเปลี่ยนช้าลง ในขณะที่ค่า Learning Rate ที่สูงจะทำให้อัลกอริทึมตอบสนองได้รวดเร็วขึ้น",
"Info": "ข้อมูล",
"Initials": "อักษรย่อ",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "เพิ่มเนื้อหาทั้งหมดเป็นบริบทสำหรับการประมวลผลอย่างครอบคลุม แนะนำให้ใช้สำหรับคำถามที่ซับซ้อน",
"Input": "อินพุต",
"Input Key (e.g. text, unet_name, steps)": "คีย์อินพุต (เช่น text, unet_name, steps)",
@ -1424,7 +1427,6 @@
"Retrieved {{count}} sources_other": "เรียกดูที่มา {{count}} รายการ (อื่นๆ)",
"Retrieved 1 source": "ดึงมาแล้ว 1 แหล่งข้อมูล",
"Rich Text Input for Chat": "ช่องป้อนข้อความแบบ Rich Text สำหรับแชท",
"RK": "RK",
"Role": "บทบาท",
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",

View file

@ -519,6 +519,7 @@
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. about the Roman Empire": "",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -782,6 +783,7 @@
"File": "Faýl",
"File added successfully.": "",
"File content updated successfully.": "",
"File Context": "",
"File Mode": "",
"File not found.": "",
"File removed successfully.": "",
@ -937,6 +939,7 @@
"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.": "",
"Info": "Maglumat",
"Initials": "",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "",
"Input Key (e.g. text, unet_name, steps)": "",
@ -1425,7 +1428,6 @@
"Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "",
"Rich Text Input for Chat": "",
"RK": "",
"Role": "Roli",
"Rosé Pine": "",
"Rosé Pine Dawn": "",

View file

@ -519,6 +519,7 @@
"e.g. 60": "örn. 60",
"e.g. A filter to remove profanity from text": "örn. Metinden küfürleri kaldırmak için bir filtre",
"e.g. about the Roman Empire": "",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "",
"e.g. My Filter": "örn. Benim Filtrem",
"e.g. My Tools": "örn. Benim Araçlarım",
@ -782,6 +783,7 @@
"File": "Dosya",
"File added successfully.": "Dosya başarıyla eklendi.",
"File content updated successfully.": "Dosya içeriği başarıyla güncellendi.",
"File Context": "",
"File Mode": "Dosya Modu",
"File not found.": "Dosya bulunamadı.",
"File removed successfully.": "Dosya başarıyla kaldırıldı.",
@ -937,6 +939,7 @@
"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.": "",
"Info": "Bilgi",
"Initials": "",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "Giriş",
"Input Key (e.g. text, unet_name, steps)": "",
@ -1425,7 +1428,6 @@
"Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "",
"Rich Text Input for Chat": "Sohbet için Zengin Metin Girişi",
"RK": "RK",
"Role": "Rol",
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",

View file

@ -519,6 +519,7 @@
"e.g. 60": "مەسىلەن: 60",
"e.g. A filter to remove profanity from text": "مەسىلەن: تېكستتىن يامان سۆزلەرنى چىقىرىدىغان سۈزگۈچ",
"e.g. about the Roman Empire": "",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "مەسىلەن: en",
"e.g. My Filter": "مەسىلەن: My Filter",
"e.g. My Tools": "مەسىلەن: My Tools",
@ -782,6 +783,7 @@
"File": "ھۆججەت",
"File added successfully.": "ھۆججەت مۇۋەپپەقىيەتلىك قوشۇلدى.",
"File content updated successfully.": "ھۆججەت مەزمۇنى مۇۋەپپەقىيەتلىك يېڭىلاندى.",
"File Context": "",
"File Mode": "ھۆججەت ھالىتى",
"File not found.": "ھۆججەت تېپىلمىدى.",
"File removed successfully.": "ھۆججەت مۇۋەپپەقىيەتلىك ئۆچۈرۈلدى.",
@ -937,6 +939,7 @@
"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.": "ھاسىل قىلىنغان تېكىستنىڭ ئىنكاسىغا ئالگورىزىمنىڭ تېز ئىنكاس قايتۇرۇشىغا تەسىر كۆرسىتىدۇ. ئۆگىنىش نىسبىتىنىڭ تۆۋەن بولۇشى ئاستا تەڭشەشنى كەلتۈرۈپ چىقىرىدۇ ، ھالبۇكى تېخىمۇ يۇقىرى ئۆگىنىش نىسبىتى ھېسابلاش ئۇسۇلىنى تېخىمۇ كۈچلۈك قىلىدۇ.",
"Info": "ئۇچۇر",
"Initials": "",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "پۈتۈن مەزمۇننى مۇھىتقا قوشۇپ مول تەھلىل قىلىش، مۇرەككەپ سۇئاللار ئۈچۈن تەۋسىيە قىلىنىدۇ.",
"Input": "",
"Input Key (e.g. text, unet_name, steps)": "",
@ -1425,7 +1428,6 @@
"Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "",
"Rich Text Input for Chat": "سۆھبەت ئۈچۈن مول تېكست كىرگۈزۈش",
"RK": "RK",
"Role": "رول",
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",

View file

@ -519,6 +519,7 @@
"e.g. 60": "напр. 60",
"e.g. A filter to remove profanity from text": "напр., фільтр для видалення нецензурної лексики з тексту",
"e.g. about the Roman Empire": "",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "",
"e.g. My Filter": "напр., Мій фільтр",
"e.g. My Tools": "напр., Мої інструменти",
@ -782,6 +783,7 @@
"File": "Файл",
"File added successfully.": "Файл успішно додано.",
"File content updated successfully.": "Вміст файлу успішно оновлено.",
"File Context": "",
"File Mode": "Файловий режим",
"File not found.": "Файл не знайдено.",
"File removed successfully.": "Файл успішно видалено.",
@ -937,6 +939,7 @@
"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.": "Впливає на те, як швидко алгоритм реагує на відгуки згенерованого тексту. Нижча швидкість навчання призведе до повільніших коригувань, тоді як вища швидкість навчання зробить алгоритм більш чутливим.",
"Info": "Інфо",
"Initials": "",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Вставте весь вміст як контекст для всебічної обробки, це рекомендується для складних запитів.",
"Input": "",
"Input Key (e.g. text, unet_name, steps)": "",
@ -1427,7 +1430,6 @@
"Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "",
"Rich Text Input for Chat": "Ввід тексту з форматуванням для чату",
"RK": "RK",
"Role": "Роль",
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",

View file

@ -519,6 +519,7 @@
"e.g. 60": "",
"e.g. A filter to remove profanity from text": "",
"e.g. about the Roman Empire": "",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "",
"e.g. My Filter": "",
"e.g. My Tools": "",
@ -782,6 +783,7 @@
"File": "فائل",
"File added successfully.": "فائل کامیابی سے شامل ہو گئی",
"File content updated successfully.": "فائل مواد کامیابی سے اپ ڈیٹ ہو گیا",
"File Context": "",
"File Mode": "فائل موڈ",
"File not found.": "فائل نہیں ملی",
"File removed successfully.": "فائل کامیابی سے ہٹا دی گئی",
@ -937,6 +939,7 @@
"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.": "",
"Info": "معلومات",
"Initials": "",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "",
"Input": "",
"Input Key (e.g. text, unet_name, steps)": "",
@ -1425,7 +1428,6 @@
"Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "",
"Rich Text Input for Chat": "چیٹ کے لیے رچ ٹیکسٹ ان پٹ",
"RK": "آر کے",
"Role": "کردار",
"Rosé Pine": "روزے پائن",
"Rosé Pine Dawn": "روزے پائن ڈان",

View file

@ -519,6 +519,7 @@
"e.g. 60": "масалан, 60",
"e.g. A filter to remove profanity from text": "масалан, Матндан ҳақоратли сўзларни олиб ташлаш учун филтр",
"e.g. about the Roman Empire": "",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "масалан, en",
"e.g. My Filter": "масалан, Менинг филтрим",
"e.g. My Tools": "масалан, Менинг асбобларим",
@ -782,6 +783,7 @@
"File": "Файл",
"File added successfully.": "Файл муваффақиятли қўшилди.",
"File content updated successfully.": "Файл мазмуни муваффақиятли янгиланди.",
"File Context": "",
"File Mode": "Файл режими",
"File not found.": "Файл топилмади.",
"File removed successfully.": "Файл муваффақиятли олиб ташланди.",
@ -937,6 +939,7 @@
"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.": "Алгоритм яратилган матндан олинган фикр-мулоҳазага қанчалик тез жавоб беришига таъсир қилади. Пастроқ ўрганиш тезлиги созлашнинг секинлашишига олиб келади, юқори ўрганиш тезлиги эса алгоритмни янада сезгир қилади.",
"Info": "Маълумот",
"Initials": "",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Комплекс қайта ишлаш учун бутун таркибни контекст сифатида киритинг, бу мураккаб сўровлар учун тавсия этилади.",
"Input": "",
"Input Key (e.g. text, unet_name, steps)": "",
@ -1425,7 +1428,6 @@
"Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "",
"Rich Text Input for Chat": "Чат учун бой матн киритиш",
"RK": "RK",
"Role": "Рол",
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",

View file

@ -519,6 +519,7 @@
"e.g. 60": "masalan. 60",
"e.g. A filter to remove profanity from text": "masalan. Matndan haqoratli so'zlarni olib tashlash uchun filtr",
"e.g. about the Roman Empire": "",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "masalan. uz",
"e.g. My Filter": "masalan. Mening filtrim",
"e.g. My Tools": "masalan. Mening asboblarim",
@ -782,6 +783,7 @@
"File": "Fayl",
"File added successfully.": "Fayl muvaffaqiyatli qo'shildi.",
"File content updated successfully.": "Fayl mazmuni muvaffaqiyatli yangilandi.",
"File Context": "",
"File Mode": "Fayl rejimi",
"File not found.": "Fayl topilmadi.",
"File removed successfully.": "Fayl muvaffaqiyatli olib tashlandi.",
@ -937,6 +939,7 @@
"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.": "Algoritm yaratilgan matndan olingan fikr-mulohazaga qanchalik tez javob berishiga ta'sir qiladi. Pastroq o'rganish tezligi sozlashning sekinlashishiga olib keladi, yuqori o'rganish tezligi esa algoritmni yanada sezgir qiladi.",
"Info": "Ma'lumot",
"Initials": "",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Kompleks qayta ishlash uchun butun tarkibni kontekst sifatida kiriting, bu murakkab so'rovlar uchun tavsiya etiladi.",
"Input": "",
"Input Key (e.g. text, unet_name, steps)": "",
@ -1425,7 +1428,6 @@
"Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "",
"Rich Text Input for Chat": "Chat uchun boy matn kiritish",
"RK": "RK",
"Role": "Rol",
"Rosé Pine": "Roze qarag'ay",
"Rosé Pine Dawn": "Atirgul qarag'ay tong",

View file

@ -519,6 +519,7 @@
"e.g. 60": "vd: 60",
"e.g. A filter to remove profanity from text": "vd: Bộ lọc để loại bỏ từ ngữ tục tĩu khỏi văn bản",
"e.g. about the Roman Empire": "",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "",
"e.g. My Filter": "vd: Bộ lọc của tôi",
"e.g. My Tools": "vd: Công cụ của tôi",
@ -782,6 +783,7 @@
"File": "Tệp",
"File added successfully.": "Thêm tệp thành công.",
"File content updated successfully.": "Nội dung tệp được cập nhật thành công.",
"File Context": "",
"File Mode": "Chế độ Tệp văn bản",
"File not found.": "Không tìm thấy tệp.",
"File removed successfully.": "Xóa tệp thành công.",
@ -937,6 +939,7 @@
"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.": "Ảnh hưởng đến tốc độ thuật toán phản hồi lại phản hồi từ văn bản được tạo. Tốc độ học thấp hơn sẽ dẫn đến các điều chỉnh chậm hơn, trong khi tốc độ học cao hơn sẽ làm cho thuật toán phản ứng nhanh hơn.",
"Info": "Thông tin",
"Initials": "",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "Đưa toàn bộ nội dung vào làm ngữ cảnh để xử lý toàn diện, điều này được khuyến nghị cho các truy vấn phức tạp.",
"Input": "",
"Input Key (e.g. text, unet_name, steps)": "",
@ -1424,7 +1427,6 @@
"Retrieved {{count}} sources_other": "",
"Retrieved 1 source": "",
"Rich Text Input for Chat": "Nhập Văn bản Đa dạng cho Chat",
"RK": "RK",
"Role": "Vai trò",
"Rosé Pine": "Rosé Pine",
"Rosé Pine Dawn": "Rosé Pine Dawn",

View file

@ -519,6 +519,7 @@
"e.g. 60": "例如60",
"e.g. A filter to remove profanity from text": "例如:一个用于剔除文本中不当内容的过滤器",
"e.g. about the Roman Empire": "例如:关于罗马帝国的趣闻",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "例如en",
"e.g. My Filter": "例如:我的过滤器",
"e.g. My Tools": "例如:我的工具",
@ -782,6 +783,7 @@
"File": "文件",
"File added successfully.": "文件成功添加",
"File content updated successfully.": "文件内容成功更新",
"File Context": "",
"File Mode": "文件模式",
"File not found.": "文件未找到。",
"File removed successfully.": "文件成功删除",
@ -937,6 +939,7 @@
"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.": "影响算法对生成文本反馈的响应速度。较低的学习率会导致调整过程较慢,而较高的学习率将使算法反应更灵敏。",
"Info": "信息",
"Initials": "姓名缩写",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "注入整个内容作为上下文进行综合处理,适用于复杂查询",
"Input": "输入",
"Input Key (e.g. text, unet_name, steps)": "输入键名例如text, unet_name, steps",
@ -1424,7 +1427,6 @@
"Retrieved {{count}} sources_other": "检索到 {{count}} 个引用来源",
"Retrieved 1 source": "检索到 1 个引用来源",
"Rich Text Input for Chat": "富文本对话框",
"RK": "排名",
"Role": "角色",
"Rosé Pine": "玫瑰松木",
"Rosé Pine Dawn": "玫瑰松木·晨曦",

View file

@ -519,6 +519,7 @@
"e.g. 60": "例如60",
"e.g. A filter to remove profanity from text": "例如:用來移除不雅詞彙的過濾器",
"e.g. about the Roman Empire": "例如:關於羅馬帝國的事蹟",
"e.g. alloy, echo, shimmer": "",
"e.g. en": "例如en",
"e.g. My Filter": "例如:我的篩選器",
"e.g. My Tools": "例如:我的工具",
@ -782,6 +783,7 @@
"File": "檔案",
"File added successfully.": "成功新增檔案。",
"File content updated successfully.": "成功更新檔案內容。",
"File Context": "",
"File Mode": "檔案模式",
"File not found.": "未找到檔案。",
"File removed successfully.": "成功移除檔案。",
@ -937,6 +939,7 @@
"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.": "影響演算法對生成文字回饋的反應速度。較低的學習率會導致調整速度較慢,而較高的學習率會使演算法反應更靈敏。",
"Info": "資訊",
"Initials": "姓名縮寫",
"Inject file content into conversation context": "",
"Inject the entire content as context for comprehensive processing, this is recommended for complex queries.": "將完整內容注入為上下文以進行全面處理,建議用於複雜查詢。",
"Input": "輸入",
"Input Key (e.g. text, unet_name, steps)": "輸入鍵名例如text, unet_name, steps",
@ -1424,7 +1427,6 @@
"Retrieved {{count}} sources_other": "搜索到 {{count}} 個來源",
"Retrieved 1 source": "搜索到 1 個來源",
"Rich Text Input for Chat": "使用富文字輸入對話",
"RK": "RK",
"Role": "角色",
"Rosé Pine": "玫瑰松",
"Rosé Pine Dawn": "黎明玫瑰松",

View file

@ -9,7 +9,13 @@
import { page } from '$app/stores';
import { getBackendConfig } from '$lib/apis';
import { ldapUserSignIn, getSessionUser, userSignIn, userSignUp, updateUserTimezone } from '$lib/apis/auths';
import {
ldapUserSignIn,
getSessionUser,
userSignIn,
userSignUp,
updateUserTimezone
} from '$lib/apis/auths';
import { WEBUI_API_BASE_URL, WEBUI_BASE_URL } from '$lib/constants';
import { WEBUI_NAME, config, user, socket } from '$lib/stores';