Merge pull request #13889 from Classic298/pendingtext

feat: Custom Title and Text for Account Activation Screen for pending users
This commit is contained in:
Tim Jaeryang Baek 2025-05-14 21:28:16 +04:00 committed by GitHub
commit 29ae231ee0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
60 changed files with 280 additions and 8 deletions

View file

@ -989,6 +989,18 @@ DEFAULT_USER_ROLE = PersistentConfig(
os.getenv("DEFAULT_USER_ROLE", "pending"), os.getenv("DEFAULT_USER_ROLE", "pending"),
) )
ACCOUNT_PENDING_TEXT = PersistentConfig(
"ACCOUNT_PENDING_TEXT",
"ui.account_pending_text",
os.environ.get("ACCOUNT_PENDING_TEXT", "")
)
ACCOUNT_PENDING_TITLE = PersistentConfig(
"ACCOUNT_PENDING_TITLE",
"ui.account_pending_title",
os.environ.get("ACCOUNT_PENDING_TITLE", "")
)
USER_PERMISSIONS_WORKSPACE_MODELS_ACCESS = ( USER_PERMISSIONS_WORKSPACE_MODELS_ACCESS = (
os.environ.get("USER_PERMISSIONS_WORKSPACE_MODELS_ACCESS", "False").lower() os.environ.get("USER_PERMISSIONS_WORKSPACE_MODELS_ACCESS", "False").lower()
== "true" == "true"

View file

@ -292,6 +292,8 @@ from open_webui.config import (
ENABLE_EVALUATION_ARENA_MODELS, ENABLE_EVALUATION_ARENA_MODELS,
USER_PERMISSIONS, USER_PERMISSIONS,
DEFAULT_USER_ROLE, DEFAULT_USER_ROLE,
ACCOUNT_PENDING_TEXT,
ACCOUNT_PENDING_TITLE,
DEFAULT_PROMPT_SUGGESTIONS, DEFAULT_PROMPT_SUGGESTIONS,
DEFAULT_MODELS, DEFAULT_MODELS,
DEFAULT_ARENA_MODEL, DEFAULT_ARENA_MODEL,
@ -573,6 +575,8 @@ app.state.config.ADMIN_EMAIL = ADMIN_EMAIL
app.state.config.DEFAULT_MODELS = DEFAULT_MODELS app.state.config.DEFAULT_MODELS = DEFAULT_MODELS
app.state.config.DEFAULT_PROMPT_SUGGESTIONS = DEFAULT_PROMPT_SUGGESTIONS app.state.config.DEFAULT_PROMPT_SUGGESTIONS = DEFAULT_PROMPT_SUGGESTIONS
app.state.config.DEFAULT_USER_ROLE = DEFAULT_USER_ROLE app.state.config.DEFAULT_USER_ROLE = DEFAULT_USER_ROLE
app.state.config.ACCOUNT_PENDING_TEXT = ACCOUNT_PENDING_TEXT
app.state.config.ACCOUNT_PENDING_TITLE = ACCOUNT_PENDING_TITLE
app.state.config.USER_PERMISSIONS = USER_PERMISSIONS app.state.config.USER_PERMISSIONS = USER_PERMISSIONS
app.state.config.WEBHOOK_URL = WEBHOOK_URL app.state.config.WEBHOOK_URL = WEBHOOK_URL
@ -1397,6 +1401,10 @@ async def get_app_config(request: Request):
"sharepoint_url": ONEDRIVE_SHAREPOINT_URL.value, "sharepoint_url": ONEDRIVE_SHAREPOINT_URL.value,
"sharepoint_tenant_id": ONEDRIVE_SHAREPOINT_TENANT_ID.value, "sharepoint_tenant_id": ONEDRIVE_SHAREPOINT_TENANT_ID.value,
}, },
"ui": {
"account_pending_title": app.state.config.ACCOUNT_PENDING_TITLE,
"account_pending_text": app.state.config.ACCOUNT_PENDING_TEXT,
},
"license_metadata": app.state.LICENSE_METADATA, "license_metadata": app.state.LICENSE_METADATA,
**( **(
{ {

View file

@ -696,6 +696,8 @@ async def get_admin_config(request: Request, user=Depends(get_admin_user)):
"ENABLE_CHANNELS": request.app.state.config.ENABLE_CHANNELS, "ENABLE_CHANNELS": request.app.state.config.ENABLE_CHANNELS,
"ENABLE_NOTES": request.app.state.config.ENABLE_NOTES, "ENABLE_NOTES": request.app.state.config.ENABLE_NOTES,
"ENABLE_USER_WEBHOOKS": request.app.state.config.ENABLE_USER_WEBHOOKS, "ENABLE_USER_WEBHOOKS": request.app.state.config.ENABLE_USER_WEBHOOKS,
"ACCOUNT_PENDING_TEXT": request.app.state.config.ACCOUNT_PENDING_TEXT,
"ACCOUNT_PENDING_TITLE": request.app.state.config.ACCOUNT_PENDING_TITLE,
} }
@ -713,6 +715,8 @@ class AdminConfig(BaseModel):
ENABLE_CHANNELS: bool ENABLE_CHANNELS: bool
ENABLE_NOTES: bool ENABLE_NOTES: bool
ENABLE_USER_WEBHOOKS: bool ENABLE_USER_WEBHOOKS: bool
ACCOUNT_PENDING_TEXT: Optional[str] = None
ACCOUNT_PENDING_TITLE: Optional[str] = None
@router.post("/admin/config") @router.post("/admin/config")
@ -750,6 +754,9 @@ async def update_admin_config(
request.app.state.config.ENABLE_USER_WEBHOOKS = form_data.ENABLE_USER_WEBHOOKS request.app.state.config.ENABLE_USER_WEBHOOKS = form_data.ENABLE_USER_WEBHOOKS
request.app.state.config.ACCOUNT_PENDING_TEXT = form_data.ACCOUNT_PENDING_TEXT
request.app.state.config.ACCOUNT_PENDING_TITLE = form_data.ACCOUNT_PENDING_TITLE
return { return {
"SHOW_ADMIN_DETAILS": request.app.state.config.SHOW_ADMIN_DETAILS, "SHOW_ADMIN_DETAILS": request.app.state.config.SHOW_ADMIN_DETAILS,
"WEBUI_URL": request.app.state.config.WEBUI_URL, "WEBUI_URL": request.app.state.config.WEBUI_URL,
@ -764,6 +771,8 @@ async def update_admin_config(
"ENABLE_CHANNELS": request.app.state.config.ENABLE_CHANNELS, "ENABLE_CHANNELS": request.app.state.config.ENABLE_CHANNELS,
"ENABLE_NOTES": request.app.state.config.ENABLE_NOTES, "ENABLE_NOTES": request.app.state.config.ENABLE_NOTES,
"ENABLE_USER_WEBHOOKS": request.app.state.config.ENABLE_USER_WEBHOOKS, "ENABLE_USER_WEBHOOKS": request.app.state.config.ENABLE_USER_WEBHOOKS,
"ACCOUNT_PENDING_TEXT": request.app.state.config.ACCOUNT_PENDING_TEXT,
"ACCOUNT_PENDING_TITLE": request.app.state.config.ACCOUNT_PENDING_TITLE,
} }

View file

@ -305,6 +305,26 @@
<Switch bind:state={adminConfig.SHOW_ADMIN_DETAILS} /> <Switch bind:state={adminConfig.SHOW_ADMIN_DETAILS} />
</div> </div>
<div class="mb-3.5">
<div class=" self-center text-xs font-medium mb-1">{$i18n.t('Custom Account Pending Title')}</div>
<textarea
class="w-full mt-1 rounded-lg py-2 px-4 text-sm bg-gray-50 dark:text-gray-300 dark:bg-gray-850 outline-hidden"
rows="2"
placeholder={$i18n.t('Enter a custom title to be displayed on the account pending screen. Leave empty for default.')}
bind:value={adminConfig.ACCOUNT_PENDING_TITLE}
></textarea>
</div>
<div class="mb-3.5">
<div class=" self-center text-xs font-medium mb-1">{$i18n.t('Custom Account Pending Text')}</div>
<textarea
class="w-full mt-1 rounded-lg py-2 px-4 text-sm bg-gray-50 dark:text-gray-300 dark:bg-gray-850 outline-hidden"
rows="3"
placeholder={$i18n.t('Enter a custom text to be displayed on the account pending screen. Leave empty for default.')}
bind:value={adminConfig.ACCOUNT_PENDING_TEXT}
></textarea>
</div>
<div class="mb-2.5 flex w-full justify-between pr-2"> <div class="mb-2.5 flex w-full justify-between pr-2">
<div class=" self-center text-xs font-medium">{$i18n.t('Enable API Key')}</div> <div class=" self-center text-xs font-medium">{$i18n.t('Enable API Key')}</div>

View file

@ -1,6 +1,7 @@
<script lang="ts"> <script lang="ts">
import { getAdminDetails } from '$lib/apis/auths'; import { getAdminDetails } from '$lib/apis/auths';
import { onMount, tick, getContext } from 'svelte'; import { onMount, tick, getContext } from 'svelte';
import { config } from '$lib/stores';
const i18n = getContext('i18n'); const i18n = getContext('i18n');
@ -20,16 +21,22 @@
> >
<div class="m-auto pb-10 flex flex-col justify-center"> <div class="m-auto pb-10 flex flex-col justify-center">
<div class="max-w-md"> <div class="max-w-md">
<div class="text-center dark:text-white text-2xl font-medium z-50"> <div class="text-center dark:text-white text-2xl font-medium z-50" style="white-space: pre-wrap;">
{$i18n.t('Account Activation Pending')}<br /> {#if $config?.ui?.account_pending_title && $config?.ui?.account_pending_title.trim() !== ""}
{$i18n.t('Contact Admin for WebUI Access')} {$config.ui.account_pending_title}
{:else}
{$i18n.t('Account Activation Pending')}{#if !$config?.ui?.account_pending_title || $config?.ui?.account_pending_title.trim() === ""}<br />{/if}{$i18n.t('Contact Admin for WebUI Access')}
{/if}
</div> </div>
<div class=" mt-4 text-center text-sm dark:text-gray-200 w-full"> <div class=" mt-4 text-center text-sm dark:text-gray-200 w-full" style="white-space: pre-wrap;">
{$i18n.t('Your account status is currently pending activation.')}<br /> {#if $config?.ui?.account_pending_text && $config?.ui?.account_pending_text.trim() !== ""}
{$i18n.t( {$config.ui.account_pending_text}
{:else}
{$i18n.t('Your account status is currently pending activation.')}{'\n'}{$i18n.t(
'To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.' 'To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.'
)} )}
{/if}
</div> </div>
{#if adminDetails} {#if adminDetails}

View file

@ -279,6 +279,8 @@
"Current Model": "الموديل المختار", "Current Model": "الموديل المختار",
"Current Password": "كلمة السر الحالية", "Current Password": "كلمة السر الحالية",
"Custom": "مخصص", "Custom": "مخصص",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "", "Danger Zone": "",
"Dark": "مظلم", "Dark": "مظلم",
"Database": "قاعدة البيانات", "Database": "قاعدة البيانات",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "", "Enforce Temporary Chat": "",
"Enhance": "", "Enhance": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "تأكد من أن ملف CSV الخاص بك يتضمن 4 أعمدة بهذا الترتيب: Name, Email, Password, Role.", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "تأكد من أن ملف CSV الخاص بك يتضمن 4 أعمدة بهذا الترتيب: Name, Email, Password, Role.",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "أدخل رسالة {{role}} هنا", "Enter {{role}} message here": "أدخل رسالة {{role}} هنا",
"Enter a detail about yourself for your LLMs to recall": "ادخل معلومات عنك تريد أن يتذكرها الموديل", "Enter a detail about yourself for your LLMs to recall": "ادخل معلومات عنك تريد أن يتذكرها الموديل",
"Enter api auth string (e.g. username:password)": "", "Enter api auth string (e.g. username:password)": "",

View file

@ -279,6 +279,8 @@
"Current Model": "النموذج الحالي", "Current Model": "النموذج الحالي",
"Current Password": "كلمة المرور الحالية", "Current Password": "كلمة المرور الحالية",
"Custom": "مخصص", "Custom": "مخصص",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "منطقة الخطر", "Danger Zone": "منطقة الخطر",
"Dark": "داكن", "Dark": "داكن",
"Database": "قاعدة البيانات", "Database": "قاعدة البيانات",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "", "Enforce Temporary Chat": "",
"Enhance": "", "Enhance": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "تأكد من أن ملف CSV الخاص بك يتضمن 4 أعمدة بهذا الترتيب: Name, Email, Password, Role.", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "تأكد من أن ملف CSV الخاص بك يتضمن 4 أعمدة بهذا الترتيب: Name, Email, Password, Role.",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "أدخل رسالة {{role}} هنا", "Enter {{role}} message here": "أدخل رسالة {{role}} هنا",
"Enter a detail about yourself for your LLMs to recall": "ادخل معلومات عنك تريد أن يتذكرها الموديل", "Enter a detail about yourself for your LLMs to recall": "ادخل معلومات عنك تريد أن يتذكرها الموديل",
"Enter api auth string (e.g. username:password)": "أدخل سلسلة توثيق API (مثال: username:password)", "Enter api auth string (e.g. username:password)": "أدخل سلسلة توثيق API (مثال: username:password)",

View file

@ -279,6 +279,8 @@
"Current Model": "Текущ модел", "Current Model": "Текущ модел",
"Current Password": "Текуща Парола", "Current Password": "Текуща Парола",
"Custom": "Персонализиран", "Custom": "Персонализиран",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "", "Danger Zone": "",
"Dark": "Тъмен", "Dark": "Тъмен",
"Database": "База данни", "Database": "База данни",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "", "Enforce Temporary Chat": "",
"Enhance": "", "Enhance": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Уверете се, че вашият CSV файл включва 4 колони в следния ред: Име, Имейл, Парола, Роля.", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Уверете се, че вашият CSV файл включва 4 колони в следния ред: Име, Имейл, Парола, Роля.",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "Въведете съобщение за {{role}} тук", "Enter {{role}} message here": "Въведете съобщение за {{role}} тук",
"Enter a detail about yourself for your LLMs to recall": "Въведете подробности за себе си, за да ги запомнят вашите LLMs", "Enter a detail about yourself for your LLMs to recall": "Въведете подробности за себе си, за да ги запомнят вашите LLMs",
"Enter api auth string (e.g. username:password)": "Въведете низ за удостоверяване на API (напр. потребителско_име:парола)", "Enter api auth string (e.g. username:password)": "Въведете низ за удостоверяване на API (напр. потребителско_име:парола)",

View file

@ -279,6 +279,8 @@
"Current Model": "বর্তমান মডেল", "Current Model": "বর্তমান মডেল",
"Current Password": "বর্তমান পাসওয়ার্ড", "Current Password": "বর্তমান পাসওয়ার্ড",
"Custom": "কাস্টম", "Custom": "কাস্টম",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "", "Danger Zone": "",
"Dark": "ডার্ক", "Dark": "ডার্ক",
"Database": "ডেটাবেজ", "Database": "ডেটাবেজ",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "", "Enforce Temporary Chat": "",
"Enhance": "", "Enhance": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "আপনার সিএসভি ফাইলটিতে এই ক্রমে 4 টি কলাম অন্তর্ভুক্ত রয়েছে তা নিশ্চিত করুন: নাম, ইমেল, পাসওয়ার্ড, ভূমিকা।.", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "আপনার সিএসভি ফাইলটিতে এই ক্রমে 4 টি কলাম অন্তর্ভুক্ত রয়েছে তা নিশ্চিত করুন: নাম, ইমেল, পাসওয়ার্ড, ভূমিকা।.",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "{{role}} মেসেজ এখানে লিখুন", "Enter {{role}} message here": "{{role}} মেসেজ এখানে লিখুন",
"Enter a detail about yourself for your LLMs to recall": "আপনার এলএলএমগুলি স্মরণ করার জন্য নিজের সম্পর্কে একটি বিশদ লিখুন", "Enter a detail about yourself for your LLMs to recall": "আপনার এলএলএমগুলি স্মরণ করার জন্য নিজের সম্পর্কে একটি বিশদ লিখুন",
"Enter api auth string (e.g. username:password)": "", "Enter api auth string (e.g. username:password)": "",

View file

@ -279,6 +279,8 @@
"Current Model": "ད་ལྟའི་དཔེ་དབྱིབས།", "Current Model": "ད་ལྟའི་དཔེ་དབྱིབས།",
"Current Password": "ད་ལྟའི་གསང་གྲངས།", "Current Password": "ད་ལྟའི་གསང་གྲངས།",
"Custom": "སྲོལ་བཟོས།", "Custom": "སྲོལ་བཟོས།",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "ཉེན་ཁའི་ས་ཁུལ།", "Danger Zone": "ཉེན་ཁའི་ས་ཁུལ།",
"Dark": "ནག་པོ།", "Dark": "ནག་པོ།",
"Database": "གནས་ཚུལ་མཛོད།", "Database": "གནས་ཚུལ་མཛོད།",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "གནས་སྐབས་ཁ་བརྡ་བཙན་བཀོལ་བྱེད་པ།", "Enforce Temporary Chat": "གནས་སྐབས་ཁ་བརྡ་བཙན་བཀོལ་བྱེད་པ།",
"Enhance": "", "Enhance": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "ཁྱེད་ཀྱི་ CSV ཡིག་ཆར་གོ་རིམ་འདི་ལྟར། མིང་། ཡིག་ཟམ། གསང་གྲངས། གནས་ཚད། སྟར་པ་ ༤ ཚུད་ཡོད་པ་ཁག་ཐེག་བྱེད་རོགས།", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "ཁྱེད་ཀྱི་ CSV ཡིག་ཆར་གོ་རིམ་འདི་ལྟར། མིང་། ཡིག་ཟམ། གསང་གྲངས། གནས་ཚད། སྟར་པ་ ༤ ཚུད་ཡོད་པ་ཁག་ཐེག་བྱེད་རོགས།",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "{{role}} ཡི་འཕྲིན་འདིར་འཇུག་པ།", "Enter {{role}} message here": "{{role}} ཡི་འཕྲིན་འདིར་འཇུག་པ།",
"Enter a detail about yourself for your LLMs to recall": "ཁྱེད་ཀྱི་ LLMs ཡིས་ཕྱིར་དྲན་ཆེད་དུ་ཁྱེད་རང་གི་སྐོར་གྱི་ཞིབ་ཕྲ་ཞིག་འཇུག་པ།", "Enter a detail about yourself for your LLMs to recall": "ཁྱེད་ཀྱི་ LLMs ཡིས་ཕྱིར་དྲན་ཆེད་དུ་ཁྱེད་རང་གི་སྐོར་གྱི་ཞིབ་ཕྲ་ཞིག་འཇུག་པ།",
"Enter api auth string (e.g. username:password)": "api auth ཡིག་ཕྲེང་འཇུག་པ། (དཔེར་ན། username:password)", "Enter api auth string (e.g. username:password)": "api auth ཡིག་ཕྲེང་འཇུག་པ། (དཔེར་ན། username:password)",

View file

@ -279,6 +279,8 @@
"Current Model": "Model actual", "Current Model": "Model actual",
"Current Password": "Contrasenya actual", "Current Password": "Contrasenya actual",
"Custom": "Personalitzat", "Custom": "Personalitzat",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "Zona de perill", "Danger Zone": "Zona de perill",
"Dark": "Fosc", "Dark": "Fosc",
"Database": "Base de dades", "Database": "Base de dades",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "Forçar els xats temporals", "Enforce Temporary Chat": "Forçar els xats temporals",
"Enhance": "Millorar", "Enhance": "Millorar",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Assegura't que els teus fitxers CSV inclouen 4 columnes en aquest ordre: Nom, Correu electrònic, Contrasenya, Rol.", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Assegura't que els teus fitxers CSV inclouen 4 columnes en aquest ordre: Nom, Correu electrònic, Contrasenya, Rol.",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "Introdueix aquí el missatge de {{role}}", "Enter {{role}} message here": "Introdueix aquí el missatge de {{role}}",
"Enter a detail about yourself for your LLMs to recall": "Introdueix un detall sobre tu què els teus models de llenguatge puguin recordar", "Enter a detail about yourself for your LLMs to recall": "Introdueix un detall sobre tu què els teus models de llenguatge puguin recordar",
"Enter api auth string (e.g. username:password)": "Entra la cadena d'autenticació api (p. ex. nom d'usuari:contrasenya)", "Enter api auth string (e.g. username:password)": "Entra la cadena d'autenticació api (p. ex. nom d'usuari:contrasenya)",

View file

@ -279,6 +279,8 @@
"Current Model": "Kasamtangang modelo", "Current Model": "Kasamtangang modelo",
"Current Password": "Kasamtangang Password", "Current Password": "Kasamtangang Password",
"Custom": "Custom", "Custom": "Custom",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "", "Danger Zone": "",
"Dark": "Ngitngit", "Dark": "Ngitngit",
"Database": "Database", "Database": "Database",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "", "Enforce Temporary Chat": "",
"Enhance": "", "Enhance": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "Pagsulod sa mensahe {{role}} dinhi", "Enter {{role}} message here": "Pagsulod sa mensahe {{role}} dinhi",
"Enter a detail about yourself for your LLMs to recall": "", "Enter a detail about yourself for your LLMs to recall": "",
"Enter api auth string (e.g. username:password)": "", "Enter api auth string (e.g. username:password)": "",

View file

@ -279,6 +279,8 @@
"Current Model": "Aktuální model", "Current Model": "Aktuální model",
"Current Password": "Aktuální heslo", "Current Password": "Aktuální heslo",
"Custom": "Na míru", "Custom": "Na míru",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "", "Danger Zone": "",
"Dark": "Tmavý", "Dark": "Tmavý",
"Database": "Databáze", "Database": "Databáze",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "", "Enforce Temporary Chat": "",
"Enhance": "", "Enhance": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Ujistěte se, že váš CSV soubor obsahuje 4 sloupce v tomto pořadí: Name, Email, Password, Role.", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Ujistěte se, že váš CSV soubor obsahuje 4 sloupce v tomto pořadí: Name, Email, Password, Role.",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "Zadejte zprávu {{role}} sem", "Enter {{role}} message here": "Zadejte zprávu {{role}} sem",
"Enter a detail about yourself for your LLMs to recall": "Zadejte podrobnost o sobě, kterou si vaše LLM mají pamatovat.", "Enter a detail about yourself for your LLMs to recall": "Zadejte podrobnost o sobě, kterou si vaše LLM mají pamatovat.",
"Enter api auth string (e.g. username:password)": "Zadejte autentizační řetězec API (např. uživatelské_jméno:heslo)", "Enter api auth string (e.g. username:password)": "Zadejte autentizační řetězec API (např. uživatelské_jméno:heslo)",

View file

@ -279,6 +279,8 @@
"Current Model": "Nuværende model", "Current Model": "Nuværende model",
"Current Password": "Nuværende password", "Current Password": "Nuværende password",
"Custom": "Custom", "Custom": "Custom",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "Danger Zone", "Danger Zone": "Danger Zone",
"Dark": "Mørk", "Dark": "Mørk",
"Database": "Database", "Database": "Database",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "", "Enforce Temporary Chat": "",
"Enhance": "Forbedre", "Enhance": "Forbedre",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Sørg for at din CSV-fil indeholder 4 kolonner i denne rækkefølge: Name, Email, Password, Role.", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Sørg for at din CSV-fil indeholder 4 kolonner i denne rækkefølge: Name, Email, Password, Role.",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "Indtast {{role}} besked her", "Enter {{role}} message here": "Indtast {{role}} besked her",
"Enter a detail about yourself for your LLMs to recall": "Indtast en detalje om dig selv, som dine LLMs kan huske", "Enter a detail about yourself for your LLMs to recall": "Indtast en detalje om dig selv, som dine LLMs kan huske",
"Enter api auth string (e.g. username:password)": "Indtast api-godkendelsesstreng (f.eks. brugernavn:adgangskode)", "Enter api auth string (e.g. username:password)": "Indtast api-godkendelsesstreng (f.eks. brugernavn:adgangskode)",

View file

@ -279,6 +279,8 @@
"Current Model": "Aktuelles Modell", "Current Model": "Aktuelles Modell",
"Current Password": "Aktuelles Passwort", "Current Password": "Aktuelles Passwort",
"Custom": "Benutzerdefiniert", "Custom": "Benutzerdefiniert",
"Custom Account Pending Text": "Benutzerdefinierter Kontoaktivierungsbildschirm Text",
"Custom Account Pending Title": "Benuterdefinierter Kontoaktivierungsbildschirm Titel",
"Danger Zone": "Gefahrenzone", "Danger Zone": "Gefahrenzone",
"Dark": "Dunkel", "Dark": "Dunkel",
"Database": "Datenbank", "Database": "Datenbank",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "Temporären Chat erzwingen", "Enforce Temporary Chat": "Temporären Chat erzwingen",
"Enhance": "", "Enhance": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Stellen Sie sicher, dass Ihre CSV-Datei 4 Spalten in dieser Reihenfolge enthält: Name, E-Mail, Passwort, Rolle.", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Stellen Sie sicher, dass Ihre CSV-Datei 4 Spalten in dieser Reihenfolge enthält: Name, E-Mail, Passwort, Rolle.",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "Gib einen benutzerdefinierten Text ein, der am Kontoaktivierungsbildschirm angezeigt werden soll. Leer lassen für Standard.",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "Gib einen benutzerdefinierten Titel ein, der am Kontoaktivierungsbildschirm angezeigt werden soll. Leer lassen für Standard.",
"Enter {{role}} message here": "Geben Sie die {{role}}-Nachricht hier ein", "Enter {{role}} message here": "Geben Sie die {{role}}-Nachricht hier ein",
"Enter a detail about yourself for your LLMs to recall": "Geben Sie ein Detail über sich selbst ein, das Ihre Sprachmodelle (LLMs) sich merken sollen", "Enter a detail about yourself for your LLMs to recall": "Geben Sie ein Detail über sich selbst ein, das Ihre Sprachmodelle (LLMs) sich merken sollen",
"Enter api auth string (e.g. username:password)": "Geben Sie die API-Authentifizierungszeichenfolge ein (z. B. Benutzername:Passwort)", "Enter api auth string (e.g. username:password)": "Geben Sie die API-Authentifizierungszeichenfolge ein (z. B. Benutzername:Passwort)",

View file

@ -279,6 +279,8 @@
"Current Model": "Current Model", "Current Model": "Current Model",
"Current Password": "Current Password", "Current Password": "Current Password",
"Custom": "Custom", "Custom": "Custom",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "", "Danger Zone": "",
"Dark": "Dark", "Dark": "Dark",
"Database": "Database", "Database": "Database",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "", "Enforce Temporary Chat": "",
"Enhance": "", "Enhance": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "Enter {{role}} bork here", "Enter {{role}} message here": "Enter {{role}} bork here",
"Enter a detail about yourself for your LLMs to recall": "", "Enter a detail about yourself for your LLMs to recall": "",
"Enter api auth string (e.g. username:password)": "", "Enter api auth string (e.g. username:password)": "",

View file

@ -279,6 +279,8 @@
"Current Model": "Τρέχον Μοντέλο", "Current Model": "Τρέχον Μοντέλο",
"Current Password": "Τρέχων Κωδικός", "Current Password": "Τρέχων Κωδικός",
"Custom": "Προσαρμοσμένο", "Custom": "Προσαρμοσμένο",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "", "Danger Zone": "",
"Dark": "Σκούρο", "Dark": "Σκούρο",
"Database": "Βάση Δεδομένων", "Database": "Βάση Δεδομένων",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "", "Enforce Temporary Chat": "",
"Enhance": "", "Enhance": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Βεβαιωθείτε ότι το αρχείο CSV σας περιλαμβάνει 4 στήλες με αυτή τη σειρά: Όνομα, Email, Κωδικός, Ρόλος.", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Βεβαιωθείτε ότι το αρχείο CSV σας περιλαμβάνει 4 στήλες με αυτή τη σειρά: Όνομα, Email, Κωδικός, Ρόλος.",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "Εισάγετε το μήνυμα {{role}} εδώ", "Enter {{role}} message here": "Εισάγετε το μήνυμα {{role}} εδώ",
"Enter a detail about yourself for your LLMs to recall": "Εισάγετε μια λεπτομέρεια για τον εαυτό σας ώστε τα LLMs να την ανακαλούν", "Enter a detail about yourself for your LLMs to recall": "Εισάγετε μια λεπτομέρεια για τον εαυτό σας ώστε τα LLMs να την ανακαλούν",
"Enter api auth string (e.g. username:password)": "Εισάγετε τη σειρά επαλήθευσης api (π.χ. username:password)", "Enter api auth string (e.g. username:password)": "Εισάγετε τη σειρά επαλήθευσης api (π.χ. username:password)",

View file

@ -279,6 +279,8 @@
"Current Model": "", "Current Model": "",
"Current Password": "", "Current Password": "",
"Custom": "", "Custom": "",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "", "Danger Zone": "",
"Dark": "", "Dark": "",
"Database": "", "Database": "",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "", "Enforce Temporary Chat": "",
"Enhance": "", "Enhance": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "", "Enter {{role}} message here": "",
"Enter a detail about yourself for your LLMs to recall": "", "Enter a detail about yourself for your LLMs to recall": "",
"Enter api auth string (e.g. username:password)": "", "Enter api auth string (e.g. username:password)": "",

View file

@ -279,6 +279,8 @@
"Current Model": "", "Current Model": "",
"Current Password": "", "Current Password": "",
"Custom": "", "Custom": "",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "", "Danger Zone": "",
"Dark": "", "Dark": "",
"Database": "", "Database": "",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "", "Enforce Temporary Chat": "",
"Enhance": "", "Enhance": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "", "Enter {{role}} message here": "",
"Enter a detail about yourself for your LLMs to recall": "", "Enter a detail about yourself for your LLMs to recall": "",
"Enter api auth string (e.g. username:password)": "", "Enter api auth string (e.g. username:password)": "",

View file

@ -279,6 +279,8 @@
"Current Model": "Modelo Actual", "Current Model": "Modelo Actual",
"Current Password": "Contraseña Actual", "Current Password": "Contraseña Actual",
"Custom": "Personalizado", "Custom": "Personalizado",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "Zona Peligrosa", "Danger Zone": "Zona Peligrosa",
"Dark": "Oscuro", "Dark": "Oscuro",
"Database": "Base de datos", "Database": "Base de datos",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "Forzar el uso de Chat Temporal", "Enforce Temporary Chat": "Forzar el uso de Chat Temporal",
"Enhance": "", "Enhance": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Asegúrese de que su archivo CSV incluya 4 columnas en este orden: Nombre, Correo Electrónico, Contraseña, Rol.", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Asegúrese de que su archivo CSV incluya 4 columnas en este orden: Nombre, Correo Electrónico, Contraseña, Rol.",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "Ingresar mensaje {{role}} aquí", "Enter {{role}} message here": "Ingresar mensaje {{role}} aquí",
"Enter a detail about yourself for your LLMs to recall": "Ingresar detalles sobre ti para que los recuerden sus LLMs", "Enter a detail about yourself for your LLMs to recall": "Ingresar detalles sobre ti para que los recuerden sus LLMs",
"Enter api auth string (e.g. username:password)": "Ingresar campo de autorización de la api (p.ej. nombre:contraseña)", "Enter api auth string (e.g. username:password)": "Ingresar campo de autorización de la api (p.ej. nombre:contraseña)",

View file

@ -279,6 +279,8 @@
"Current Model": "Praegune mudel", "Current Model": "Praegune mudel",
"Current Password": "Praegune parool", "Current Password": "Praegune parool",
"Custom": "Kohandatud", "Custom": "Kohandatud",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "Ohutsoon", "Danger Zone": "Ohutsoon",
"Dark": "Tume", "Dark": "Tume",
"Database": "Andmebaas", "Database": "Andmebaas",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "", "Enforce Temporary Chat": "",
"Enhance": "", "Enhance": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Veenduge, et teie CSV-fail sisaldab 4 veergu selles järjekorras: Nimi, E-post, Parool, Roll.", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Veenduge, et teie CSV-fail sisaldab 4 veergu selles järjekorras: Nimi, E-post, Parool, Roll.",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "Sisestage {{role}} sõnum siia", "Enter {{role}} message here": "Sisestage {{role}} sõnum siia",
"Enter a detail about yourself for your LLMs to recall": "Sisestage detail enda kohta, mida teie LLM-id saavad meenutada", "Enter a detail about yourself for your LLMs to recall": "Sisestage detail enda kohta, mida teie LLM-id saavad meenutada",
"Enter api auth string (e.g. username:password)": "Sisestage api autentimisstring (nt kasutajanimi:parool)", "Enter api auth string (e.g. username:password)": "Sisestage api autentimisstring (nt kasutajanimi:parool)",

View file

@ -279,6 +279,8 @@
"Current Model": "Uneko Eredua", "Current Model": "Uneko Eredua",
"Current Password": "Uneko Pasahitza", "Current Password": "Uneko Pasahitza",
"Custom": "Pertsonalizatua", "Custom": "Pertsonalizatua",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "", "Danger Zone": "",
"Dark": "Iluna", "Dark": "Iluna",
"Database": "Datu-basea", "Database": "Datu-basea",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "", "Enforce Temporary Chat": "",
"Enhance": "", "Enhance": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Ziurtatu zure CSV fitxategiak 4 zutabe dituela ordena honetan: Izena, Posta elektronikoa, Pasahitza, Rola.", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Ziurtatu zure CSV fitxategiak 4 zutabe dituela ordena honetan: Izena, Posta elektronikoa, Pasahitza, Rola.",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "Sartu {{role}} mezua hemen", "Enter {{role}} message here": "Sartu {{role}} mezua hemen",
"Enter a detail about yourself for your LLMs to recall": "Sartu zure buruari buruzko xehetasun bat LLMek gogoratzeko", "Enter a detail about yourself for your LLMs to recall": "Sartu zure buruari buruzko xehetasun bat LLMek gogoratzeko",
"Enter api auth string (e.g. username:password)": "Sartu api autentifikazio katea (adib. erabiltzailea:pasahitza)", "Enter api auth string (e.g. username:password)": "Sartu api autentifikazio katea (adib. erabiltzailea:pasahitza)",

View file

@ -279,6 +279,8 @@
"Current Model": "مدل فعلی", "Current Model": "مدل فعلی",
"Current Password": "رمز عبور فعلی", "Current Password": "رمز عبور فعلی",
"Custom": "دلخواه", "Custom": "دلخواه",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "منطقه خطر", "Danger Zone": "منطقه خطر",
"Dark": "تیره", "Dark": "تیره",
"Database": "پایگاه داده", "Database": "پایگاه داده",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "اجبار چت موقت", "Enforce Temporary Chat": "اجبار چت موقت",
"Enhance": "", "Enhance": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "اطمینان حاصل کنید که فایل CSV شما شامل چهار ستون در این ترتیب است: نام، ایمیل، رمز عبور، نقش.", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "اطمینان حاصل کنید که فایل CSV شما شامل چهار ستون در این ترتیب است: نام، ایمیل، رمز عبور، نقش.",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "پیام {{role}} را اینجا وارد کنید", "Enter {{role}} message here": "پیام {{role}} را اینجا وارد کنید",
"Enter a detail about yourself for your LLMs to recall": "برای ذخیره سازی اطلاعات خود، یک توضیح کوتاه درباره خود را وارد کنید", "Enter a detail about yourself for your LLMs to recall": "برای ذخیره سازی اطلاعات خود، یک توضیح کوتاه درباره خود را وارد کنید",
"Enter api auth string (e.g. username:password)": "رشته احراز هویت api را وارد کنید (مثلا username:password)", "Enter api auth string (e.g. username:password)": "رشته احراز هویت api را وارد کنید (مثلا username:password)",

View file

@ -279,6 +279,8 @@
"Current Model": "Nykyinen malli", "Current Model": "Nykyinen malli",
"Current Password": "Nykyinen salasana", "Current Password": "Nykyinen salasana",
"Custom": "Mukautettu", "Custom": "Mukautettu",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "Vaara-alue", "Danger Zone": "Vaara-alue",
"Dark": "Tumma", "Dark": "Tumma",
"Database": "Tietokanta", "Database": "Tietokanta",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "Pakota väliaikaiset keskustelut", "Enforce Temporary Chat": "Pakota väliaikaiset keskustelut",
"Enhance": "Paranna", "Enhance": "Paranna",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Varmista, että CSV-tiedostossasi on 4 saraketta tässä järjestyksessä: Nimi, Sähköposti, Salasana, Rooli.", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Varmista, että CSV-tiedostossasi on 4 saraketta tässä järjestyksessä: Nimi, Sähköposti, Salasana, Rooli.",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "Kirjoita {{role}}-viesti tähän", "Enter {{role}} message here": "Kirjoita {{role}}-viesti tähän",
"Enter a detail about yourself for your LLMs to recall": "Kirjoita yksityiskohta itsestäsi, jonka LLM-ohjelmat voivat muistaa", "Enter a detail about yourself for your LLMs to recall": "Kirjoita yksityiskohta itsestäsi, jonka LLM-ohjelmat voivat muistaa",
"Enter api auth string (e.g. username:password)": "Kirjoita API-todennusmerkkijono (esim. käyttäjätunnus:salasana)", "Enter api auth string (e.g. username:password)": "Kirjoita API-todennusmerkkijono (esim. käyttäjätunnus:salasana)",

View file

@ -279,6 +279,8 @@
"Current Model": "Modèle actuel amélioré", "Current Model": "Modèle actuel amélioré",
"Current Password": "Mot de passe actuel", "Current Password": "Mot de passe actuel",
"Custom": "Sur mesure", "Custom": "Sur mesure",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "", "Danger Zone": "",
"Dark": "Obscur", "Dark": "Obscur",
"Database": "Base de données", "Database": "Base de données",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "", "Enforce Temporary Chat": "",
"Enhance": "", "Enhance": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Vérifiez que votre fichier CSV comprenne les 4 colonnes dans cet ordre : Name, Email, Password, Role.", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Vérifiez que votre fichier CSV comprenne les 4 colonnes dans cet ordre : Name, Email, Password, Role.",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "Entrez le message {{role}} ici", "Enter {{role}} message here": "Entrez le message {{role}} ici",
"Enter a detail about yourself for your LLMs to recall": "Saisissez un détail sur vous-même que vos LLMs pourront se rappeler", "Enter a detail about yourself for your LLMs to recall": "Saisissez un détail sur vous-même que vos LLMs pourront se rappeler",
"Enter api auth string (e.g. username:password)": "Entrez la chaîne d'authentification de l'API (par ex. nom d'utilisateur:mot de passe)", "Enter api auth string (e.g. username:password)": "Entrez la chaîne d'authentification de l'API (par ex. nom d'utilisateur:mot de passe)",

View file

@ -279,6 +279,8 @@
"Current Model": "Modèle actuel", "Current Model": "Modèle actuel",
"Current Password": "Mot de passe actuel", "Current Password": "Mot de passe actuel",
"Custom": "Sur mesure", "Custom": "Sur mesure",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "Zone de danger", "Danger Zone": "Zone de danger",
"Dark": "Sombre", "Dark": "Sombre",
"Database": "Base de données", "Database": "Base de données",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "Imposer les discussions temporaires", "Enforce Temporary Chat": "Imposer les discussions temporaires",
"Enhance": "", "Enhance": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Vérifiez que votre fichier CSV comprenne les 4 colonnes dans cet ordre : Name, Email, Password, Role.", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Vérifiez que votre fichier CSV comprenne les 4 colonnes dans cet ordre : Name, Email, Password, Role.",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "Entrez le message {{role}} ici", "Enter {{role}} message here": "Entrez le message {{role}} ici",
"Enter a detail about yourself for your LLMs to recall": "Saisissez un détail sur vous-même que vos LLMs pourront se rappeler", "Enter a detail about yourself for your LLMs to recall": "Saisissez un détail sur vous-même que vos LLMs pourront se rappeler",
"Enter api auth string (e.g. username:password)": "Entrez la chaîne d'authentification de l'API (par ex. nom d'utilisateur:mot de passe)", "Enter api auth string (e.g. username:password)": "Entrez la chaîne d'authentification de l'API (par ex. nom d'utilisateur:mot de passe)",

View file

@ -254,6 +254,8 @@
"Current Model": "Modelo Actual", "Current Model": "Modelo Actual",
"Current Password": "contrasinal Actual", "Current Password": "contrasinal Actual",
"Custom": "Personalizado", "Custom": "Personalizado",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "", "Danger Zone": "",
"Dark": "Oscuro", "Dark": "Oscuro",
"Database": "Base de datos", "Database": "Base de datos",
@ -369,6 +371,8 @@
"Enable New Sign Ups": "Habilitar novos Registros", "Enable New Sign Ups": "Habilitar novos Registros",
"Enabled": "Activado", "Enabled": "Activado",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "asegurese de o teu arquivo CSV inclúe 4 columnas nesta orde: Nome, Email, Contrasinal, Rol.", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "asegurese de o teu arquivo CSV inclúe 4 columnas nesta orde: Nome, Email, Contrasinal, Rol.",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "Ingrese o mensaxe {{role}} aquí", "Enter {{role}} message here": "Ingrese o mensaxe {{role}} aquí",
"Enter a detail about yourself for your LLMs to recall": "Ingrese un detalle sobre vostede para que as suas LLMs recorden", "Enter a detail about yourself for your LLMs to recall": "Ingrese un detalle sobre vostede para que as suas LLMs recorden",
"Enter api auth string (e.g. username:password)": "Ingrese a cadena de autorización de api (p.ej., nombre:contrasinal )", "Enter api auth string (e.g. username:password)": "Ingrese a cadena de autorización de api (p.ej., nombre:contrasinal )",

View file

@ -279,6 +279,8 @@
"Current Model": "המודל הנוכחי", "Current Model": "המודל הנוכחי",
"Current Password": "הסיסמה הנוכחית", "Current Password": "הסיסמה הנוכחית",
"Custom": "מותאם אישית", "Custom": "מותאם אישית",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "", "Danger Zone": "",
"Dark": "כהה", "Dark": "כהה",
"Database": "מסד נתונים", "Database": "מסד נתונים",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "", "Enforce Temporary Chat": "",
"Enhance": "", "Enhance": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "ודא שקובץ ה-CSV שלך כולל 4 עמודות בסדר הבא: שם, דוא\"ל, סיסמה, תפקיד.", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "ודא שקובץ ה-CSV שלך כולל 4 עמודות בסדר הבא: שם, דוא\"ל, סיסמה, תפקיד.",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "הזן הודעת {{role}} כאן", "Enter {{role}} message here": "הזן הודעת {{role}} כאן",
"Enter a detail about yourself for your LLMs to recall": "הזן פרטים על עצמך כדי שLLMs יזכור", "Enter a detail about yourself for your LLMs to recall": "הזן פרטים על עצמך כדי שLLMs יזכור",
"Enter api auth string (e.g. username:password)": "", "Enter api auth string (e.g. username:password)": "",

View file

@ -279,6 +279,8 @@
"Current Model": "वर्तमान मॉडल", "Current Model": "वर्तमान मॉडल",
"Current Password": "वर्तमान पासवर्ड", "Current Password": "वर्तमान पासवर्ड",
"Custom": "कस्टम संस्करण", "Custom": "कस्टम संस्करण",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "", "Danger Zone": "",
"Dark": "डार्क", "Dark": "डार्क",
"Database": "डेटाबेस", "Database": "डेटाबेस",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "", "Enforce Temporary Chat": "",
"Enhance": "", "Enhance": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "सुनिश्चित करें कि आपकी CSV फ़ाइल में इस क्रम में 4 कॉलम शामिल हैं: नाम, ईमेल, पासवर्ड, भूमिका।", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "सुनिश्चित करें कि आपकी CSV फ़ाइल में इस क्रम में 4 कॉलम शामिल हैं: नाम, ईमेल, पासवर्ड, भूमिका।",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "यहां {{role}} संदेश दर्ज करें", "Enter {{role}} message here": "यहां {{role}} संदेश दर्ज करें",
"Enter a detail about yourself for your LLMs to recall": "अपने एलएलएम को याद करने के लिए अपने बारे में एक विवरण दर्ज करें", "Enter a detail about yourself for your LLMs to recall": "अपने एलएलएम को याद करने के लिए अपने बारे में एक विवरण दर्ज करें",
"Enter api auth string (e.g. username:password)": "", "Enter api auth string (e.g. username:password)": "",

View file

@ -279,6 +279,8 @@
"Current Model": "Trenutni model", "Current Model": "Trenutni model",
"Current Password": "Trenutna lozinka", "Current Password": "Trenutna lozinka",
"Custom": "Prilagođeno", "Custom": "Prilagođeno",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "", "Danger Zone": "",
"Dark": "Tamno", "Dark": "Tamno",
"Database": "Baza podataka", "Database": "Baza podataka",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "", "Enforce Temporary Chat": "",
"Enhance": "", "Enhance": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Provjerite da vaša CSV datoteka uključuje 4 stupca u ovom redoslijedu: Name, Email, Password, Role.", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Provjerite da vaša CSV datoteka uključuje 4 stupca u ovom redoslijedu: Name, Email, Password, Role.",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "Unesite {{role}} poruku ovdje", "Enter {{role}} message here": "Unesite {{role}} poruku ovdje",
"Enter a detail about yourself for your LLMs to recall": "Unesite pojedinosti o sebi da bi učitali memoriju u LLM", "Enter a detail about yourself for your LLMs to recall": "Unesite pojedinosti o sebi da bi učitali memoriju u LLM",
"Enter api auth string (e.g. username:password)": "", "Enter api auth string (e.g. username:password)": "",

View file

@ -279,6 +279,8 @@
"Current Model": "Jelenlegi modell", "Current Model": "Jelenlegi modell",
"Current Password": "Jelenlegi jelszó", "Current Password": "Jelenlegi jelszó",
"Custom": "Egyéni", "Custom": "Egyéni",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "Veszélyzóna", "Danger Zone": "Veszélyzóna",
"Dark": "Sötét", "Dark": "Sötét",
"Database": "Adatbázis", "Database": "Adatbázis",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "Ideiglenes csevegés kikényszerítése", "Enforce Temporary Chat": "Ideiglenes csevegés kikényszerítése",
"Enhance": "", "Enhance": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Győződj meg róla, hogy a CSV fájl tartalmazza ezt a 4 oszlopot ebben a sorrendben: Név, Email, Jelszó, Szerep.", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Győződj meg róla, hogy a CSV fájl tartalmazza ezt a 4 oszlopot ebben a sorrendben: Név, Email, Jelszó, Szerep.",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "Írd ide a {{role}} üzenetet", "Enter {{role}} message here": "Írd ide a {{role}} üzenetet",
"Enter a detail about yourself for your LLMs to recall": "Adj meg egy részletet magadról, amit az LLM-ek megjegyezhetnek", "Enter a detail about yourself for your LLMs to recall": "Adj meg egy részletet magadról, amit az LLM-ek megjegyezhetnek",
"Enter api auth string (e.g. username:password)": "Add meg az API hitelesítési karakterláncot (pl. felhasználónév:jelszó)", "Enter api auth string (e.g. username:password)": "Add meg az API hitelesítési karakterláncot (pl. felhasználónév:jelszó)",

View file

@ -279,6 +279,8 @@
"Current Model": "Model Saat Ini", "Current Model": "Model Saat Ini",
"Current Password": "Kata Sandi Saat Ini", "Current Password": "Kata Sandi Saat Ini",
"Custom": "Kustom", "Custom": "Kustom",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "", "Danger Zone": "",
"Dark": "Gelap", "Dark": "Gelap",
"Database": "Basis data", "Database": "Basis data",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "", "Enforce Temporary Chat": "",
"Enhance": "", "Enhance": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Pastikan file CSV Anda menyertakan 4 kolom dengan urutan sebagai berikut: Nama, Email, Kata Sandi, Peran.", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Pastikan file CSV Anda menyertakan 4 kolom dengan urutan sebagai berikut: Nama, Email, Kata Sandi, Peran.",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "Masukkan pesan {{role}} di sini", "Enter {{role}} message here": "Masukkan pesan {{role}} di sini",
"Enter a detail about yourself for your LLMs to recall": "Masukkan detail tentang diri Anda untuk diingat oleh LLM Anda", "Enter a detail about yourself for your LLMs to recall": "Masukkan detail tentang diri Anda untuk diingat oleh LLM Anda",
"Enter api auth string (e.g. username:password)": "Masukkan string pengesahan API (misalnya nama pengguna: kata sandi)", "Enter api auth string (e.g. username:password)": "Masukkan string pengesahan API (misalnya nama pengguna: kata sandi)",

View file

@ -279,6 +279,8 @@
"Current Model": "Múnla Reatha", "Current Model": "Múnla Reatha",
"Current Password": "Pasfhocal Reatha", "Current Password": "Pasfhocal Reatha",
"Custom": "Saincheaptha", "Custom": "Saincheaptha",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "Crios Contúirte", "Danger Zone": "Crios Contúirte",
"Dark": "Dorcha", "Dark": "Dorcha",
"Database": "Bunachar Sonraí", "Database": "Bunachar Sonraí",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "Cuir Comhrá Sealadach i bhfeidhm", "Enforce Temporary Chat": "Cuir Comhrá Sealadach i bhfeidhm",
"Enhance": "", "Enhance": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Déan cinnte go bhfuil 4 cholún san ord seo i do chomhad CSV: Ainm, Ríomhphost, Pasfhocal, Ról.", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Déan cinnte go bhfuil 4 cholún san ord seo i do chomhad CSV: Ainm, Ríomhphost, Pasfhocal, Ról.",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "Cuir isteach teachtaireacht {{role}} anseo", "Enter {{role}} message here": "Cuir isteach teachtaireacht {{role}} anseo",
"Enter a detail about yourself for your LLMs to recall": "Cuir isteach mionsonraí fút féin chun do LLManna a mheabhrú", "Enter a detail about yourself for your LLMs to recall": "Cuir isteach mionsonraí fút féin chun do LLManna a mheabhrú",
"Enter api auth string (e.g. username:password)": "Cuir isteach sreang auth api (m.sh. ainm úsáideora: pasfhocal)", "Enter api auth string (e.g. username:password)": "Cuir isteach sreang auth api (m.sh. ainm úsáideora: pasfhocal)",

View file

@ -279,6 +279,8 @@
"Current Model": "Modello corrente", "Current Model": "Modello corrente",
"Current Password": "Password corrente", "Current Password": "Password corrente",
"Custom": "Personalizzato", "Custom": "Personalizzato",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "Zona di pericolo", "Danger Zone": "Zona di pericolo",
"Dark": "Scuro", "Dark": "Scuro",
"Database": "Database", "Database": "Database",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "Applica chat temporanea", "Enforce Temporary Chat": "Applica chat temporanea",
"Enhance": "Migliora", "Enhance": "Migliora",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Assicurati che il tuo file CSV includa 4 colonne in questo ordine: Nome, Email, Password, Ruolo.", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Assicurati che il tuo file CSV includa 4 colonne in questo ordine: Nome, Email, Password, Ruolo.",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "Inserisci il messaggio per {{role}} qui", "Enter {{role}} message here": "Inserisci il messaggio per {{role}} qui",
"Enter a detail about yourself for your LLMs to recall": "Inserisci un dettaglio su di te per che i LLM possano ricordare", "Enter a detail about yourself for your LLMs to recall": "Inserisci un dettaglio su di te per che i LLM possano ricordare",
"Enter api auth string (e.g. username:password)": "Inserisci la stringa di autenticazione API (ad es. nome utente:password)", "Enter api auth string (e.g. username:password)": "Inserisci la stringa di autenticazione API (ad es. nome utente:password)",

View file

@ -279,6 +279,8 @@
"Current Model": "現在のモデル", "Current Model": "現在のモデル",
"Current Password": "現在のパスワード", "Current Password": "現在のパスワード",
"Custom": "カスタム", "Custom": "カスタム",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "", "Danger Zone": "",
"Dark": "ダーク", "Dark": "ダーク",
"Database": "データベース", "Database": "データベース",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "", "Enforce Temporary Chat": "",
"Enhance": "", "Enhance": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "CSVファイルに4つの列が含まれていることを確認してください: Name, Email, Password, Role.", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "CSVファイルに4つの列が含まれていることを確認してください: Name, Email, Password, Role.",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "{{role}} メッセージをここに入力してください", "Enter {{role}} message here": "{{role}} メッセージをここに入力してください",
"Enter a detail about yourself for your LLMs to recall": "LLM が記憶するために、自分についての詳細を入力してください", "Enter a detail about yourself for your LLMs to recall": "LLM が記憶するために、自分についての詳細を入力してください",
"Enter api auth string (e.g. username:password)": "API AuthStringを入力(例: Username:Password)", "Enter api auth string (e.g. username:password)": "API AuthStringを入力(例: Username:Password)",

View file

@ -279,6 +279,8 @@
"Current Model": "მიმდინარე მოდელი", "Current Model": "მიმდინარე მოდელი",
"Current Password": "მიმდინარე პაროლი", "Current Password": "მიმდინარე პაროლი",
"Custom": "ხელით", "Custom": "ხელით",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "", "Danger Zone": "",
"Dark": "მუქი", "Dark": "მუქი",
"Database": "მონაცემთა ბაზა", "Database": "მონაცემთა ბაზა",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "", "Enforce Temporary Chat": "",
"Enhance": "", "Enhance": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "დარწმუნდით, რომ თქვენი CSV-ფაილი შეიცავს 4 ველს ამ მიმდევრობით: სახელი, ელფოსტა, პაროლი, როლი.", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "დარწმუნდით, რომ თქვენი CSV-ფაილი შეიცავს 4 ველს ამ მიმდევრობით: სახელი, ელფოსტა, პაროლი, როლი.",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "შეიყვანე {{role}} შეტყობინება აქ", "Enter {{role}} message here": "შეიყვანე {{role}} შეტყობინება აქ",
"Enter a detail about yourself for your LLMs to recall": "შეიყვანეთ რამე თქვენს შესახებ, რომ თქვენმა LLM-მა გაიხსენოს", "Enter a detail about yourself for your LLMs to recall": "შეიყვანეთ რამე თქვენს შესახებ, რომ თქვენმა LLM-მა გაიხსენოს",
"Enter api auth string (e.g. username:password)": "", "Enter api auth string (e.g. username:password)": "",

View file

@ -279,6 +279,8 @@
"Current Model": "현재 모델", "Current Model": "현재 모델",
"Current Password": "현재 비밀번호", "Current Password": "현재 비밀번호",
"Custom": "사용자 정의", "Custom": "사용자 정의",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "위험 기능", "Danger Zone": "위험 기능",
"Dark": "다크", "Dark": "다크",
"Database": "데이터베이스", "Database": "데이터베이스",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "임시 채팅 강제 적용", "Enforce Temporary Chat": "임시 채팅 강제 적용",
"Enhance": "", "Enhance": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "CSV 파일에 이름, 이메일, 비밀번호, 역할 4개의 열이 순서대로 포함되어 있는지 확인하세요.", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "CSV 파일에 이름, 이메일, 비밀번호, 역할 4개의 열이 순서대로 포함되어 있는지 확인하세요.",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "여기에 {{role}} 메시지 입력", "Enter {{role}} message here": "여기에 {{role}} 메시지 입력",
"Enter a detail about yourself for your LLMs to recall": "자신에 대한 세부사항을 입력하여 LLM들이 기억할 수 있도록 하세요.", "Enter a detail about yourself for your LLMs to recall": "자신에 대한 세부사항을 입력하여 LLM들이 기억할 수 있도록 하세요.",
"Enter api auth string (e.g. username:password)": "API 인증 문자 입력 (예: 사용자 이름:비밀번호)", "Enter api auth string (e.g. username:password)": "API 인증 문자 입력 (예: 사용자 이름:비밀번호)",

View file

@ -279,6 +279,8 @@
"Current Model": "Dabartinis modelis", "Current Model": "Dabartinis modelis",
"Current Password": "Esamas slaptažodis", "Current Password": "Esamas slaptažodis",
"Custom": "Personalizuota", "Custom": "Personalizuota",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "", "Danger Zone": "",
"Dark": "Tamsus", "Dark": "Tamsus",
"Database": "Duomenų bazė", "Database": "Duomenų bazė",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "", "Enforce Temporary Chat": "",
"Enhance": "", "Enhance": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Įsitikinkite, kad CSV failas turi 4 kolonas šiuo eiliškumu: Name, Email, Password, Role.", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Įsitikinkite, kad CSV failas turi 4 kolonas šiuo eiliškumu: Name, Email, Password, Role.",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "Įveskite {{role}} žinutę čia", "Enter {{role}} message here": "Įveskite {{role}} žinutę čia",
"Enter a detail about yourself for your LLMs to recall": "Įveskite informaciją apie save jūsų modelio atminčiai", "Enter a detail about yourself for your LLMs to recall": "Įveskite informaciją apie save jūsų modelio atminčiai",
"Enter api auth string (e.g. username:password)": "Įveskite API autentifikacijos kodą (pvz. username:password)", "Enter api auth string (e.g. username:password)": "Įveskite API autentifikacijos kodą (pvz. username:password)",

View file

@ -279,6 +279,8 @@
"Current Model": "Model Semasa", "Current Model": "Model Semasa",
"Current Password": "Kata laluan semasa", "Current Password": "Kata laluan semasa",
"Custom": "Tersuai", "Custom": "Tersuai",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "", "Danger Zone": "",
"Dark": "Gelap", "Dark": "Gelap",
"Database": "Pangkalan Data", "Database": "Pangkalan Data",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "", "Enforce Temporary Chat": "",
"Enhance": "", "Enhance": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "astikan fail CSV anda mengandungi 4 lajur dalam susunan ini: Nama, E-mel, Kata Laluan, Peranan.", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "astikan fail CSV anda mengandungi 4 lajur dalam susunan ini: Nama, E-mel, Kata Laluan, Peranan.",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "Masukkan mesej {{role}} di sini", "Enter {{role}} message here": "Masukkan mesej {{role}} di sini",
"Enter a detail about yourself for your LLMs to recall": "Masukkan butiran tentang diri anda untuk diingati oleh LLM anda", "Enter a detail about yourself for your LLMs to recall": "Masukkan butiran tentang diri anda untuk diingati oleh LLM anda",
"Enter api auth string (e.g. username:password)": "Masukkan kekunci auth api ( cth nama pengguna:kata laluan )", "Enter api auth string (e.g. username:password)": "Masukkan kekunci auth api ( cth nama pengguna:kata laluan )",

View file

@ -279,6 +279,8 @@
"Current Model": "Nåværende modell", "Current Model": "Nåværende modell",
"Current Password": "Nåværende passord", "Current Password": "Nåværende passord",
"Custom": "Tilpasset", "Custom": "Tilpasset",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "", "Danger Zone": "",
"Dark": "Mørk", "Dark": "Mørk",
"Database": "Database", "Database": "Database",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "", "Enforce Temporary Chat": "",
"Enhance": "", "Enhance": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Sørg for at CSV-filen din inkluderer fire kolonner i denne rekkefølgen: Navn, E-post, Passord, Rolle.", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Sørg for at CSV-filen din inkluderer fire kolonner i denne rekkefølgen: Navn, E-post, Passord, Rolle.",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "Skriv inn {{role}} melding her", "Enter {{role}} message here": "Skriv inn {{role}} melding her",
"Enter a detail about yourself for your LLMs to recall": "Skriv inn en detalj om deg selv som språkmodellene dine kan huske", "Enter a detail about yourself for your LLMs to recall": "Skriv inn en detalj om deg selv som språkmodellene dine kan huske",
"Enter api auth string (e.g. username:password)": "Skriv inn API-autentiseringsstreng (f.eks. brukernavn:passord)", "Enter api auth string (e.g. username:password)": "Skriv inn API-autentiseringsstreng (f.eks. brukernavn:passord)",

View file

@ -279,6 +279,8 @@
"Current Model": "Huidig model", "Current Model": "Huidig model",
"Current Password": "Huidig wachtwoord", "Current Password": "Huidig wachtwoord",
"Custom": "Aangepast", "Custom": "Aangepast",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "Gevarenzone", "Danger Zone": "Gevarenzone",
"Dark": "Donker", "Dark": "Donker",
"Database": "Database", "Database": "Database",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "Tijdelijke chat afdwingen", "Enforce Temporary Chat": "Tijdelijke chat afdwingen",
"Enhance": "", "Enhance": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Zorg ervoor dat uw CSV-bestand de volgende vier kolommen in deze volgorde bevat: Naam, E-mail, Wachtwoord, Rol.", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Zorg ervoor dat uw CSV-bestand de volgende vier kolommen in deze volgorde bevat: Naam, E-mail, Wachtwoord, Rol.",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "Voeg {{role}} bericht hier toe", "Enter {{role}} message here": "Voeg {{role}} bericht hier toe",
"Enter a detail about yourself for your LLMs to recall": "Voer een detail over jezelf in zodat LLM's het kunnen onthouden", "Enter a detail about yourself for your LLMs to recall": "Voer een detail over jezelf in zodat LLM's het kunnen onthouden",
"Enter api auth string (e.g. username:password)": "Voer api auth string in (bv. gebruikersnaam:wachtwoord)", "Enter api auth string (e.g. username:password)": "Voer api auth string in (bv. gebruikersnaam:wachtwoord)",

View file

@ -279,6 +279,8 @@
"Current Model": "ਮੌਜੂਦਾ ਮਾਡਲ", "Current Model": "ਮੌਜੂਦਾ ਮਾਡਲ",
"Current Password": "ਮੌਜੂਦਾ ਪਾਸਵਰਡ", "Current Password": "ਮੌਜੂਦਾ ਪਾਸਵਰਡ",
"Custom": "ਕਸਟਮ", "Custom": "ਕਸਟਮ",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "", "Danger Zone": "",
"Dark": "ਗੂੜ੍ਹਾ", "Dark": "ਗੂੜ੍ਹਾ",
"Database": "ਡਾਟਾਬੇਸ", "Database": "ਡਾਟਾਬੇਸ",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "", "Enforce Temporary Chat": "",
"Enhance": "", "Enhance": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "ਸੁਨਿਸ਼ਚਿਤ ਕਰੋ ਕਿ ਤੁਹਾਡੀ CSV ਫਾਈਲ ਵਿੱਚ ਇਸ ਕ੍ਰਮ ਵਿੱਚ 4 ਕਾਲਮ ਹਨ: ਨਾਮ, ਈਮੇਲ, ਪਾਸਵਰਡ, ਭੂਮਿਕਾ।", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "ਸੁਨਿਸ਼ਚਿਤ ਕਰੋ ਕਿ ਤੁਹਾਡੀ CSV ਫਾਈਲ ਵਿੱਚ ਇਸ ਕ੍ਰਮ ਵਿੱਚ 4 ਕਾਲਮ ਹਨ: ਨਾਮ, ਈਮੇਲ, ਪਾਸਵਰਡ, ਭੂਮਿਕਾ।",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "{{role}} ਸੁਨੇਹਾ ਇੱਥੇ ਦਰਜ ਕਰੋ", "Enter {{role}} message here": "{{role}} ਸੁਨੇਹਾ ਇੱਥੇ ਦਰਜ ਕਰੋ",
"Enter a detail about yourself for your LLMs to recall": "ਤੁਹਾਡੇ LLMs ਨੂੰ ਸੁਨੇਹਾ ਕਰਨ ਲਈ ਸੁਨੇਹਾ ਇੱਥੇ ਦਰਜ ਕਰੋ", "Enter a detail about yourself for your LLMs to recall": "ਤੁਹਾਡੇ LLMs ਨੂੰ ਸੁਨੇਹਾ ਕਰਨ ਲਈ ਸੁਨੇਹਾ ਇੱਥੇ ਦਰਜ ਕਰੋ",
"Enter api auth string (e.g. username:password)": "", "Enter api auth string (e.g. username:password)": "",

View file

@ -279,6 +279,8 @@
"Current Model": "Aktualny model", "Current Model": "Aktualny model",
"Current Password": "Aktualne hasło", "Current Password": "Aktualne hasło",
"Custom": "Niestandardowy", "Custom": "Niestandardowy",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "", "Danger Zone": "",
"Dark": "Ciemny", "Dark": "Ciemny",
"Database": "Baza danych", "Database": "Baza danych",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "", "Enforce Temporary Chat": "",
"Enhance": "", "Enhance": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Upewnij się, że twój plik CSV zawiera dokładnie 4 kolumny w następującej kolejności: Nazwa, Email, Hasło, Rola.", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Upewnij się, że twój plik CSV zawiera dokładnie 4 kolumny w następującej kolejności: Nazwa, Email, Hasło, Rola.",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "Wprowadź komunikat dla {{role}} tutaj", "Enter {{role}} message here": "Wprowadź komunikat dla {{role}} tutaj",
"Enter a detail about yourself for your LLMs to recall": "Podaj informacje o sobie, aby LLMs mogły je przypomnieć.", "Enter a detail about yourself for your LLMs to recall": "Podaj informacje o sobie, aby LLMs mogły je przypomnieć.",
"Enter api auth string (e.g. username:password)": "Wprowadź ciąg uwierzytelniania API (np. nazwa użytkownika:hasło)", "Enter api auth string (e.g. username:password)": "Wprowadź ciąg uwierzytelniania API (np. nazwa użytkownika:hasło)",

View file

@ -279,6 +279,8 @@
"Current Model": "Modelo Atual", "Current Model": "Modelo Atual",
"Current Password": "Senha Atual", "Current Password": "Senha Atual",
"Custom": "Personalizado", "Custom": "Personalizado",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "", "Danger Zone": "",
"Dark": "Escuro", "Dark": "Escuro",
"Database": "Banco de Dados", "Database": "Banco de Dados",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "", "Enforce Temporary Chat": "",
"Enhance": "", "Enhance": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Certifique-se de que seu arquivo CSV inclua 4 colunas nesta ordem: Nome, Email, Senha, Função.", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Certifique-se de que seu arquivo CSV inclua 4 colunas nesta ordem: Nome, Email, Senha, Função.",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "Digite a mensagem de {{role}} aqui", "Enter {{role}} message here": "Digite a mensagem de {{role}} aqui",
"Enter a detail about yourself for your LLMs to recall": "Digite um detalhe sobre você para seus LLMs lembrarem", "Enter a detail about yourself for your LLMs to recall": "Digite um detalhe sobre você para seus LLMs lembrarem",
"Enter api auth string (e.g. username:password)": "Digite a string de autenticação da API (por exemplo, username:password)", "Enter api auth string (e.g. username:password)": "Digite a string de autenticação da API (por exemplo, username:password)",

View file

@ -279,6 +279,8 @@
"Current Model": "Modelo Atual", "Current Model": "Modelo Atual",
"Current Password": "Senha Atual", "Current Password": "Senha Atual",
"Custom": "Personalizado", "Custom": "Personalizado",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "", "Danger Zone": "",
"Dark": "Escuro", "Dark": "Escuro",
"Database": "Base de dados", "Database": "Base de dados",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "", "Enforce Temporary Chat": "",
"Enhance": "", "Enhance": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Confirme que o seu ficheiro CSV inclui 4 colunas nesta ordem: Nome, E-mail, Senha, Função.", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Confirme que o seu ficheiro CSV inclui 4 colunas nesta ordem: Nome, E-mail, Senha, Função.",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "Escreva a mensagem de {{role}} aqui", "Enter {{role}} message here": "Escreva a mensagem de {{role}} aqui",
"Enter a detail about yourself for your LLMs to recall": "Escreva um detalhe sobre você para que os seus LLMs possam lembrar-se", "Enter a detail about yourself for your LLMs to recall": "Escreva um detalhe sobre você para que os seus LLMs possam lembrar-se",
"Enter api auth string (e.g. username:password)": "", "Enter api auth string (e.g. username:password)": "",

View file

@ -279,6 +279,8 @@
"Current Model": "Model Curent", "Current Model": "Model Curent",
"Current Password": "Parola Curentă", "Current Password": "Parola Curentă",
"Custom": "Personalizat", "Custom": "Personalizat",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "", "Danger Zone": "",
"Dark": "Întunecat", "Dark": "Întunecat",
"Database": "Bază de Date", "Database": "Bază de Date",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "", "Enforce Temporary Chat": "",
"Enhance": "", "Enhance": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Asigurați-vă că fișierul CSV include 4 coloane în această ordine: Nume, Email, Parolă, Rol.", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Asigurați-vă că fișierul CSV include 4 coloane în această ordine: Nume, Email, Parolă, Rol.",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "Introduceți mesajul pentru {{role}} aici", "Enter {{role}} message here": "Introduceți mesajul pentru {{role}} aici",
"Enter a detail about yourself for your LLMs to recall": "Introduceți un detaliu despre dvs. pe care LLM-urile să-l rețină", "Enter a detail about yourself for your LLMs to recall": "Introduceți un detaliu despre dvs. pe care LLM-urile să-l rețină",
"Enter api auth string (e.g. username:password)": "Introduceți șirul de autentificare API (de ex. username:password)", "Enter api auth string (e.g. username:password)": "Introduceți șirul de autentificare API (de ex. username:password)",

View file

@ -279,6 +279,8 @@
"Current Model": "Текущая модель", "Current Model": "Текущая модель",
"Current Password": "Текущий пароль", "Current Password": "Текущий пароль",
"Custom": "Пользовательский", "Custom": "Пользовательский",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "Опасная зона", "Danger Zone": "Опасная зона",
"Dark": "Темная", "Dark": "Темная",
"Database": "База данных", "Database": "База данных",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "Принудительный временный чат", "Enforce Temporary Chat": "Принудительный временный чат",
"Enhance": "", "Enhance": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Убедитесь, что ваш CSV-файл включает в себя 4 столбца в следующем порядке: Имя, Электронная почта, Пароль, Роль.", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Убедитесь, что ваш CSV-файл включает в себя 4 столбца в следующем порядке: Имя, Электронная почта, Пароль, Роль.",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "Введите сообщение {{role}} здесь", "Enter {{role}} message here": "Введите сообщение {{role}} здесь",
"Enter a detail about yourself for your LLMs to recall": "Введите детали о себе, чтобы LLMs могли запомнить", "Enter a detail about yourself for your LLMs to recall": "Введите детали о себе, чтобы LLMs могли запомнить",
"Enter api auth string (e.g. username:password)": "Введите строку авторизации api (например, username:password)", "Enter api auth string (e.g. username:password)": "Введите строку авторизации api (например, username:password)",

View file

@ -279,6 +279,8 @@
"Current Model": "Aktuálny model", "Current Model": "Aktuálny model",
"Current Password": "Aktuálne heslo", "Current Password": "Aktuálne heslo",
"Custom": "Na mieru", "Custom": "Na mieru",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "", "Danger Zone": "",
"Dark": "Tmavý", "Dark": "Tmavý",
"Database": "Databáza", "Database": "Databáza",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "", "Enforce Temporary Chat": "",
"Enhance": "", "Enhance": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Uistite sa, že váš CSV súbor obsahuje 4 stĺpce v tomto poradí: Name, Email, Password, Role.", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Uistite sa, že váš CSV súbor obsahuje 4 stĺpce v tomto poradí: Name, Email, Password, Role.",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "Zadajte správu {{role}} sem", "Enter {{role}} message here": "Zadajte správu {{role}} sem",
"Enter a detail about yourself for your LLMs to recall": "Zadajte podrobnosť o sebe, ktorú si vaše LLM majú zapamätať.", "Enter a detail about yourself for your LLMs to recall": "Zadajte podrobnosť o sebe, ktorú si vaše LLM majú zapamätať.",
"Enter api auth string (e.g. username:password)": "Zadajte autentifikačný reťazec API (napr. užívateľské_meno:heslo)", "Enter api auth string (e.g. username:password)": "Zadajte autentifikačný reťazec API (napr. užívateľské_meno:heslo)",

View file

@ -279,6 +279,8 @@
"Current Model": "Тренутни модел", "Current Model": "Тренутни модел",
"Current Password": "Тренутна лозинка", "Current Password": "Тренутна лозинка",
"Custom": "Прилагођено", "Custom": "Прилагођено",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "", "Danger Zone": "",
"Dark": "Тамна", "Dark": "Тамна",
"Database": "База података", "Database": "База података",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "", "Enforce Temporary Chat": "",
"Enhance": "", "Enhance": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Уверите се да ваша CSV датотека укључује 4 колоне у овом редоследу: Име, Е-пошта, Лозинка, Улога.", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Уверите се да ваша CSV датотека укључује 4 колоне у овом редоследу: Име, Е-пошта, Лозинка, Улога.",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "Унесите {{role}} поруку овде", "Enter {{role}} message here": "Унесите {{role}} поруку овде",
"Enter a detail about yourself for your LLMs to recall": "Унесите детаље за себе да ће LLMs преузимати", "Enter a detail about yourself for your LLMs to recall": "Унесите детаље за себе да ће LLMs преузимати",
"Enter api auth string (e.g. username:password)": "", "Enter api auth string (e.g. username:password)": "",

View file

@ -279,6 +279,8 @@
"Current Model": "Aktuell modell", "Current Model": "Aktuell modell",
"Current Password": "Nuvarande lösenord", "Current Password": "Nuvarande lösenord",
"Custom": "Anpassad", "Custom": "Anpassad",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "", "Danger Zone": "",
"Dark": "Mörk", "Dark": "Mörk",
"Database": "Databas", "Database": "Databas",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "", "Enforce Temporary Chat": "",
"Enhance": "", "Enhance": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Se till att din CSV-fil innehåller fyra kolumner i denna ordning: Name, Email, Password, Role.", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Se till att din CSV-fil innehåller fyra kolumner i denna ordning: Name, Email, Password, Role.",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "Skriv {{role}} meddelande här", "Enter {{role}} message here": "Skriv {{role}} meddelande här",
"Enter a detail about yourself for your LLMs to recall": "Skriv en detalj om dig själv för att dina LLMs ska komma ihåg", "Enter a detail about yourself for your LLMs to recall": "Skriv en detalj om dig själv för att dina LLMs ska komma ihåg",
"Enter api auth string (e.g. username:password)": "", "Enter api auth string (e.g. username:password)": "",

View file

@ -279,6 +279,8 @@
"Current Model": "โมเดลปัจจุบัน", "Current Model": "โมเดลปัจจุบัน",
"Current Password": "รหัสผ่านปัจจุบัน", "Current Password": "รหัสผ่านปัจจุบัน",
"Custom": "กำหนดเอง", "Custom": "กำหนดเอง",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "", "Danger Zone": "",
"Dark": "มืด", "Dark": "มืด",
"Database": "ฐานข้อมูล", "Database": "ฐานข้อมูล",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "", "Enforce Temporary Chat": "",
"Enhance": "", "Enhance": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "ตรวจสอบว่าไฟล์ CSV ของคุณมี 4 คอลัมน์ในลำดับนี้: ชื่อ, อีเมล, รหัสผ่าน, บทบาท", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "ตรวจสอบว่าไฟล์ CSV ของคุณมี 4 คอลัมน์ในลำดับนี้: ชื่อ, อีเมล, รหัสผ่าน, บทบาท",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "ใส่ข้อความ {{role}} ที่นี่", "Enter {{role}} message here": "ใส่ข้อความ {{role}} ที่นี่",
"Enter a detail about yourself for your LLMs to recall": "ใส่รายละเอียดเกี่ยวกับตัวคุณสำหรับ LLMs ของคุณให้จดจำ", "Enter a detail about yourself for your LLMs to recall": "ใส่รายละเอียดเกี่ยวกับตัวคุณสำหรับ LLMs ของคุณให้จดจำ",
"Enter api auth string (e.g. username:password)": "ใส่สตริงการตรวจสอบ API (เช่น username:password)", "Enter api auth string (e.g. username:password)": "ใส่สตริงการตรวจสอบ API (เช่น username:password)",

View file

@ -125,6 +125,8 @@
"Current Model": "Häzirki Model", "Current Model": "Häzirki Model",
"Current Password": "Häzirki Parol", "Current Password": "Häzirki Parol",
"Custom": "Özboluşly", "Custom": "Özboluşly",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Customize models for a specific purpose": "Anyk maksat üçin modelleri düzmek", "Customize models for a specific purpose": "Anyk maksat üçin modelleri düzmek",
"Dark": "Garaňky", "Dark": "Garaňky",
"Database": "Mazada", "Database": "Mazada",

View file

@ -279,6 +279,8 @@
"Current Model": "", "Current Model": "",
"Current Password": "", "Current Password": "",
"Custom": "", "Custom": "",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "", "Danger Zone": "",
"Dark": "", "Dark": "",
"Database": "", "Database": "",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "", "Enforce Temporary Chat": "",
"Enhance": "", "Enhance": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "", "Enter {{role}} message here": "",
"Enter a detail about yourself for your LLMs to recall": "", "Enter a detail about yourself for your LLMs to recall": "",
"Enter api auth string (e.g. username:password)": "", "Enter api auth string (e.g. username:password)": "",

View file

@ -279,6 +279,8 @@
"Current Model": "Mevcut Model", "Current Model": "Mevcut Model",
"Current Password": "Mevcut Parola", "Current Password": "Mevcut Parola",
"Custom": "Özel", "Custom": "Özel",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "", "Danger Zone": "",
"Dark": "Koyu", "Dark": "Koyu",
"Database": "Veritabanı", "Database": "Veritabanı",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "", "Enforce Temporary Chat": "",
"Enhance": "", "Enhance": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "CSV dosyanızın şu sırayla 4 sütun içerdiğinden emin olun: İsim, E-posta, Şifre, Rol.", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "CSV dosyanızın şu sırayla 4 sütun içerdiğinden emin olun: İsim, E-posta, Şifre, Rol.",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "Buraya {{role}} mesajını girin", "Enter {{role}} message here": "Buraya {{role}} mesajını girin",
"Enter a detail about yourself for your LLMs to recall": "LLM'lerinizin hatırlaması için kendiniz hakkında bir bilgi girin", "Enter a detail about yourself for your LLMs to recall": "LLM'lerinizin hatırlaması için kendiniz hakkında bir bilgi girin",
"Enter api auth string (e.g. username:password)": "Api auth dizesini girin (örn. kullanıcı adı:parola)", "Enter api auth string (e.g. username:password)": "Api auth dizesini girin (örn. kullanıcı adı:parola)",

View file

@ -279,6 +279,8 @@
"Current Model": "Поточна модель", "Current Model": "Поточна модель",
"Current Password": "Поточний пароль", "Current Password": "Поточний пароль",
"Custom": "Налаштувати", "Custom": "Налаштувати",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "Зона небезпеки", "Danger Zone": "Зона небезпеки",
"Dark": "Темна", "Dark": "Темна",
"Database": "База даних", "Database": "База даних",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "Застосувати тимчасовий чат", "Enforce Temporary Chat": "Застосувати тимчасовий чат",
"Enhance": "", "Enhance": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Переконайтеся, що ваш CSV-файл містить 4 колонки в такому порядку: Ім'я, Email, Пароль, Роль.", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Переконайтеся, що ваш CSV-файл містить 4 колонки в такому порядку: Ім'я, Email, Пароль, Роль.",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "Введіть повідомлення {{role}} тут", "Enter {{role}} message here": "Введіть повідомлення {{role}} тут",
"Enter a detail about yourself for your LLMs to recall": "Введіть відомості про себе для запам'ятовування вашими LLM.", "Enter a detail about yourself for your LLMs to recall": "Введіть відомості про себе для запам'ятовування вашими LLM.",
"Enter api auth string (e.g. username:password)": "Введіть рядок авторизації api (напр, ім'я користувача:пароль)", "Enter api auth string (e.g. username:password)": "Введіть рядок авторизації api (напр, ім'я користувача:пароль)",

View file

@ -279,6 +279,8 @@
"Current Model": "موجودہ ماڈل", "Current Model": "موجودہ ماڈل",
"Current Password": "موجودہ پاس ورڈ", "Current Password": "موجودہ پاس ورڈ",
"Custom": "حسب ضرورت", "Custom": "حسب ضرورت",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "", "Danger Zone": "",
"Dark": "ڈارک", "Dark": "ڈارک",
"Database": "ڈیٹا بیس", "Database": "ڈیٹا بیس",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "", "Enforce Temporary Chat": "",
"Enhance": "", "Enhance": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "یقینی بنائیں کہ آپ کی CSV فائل میں 4 کالم اس ترتیب میں شامل ہوں: نام، ای میل، پاس ورڈ، کردار", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "یقینی بنائیں کہ آپ کی CSV فائل میں 4 کالم اس ترتیب میں شامل ہوں: نام، ای میل، پاس ورڈ، کردار",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "یہاں {{کردار}} پیغام درج کریں", "Enter {{role}} message here": "یہاں {{کردار}} پیغام درج کریں",
"Enter a detail about yourself for your LLMs to recall": "اپنی ذات کے بارے میں کوئی تفصیل درج کریں تاکہ آپ کے LLMs اسے یاد رکھ سکیں", "Enter a detail about yourself for your LLMs to recall": "اپنی ذات کے بارے میں کوئی تفصیل درج کریں تاکہ آپ کے LLMs اسے یاد رکھ سکیں",
"Enter api auth string (e.g. username:password)": "اے پی آئی اتھ سٹرنگ درج کریں (مثال کے طور پر: صارف نام:پاس ورڈ)", "Enter api auth string (e.g. username:password)": "اے پی آئی اتھ سٹرنگ درج کریں (مثال کے طور پر: صارف نام:پاس ورڈ)",

View file

@ -279,6 +279,8 @@
"Current Model": "Mô hình hiện tại", "Current Model": "Mô hình hiện tại",
"Current Password": "Mật khẩu hiện tại", "Current Password": "Mật khẩu hiện tại",
"Custom": "Tùy chỉnh", "Custom": "Tùy chỉnh",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "Vùng Nguy hiểm", "Danger Zone": "Vùng Nguy hiểm",
"Dark": "Tối", "Dark": "Tối",
"Database": "Cơ sở dữ liệu", "Database": "Cơ sở dữ liệu",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "Bắt buộc Chat nháp", "Enforce Temporary Chat": "Bắt buộc Chat nháp",
"Enhance": "", "Enhance": "",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Đảm bảo tệp CSV của bạn bao gồm 4 cột theo thứ tự sau: Name, Email, Password, Role.", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "Đảm bảo tệp CSV của bạn bao gồm 4 cột theo thứ tự sau: Name, Email, Password, Role.",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "Nhập yêu cầu của {{role}} ở đây", "Enter {{role}} message here": "Nhập yêu cầu của {{role}} ở đây",
"Enter a detail about yourself for your LLMs to recall": "Nhập chi tiết về bản thân của bạn để LLMs có thể nhớ", "Enter a detail about yourself for your LLMs to recall": "Nhập chi tiết về bản thân của bạn để LLMs có thể nhớ",
"Enter api auth string (e.g. username:password)": "Nhập chuỗi xác thực api (ví dụ: username: mật khẩu)", "Enter api auth string (e.g. username:password)": "Nhập chuỗi xác thực api (ví dụ: username: mật khẩu)",

View file

@ -279,6 +279,8 @@
"Current Model": "当前模型", "Current Model": "当前模型",
"Current Password": "当前密码", "Current Password": "当前密码",
"Custom": "自定义", "Custom": "自定义",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "危险区域", "Danger Zone": "危险区域",
"Dark": "暗色", "Dark": "暗色",
"Database": "数据库", "Database": "数据库",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "强制临时聊天", "Enforce Temporary Chat": "强制临时聊天",
"Enhance": "增强", "Enhance": "增强",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "确保您的 CSV 文件按以下顺序包含 4 列: 姓名、电子邮箱、密码、角色。", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "确保您的 CSV 文件按以下顺序包含 4 列: 姓名、电子邮箱、密码、角色。",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "在此处输入 {{role}} 的对话内容", "Enter {{role}} message here": "在此处输入 {{role}} 的对话内容",
"Enter a detail about yourself for your LLMs to recall": "输入一个关于你自己的详细信息,方便你的大语言模型记住这些内容", "Enter a detail about yourself for your LLMs to recall": "输入一个关于你自己的详细信息,方便你的大语言模型记住这些内容",
"Enter api auth string (e.g. username:password)": "输入 api 鉴权路径 (例如:用户名:密码)", "Enter api auth string (e.g. username:password)": "输入 api 鉴权路径 (例如:用户名:密码)",

View file

@ -279,6 +279,8 @@
"Current Model": "目前模型", "Current Model": "目前模型",
"Current Password": "目前密碼", "Current Password": "目前密碼",
"Custom": "自訂", "Custom": "自訂",
"Custom Account Pending Text": "",
"Custom Account Pending Title": "",
"Danger Zone": "危險區域", "Danger Zone": "危險區域",
"Dark": "深色", "Dark": "深色",
"Database": "資料庫", "Database": "資料庫",
@ -408,6 +410,8 @@
"Enforce Temporary Chat": "強制使用臨時對話", "Enforce Temporary Chat": "強制使用臨時對話",
"Enhance": "增強", "Enhance": "增強",
"Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "請確認您的 CSV 檔案包含以下 4 個欄位,並按照此順序排列:姓名、電子郵件、密碼、角色。", "Ensure your CSV file includes 4 columns in this order: Name, Email, Password, Role.": "請確認您的 CSV 檔案包含以下 4 個欄位,並按照此順序排列:姓名、電子郵件、密碼、角色。",
"Enter a custom text to be displayed on the account pending screen. Leave empty for default.": "",
"Enter a custom title to be displayed on the account pending screen. Leave empty for default.": "",
"Enter {{role}} message here": "在此輸入 {{role}} 訊息", "Enter {{role}} message here": "在此輸入 {{role}} 訊息",
"Enter a detail about yourself for your LLMs to recall": "輸入有關您的詳細資訊,讓您的大型語言模型可以回想起來", "Enter a detail about yourself for your LLMs to recall": "輸入有關您的詳細資訊,讓您的大型語言模型可以回想起來",
"Enter api auth string (e.g. username:password)": "輸入 API 驗證字串例如username:password", "Enter api auth string (e.g. username:password)": "輸入 API 驗證字串例如username:password",

View file

@ -220,6 +220,8 @@ type Config = {
[key: string]: string; [key: string]: string;
}; };
}; };
account_pending_title?: string;
account_pending_text?: string;
}; };
type PromptSuggestion = { type PromptSuggestion = {