forked from open-webui/open-webui
more missing translation keys
This commit is contained in:
parent
ccc1c81256
commit
fafe42e487
3 changed files with 9 additions and 5 deletions
|
@ -92,21 +92,21 @@
|
|||
<div>
|
||||
<div class="mb-2">
|
||||
<div class="flex justify-between items-center text-xs">
|
||||
<div class=" text-sm font-medium">Manage Models</div>
|
||||
<div class=" text-sm font-medium">{$i18n.t('Manage Models')}</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class=" space-y-3">
|
||||
<div>
|
||||
<div class="flex justify-between items-center text-xs">
|
||||
<div class=" text-xs font-medium">Model Whitelisting</div>
|
||||
<div class=" text-xs font-medium">{$i18n.t('Model Whitelisting')}</div>
|
||||
|
||||
<button
|
||||
class=" text-xs font-medium text-gray-500"
|
||||
type="button"
|
||||
on:click={() => {
|
||||
whitelistEnabled = !whitelistEnabled;
|
||||
}}>{whitelistEnabled ? 'On' : 'Off'}</button
|
||||
}}>{whitelistEnabled ? $i18n.t('On') : $i18n.t('Off')}</button
|
||||
>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -354,5 +354,7 @@
|
|||
"Add a tag": "Tag hinzugügen",
|
||||
"Version": "Version",
|
||||
"Enter a user message here": "Gib hier eine Benutzernachricht ein",
|
||||
"Enter an assistant message here": "Gib hier eine Assistentennachricht ein"
|
||||
"Enter an assistant message here": "Gib hier eine Assistentennachricht ein",
|
||||
"Model Whitelisting": "Modell-Whitelisting",
|
||||
"Manage Models": "Modelle verwalten"
|
||||
}
|
||||
|
|
|
@ -354,5 +354,7 @@
|
|||
"Add a tag": "Add a tag",
|
||||
"Version": "Version",
|
||||
"Enter a user message here": "Enter a user message here",
|
||||
"Enter an assistant message here": "Enter an assistant message here"
|
||||
"Enter an assistant message here": "Enter an assistant message here",
|
||||
"Model Whitelisting": "Model Whitelisting",
|
||||
"Manage Models": "Manage Models"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue