Merge branch 'dev' into feat/disable-community-sharing

This commit is contained in:
Timothy Jaeryang Baek 2024-05-26 10:00:51 -10:00 committed by GitHub
commit 78dedb3389
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
54 changed files with 726 additions and 81 deletions

View File

@ -84,6 +84,8 @@ jobs:
outputs: type=image,name=${{ env.FULL_IMAGE_NAME }},push-by-digest=true,name-canonical=true,push=true outputs: type=image,name=${{ env.FULL_IMAGE_NAME }},push-by-digest=true,name-canonical=true,push=true
cache-from: type=registry,ref=${{ steps.cache-meta.outputs.tags }} cache-from: type=registry,ref=${{ steps.cache-meta.outputs.tags }}
cache-to: type=registry,ref=${{ steps.cache-meta.outputs.tags }},mode=max cache-to: type=registry,ref=${{ steps.cache-meta.outputs.tags }},mode=max
build-args: |
BUILD_HASH=${{ github.sha }}
- name: Export digest - name: Export digest
run: | run: |
@ -170,7 +172,9 @@ jobs:
outputs: type=image,name=${{ env.FULL_IMAGE_NAME }},push-by-digest=true,name-canonical=true,push=true outputs: type=image,name=${{ env.FULL_IMAGE_NAME }},push-by-digest=true,name-canonical=true,push=true
cache-from: type=registry,ref=${{ steps.cache-meta.outputs.tags }} cache-from: type=registry,ref=${{ steps.cache-meta.outputs.tags }}
cache-to: type=registry,ref=${{ steps.cache-meta.outputs.tags }},mode=max cache-to: type=registry,ref=${{ steps.cache-meta.outputs.tags }},mode=max
build-args: USE_CUDA=true build-args: |
BUILD_HASH=${{ github.sha }}
USE_CUDA=true
- name: Export digest - name: Export digest
run: | run: |
@ -257,7 +261,9 @@ jobs:
outputs: type=image,name=${{ env.FULL_IMAGE_NAME }},push-by-digest=true,name-canonical=true,push=true outputs: type=image,name=${{ env.FULL_IMAGE_NAME }},push-by-digest=true,name-canonical=true,push=true
cache-from: type=registry,ref=${{ steps.cache-meta.outputs.tags }} cache-from: type=registry,ref=${{ steps.cache-meta.outputs.tags }}
cache-to: type=registry,ref=${{ steps.cache-meta.outputs.tags }},mode=max cache-to: type=registry,ref=${{ steps.cache-meta.outputs.tags }},mode=max
build-args: USE_OLLAMA=true build-args: |
BUILD_HASH=${{ github.sha }}
USE_OLLAMA=true
- name: Export digest - name: Export digest
run: | run: |

View File

@ -11,12 +11,14 @@ ARG USE_CUDA_VER=cu121
# IMPORTANT: If you change the embedding model (sentence-transformers/all-MiniLM-L6-v2) and vice versa, you aren't able to use RAG Chat with your previous documents loaded in the WebUI! You need to re-embed them. # IMPORTANT: If you change the embedding model (sentence-transformers/all-MiniLM-L6-v2) and vice versa, you aren't able to use RAG Chat with your previous documents loaded in the WebUI! You need to re-embed them.
ARG USE_EMBEDDING_MODEL=sentence-transformers/all-MiniLM-L6-v2 ARG USE_EMBEDDING_MODEL=sentence-transformers/all-MiniLM-L6-v2
ARG USE_RERANKING_MODEL="" ARG USE_RERANKING_MODEL=""
ARG BUILD_HASH=dev-build
# Override at your own risk - non-root configurations are untested # Override at your own risk - non-root configurations are untested
ARG UID=0 ARG UID=0
ARG GID=0 ARG GID=0
######## WebUI frontend ######## ######## WebUI frontend ########
FROM --platform=$BUILDPLATFORM node:21-alpine3.19 as build FROM --platform=$BUILDPLATFORM node:21-alpine3.19 as build
ARG BUILD_HASH
WORKDIR /app WORKDIR /app
@ -24,6 +26,7 @@ COPY package.json package-lock.json ./
RUN npm ci RUN npm ci
COPY . . COPY . .
ENV APP_BUILD_HASH=${BUILD_HASH}
RUN npm run build RUN npm run build
######## WebUI backend ######## ######## WebUI backend ########
@ -35,6 +38,7 @@ ARG USE_OLLAMA
ARG USE_CUDA_VER ARG USE_CUDA_VER
ARG USE_EMBEDDING_MODEL ARG USE_EMBEDDING_MODEL
ARG USE_RERANKING_MODEL ARG USE_RERANKING_MODEL
ARG BUILD_HASH
ARG UID ARG UID
ARG GID ARG GID
@ -150,4 +154,6 @@ HEALTHCHECK CMD curl --silent --fail http://localhost:8080/health | jq -e '.stat
USER $UID:$GID USER $UID:$GID
ENV WEBUI_BUILD_VERSION=${BUILD_HASH}
CMD [ "bash", "start.sh"] CMD [ "bash", "start.sh"]

View File

@ -13,7 +13,7 @@ from apps.webui.routers import (
utils, utils,
) )
from config import ( from config import (
WEBUI_VERSION, WEBUI_BUILD_HASH,
WEBUI_AUTH, WEBUI_AUTH,
DEFAULT_MODELS, DEFAULT_MODELS,
DEFAULT_PROMPT_SUGGESTIONS, DEFAULT_PROMPT_SUGGESTIONS,
@ -23,6 +23,7 @@ from config import (
WEBHOOK_URL, WEBHOOK_URL,
WEBUI_AUTH_TRUSTED_EMAIL_HEADER, WEBUI_AUTH_TRUSTED_EMAIL_HEADER,
JWT_EXPIRES_IN, JWT_EXPIRES_IN,
WEBUI_BANNERS,
AppConfig, AppConfig,
ENABLE_COMMUNITY_SHARING, ENABLE_COMMUNITY_SHARING,
) )
@ -41,6 +42,7 @@ 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.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
app.state.config.BANNERS = WEBUI_BANNERS
app.state.config.ENABLE_COMMUNITY_SHARING = ENABLE_COMMUNITY_SHARING app.state.config.ENABLE_COMMUNITY_SHARING = ENABLE_COMMUNITY_SHARING

View File

@ -8,6 +8,8 @@ from pydantic import BaseModel
import time import time
import uuid import uuid
from config import BannerModel
from apps.webui.models.users import Users from apps.webui.models.users import Users
from utils.utils import ( from utils.utils import (
@ -57,3 +59,31 @@ async def set_global_default_suggestions(
data = form_data.model_dump() data = form_data.model_dump()
request.app.state.config.DEFAULT_PROMPT_SUGGESTIONS = data["suggestions"] request.app.state.config.DEFAULT_PROMPT_SUGGESTIONS = data["suggestions"]
return request.app.state.config.DEFAULT_PROMPT_SUGGESTIONS return request.app.state.config.DEFAULT_PROMPT_SUGGESTIONS
############################
# SetBanners
############################
class SetBannersForm(BaseModel):
banners: List[BannerModel]
@router.post("/banners", response_model=List[BannerModel])
async def set_banners(
request: Request,
form_data: SetBannersForm,
user=Depends(get_admin_user),
):
data = form_data.model_dump()
request.app.state.config.BANNERS = data["banners"]
return request.app.state.config.BANNERS
@router.get("/banners", response_model=List[BannerModel])
async def get_banners(
request: Request,
user=Depends(get_current_user),
):
return request.app.state.config.BANNERS

View File

@ -8,6 +8,8 @@ from chromadb import Settings
from base64 import b64encode from base64 import b64encode
from bs4 import BeautifulSoup from bs4 import BeautifulSoup
from typing import TypeVar, Generic, Union from typing import TypeVar, Generic, Union
from pydantic import BaseModel
from typing import Optional
from pathlib import Path from pathlib import Path
import json import json
@ -166,10 +168,10 @@ CHANGELOG = changelog_json
#################################### ####################################
# WEBUI_VERSION # WEBUI_BUILD_HASH
#################################### ####################################
WEBUI_VERSION = os.environ.get("WEBUI_VERSION", "v1.0.0-alpha.100") WEBUI_BUILD_HASH = os.environ.get("WEBUI_BUILD_HASH", "dev-build")
#################################### ####################################
# DATA/FRONTEND BUILD DIR # DATA/FRONTEND BUILD DIR
@ -572,6 +574,21 @@ ENABLE_COMMUNITY_SHARING = PersistentConfig(
os.environ.get("ENABLE_COMMUNITY_SHARING", "True").lower() == "true", os.environ.get("ENABLE_COMMUNITY_SHARING", "True").lower() == "true",
) )
class BannerModel(BaseModel):
id: str
type: str
title: Optional[str] = None
content: str
dismissible: bool
timestamp: int
WEBUI_BANNERS = PersistentConfig(
"WEBUI_BANNERS",
"ui.banners",
[BannerModel(**banner) for banner in json.loads("[]")],
)
#################################### ####################################
# WEBUI_SECRET_KEY # WEBUI_SECRET_KEY
#################################### ####################################

View File

@ -55,6 +55,7 @@ from config import (
WEBHOOK_URL, WEBHOOK_URL,
ENABLE_ADMIN_EXPORT, ENABLE_ADMIN_EXPORT,
AppConfig, AppConfig,
WEBUI_BUILD_HASH,
) )
from constants import ERROR_MESSAGES from constants import ERROR_MESSAGES
@ -85,6 +86,7 @@ print(
v{VERSION} - building the best open-source AI user interface. v{VERSION} - building the best open-source AI user interface.
{f"Commit: {WEBUI_BUILD_HASH}" if WEBUI_BUILD_HASH != "dev-build" else ""}
https://github.com/open-webui/open-webui https://github.com/open-webui/open-webui
""" """
) )

View File

@ -1,4 +1,5 @@
# noqa: INP001 # noqa: INP001
import os
import shutil import shutil
import subprocess import subprocess
from sys import stderr from sys import stderr
@ -18,4 +19,5 @@ class CustomBuildHook(BuildHookInterface):
stderr.write("### npm install\n") stderr.write("### npm install\n")
subprocess.run([npm, "install"], check=True) # noqa: S603 subprocess.run([npm, "install"], check=True) # noqa: S603
stderr.write("\n### npm run build\n") stderr.write("\n### npm run build\n")
os.environ["APP_BUILD_HASH"] = version
subprocess.run([npm, "run", "build"], check=True) # noqa: S603 subprocess.run([npm, "run", "build"], check=True) # noqa: S603

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{ {
"name": "open-webui", "name": "open-webui",
"version": "0.2.0.dev1", "version": "0.2.0.dev2",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "open-webui", "name": "open-webui",
"version": "0.2.0.dev1", "version": "0.2.0.dev2",
"dependencies": { "dependencies": {
"@pyscript/core": "^0.4.32", "@pyscript/core": "^0.4.32",
"@sveltejs/adapter-node": "^1.3.1", "@sveltejs/adapter-node": "^1.3.1",

View File

@ -1,6 +1,6 @@
{ {
"name": "open-webui", "name": "open-webui",
"version": "0.2.0.dev1", "version": "0.2.0.dev2",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "npm run pyodide:fetch && vite dev --host", "dev": "npm run pyodide:fetch && vite dev --host",

View File

@ -1,4 +1,5 @@
import { WEBUI_API_BASE_URL } from '$lib/constants'; import { WEBUI_API_BASE_URL } from '$lib/constants';
import type { Banner } from '$lib/types';
export const setDefaultModels = async (token: string, models: string) => { export const setDefaultModels = async (token: string, models: string) => {
let error = null; let error = null;
@ -59,3 +60,60 @@ export const setDefaultPromptSuggestions = async (token: string, promptSuggestio
return res; return res;
}; };
export const getBanners = async (token: string): Promise<Banner[]> => {
let error = null;
const res = await fetch(`${WEBUI_API_BASE_URL}/configs/banners`, {
method: 'GET',
headers: {
'Content-Type': 'application/json',
Authorization: `Bearer ${token}`
}
})
.then(async (res) => {
if (!res.ok) throw await res.json();
return res.json();
})
.catch((err) => {
console.log(err);
error = err.detail;
return null;
});
if (error) {
throw error;
}
return res;
};
export const setBanners = async (token: string, banners: Banner[]) => {
let error = null;
const res = await fetch(`${WEBUI_API_BASE_URL}/configs/banners`, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
Authorization: `Bearer ${token}`
},
body: JSON.stringify({
banners: banners
})
})
.then(async (res) => {
if (!res.ok) throw await res.json();
return res.json();
})
.catch((err) => {
console.log(err);
error = err.detail;
return null;
});
if (error) {
throw error;
}
return res;
};

View File

@ -0,0 +1,136 @@
<script lang="ts">
import { v4 as uuidv4 } from 'uuid';
import { getContext, onMount } from 'svelte';
import { banners as _banners } from '$lib/stores';
import type { Banner } from '$lib/types';
import { getBanners, setBanners } from '$lib/apis/configs';
import type { Writable } from 'svelte/store';
import type { i18n as i18nType } from 'i18next';
import Tooltip from '$lib/components/common/Tooltip.svelte';
import Switch from '$lib/components/common/Switch.svelte';
const i18n: Writable<i18nType> = getContext('i18n');
export let saveHandler: Function;
let banners: Banner[] = [];
onMount(async () => {
banners = await getBanners(localStorage.token);
});
const updateBanners = async () => {
_banners.set(await setBanners(localStorage.token, banners));
};
</script>
<form
class="flex flex-col h-full justify-between space-y-3 text-sm"
on:submit|preventDefault={async () => {
updateBanners();
saveHandler();
}}
>
<div class=" space-y-3 pr-1.5 overflow-y-scroll max-h-80 h-full">
<div class=" space-y-3 pr-1.5">
<div class="flex w-full justify-between mb-2">
<div class=" self-center text-sm font-semibold">
{$i18n.t('Banners')}
</div>
<button
class="p-1 px-3 text-xs flex rounded transition"
type="button"
on:click={() => {
if (banners.length === 0 || banners.at(-1).content !== '') {
banners = [
...banners,
{
id: uuidv4(),
type: '',
title: '',
content: '',
dismissible: true,
timestamp: Math.floor(Date.now() / 1000)
}
];
}
}}
>
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 20 20"
fill="currentColor"
class="w-4 h-4"
>
<path
d="M10.75 4.75a.75.75 0 00-1.5 0v4.5h-4.5a.75.75 0 000 1.5h4.5v4.5a.75.75 0 001.5 0v-4.5h4.5a.75.75 0 000-1.5h-4.5v-4.5z"
/>
</svg>
</button>
</div>
<div class="flex flex-col space-y-1">
{#each banners as banner, bannerIdx}
<div class=" flex justify-between">
<div class="flex flex-row flex-1 border rounded-xl dark:border-gray-800">
<select
class="w-fit capitalize rounded-xl py-2 px-4 text-xs bg-transparent outline-none"
bind:value={banner.type}
>
{#if banner.type == ''}
<option value="" selected disabled class="">{$i18n.t('Type')}</option>
{/if}
<option value="info">{$i18n.t('Info')}</option>
<option value="warning">{$i18n.t('Warning')}</option>
<option value="error">{$i18n.t('Error')}</option>
<option value="success">{$i18n.t('Success')}</option>
</select>
<input
class="pr-5 py-1.5 text-xs w-full bg-transparent outline-none"
placeholder={$i18n.t('Content')}
bind:value={banner.content}
/>
<div class="relative top-1.5 -left-2">
<Tooltip content="Dismissible" className="flex h-fit items-center">
<Switch bind:state={banner.dismissible} />
</Tooltip>
</div>
</div>
<button
class="px-2"
type="button"
on:click={() => {
banners.splice(bannerIdx, 1);
banners = banners;
}}
>
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 20 20"
fill="currentColor"
class="w-4 h-4"
>
<path
d="M6.28 5.22a.75.75 0 00-1.06 1.06L8.94 10l-3.72 3.72a.75.75 0 101.06 1.06L10 11.06l3.72 3.72a.75.75 0 101.06-1.06L11.06 10l3.72-3.72a.75.75 0 00-1.06-1.06L10 8.94 6.28 5.22z"
/>
</svg>
</button>
</div>
{/each}
</div>
</div>
</div>
<div class="flex justify-end pt-3 text-sm font-medium">
<button
class=" px-4 py-2 bg-emerald-700 hover:bg-emerald-800 text-gray-100 transition rounded-lg"
type="submit"
>
Save
</button>
</div>
</form>

View File

@ -6,6 +6,9 @@
import General from './Settings/General.svelte'; import General from './Settings/General.svelte';
import Users from './Settings/Users.svelte'; import Users from './Settings/Users.svelte';
import Banners from '$lib/components/admin/Settings/Banners.svelte';
import { toast } from 'svelte-sonner';
const i18n = getContext('i18n'); const i18n = getContext('i18n');
export let show = false; export let show = false;
@ -117,24 +120,63 @@
</div> </div>
<div class=" self-center">{$i18n.t('Database')}</div> <div class=" self-center">{$i18n.t('Database')}</div>
</button> </button>
<button
class="px-2.5 py-2.5 min-w-fit rounded-lg flex-1 md:flex-none flex text-right transition {selectedTab ===
'banners'
? 'bg-gray-200 dark:bg-gray-700'
: ' hover:bg-gray-300 dark:hover:bg-gray-800'}"
on:click={() => {
selectedTab = 'banners';
}}
>
<div class=" self-center mr-2">
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="currentColor"
class="size-4"
>
<path
d="M5.85 3.5a.75.75 0 0 0-1.117-1 9.719 9.719 0 0 0-2.348 4.876.75.75 0 0 0 1.479.248A8.219 8.219 0 0 1 5.85 3.5ZM19.267 2.5a.75.75 0 1 0-1.118 1 8.22 8.22 0 0 1 1.987 4.124.75.75 0 0 0 1.48-.248A9.72 9.72 0 0 0 19.266 2.5Z"
/>
<path
fill-rule="evenodd"
d="M12 2.25A6.75 6.75 0 0 0 5.25 9v.75a8.217 8.217 0 0 1-2.119 5.52.75.75 0 0 0 .298 1.206c1.544.57 3.16.99 4.831 1.243a3.75 3.75 0 1 0 7.48 0 24.583 24.583 0 0 0 4.83-1.244.75.75 0 0 0 .298-1.205 8.217 8.217 0 0 1-2.118-5.52V9A6.75 6.75 0 0 0 12 2.25ZM9.75 18c0-.034 0-.067.002-.1a25.05 25.05 0 0 0 4.496 0l.002.1a2.25 2.25 0 1 1-4.5 0Z"
clip-rule="evenodd"
/>
</svg>
</div>
<div class=" self-center">{$i18n.t('Banners')}</div>
</button>
</div> </div>
<div class="flex-1 md:min-h-[380px]"> <div class="flex-1 md:min-h-[380px]">
{#if selectedTab === 'general'} {#if selectedTab === 'general'}
<General <General
saveHandler={() => { saveHandler={() => {
show = false; show = false;
toast.success($i18n.t('Settings saved successfully!'));
}} }}
/> />
{:else if selectedTab === 'users'} {:else if selectedTab === 'users'}
<Users <Users
saveHandler={() => { saveHandler={() => {
show = false; show = false;
toast.success($i18n.t('Settings saved successfully!'));
}} }}
/> />
{:else if selectedTab === 'db'} {:else if selectedTab === 'db'}
<Database <Database
saveHandler={() => { saveHandler={() => {
show = false; show = false;
toast.success($i18n.t('Settings saved successfully!'));
}}
/>
{:else if selectedTab === 'banners'}
<Banners
saveHandler={() => {
show = false;
toast.success($i18n.t('Settings saved successfully!'));
}} }}
/> />
{/if} {/if}

View File

@ -15,7 +15,8 @@
settings, settings,
showSidebar, showSidebar,
tags as _tags, tags as _tags,
WEBUI_NAME WEBUI_NAME,
banners
} from '$lib/stores'; } from '$lib/stores';
import { convertMessagesToHistory, copyToClipboard, splitStream } from '$lib/utils'; import { convertMessagesToHistory, copyToClipboard, splitStream } from '$lib/utils';
@ -40,6 +41,7 @@
import { queryMemory } from '$lib/apis/memories'; import { queryMemory } from '$lib/apis/memories';
import type { Writable } from 'svelte/store'; import type { Writable } from 'svelte/store';
import type { i18n as i18nType } from 'i18next'; import type { i18n as i18nType } from 'i18next';
import Banner from '../common/Banner.svelte';
const i18n: Writable<i18nType> = getContext('i18n'); const i18n: Writable<i18nType> = getContext('i18n');
@ -1004,6 +1006,34 @@
{chat} {chat}
{initNewChat} {initNewChat}
/> />
{#if $banners.length > 0 && !$chatId}
<div
class="absolute top-[4.25rem] w-full {$showSidebar ? 'md:max-w-[calc(100%-260px)]' : ''}"
>
<div class=" flex flex-col gap-1 w-full">
{#each $banners.filter( (b) => (b.dismissible ? !JSON.parse(localStorage.getItem('dismissedBannerIds') ?? '[]').includes(b.id) : true) ) as banner}
<Banner
{banner}
on:dismiss={(e) => {
const bannerId = e.detail;
localStorage.setItem(
'dismissedBannerIds',
JSON.stringify(
[
bannerId,
...JSON.parse(localStorage.getItem('dismissedBannerIds') ?? '[]')
].filter((id) => $banners.find((b) => b.id === id))
)
);
}}
/>
{/each}
</div>
</div>
{/if}
<div class="flex flex-col flex-auto"> <div class="flex flex-col flex-auto">
<div <div
class=" pb-2.5 flex flex-col justify-between w-full flex-auto overflow-auto h-0 max-w-full" class=" pb-2.5 flex flex-col justify-between w-full flex-auto overflow-auto h-0 max-w-full"

View File

@ -1,7 +1,7 @@
<script lang="ts"> <script lang="ts">
import { getVersionUpdates } from '$lib/apis'; import { getVersionUpdates } from '$lib/apis';
import { getOllamaVersion } from '$lib/apis/ollama'; import { getOllamaVersion } from '$lib/apis/ollama';
import { WEBUI_VERSION } from '$lib/constants'; import { WEBUI_BUILD_HASH, WEBUI_VERSION } from '$lib/constants';
import { WEBUI_NAME, config, showChangelog } from '$lib/stores'; import { WEBUI_NAME, config, showChangelog } from '$lib/stores';
import { compareVersion } from '$lib/utils'; import { compareVersion } from '$lib/utils';
import { onMount, getContext } from 'svelte'; import { onMount, getContext } from 'svelte';
@ -54,7 +54,7 @@
<div class="flex w-full justify-between items-center"> <div class="flex w-full justify-between items-center">
<div class="flex flex-col text-xs text-gray-700 dark:text-gray-200"> <div class="flex flex-col text-xs text-gray-700 dark:text-gray-200">
<div class="flex gap-1"> <div class="flex gap-1">
<Tooltip content={WEBUI_VERSION === '0.1.117' ? "🪖 We're just getting started." : ''}> <Tooltip content={WEBUI_BUILD_HASH}>
v{WEBUI_VERSION} v{WEBUI_VERSION}
</Tooltip> </Tooltip>

View File

@ -0,0 +1,125 @@
<script lang="ts">
import type { Banner } from '$lib/types';
import { onMount, createEventDispatcher } from 'svelte';
import { fade } from 'svelte/transition';
const dispatch = createEventDispatcher();
export let banner: Banner = {
id: '',
type: 'info',
title: '',
content: '',
url: '',
dismissable: true,
timestamp: Math.floor(Date.now() / 1000)
};
export let dismissed = false;
let mounted = false;
const classNames: Record<string, string> = {
info: 'bg-blue-500/20 text-blue-700 dark:text-blue-200 ',
success: 'bg-green-500/20 text-green-700 dark:text-green-200',
warning: 'bg-yellow-500/20 text-yellow-700 dark:text-yellow-200',
error: 'bg-red-500/20 text-red-700 dark:text-red-200'
};
const dismiss = (id) => {
dismissed = true;
dispatch('dismiss', id);
};
onMount(() => {
mounted = true;
});
</script>
{#if !dismissed}
{#if mounted}
<div
class=" top-0 left-0 right-0 p-2 mx-4 px-3 flex justify-center items-center relative rounded-xl border border-gray-100 dark:border-gray-850 text-gray-800 dark:text-gary-100 bg-white dark:bg-gray-900 backdrop-blur-xl z-40"
transition:fade={{ delay: 100, duration: 300 }}
>
<div class=" flex flex-col md:flex-row md:items-center flex-1 text-sm w-fit gap-1.5">
<div class="flex justify-between self-start">
<div
class=" text-xs font-black {classNames[banner.type] ??
classNames['info']} w-fit px-2 rounded uppercase line-clamp-1 mr-0.5"
>
{banner.type}
</div>
{#if banner.url}
<div class="flex md:hidden group w-fit md:items-center">
<a
class="text-gray-700 dark:text-white text-xs font-bold underline"
href="/assets/files/whitepaper.pdf"
target="_blank">Learn More</a
>
<div
class=" ml-1 text-gray-400 group-hover:text-gray-600 dark:group-hover:text-white"
>
<!-- -->
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 16 16"
fill="currentColor"
class="w-4 h-4"
>
<path
fill-rule="evenodd"
d="M4.22 11.78a.75.75 0 0 1 0-1.06L9.44 5.5H5.75a.75.75 0 0 1 0-1.5h5.5a.75.75 0 0 1 .75.75v5.5a.75.75 0 0 1-1.5 0V6.56l-5.22 5.22a.75.75 0 0 1-1.06 0Z"
clip-rule="evenodd"
/>
</svg>
</div>
</div>
{/if}
</div>
<div class="flex-1 text-xs text-gray-700 dark:text-white">
{banner.content}
</div>
</div>
{#if banner.url}
<div class="hidden md:flex group w-fit md:items-center">
<a
class="text-gray-700 dark:text-white text-xs font-bold underline"
href="/"
target="_blank">Learn More</a
>
<div class=" ml-1 text-gray-400 group-hover:text-gray-600 dark:group-hover:text-white">
<!-- -->
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 16 16"
fill="currentColor"
class="size-4"
>
<path
fill-rule="evenodd"
d="M4.22 11.78a.75.75 0 0 1 0-1.06L9.44 5.5H5.75a.75.75 0 0 1 0-1.5h5.5a.75.75 0 0 1 .75.75v5.5a.75.75 0 0 1-1.5 0V6.56l-5.22 5.22a.75.75 0 0 1-1.06 0Z"
clip-rule="evenodd"
/>
</svg>
</div>
</div>
{/if}
<div class="flex self-start">
{#if banner.dismissible}
<button
on:click={() => {
dismiss(banner.id);
}}
class=" -mt-[3px] ml-1.5 mr-1 text-gray-400 dark:hover:text-white h-1">&times;</button
>
{/if}
</div>
</div>
{/if}
{/if}

View File

@ -13,6 +13,7 @@ export const IMAGES_API_BASE_URL = `${WEBUI_BASE_URL}/images/api/v1`;
export const RAG_API_BASE_URL = `${WEBUI_BASE_URL}/rag/api/v1`; export const RAG_API_BASE_URL = `${WEBUI_BASE_URL}/rag/api/v1`;
export const WEBUI_VERSION = APP_VERSION; export const WEBUI_VERSION = APP_VERSION;
export const WEBUI_BUILD_HASH = APP_BUILD_HASH;
export const REQUIRED_OLLAMA_VERSION = '0.1.16'; export const REQUIRED_OLLAMA_VERSION = '0.1.16';
export const SUPPORTED_FILE_TYPE = [ export const SUPPORTED_FILE_TYPE = [

View File

@ -47,6 +47,7 @@
"API keys": "مفاتيح واجهة برمجة التطبيقات", "API keys": "مفاتيح واجهة برمجة التطبيقات",
"April": "أبريل", "April": "أبريل",
"Archive": "الأرشيف", "Archive": "الأرشيف",
"Archive All Chats": "",
"Archived Chats": "الأرشيف المحادثات", "Archived Chats": "الأرشيف المحادثات",
"are allowed - Activate this command by typing": "مسموح - قم بتنشيط هذا الأمر عن طريق الكتابة", "are allowed - Activate this command by typing": "مسموح - قم بتنشيط هذا الأمر عن طريق الكتابة",
"Are you sure?": "هل أنت متأكد ؟", "Are you sure?": "هل أنت متأكد ؟",
@ -61,6 +62,7 @@
"available!": "متاح", "available!": "متاح",
"Back": "خلف", "Back": "خلف",
"Bad Response": "استجابة خطاء", "Bad Response": "استجابة خطاء",
"Banners": "",
"Base Model (From)": "", "Base Model (From)": "",
"before": "قبل", "before": "قبل",
"Being lazy": "كون كسول", "Being lazy": "كون كسول",
@ -119,7 +121,6 @@
"Custom": "مخصص", "Custom": "مخصص",
"Customize models for a specific purpose": "", "Customize models for a specific purpose": "",
"Dark": "مظلم", "Dark": "مظلم",
"Dashboard": "لوحة التحكم",
"Database": "قاعدة البيانات", "Database": "قاعدة البيانات",
"December": "ديسمبر", "December": "ديسمبر",
"Default": "الإفتراضي", "Default": "الإفتراضي",
@ -187,6 +188,7 @@
"Enter Your Full Name": "أدخل الاسم كامل", "Enter Your Full Name": "أدخل الاسم كامل",
"Enter Your Password": "ادخل كلمة المرور", "Enter Your Password": "ادخل كلمة المرور",
"Enter Your Role": "أدخل الصلاحيات", "Enter Your Role": "أدخل الصلاحيات",
"Error": "",
"Experimental": "تجريبي", "Experimental": "تجريبي",
"Export All Chats (All Users)": "تصدير جميع الدردشات (جميع المستخدمين)", "Export All Chats (All Users)": "تصدير جميع الدردشات (جميع المستخدمين)",
"Export Chats": "تصدير جميع الدردشات", "Export Chats": "تصدير جميع الدردشات",
@ -226,6 +228,7 @@
"Import Models": "", "Import Models": "",
"Import Prompts": "مطالبات الاستيراد", "Import Prompts": "مطالبات الاستيراد",
"Include `--api` flag when running stable-diffusion-webui": "قم بتضمين علامة `-api` عند تشغيل Stable-diffusion-webui", "Include `--api` flag when running stable-diffusion-webui": "قم بتضمين علامة `-api` عند تشغيل Stable-diffusion-webui",
"Info": "",
"Input commands": "إدخال الأوامر", "Input commands": "إدخال الأوامر",
"Interface": "واجهه المستخدم", "Interface": "واجهه المستخدم",
"Invalid Tag": "تاق غير صالحة", "Invalid Tag": "تاق غير صالحة",
@ -310,7 +313,6 @@
"OpenAI URL/Key required.": "URL/مفتاح OpenAI.مطلوب عنوان ", "OpenAI URL/Key required.": "URL/مفتاح OpenAI.مطلوب عنوان ",
"or": "أو", "or": "أو",
"Other": "آخر", "Other": "آخر",
"Overview": "عرض",
"Password": "الباسورد", "Password": "الباسورد",
"PDF document (.pdf)": "PDF ملف (.pdf)", "PDF document (.pdf)": "PDF ملف (.pdf)",
"PDF Extract Images (OCR)": "PDF أستخرج الصور (OCR)", "PDF Extract Images (OCR)": "PDF أستخرج الصور (OCR)",
@ -361,6 +363,7 @@
"Scan for documents from {{path}}": "{{path}} مسح على الملفات من", "Scan for documents from {{path}}": "{{path}} مسح على الملفات من",
"Search": "البحث", "Search": "البحث",
"Search a model": "البحث عن موديل", "Search a model": "البحث عن موديل",
"Search Chats": "",
"Search Documents": "البحث المستندات", "Search Documents": "البحث المستندات",
"Search Models": "", "Search Models": "",
"Search Prompts": "أبحث حث", "Search Prompts": "أبحث حث",
@ -444,6 +447,7 @@
"Top P": "Top P", "Top P": "Top P",
"Trouble accessing Ollama?": "هل تواجه مشكلة في الوصول", "Trouble accessing Ollama?": "هل تواجه مشكلة في الوصول",
"TTS Settings": "TTS اعدادات", "TTS Settings": "TTS اعدادات",
"Type": "",
"Type Hugging Face Resolve (Download) URL": "اكتب عنوان URL لحل مشكلة الوجه (تنزيل).", "Type Hugging Face Resolve (Download) URL": "اكتب عنوان URL لحل مشكلة الوجه (تنزيل).",
"Uh-oh! There was an issue connecting to {{provider}}.": "{{provider}}خطاء أوه! حدثت مشكلة في الاتصال بـ ", "Uh-oh! There was an issue connecting to {{provider}}.": "{{provider}}خطاء أوه! حدثت مشكلة في الاتصال بـ ",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "نوع ملف غير معروف '{{file_type}}', ولكن القبول والتعامل كنص عادي ", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "نوع ملف غير معروف '{{file_type}}', ولكن القبول والتعامل كنص عادي ",
@ -464,6 +468,7 @@
"variable": "المتغير", "variable": "المتغير",
"variable to have them replaced with clipboard content.": "متغير لاستبدالها بمحتوى الحافظة.", "variable to have them replaced with clipboard content.": "متغير لاستبدالها بمحتوى الحافظة.",
"Version": "إصدار", "Version": "إصدار",
"Warning": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "تحذير: إذا قمت بتحديث أو تغيير نموذج التضمين الخاص بك، فستحتاج إلى إعادة استيراد كافة المستندات.", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "تحذير: إذا قمت بتحديث أو تغيير نموذج التضمين الخاص بك، فستحتاج إلى إعادة استيراد كافة المستندات.",
"Web": "Web", "Web": "Web",
"Web Loader Settings": "Web تحميل اعدادات", "Web Loader Settings": "Web تحميل اعدادات",

View File

@ -47,6 +47,7 @@
"API keys": "API Ключове", "API keys": "API Ключове",
"April": "Април", "April": "Април",
"Archive": "Архивирани Чатове", "Archive": "Архивирани Чатове",
"Archive All Chats": "",
"Archived Chats": "Архивирани Чатове", "Archived Chats": "Архивирани Чатове",
"are allowed - Activate this command by typing": "са разрешени - Активирайте тази команда чрез въвеждане", "are allowed - Activate this command by typing": "са разрешени - Активирайте тази команда чрез въвеждане",
"Are you sure?": "Сигурни ли сте?", "Are you sure?": "Сигурни ли сте?",
@ -61,6 +62,7 @@
"available!": "наличен!", "available!": "наличен!",
"Back": "Назад", "Back": "Назад",
"Bad Response": "Невалиден отговор от API", "Bad Response": "Невалиден отговор от API",
"Banners": "",
"Base Model (From)": "", "Base Model (From)": "",
"before": "преди", "before": "преди",
"Being lazy": "Да бъдеш мързелив", "Being lazy": "Да бъдеш мързелив",
@ -119,7 +121,6 @@
"Custom": "Персонализиран", "Custom": "Персонализиран",
"Customize models for a specific purpose": "", "Customize models for a specific purpose": "",
"Dark": "Тъмен", "Dark": "Тъмен",
"Dashboard": "Панел",
"Database": "База данни", "Database": "База данни",
"December": "Декември", "December": "Декември",
"Default": "По подразбиране", "Default": "По подразбиране",
@ -187,6 +188,7 @@
"Enter Your Full Name": "Въведете вашето пълно име", "Enter Your Full Name": "Въведете вашето пълно име",
"Enter Your Password": "Въведете вашата парола", "Enter Your Password": "Въведете вашата парола",
"Enter Your Role": "Въведете вашата роля", "Enter Your Role": "Въведете вашата роля",
"Error": "",
"Experimental": "Експериментално", "Experimental": "Експериментално",
"Export All Chats (All Users)": "Експортване на всички чатове (За всички потребители)", "Export All Chats (All Users)": "Експортване на всички чатове (За всички потребители)",
"Export Chats": "Експортване на чатове", "Export Chats": "Експортване на чатове",
@ -226,6 +228,7 @@
"Import Models": "", "Import Models": "",
"Import Prompts": "Импортване на промптове", "Import Prompts": "Импортване на промптове",
"Include `--api` flag when running stable-diffusion-webui": "Включете флага `--api`, когато стартирате stable-diffusion-webui", "Include `--api` flag when running stable-diffusion-webui": "Включете флага `--api`, когато стартирате stable-diffusion-webui",
"Info": "",
"Input commands": "Въведете команди", "Input commands": "Въведете команди",
"Interface": "Интерфейс", "Interface": "Интерфейс",
"Invalid Tag": "Невалиден тег", "Invalid Tag": "Невалиден тег",
@ -310,7 +313,6 @@
"OpenAI URL/Key required.": "OpenAI URL/Key е задължителен.", "OpenAI URL/Key required.": "OpenAI URL/Key е задължителен.",
"or": "или", "or": "или",
"Other": "Other", "Other": "Other",
"Overview": "Обзор",
"Password": "Парола", "Password": "Парола",
"PDF document (.pdf)": "PDF документ (.pdf)", "PDF document (.pdf)": "PDF документ (.pdf)",
"PDF Extract Images (OCR)": "PDF Extract Images (OCR)", "PDF Extract Images (OCR)": "PDF Extract Images (OCR)",
@ -361,6 +363,7 @@
"Scan for documents from {{path}}": "Сканиране за документи в {{path}}", "Scan for documents from {{path}}": "Сканиране за документи в {{path}}",
"Search": "Търси", "Search": "Търси",
"Search a model": "Търси модел", "Search a model": "Търси модел",
"Search Chats": "",
"Search Documents": "Търси Документи", "Search Documents": "Търси Документи",
"Search Models": "", "Search Models": "",
"Search Prompts": "Търси Промптове", "Search Prompts": "Търси Промптове",
@ -444,6 +447,7 @@
"Top P": "Top P", "Top P": "Top P",
"Trouble accessing Ollama?": "Проблеми с достъпът до Ollama?", "Trouble accessing Ollama?": "Проблеми с достъпът до Ollama?",
"TTS Settings": "TTS Настройки", "TTS Settings": "TTS Настройки",
"Type": "",
"Type Hugging Face Resolve (Download) URL": "Въведете Hugging Face Resolve (Download) URL", "Type Hugging Face Resolve (Download) URL": "Въведете Hugging Face Resolve (Download) URL",
"Uh-oh! There was an issue connecting to {{provider}}.": "О, не! Възникна проблем при свързването с {{provider}}.", "Uh-oh! There was an issue connecting to {{provider}}.": "О, не! Възникна проблем при свързването с {{provider}}.",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Непознат файлов тип '{{file_type}}', но се приема и обработва като текст", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Непознат файлов тип '{{file_type}}', но се приема и обработва като текст",
@ -464,6 +468,7 @@
"variable": "променлива", "variable": "променлива",
"variable to have them replaced with clipboard content.": "променливи да се заменят съдържанието от клипборд.", "variable to have them replaced with clipboard content.": "променливи да се заменят съдържанието от клипборд.",
"Version": "Версия", "Version": "Версия",
"Warning": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Предупреждение: Ако актуализирате или промените вашия модел за вграждане, трябва да повторите импортирането на всички документи.", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "Предупреждение: Ако актуализирате или промените вашия модел за вграждане, трябва да повторите импортирането на всички документи.",
"Web": "Уеб", "Web": "Уеб",
"Web Loader Settings": "Настройки за зареждане на уеб", "Web Loader Settings": "Настройки за зареждане на уеб",

View File

@ -47,6 +47,7 @@
"API keys": "এপিআই কোডস", "API keys": "এপিআই কোডস",
"April": "আপ্রিল", "April": "আপ্রিল",
"Archive": "আর্কাইভ", "Archive": "আর্কাইভ",
"Archive All Chats": "",
"Archived Chats": "চ্যাট ইতিহাস সংরক্ষণাগার", "Archived Chats": "চ্যাট ইতিহাস সংরক্ষণাগার",
"are allowed - Activate this command by typing": "অনুমোদিত - কমান্ডটি চালু করার জন্য লিখুন", "are allowed - Activate this command by typing": "অনুমোদিত - কমান্ডটি চালু করার জন্য লিখুন",
"Are you sure?": "আপনি নিশ্চিত?", "Are you sure?": "আপনি নিশ্চিত?",
@ -61,6 +62,7 @@
"available!": "উপলব্ধ!", "available!": "উপলব্ধ!",
"Back": "পেছনে", "Back": "পেছনে",
"Bad Response": "খারাপ প্রতিক্রিয়া", "Bad Response": "খারাপ প্রতিক্রিয়া",
"Banners": "",
"Base Model (From)": "", "Base Model (From)": "",
"before": "পূর্ববর্তী", "before": "পূর্ববর্তী",
"Being lazy": "অলস হওয়া", "Being lazy": "অলস হওয়া",
@ -119,7 +121,6 @@
"Custom": "কাস্টম", "Custom": "কাস্টম",
"Customize models for a specific purpose": "", "Customize models for a specific purpose": "",
"Dark": "ডার্ক", "Dark": "ডার্ক",
"Dashboard": "ড্যাশবোর্ড",
"Database": "ডেটাবেজ", "Database": "ডেটাবেজ",
"December": "ডেসেম্বর", "December": "ডেসেম্বর",
"Default": "ডিফল্ট", "Default": "ডিফল্ট",
@ -187,6 +188,7 @@
"Enter Your Full Name": "আপনার পূর্ণ নাম লিখুন", "Enter Your Full Name": "আপনার পূর্ণ নাম লিখুন",
"Enter Your Password": "আপনার পাসওয়ার্ড লিখুন", "Enter Your Password": "আপনার পাসওয়ার্ড লিখুন",
"Enter Your Role": "আপনার রোল লিখুন", "Enter Your Role": "আপনার রোল লিখুন",
"Error": "",
"Experimental": "পরিক্ষামূলক", "Experimental": "পরিক্ষামূলক",
"Export All Chats (All Users)": "সব চ্যাট এক্সপোর্ট করুন (সব ইউজারের)", "Export All Chats (All Users)": "সব চ্যাট এক্সপোর্ট করুন (সব ইউজারের)",
"Export Chats": "চ্যাটগুলো এক্সপোর্ট করুন", "Export Chats": "চ্যাটগুলো এক্সপোর্ট করুন",
@ -226,6 +228,7 @@
"Import Models": "", "Import Models": "",
"Import Prompts": "প্রম্পটগুলো ইমপোর্ট করুন", "Import Prompts": "প্রম্পটগুলো ইমপোর্ট করুন",
"Include `--api` flag when running stable-diffusion-webui": "stable-diffusion-webui চালু করার সময় `--api` ফ্ল্যাগ সংযুক্ত করুন", "Include `--api` flag when running stable-diffusion-webui": "stable-diffusion-webui চালু করার সময় `--api` ফ্ল্যাগ সংযুক্ত করুন",
"Info": "",
"Input commands": "ইনপুট কমান্ডস", "Input commands": "ইনপুট কমান্ডস",
"Interface": "ইন্টারফেস", "Interface": "ইন্টারফেস",
"Invalid Tag": "অবৈধ ট্যাগ", "Invalid Tag": "অবৈধ ট্যাগ",
@ -310,7 +313,6 @@
"OpenAI URL/Key required.": "OpenAI URL/Key আবশ্যক", "OpenAI URL/Key required.": "OpenAI URL/Key আবশ্যক",
"or": "অথবা", "or": "অথবা",
"Other": "অন্যান্য", "Other": "অন্যান্য",
"Overview": "বিবরণ",
"Password": "পাসওয়ার্ড", "Password": "পাসওয়ার্ড",
"PDF document (.pdf)": "PDF ডকুমেন্ট (.pdf)", "PDF document (.pdf)": "PDF ডকুমেন্ট (.pdf)",
"PDF Extract Images (OCR)": "পিডিএফ এর ছবি থেকে লেখা বের করুন (OCR)", "PDF Extract Images (OCR)": "পিডিএফ এর ছবি থেকে লেখা বের করুন (OCR)",
@ -361,6 +363,7 @@
"Scan for documents from {{path}}": "ডকুমেন্টসমূহের জন্য {{path}} স্ক্যান করুন", "Scan for documents from {{path}}": "ডকুমেন্টসমূহের জন্য {{path}} স্ক্যান করুন",
"Search": "অনুসন্ধান", "Search": "অনুসন্ধান",
"Search a model": "মডেল অনুসন্ধান করুন", "Search a model": "মডেল অনুসন্ধান করুন",
"Search Chats": "",
"Search Documents": "ডকুমেন্টসমূহ অনুসন্ধান করুন", "Search Documents": "ডকুমেন্টসমূহ অনুসন্ধান করুন",
"Search Models": "", "Search Models": "",
"Search Prompts": "প্রম্পটসমূহ অনুসন্ধান করুন", "Search Prompts": "প্রম্পটসমূহ অনুসন্ধান করুন",
@ -444,6 +447,7 @@
"Top P": "Top P", "Top P": "Top P",
"Trouble accessing Ollama?": "Ollama এক্সেস করতে সমস্যা হচ্ছে?", "Trouble accessing Ollama?": "Ollama এক্সেস করতে সমস্যা হচ্ছে?",
"TTS Settings": "TTS সেটিংসমূহ", "TTS Settings": "TTS সেটিংসমূহ",
"Type": "",
"Type Hugging Face Resolve (Download) URL": "Hugging Face থেকে ডাউনলোড করার ইউআরএল টাইপ করুন", "Type Hugging Face Resolve (Download) URL": "Hugging Face থেকে ডাউনলোড করার ইউআরএল টাইপ করুন",
"Uh-oh! There was an issue connecting to {{provider}}.": "ওহ-হো! {{provider}} এর সাথে কানেকশনে সমস্যা হয়েছে।", "Uh-oh! There was an issue connecting to {{provider}}.": "ওহ-হো! {{provider}} এর সাথে কানেকশনে সমস্যা হয়েছে।",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "অপরিচিত ফাইল ফরম্যাট '{{file_type}}', তবে প্লেইন টেক্সট হিসেবে গ্রহণ করা হলো", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "অপরিচিত ফাইল ফরম্যাট '{{file_type}}', তবে প্লেইন টেক্সট হিসেবে গ্রহণ করা হলো",
@ -464,6 +468,7 @@
"variable": "ভেরিয়েবল", "variable": "ভেরিয়েবল",
"variable to have them replaced with clipboard content.": "ক্লিপবোর্ডের কন্টেন্ট দিয়ে যেই ভেরিয়েবল রিপ্লেস করা যাবে।", "variable to have them replaced with clipboard content.": "ক্লিপবোর্ডের কন্টেন্ট দিয়ে যেই ভেরিয়েবল রিপ্লেস করা যাবে।",
"Version": "ভার্সন", "Version": "ভার্সন",
"Warning": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "সতর্কীকরণ: আপনি যদি আপনার এম্বেডিং মডেল আপডেট বা পরিবর্তন করেন, তাহলে আপনাকে সমস্ত নথি পুনরায় আমদানি করতে হবে।.", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "সতর্কীকরণ: আপনি যদি আপনার এম্বেডিং মডেল আপডেট বা পরিবর্তন করেন, তাহলে আপনাকে সমস্ত নথি পুনরায় আমদানি করতে হবে।.",
"Web": "ওয়েব", "Web": "ওয়েব",
"Web Loader Settings": "ওয়েব লোডার সেটিংস", "Web Loader Settings": "ওয়েব লোডার সেটিংস",

View File

@ -47,6 +47,7 @@
"API keys": "Claus de l'API", "API keys": "Claus de l'API",
"April": "Abril", "April": "Abril",
"Archive": "Arxiu", "Archive": "Arxiu",
"Archive All Chats": "",
"Archived Chats": "Arxiu d'historial de xat", "Archived Chats": "Arxiu d'historial de xat",
"are allowed - Activate this command by typing": "estan permesos - Activa aquesta comanda escrivint", "are allowed - Activate this command by typing": "estan permesos - Activa aquesta comanda escrivint",
"Are you sure?": "Estàs segur?", "Are you sure?": "Estàs segur?",
@ -61,6 +62,7 @@
"available!": "disponible!", "available!": "disponible!",
"Back": "Enrere", "Back": "Enrere",
"Bad Response": "Resposta Erroni", "Bad Response": "Resposta Erroni",
"Banners": "",
"Base Model (From)": "", "Base Model (From)": "",
"before": "abans", "before": "abans",
"Being lazy": "Ser l'estupidez", "Being lazy": "Ser l'estupidez",
@ -119,7 +121,6 @@
"Custom": "Personalitzat", "Custom": "Personalitzat",
"Customize models for a specific purpose": "", "Customize models for a specific purpose": "",
"Dark": "Fosc", "Dark": "Fosc",
"Dashboard": "Tauler",
"Database": "Base de Dades", "Database": "Base de Dades",
"December": "Desembre", "December": "Desembre",
"Default": "Per defecte", "Default": "Per defecte",
@ -187,6 +188,7 @@
"Enter Your Full Name": "Introdueix el Teu Nom Complet", "Enter Your Full Name": "Introdueix el Teu Nom Complet",
"Enter Your Password": "Introdueix la Teva Contrasenya", "Enter Your Password": "Introdueix la Teva Contrasenya",
"Enter Your Role": "Introdueix el Teu Ròl", "Enter Your Role": "Introdueix el Teu Ròl",
"Error": "",
"Experimental": "Experimental", "Experimental": "Experimental",
"Export All Chats (All Users)": "Exporta Tots els Xats (Tots els Usuaris)", "Export All Chats (All Users)": "Exporta Tots els Xats (Tots els Usuaris)",
"Export Chats": "Exporta Xats", "Export Chats": "Exporta Xats",
@ -226,6 +228,7 @@
"Import Models": "", "Import Models": "",
"Import Prompts": "Importa Prompts", "Import Prompts": "Importa Prompts",
"Include `--api` flag when running stable-diffusion-webui": "Inclou la bandera `--api` quan executis stable-diffusion-webui", "Include `--api` flag when running stable-diffusion-webui": "Inclou la bandera `--api` quan executis stable-diffusion-webui",
"Info": "",
"Input commands": "Entra ordres", "Input commands": "Entra ordres",
"Interface": "Interfície", "Interface": "Interfície",
"Invalid Tag": "Etiqueta Inválida", "Invalid Tag": "Etiqueta Inválida",
@ -310,7 +313,6 @@
"OpenAI URL/Key required.": "URL/Clau d'OpenAI requerides.", "OpenAI URL/Key required.": "URL/Clau d'OpenAI requerides.",
"or": "o", "or": "o",
"Other": "Altres", "Other": "Altres",
"Overview": "Visió general",
"Password": "Contrasenya", "Password": "Contrasenya",
"PDF document (.pdf)": "Document PDF (.pdf)", "PDF document (.pdf)": "Document PDF (.pdf)",
"PDF Extract Images (OCR)": "Extreu Imatges de PDF (OCR)", "PDF Extract Images (OCR)": "Extreu Imatges de PDF (OCR)",
@ -361,6 +363,7 @@
"Scan for documents from {{path}}": "Escaneja documents des de {{path}}", "Scan for documents from {{path}}": "Escaneja documents des de {{path}}",
"Search": "Cerca", "Search": "Cerca",
"Search a model": "Cerca un model", "Search a model": "Cerca un model",
"Search Chats": "",
"Search Documents": "Cerca Documents", "Search Documents": "Cerca Documents",
"Search Models": "", "Search Models": "",
"Search Prompts": "Cerca Prompts", "Search Prompts": "Cerca Prompts",
@ -444,6 +447,7 @@
"Top P": "Top P", "Top P": "Top P",
"Trouble accessing Ollama?": "Problemes accedint a Ollama?", "Trouble accessing Ollama?": "Problemes accedint a Ollama?",
"TTS Settings": "Configuracions TTS", "TTS Settings": "Configuracions TTS",
"Type": "",
"Type Hugging Face Resolve (Download) URL": "Escriu URL de Resolució (Descàrrega) de Hugging Face", "Type Hugging Face Resolve (Download) URL": "Escriu URL de Resolució (Descàrrega) de Hugging Face",
"Uh-oh! There was an issue connecting to {{provider}}.": "Uf! Hi va haver un problema connectant-se a {{provider}}.", "Uh-oh! There was an issue connecting to {{provider}}.": "Uf! Hi va haver un problema connectant-se a {{provider}}.",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Tipus d'Arxiu Desconegut '{{file_type}}', però acceptant i tractant com a text pla", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Tipus d'Arxiu Desconegut '{{file_type}}', però acceptant i tractant com a text pla",
@ -464,6 +468,7 @@
"variable": "variable", "variable": "variable",
"variable to have them replaced with clipboard content.": "variable per tenir-les reemplaçades amb el contingut del porta-retalls.", "variable to have them replaced with clipboard content.": "variable per tenir-les reemplaçades amb el contingut del porta-retalls.",
"Version": "Versió", "Version": "Versió",
"Warning": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Avís: Si actualitzeu o canvieu el model d'incrustació, haureu de tornar a importar tots els documents.", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "Avís: Si actualitzeu o canvieu el model d'incrustació, haureu de tornar a importar tots els documents.",
"Web": "Web", "Web": "Web",
"Web Loader Settings": "Configuració del carregador web", "Web Loader Settings": "Configuració del carregador web",

View File

@ -47,6 +47,7 @@
"API keys": "", "API keys": "",
"April": "", "April": "",
"Archive": "", "Archive": "",
"Archive All Chats": "",
"Archived Chats": "pagrekord sa chat", "Archived Chats": "pagrekord sa chat",
"are allowed - Activate this command by typing": "gitugotan - I-enable kini nga sugo pinaagi sa pag-type", "are allowed - Activate this command by typing": "gitugotan - I-enable kini nga sugo pinaagi sa pag-type",
"Are you sure?": "Sigurado ka ?", "Are you sure?": "Sigurado ka ?",
@ -61,6 +62,7 @@
"available!": "magamit!", "available!": "magamit!",
"Back": "Balik", "Back": "Balik",
"Bad Response": "", "Bad Response": "",
"Banners": "",
"Base Model (From)": "", "Base Model (From)": "",
"before": "", "before": "",
"Being lazy": "", "Being lazy": "",
@ -119,7 +121,6 @@
"Custom": "Custom", "Custom": "Custom",
"Customize models for a specific purpose": "", "Customize models for a specific purpose": "",
"Dark": "Ngitngit", "Dark": "Ngitngit",
"Dashboard": "",
"Database": "Database", "Database": "Database",
"December": "", "December": "",
"Default": "Pinaagi sa default", "Default": "Pinaagi sa default",
@ -187,6 +188,7 @@
"Enter Your Full Name": "Ibutang ang imong tibuok nga ngalan", "Enter Your Full Name": "Ibutang ang imong tibuok nga ngalan",
"Enter Your Password": "Ibutang ang imong password", "Enter Your Password": "Ibutang ang imong password",
"Enter Your Role": "", "Enter Your Role": "",
"Error": "",
"Experimental": "Eksperimento", "Experimental": "Eksperimento",
"Export All Chats (All Users)": "I-export ang tanan nga mga chat (Tanan nga tiggamit)", "Export All Chats (All Users)": "I-export ang tanan nga mga chat (Tanan nga tiggamit)",
"Export Chats": "I-export ang mga chat", "Export Chats": "I-export ang mga chat",
@ -226,6 +228,7 @@
"Import Models": "", "Import Models": "",
"Import Prompts": "Import prompt", "Import Prompts": "Import prompt",
"Include `--api` flag when running stable-diffusion-webui": "Iapil ang `--api` nga bandila kung nagdagan nga stable-diffusion-webui", "Include `--api` flag when running stable-diffusion-webui": "Iapil ang `--api` nga bandila kung nagdagan nga stable-diffusion-webui",
"Info": "",
"Input commands": "Pagsulod sa input commands", "Input commands": "Pagsulod sa input commands",
"Interface": "Interface", "Interface": "Interface",
"Invalid Tag": "", "Invalid Tag": "",
@ -310,7 +313,6 @@
"OpenAI URL/Key required.": "", "OpenAI URL/Key required.": "",
"or": "O", "or": "O",
"Other": "", "Other": "",
"Overview": "",
"Password": "Password", "Password": "Password",
"PDF document (.pdf)": "", "PDF document (.pdf)": "",
"PDF Extract Images (OCR)": "PDF Image Extraction (OCR)", "PDF Extract Images (OCR)": "PDF Image Extraction (OCR)",
@ -361,6 +363,7 @@
"Scan for documents from {{path}}": "I-scan ang mga dokumento gikan sa {{path}}", "Scan for documents from {{path}}": "I-scan ang mga dokumento gikan sa {{path}}",
"Search": "Pagpanukiduki", "Search": "Pagpanukiduki",
"Search a model": "", "Search a model": "",
"Search Chats": "",
"Search Documents": "Pangitaa ang mga dokumento", "Search Documents": "Pangitaa ang mga dokumento",
"Search Models": "", "Search Models": "",
"Search Prompts": "Pangitaa ang mga prompt", "Search Prompts": "Pangitaa ang mga prompt",
@ -444,6 +447,7 @@
"Top P": "Ibabaw nga P", "Top P": "Ibabaw nga P",
"Trouble accessing Ollama?": "Adunay mga problema sa pag-access sa Ollama?", "Trouble accessing Ollama?": "Adunay mga problema sa pag-access sa Ollama?",
"TTS Settings": "Mga Setting sa TTS", "TTS Settings": "Mga Setting sa TTS",
"Type": "",
"Type Hugging Face Resolve (Download) URL": "Pagsulod sa resolusyon (pag-download) URL Hugging Face", "Type Hugging Face Resolve (Download) URL": "Pagsulod sa resolusyon (pag-download) URL Hugging Face",
"Uh-oh! There was an issue connecting to {{provider}}.": "Uh-oh! {{provider}}.", "Uh-oh! There was an issue connecting to {{provider}}.": "Uh-oh! {{provider}}.",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Wala mailhi nga tipo sa file '{{file_type}}', apan gidawat ug gitratar ingon yano nga teksto", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Wala mailhi nga tipo sa file '{{file_type}}', apan gidawat ug gitratar ingon yano nga teksto",
@ -464,6 +468,7 @@
"variable": "variable", "variable": "variable",
"variable to have them replaced with clipboard content.": "variable aron pulihan kini sa mga sulud sa clipboard.", "variable to have them replaced with clipboard content.": "variable aron pulihan kini sa mga sulud sa clipboard.",
"Version": "Bersyon", "Version": "Bersyon",
"Warning": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Web": "Web", "Web": "Web",
"Web Loader Settings": "", "Web Loader Settings": "",

View File

@ -47,6 +47,7 @@
"API keys": "API Schlüssel", "API keys": "API Schlüssel",
"April": "April", "April": "April",
"Archive": "Archivieren", "Archive": "Archivieren",
"Archive All Chats": "",
"Archived Chats": "Archivierte Chats", "Archived Chats": "Archivierte Chats",
"are allowed - Activate this command by typing": "sind erlaubt - Aktiviere diesen Befehl, indem du", "are allowed - Activate this command by typing": "sind erlaubt - Aktiviere diesen Befehl, indem du",
"Are you sure?": "Bist du sicher?", "Are you sure?": "Bist du sicher?",
@ -61,6 +62,7 @@
"available!": "verfügbar!", "available!": "verfügbar!",
"Back": "Zurück", "Back": "Zurück",
"Bad Response": "Schlechte Antwort", "Bad Response": "Schlechte Antwort",
"Banners": "",
"Base Model (From)": "", "Base Model (From)": "",
"before": "bereits geteilt", "before": "bereits geteilt",
"Being lazy": "Faul sein", "Being lazy": "Faul sein",
@ -119,7 +121,6 @@
"Custom": "Benutzerdefiniert", "Custom": "Benutzerdefiniert",
"Customize models for a specific purpose": "", "Customize models for a specific purpose": "",
"Dark": "Dunkel", "Dark": "Dunkel",
"Dashboard": "Dashboard",
"Database": "Datenbank", "Database": "Datenbank",
"December": "Dezember", "December": "Dezember",
"Default": "Standard", "Default": "Standard",
@ -187,6 +188,7 @@
"Enter Your Full Name": "Gib deinen vollständigen Namen ein", "Enter Your Full Name": "Gib deinen vollständigen Namen ein",
"Enter Your Password": "Gib dein Passwort ein", "Enter Your Password": "Gib dein Passwort ein",
"Enter Your Role": "Gebe deine Rolle ein", "Enter Your Role": "Gebe deine Rolle ein",
"Error": "",
"Experimental": "Experimentell", "Experimental": "Experimentell",
"Export All Chats (All Users)": "Alle Chats exportieren (alle Benutzer)", "Export All Chats (All Users)": "Alle Chats exportieren (alle Benutzer)",
"Export Chats": "Chats exportieren", "Export Chats": "Chats exportieren",
@ -226,6 +228,7 @@
"Import Models": "", "Import Models": "",
"Import Prompts": "Prompts importieren", "Import Prompts": "Prompts importieren",
"Include `--api` flag when running stable-diffusion-webui": "Füge das `--api`-Flag hinzu, wenn du stable-diffusion-webui nutzt", "Include `--api` flag when running stable-diffusion-webui": "Füge das `--api`-Flag hinzu, wenn du stable-diffusion-webui nutzt",
"Info": "",
"Input commands": "Eingabebefehle", "Input commands": "Eingabebefehle",
"Interface": "Benutzeroberfläche", "Interface": "Benutzeroberfläche",
"Invalid Tag": "Ungültiger Tag", "Invalid Tag": "Ungültiger Tag",
@ -310,7 +313,6 @@
"OpenAI URL/Key required.": "OpenAI URL/Key erforderlich.", "OpenAI URL/Key required.": "OpenAI URL/Key erforderlich.",
"or": "oder", "or": "oder",
"Other": "Andere", "Other": "Andere",
"Overview": "Übersicht",
"Password": "Passwort", "Password": "Passwort",
"PDF document (.pdf)": "PDF-Dokument (.pdf)", "PDF document (.pdf)": "PDF-Dokument (.pdf)",
"PDF Extract Images (OCR)": "Text von Bildern aus PDFs extrahieren (OCR)", "PDF Extract Images (OCR)": "Text von Bildern aus PDFs extrahieren (OCR)",
@ -361,6 +363,7 @@
"Scan for documents from {{path}}": "Dokumente von {{path}} scannen", "Scan for documents from {{path}}": "Dokumente von {{path}} scannen",
"Search": "Suchen", "Search": "Suchen",
"Search a model": "Nach einem Modell suchen", "Search a model": "Nach einem Modell suchen",
"Search Chats": "",
"Search Documents": "Dokumente suchen", "Search Documents": "Dokumente suchen",
"Search Models": "", "Search Models": "",
"Search Prompts": "Prompts suchen", "Search Prompts": "Prompts suchen",
@ -444,6 +447,7 @@
"Top P": "Top P", "Top P": "Top P",
"Trouble accessing Ollama?": "Probleme beim Zugriff auf Ollama?", "Trouble accessing Ollama?": "Probleme beim Zugriff auf Ollama?",
"TTS Settings": "TTS-Einstellungen", "TTS Settings": "TTS-Einstellungen",
"Type": "",
"Type Hugging Face Resolve (Download) URL": "Gib die Hugging Face Resolve (Download) URL ein", "Type Hugging Face Resolve (Download) URL": "Gib die Hugging Face Resolve (Download) URL ein",
"Uh-oh! There was an issue connecting to {{provider}}.": "Ups! Es gab ein Problem bei der Verbindung mit {{provider}}.", "Uh-oh! There was an issue connecting to {{provider}}.": "Ups! Es gab ein Problem bei der Verbindung mit {{provider}}.",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Unbekannter Dateityp '{{file_type}}', wird jedoch akzeptiert und als einfacher Text behandelt.", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Unbekannter Dateityp '{{file_type}}', wird jedoch akzeptiert und als einfacher Text behandelt.",
@ -464,6 +468,7 @@
"variable": "Variable", "variable": "Variable",
"variable to have them replaced with clipboard content.": "Variable, um den Inhalt der Zwischenablage beim Nutzen des Prompts zu ersetzen.", "variable to have them replaced with clipboard content.": "Variable, um den Inhalt der Zwischenablage beim Nutzen des Prompts zu ersetzen.",
"Version": "Version", "Version": "Version",
"Warning": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Warnung: Wenn du dein Einbettungsmodell aktualisierst oder änderst, musst du alle Dokumente erneut importieren.", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "Warnung: Wenn du dein Einbettungsmodell aktualisierst oder änderst, musst du alle Dokumente erneut importieren.",
"Web": "Web", "Web": "Web",
"Web Loader Settings": "Web Loader Einstellungen", "Web Loader Settings": "Web Loader Einstellungen",

View File

@ -47,6 +47,7 @@
"API keys": "", "API keys": "",
"April": "", "April": "",
"Archive": "", "Archive": "",
"Archive All Chats": "",
"Archived Chats": "", "Archived Chats": "",
"are allowed - Activate this command by typing": "are allowed. Activate typing", "are allowed - Activate this command by typing": "are allowed. Activate typing",
"Are you sure?": "Such certainty?", "Are you sure?": "Such certainty?",
@ -61,6 +62,7 @@
"available!": "available! So excite!", "available!": "available! So excite!",
"Back": "Back", "Back": "Back",
"Bad Response": "", "Bad Response": "",
"Banners": "",
"Base Model (From)": "", "Base Model (From)": "",
"before": "", "before": "",
"Being lazy": "", "Being lazy": "",
@ -119,7 +121,6 @@
"Custom": "Custom", "Custom": "Custom",
"Customize models for a specific purpose": "", "Customize models for a specific purpose": "",
"Dark": "Dark", "Dark": "Dark",
"Dashboard": "",
"Database": "Database", "Database": "Database",
"December": "", "December": "",
"Default": "Default", "Default": "Default",
@ -187,6 +188,7 @@
"Enter Your Full Name": "Enter Your Full Wow", "Enter Your Full Name": "Enter Your Full Wow",
"Enter Your Password": "Enter Your Barkword", "Enter Your Password": "Enter Your Barkword",
"Enter Your Role": "", "Enter Your Role": "",
"Error": "",
"Experimental": "Much Experiment", "Experimental": "Much Experiment",
"Export All Chats (All Users)": "Export All Chats (All Doggos)", "Export All Chats (All Users)": "Export All Chats (All Doggos)",
"Export Chats": "Export Barks", "Export Chats": "Export Barks",
@ -226,6 +228,7 @@
"Import Models": "", "Import Models": "",
"Import Prompts": "Import Promptos", "Import Prompts": "Import Promptos",
"Include `--api` flag when running stable-diffusion-webui": "Include `--api` flag when running stable-diffusion-webui", "Include `--api` flag when running stable-diffusion-webui": "Include `--api` flag when running stable-diffusion-webui",
"Info": "",
"Input commands": "Input commands", "Input commands": "Input commands",
"Interface": "Interface", "Interface": "Interface",
"Invalid Tag": "", "Invalid Tag": "",
@ -310,7 +313,6 @@
"OpenAI URL/Key required.": "", "OpenAI URL/Key required.": "",
"or": "or", "or": "or",
"Other": "", "Other": "",
"Overview": "",
"Password": "Barkword", "Password": "Barkword",
"PDF document (.pdf)": "", "PDF document (.pdf)": "",
"PDF Extract Images (OCR)": "PDF Extract Wowmages (OCR)", "PDF Extract Images (OCR)": "PDF Extract Wowmages (OCR)",
@ -361,6 +363,7 @@
"Scan for documents from {{path}}": "Scan for documents from {{path}} wow", "Scan for documents from {{path}}": "Scan for documents from {{path}} wow",
"Search": "Search very search", "Search": "Search very search",
"Search a model": "", "Search a model": "",
"Search Chats": "",
"Search Documents": "Search Documents much find", "Search Documents": "Search Documents much find",
"Search Models": "", "Search Models": "",
"Search Prompts": "Search Prompts much wow", "Search Prompts": "Search Prompts much wow",
@ -444,6 +447,7 @@
"Top P": "Top P very top", "Top P": "Top P very top",
"Trouble accessing Ollama?": "Trouble accessing Ollama? Much trouble?", "Trouble accessing Ollama?": "Trouble accessing Ollama? Much trouble?",
"TTS Settings": "TTS Settings much settings", "TTS Settings": "TTS Settings much settings",
"Type": "",
"Type Hugging Face Resolve (Download) URL": "Type Hugging Face Resolve (Download) URL much download", "Type Hugging Face Resolve (Download) URL": "Type Hugging Face Resolve (Download) URL much download",
"Uh-oh! There was an issue connecting to {{provider}}.": "Uh-oh! There was an issue connecting to {{provider}}. Much uh-oh!", "Uh-oh! There was an issue connecting to {{provider}}.": "Uh-oh! There was an issue connecting to {{provider}}. Much uh-oh!",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Unknown File Type '{{file_type}}', but accepting and treating as plain text very unknown", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Unknown File Type '{{file_type}}', but accepting and treating as plain text very unknown",
@ -464,6 +468,7 @@
"variable": "variable very variable", "variable": "variable very variable",
"variable to have them replaced with clipboard content.": "variable to have them replaced with clipboard content. Very replace.", "variable to have them replaced with clipboard content.": "variable to have them replaced with clipboard content. Very replace.",
"Version": "Version much version", "Version": "Version much version",
"Warning": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Web": "Web very web", "Web": "Web very web",
"Web Loader Settings": "", "Web Loader Settings": "",

View File

@ -47,6 +47,7 @@
"API keys": "", "API keys": "",
"April": "", "April": "",
"Archive": "", "Archive": "",
"Archive All Chats": "",
"Archived Chats": "", "Archived Chats": "",
"are allowed - Activate this command by typing": "", "are allowed - Activate this command by typing": "",
"Are you sure?": "", "Are you sure?": "",
@ -61,6 +62,7 @@
"available!": "", "available!": "",
"Back": "", "Back": "",
"Bad Response": "", "Bad Response": "",
"Banners": "",
"Base Model (From)": "", "Base Model (From)": "",
"before": "", "before": "",
"Being lazy": "", "Being lazy": "",
@ -119,7 +121,6 @@
"Custom": "", "Custom": "",
"Customize models for a specific purpose": "", "Customize models for a specific purpose": "",
"Dark": "", "Dark": "",
"Dashboard": "",
"Database": "", "Database": "",
"December": "", "December": "",
"Default": "", "Default": "",
@ -187,6 +188,7 @@
"Enter Your Full Name": "", "Enter Your Full Name": "",
"Enter Your Password": "", "Enter Your Password": "",
"Enter Your Role": "", "Enter Your Role": "",
"Error": "",
"Experimental": "", "Experimental": "",
"Export All Chats (All Users)": "", "Export All Chats (All Users)": "",
"Export Chats": "", "Export Chats": "",
@ -226,6 +228,7 @@
"Import Models": "", "Import Models": "",
"Import Prompts": "", "Import Prompts": "",
"Include `--api` flag when running stable-diffusion-webui": "", "Include `--api` flag when running stable-diffusion-webui": "",
"Info": "",
"Input commands": "", "Input commands": "",
"Interface": "", "Interface": "",
"Invalid Tag": "", "Invalid Tag": "",
@ -310,7 +313,6 @@
"OpenAI URL/Key required.": "", "OpenAI URL/Key required.": "",
"or": "", "or": "",
"Other": "", "Other": "",
"Overview": "",
"Password": "", "Password": "",
"PDF document (.pdf)": "", "PDF document (.pdf)": "",
"PDF Extract Images (OCR)": "", "PDF Extract Images (OCR)": "",
@ -361,6 +363,7 @@
"Scan for documents from {{path}}": "", "Scan for documents from {{path}}": "",
"Search": "", "Search": "",
"Search a model": "", "Search a model": "",
"Search Chats": "",
"Search Documents": "", "Search Documents": "",
"Search Models": "", "Search Models": "",
"Search Prompts": "", "Search Prompts": "",
@ -444,6 +447,7 @@
"Top P": "", "Top P": "",
"Trouble accessing Ollama?": "", "Trouble accessing Ollama?": "",
"TTS Settings": "", "TTS Settings": "",
"Type": "",
"Type Hugging Face Resolve (Download) URL": "", "Type Hugging Face Resolve (Download) URL": "",
"Uh-oh! There was an issue connecting to {{provider}}.": "", "Uh-oh! There was an issue connecting to {{provider}}.": "",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "",
@ -464,6 +468,7 @@
"variable": "", "variable": "",
"variable to have them replaced with clipboard content.": "", "variable to have them replaced with clipboard content.": "",
"Version": "", "Version": "",
"Warning": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Web": "", "Web": "",
"Web Loader Settings": "", "Web Loader Settings": "",

View File

@ -47,6 +47,7 @@
"API keys": "", "API keys": "",
"April": "", "April": "",
"Archive": "", "Archive": "",
"Archive All Chats": "",
"Archived Chats": "", "Archived Chats": "",
"are allowed - Activate this command by typing": "", "are allowed - Activate this command by typing": "",
"Are you sure?": "", "Are you sure?": "",
@ -61,6 +62,7 @@
"available!": "", "available!": "",
"Back": "", "Back": "",
"Bad Response": "", "Bad Response": "",
"Banners": "",
"Base Model (From)": "", "Base Model (From)": "",
"before": "", "before": "",
"Being lazy": "", "Being lazy": "",
@ -119,7 +121,6 @@
"Custom": "", "Custom": "",
"Customize models for a specific purpose": "", "Customize models for a specific purpose": "",
"Dark": "", "Dark": "",
"Dashboard": "",
"Database": "", "Database": "",
"December": "", "December": "",
"Default": "", "Default": "",
@ -187,6 +188,7 @@
"Enter Your Full Name": "", "Enter Your Full Name": "",
"Enter Your Password": "", "Enter Your Password": "",
"Enter Your Role": "", "Enter Your Role": "",
"Error": "",
"Experimental": "", "Experimental": "",
"Export All Chats (All Users)": "", "Export All Chats (All Users)": "",
"Export Chats": "", "Export Chats": "",
@ -226,6 +228,7 @@
"Import Models": "", "Import Models": "",
"Import Prompts": "", "Import Prompts": "",
"Include `--api` flag when running stable-diffusion-webui": "", "Include `--api` flag when running stable-diffusion-webui": "",
"Info": "",
"Input commands": "", "Input commands": "",
"Interface": "", "Interface": "",
"Invalid Tag": "", "Invalid Tag": "",
@ -310,7 +313,6 @@
"OpenAI URL/Key required.": "", "OpenAI URL/Key required.": "",
"or": "", "or": "",
"Other": "", "Other": "",
"Overview": "",
"Password": "", "Password": "",
"PDF document (.pdf)": "", "PDF document (.pdf)": "",
"PDF Extract Images (OCR)": "", "PDF Extract Images (OCR)": "",
@ -361,6 +363,7 @@
"Scan for documents from {{path}}": "", "Scan for documents from {{path}}": "",
"Search": "", "Search": "",
"Search a model": "", "Search a model": "",
"Search Chats": "",
"Search Documents": "", "Search Documents": "",
"Search Models": "", "Search Models": "",
"Search Prompts": "", "Search Prompts": "",
@ -444,6 +447,7 @@
"Top P": "", "Top P": "",
"Trouble accessing Ollama?": "", "Trouble accessing Ollama?": "",
"TTS Settings": "", "TTS Settings": "",
"Type": "",
"Type Hugging Face Resolve (Download) URL": "", "Type Hugging Face Resolve (Download) URL": "",
"Uh-oh! There was an issue connecting to {{provider}}.": "", "Uh-oh! There was an issue connecting to {{provider}}.": "",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "",
@ -464,6 +468,7 @@
"variable": "", "variable": "",
"variable to have them replaced with clipboard content.": "", "variable to have them replaced with clipboard content.": "",
"Version": "", "Version": "",
"Warning": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
"Web": "", "Web": "",
"Web Loader Settings": "", "Web Loader Settings": "",

View File

@ -47,6 +47,7 @@
"API keys": "Claves de la API", "API keys": "Claves de la API",
"April": "Abril", "April": "Abril",
"Archive": "Archivar", "Archive": "Archivar",
"Archive All Chats": "",
"Archived Chats": "Chats archivados", "Archived Chats": "Chats archivados",
"are allowed - Activate this command by typing": "están permitidos - Active este comando escribiendo", "are allowed - Activate this command by typing": "están permitidos - Active este comando escribiendo",
"Are you sure?": "¿Está seguro?", "Are you sure?": "¿Está seguro?",
@ -61,6 +62,7 @@
"available!": "¡disponible!", "available!": "¡disponible!",
"Back": "Volver", "Back": "Volver",
"Bad Response": "Respuesta incorrecta", "Bad Response": "Respuesta incorrecta",
"Banners": "",
"Base Model (From)": "", "Base Model (From)": "",
"before": "antes", "before": "antes",
"Being lazy": "Ser perezoso", "Being lazy": "Ser perezoso",
@ -119,7 +121,6 @@
"Custom": "Personalizado", "Custom": "Personalizado",
"Customize models for a specific purpose": "", "Customize models for a specific purpose": "",
"Dark": "Oscuro", "Dark": "Oscuro",
"Dashboard": "Tablero",
"Database": "Base de datos", "Database": "Base de datos",
"December": "Diciembre", "December": "Diciembre",
"Default": "Por defecto", "Default": "Por defecto",
@ -187,6 +188,7 @@
"Enter Your Full Name": "Ingrese su nombre completo", "Enter Your Full Name": "Ingrese su nombre completo",
"Enter Your Password": "Ingrese su contraseña", "Enter Your Password": "Ingrese su contraseña",
"Enter Your Role": "Ingrese su rol", "Enter Your Role": "Ingrese su rol",
"Error": "",
"Experimental": "Experimental", "Experimental": "Experimental",
"Export All Chats (All Users)": "Exportar todos los chats (Todos los usuarios)", "Export All Chats (All Users)": "Exportar todos los chats (Todos los usuarios)",
"Export Chats": "Exportar Chats", "Export Chats": "Exportar Chats",
@ -226,6 +228,7 @@
"Import Models": "", "Import Models": "",
"Import Prompts": "Importar Prompts", "Import Prompts": "Importar Prompts",
"Include `--api` flag when running stable-diffusion-webui": "Incluir el indicador `--api` al ejecutar stable-diffusion-webui", "Include `--api` flag when running stable-diffusion-webui": "Incluir el indicador `--api` al ejecutar stable-diffusion-webui",
"Info": "",
"Input commands": "Ingresar comandos", "Input commands": "Ingresar comandos",
"Interface": "Interfaz", "Interface": "Interfaz",
"Invalid Tag": "Etiqueta Inválida", "Invalid Tag": "Etiqueta Inválida",
@ -310,7 +313,6 @@
"OpenAI URL/Key required.": "URL/Clave de OpenAI es requerida.", "OpenAI URL/Key required.": "URL/Clave de OpenAI es requerida.",
"or": "o", "or": "o",
"Other": "Otro", "Other": "Otro",
"Overview": "Resumen",
"Password": "Contraseña", "Password": "Contraseña",
"PDF document (.pdf)": "PDF document (.pdf)", "PDF document (.pdf)": "PDF document (.pdf)",
"PDF Extract Images (OCR)": "Extraer imágenes de PDF (OCR)", "PDF Extract Images (OCR)": "Extraer imágenes de PDF (OCR)",
@ -361,6 +363,7 @@
"Scan for documents from {{path}}": "Escanear en busca de documentos desde {{path}}", "Scan for documents from {{path}}": "Escanear en busca de documentos desde {{path}}",
"Search": "Buscar", "Search": "Buscar",
"Search a model": "Buscar un modelo", "Search a model": "Buscar un modelo",
"Search Chats": "",
"Search Documents": "Buscar Documentos", "Search Documents": "Buscar Documentos",
"Search Models": "", "Search Models": "",
"Search Prompts": "Buscar Prompts", "Search Prompts": "Buscar Prompts",
@ -444,6 +447,7 @@
"Top P": "Top P", "Top P": "Top P",
"Trouble accessing Ollama?": "¿Problemas para acceder a Ollama?", "Trouble accessing Ollama?": "¿Problemas para acceder a Ollama?",
"TTS Settings": "Configuración de TTS", "TTS Settings": "Configuración de TTS",
"Type": "",
"Type Hugging Face Resolve (Download) URL": "Escriba la URL (Descarga) de Hugging Face Resolve", "Type Hugging Face Resolve (Download) URL": "Escriba la URL (Descarga) de Hugging Face Resolve",
"Uh-oh! There was an issue connecting to {{provider}}.": "¡Uh oh! Hubo un problema al conectarse a {{provider}}.", "Uh-oh! There was an issue connecting to {{provider}}.": "¡Uh oh! Hubo un problema al conectarse a {{provider}}.",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Tipo de archivo desconocido '{{file_type}}', pero se acepta y se trata como texto sin formato", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Tipo de archivo desconocido '{{file_type}}', pero se acepta y se trata como texto sin formato",
@ -464,6 +468,7 @@
"variable": "variable", "variable": "variable",
"variable to have them replaced with clipboard content.": "variable para reemplazarlos con el contenido del portapapeles.", "variable to have them replaced with clipboard content.": "variable para reemplazarlos con el contenido del portapapeles.",
"Version": "Versión", "Version": "Versión",
"Warning": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Advertencia: Si actualiza o cambia su modelo de inserción, necesitará volver a importar todos los documentos.", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "Advertencia: Si actualiza o cambia su modelo de inserción, necesitará volver a importar todos los documentos.",
"Web": "Web", "Web": "Web",
"Web Loader Settings": "Web Loader Settings", "Web Loader Settings": "Web Loader Settings",

View File

@ -47,6 +47,7 @@
"API keys": "API keys", "API keys": "API keys",
"April": "ژوئن", "April": "ژوئن",
"Archive": "آرشیو", "Archive": "آرشیو",
"Archive All Chats": "",
"Archived Chats": "آرشیو تاریخچه چت", "Archived Chats": "آرشیو تاریخچه چت",
"are allowed - Activate this command by typing": "مجاز هستند - این دستور را با تایپ کردن این فعال کنید:", "are allowed - Activate this command by typing": "مجاز هستند - این دستور را با تایپ کردن این فعال کنید:",
"Are you sure?": "آیا مطمئن هستید؟", "Are you sure?": "آیا مطمئن هستید؟",
@ -61,6 +62,7 @@
"available!": "در دسترس!", "available!": "در دسترس!",
"Back": "بازگشت", "Back": "بازگشت",
"Bad Response": "پاسخ خوب نیست", "Bad Response": "پاسخ خوب نیست",
"Banners": "",
"Base Model (From)": "", "Base Model (From)": "",
"before": "قبل", "before": "قبل",
"Being lazy": "حالت سازنده", "Being lazy": "حالت سازنده",
@ -119,7 +121,6 @@
"Custom": "دلخواه", "Custom": "دلخواه",
"Customize models for a specific purpose": "", "Customize models for a specific purpose": "",
"Dark": "تیره", "Dark": "تیره",
"Dashboard": "داشبورد",
"Database": "پایگاه داده", "Database": "پایگاه داده",
"December": "دسامبر", "December": "دسامبر",
"Default": "پیشفرض", "Default": "پیشفرض",
@ -187,6 +188,7 @@
"Enter Your Full Name": "نام کامل خود را وارد کنید", "Enter Your Full Name": "نام کامل خود را وارد کنید",
"Enter Your Password": "رمز عبور خود را وارد کنید", "Enter Your Password": "رمز عبور خود را وارد کنید",
"Enter Your Role": "نقش خود را وارد کنید", "Enter Your Role": "نقش خود را وارد کنید",
"Error": "",
"Experimental": "آزمایشی", "Experimental": "آزمایشی",
"Export All Chats (All Users)": "اکسپورت از همه گپ\u200cها(همه کاربران)", "Export All Chats (All Users)": "اکسپورت از همه گپ\u200cها(همه کاربران)",
"Export Chats": "اکسپورت از گپ\u200cها", "Export Chats": "اکسپورت از گپ\u200cها",
@ -226,6 +228,7 @@
"Import Models": "", "Import Models": "",
"Import Prompts": "ایمپورت پرامپت\u200cها", "Import Prompts": "ایمپورت پرامپت\u200cها",
"Include `--api` flag when running stable-diffusion-webui": "فلگ `--api` را هنکام اجرای stable-diffusion-webui استفاده کنید.", "Include `--api` flag when running stable-diffusion-webui": "فلگ `--api` را هنکام اجرای stable-diffusion-webui استفاده کنید.",
"Info": "",
"Input commands": "ورودی دستورات", "Input commands": "ورودی دستورات",
"Interface": "رابط", "Interface": "رابط",
"Invalid Tag": "تگ نامعتبر", "Invalid Tag": "تگ نامعتبر",
@ -310,7 +313,6 @@
"OpenAI URL/Key required.": "URL/Key OpenAI مورد نیاز است.", "OpenAI URL/Key required.": "URL/Key OpenAI مورد نیاز است.",
"or": "روشن", "or": "روشن",
"Other": "دیگر", "Other": "دیگر",
"Overview": "نمای کلی",
"Password": "رمز عبور", "Password": "رمز عبور",
"PDF document (.pdf)": "PDF سند (.pdf)", "PDF document (.pdf)": "PDF سند (.pdf)",
"PDF Extract Images (OCR)": "استخراج تصاویر از PDF (OCR)", "PDF Extract Images (OCR)": "استخراج تصاویر از PDF (OCR)",
@ -361,6 +363,7 @@
"Scan for documents from {{path}}": "اسکن اسناد از {{path}}", "Scan for documents from {{path}}": "اسکن اسناد از {{path}}",
"Search": "جستجو", "Search": "جستجو",
"Search a model": "جستجوی مدل", "Search a model": "جستجوی مدل",
"Search Chats": "",
"Search Documents": "جستجوی اسناد", "Search Documents": "جستجوی اسناد",
"Search Models": "", "Search Models": "",
"Search Prompts": "جستجوی پرامپت\u200cها", "Search Prompts": "جستجوی پرامپت\u200cها",
@ -444,6 +447,7 @@
"Top P": "Top P", "Top P": "Top P",
"Trouble accessing Ollama?": "در دسترسی به اولاما مشکل دارید؟", "Trouble accessing Ollama?": "در دسترسی به اولاما مشکل دارید؟",
"TTS Settings": "تنظیمات TTS", "TTS Settings": "تنظیمات TTS",
"Type": "",
"Type Hugging Face Resolve (Download) URL": "مقدار URL دانلود (Resolve) Hugging Face را وارد کنید", "Type Hugging Face Resolve (Download) URL": "مقدار URL دانلود (Resolve) Hugging Face را وارد کنید",
"Uh-oh! There was an issue connecting to {{provider}}.": "اوه اوه! مشکلی در اتصال به {{provider}} وجود داشت.", "Uh-oh! There was an issue connecting to {{provider}}.": "اوه اوه! مشکلی در اتصال به {{provider}} وجود داشت.",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "نوع فایل '{{file_type}}' ناشناخته است، به عنوان یک فایل متنی ساده با آن برخورد می شود.", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "نوع فایل '{{file_type}}' ناشناخته است، به عنوان یک فایل متنی ساده با آن برخورد می شود.",
@ -464,6 +468,7 @@
"variable": "متغیر", "variable": "متغیر",
"variable to have them replaced with clipboard content.": "متغیر برای جایگزینی آنها با محتوای کلیپ بورد.", "variable to have them replaced with clipboard content.": "متغیر برای جایگزینی آنها با محتوای کلیپ بورد.",
"Version": "نسخه", "Version": "نسخه",
"Warning": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "هشدار: اگر شما به روز کنید یا تغییر دهید مدل شما، باید تمام سند ها را مجددا وارد کنید.", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "هشدار: اگر شما به روز کنید یا تغییر دهید مدل شما، باید تمام سند ها را مجددا وارد کنید.",
"Web": "وب", "Web": "وب",
"Web Loader Settings": "تنظیمات لودر وب", "Web Loader Settings": "تنظیمات لودر وب",

View File

@ -47,6 +47,7 @@
"API keys": "API-avaimet", "API keys": "API-avaimet",
"April": "huhtikuu", "April": "huhtikuu",
"Archive": "Arkisto", "Archive": "Arkisto",
"Archive All Chats": "",
"Archived Chats": "Arkistoidut keskustelut", "Archived Chats": "Arkistoidut keskustelut",
"are allowed - Activate this command by typing": "ovat sallittuja - Aktivoi tämä komento kirjoittamalla", "are allowed - Activate this command by typing": "ovat sallittuja - Aktivoi tämä komento kirjoittamalla",
"Are you sure?": "Oletko varma?", "Are you sure?": "Oletko varma?",
@ -61,6 +62,7 @@
"available!": "saatavilla!", "available!": "saatavilla!",
"Back": "Takaisin", "Back": "Takaisin",
"Bad Response": "Epäkelpo vastaus", "Bad Response": "Epäkelpo vastaus",
"Banners": "",
"Base Model (From)": "", "Base Model (From)": "",
"before": "ennen", "before": "ennen",
"Being lazy": "Oli laiska", "Being lazy": "Oli laiska",
@ -119,7 +121,6 @@
"Custom": "Mukautettu", "Custom": "Mukautettu",
"Customize models for a specific purpose": "", "Customize models for a specific purpose": "",
"Dark": "Tumma", "Dark": "Tumma",
"Dashboard": "Kojelauta",
"Database": "Tietokanta", "Database": "Tietokanta",
"December": "joulukuu", "December": "joulukuu",
"Default": "Oletus", "Default": "Oletus",
@ -187,6 +188,7 @@
"Enter Your Full Name": "Syötä koko nimesi", "Enter Your Full Name": "Syötä koko nimesi",
"Enter Your Password": "Syötä salasanasi", "Enter Your Password": "Syötä salasanasi",
"Enter Your Role": "Syötä roolisi", "Enter Your Role": "Syötä roolisi",
"Error": "",
"Experimental": "Kokeellinen", "Experimental": "Kokeellinen",
"Export All Chats (All Users)": "Vie kaikki keskustelut (kaikki käyttäjät)", "Export All Chats (All Users)": "Vie kaikki keskustelut (kaikki käyttäjät)",
"Export Chats": "Vie keskustelut", "Export Chats": "Vie keskustelut",
@ -226,6 +228,7 @@
"Import Models": "", "Import Models": "",
"Import Prompts": "Tuo kehotteita", "Import Prompts": "Tuo kehotteita",
"Include `--api` flag when running stable-diffusion-webui": "Sisällytä `--api`-parametri suorittaessasi stable-diffusion-webui", "Include `--api` flag when running stable-diffusion-webui": "Sisällytä `--api`-parametri suorittaessasi stable-diffusion-webui",
"Info": "",
"Input commands": "Syötä komennot", "Input commands": "Syötä komennot",
"Interface": "Käyttöliittymä", "Interface": "Käyttöliittymä",
"Invalid Tag": "Virheellinen tagi", "Invalid Tag": "Virheellinen tagi",
@ -310,7 +313,6 @@
"OpenAI URL/Key required.": "OpenAI URL/ -avain vaaditaan.", "OpenAI URL/Key required.": "OpenAI URL/ -avain vaaditaan.",
"or": "tai", "or": "tai",
"Other": "Muu", "Other": "Muu",
"Overview": "Yleiskatsaus",
"Password": "Salasana", "Password": "Salasana",
"PDF document (.pdf)": "PDF-tiedosto (.pdf)", "PDF document (.pdf)": "PDF-tiedosto (.pdf)",
"PDF Extract Images (OCR)": "PDF-tiedoston kuvien erottelu (OCR)", "PDF Extract Images (OCR)": "PDF-tiedoston kuvien erottelu (OCR)",
@ -361,6 +363,7 @@
"Scan for documents from {{path}}": "Skannaa asiakirjoja polusta {{path}}", "Scan for documents from {{path}}": "Skannaa asiakirjoja polusta {{path}}",
"Search": "Haku", "Search": "Haku",
"Search a model": "Hae mallia", "Search a model": "Hae mallia",
"Search Chats": "",
"Search Documents": "Hae asiakirjoja", "Search Documents": "Hae asiakirjoja",
"Search Models": "", "Search Models": "",
"Search Prompts": "Hae kehotteita", "Search Prompts": "Hae kehotteita",
@ -444,6 +447,7 @@
"Top P": "Top P", "Top P": "Top P",
"Trouble accessing Ollama?": "Ongelmia Ollama-yhteydessä?", "Trouble accessing Ollama?": "Ongelmia Ollama-yhteydessä?",
"TTS Settings": "Puheentuottamisasetukset", "TTS Settings": "Puheentuottamisasetukset",
"Type": "",
"Type Hugging Face Resolve (Download) URL": "Kirjoita Hugging Face -resolve-osoite", "Type Hugging Face Resolve (Download) URL": "Kirjoita Hugging Face -resolve-osoite",
"Uh-oh! There was an issue connecting to {{provider}}.": "Voi ei! Yhteysongelma {{provider}}:n kanssa.", "Uh-oh! There was an issue connecting to {{provider}}.": "Voi ei! Yhteysongelma {{provider}}:n kanssa.",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Tuntematon tiedostotyyppi '{{file_type}}', mutta hyväksytään ja käsitellään pelkkänä tekstinä", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Tuntematon tiedostotyyppi '{{file_type}}', mutta hyväksytään ja käsitellään pelkkänä tekstinä",
@ -464,6 +468,7 @@
"variable": "muuttuja", "variable": "muuttuja",
"variable to have them replaced with clipboard content.": "muuttuja korvataan leikepöydän sisällöllä.", "variable to have them replaced with clipboard content.": "muuttuja korvataan leikepöydän sisällöllä.",
"Version": "Versio", "Version": "Versio",
"Warning": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Varoitus: Jos päivität tai vaihdat upotusmallia, sinun on tuotava kaikki asiakirjat uudelleen.", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "Varoitus: Jos päivität tai vaihdat upotusmallia, sinun on tuotava kaikki asiakirjat uudelleen.",
"Web": "Web", "Web": "Web",
"Web Loader Settings": "Web Loader asetukset", "Web Loader Settings": "Web Loader asetukset",

View File

@ -47,6 +47,7 @@
"API keys": "Clés API", "API keys": "Clés API",
"April": "Avril", "April": "Avril",
"Archive": "Archiver", "Archive": "Archiver",
"Archive All Chats": "",
"Archived Chats": "enregistrement du chat", "Archived Chats": "enregistrement du chat",
"are allowed - Activate this command by typing": "sont autorisés - Activez cette commande en tapant", "are allowed - Activate this command by typing": "sont autorisés - Activez cette commande en tapant",
"Are you sure?": "Êtes-vous sûr ?", "Are you sure?": "Êtes-vous sûr ?",
@ -61,6 +62,7 @@
"available!": "disponible !", "available!": "disponible !",
"Back": "Retour", "Back": "Retour",
"Bad Response": "Mauvaise réponse", "Bad Response": "Mauvaise réponse",
"Banners": "",
"Base Model (From)": "", "Base Model (From)": "",
"before": "avant", "before": "avant",
"Being lazy": "En manque de temps", "Being lazy": "En manque de temps",
@ -119,7 +121,6 @@
"Custom": "Personnalisé", "Custom": "Personnalisé",
"Customize models for a specific purpose": "", "Customize models for a specific purpose": "",
"Dark": "Sombre", "Dark": "Sombre",
"Dashboard": "Tableau de bord",
"Database": "Base de données", "Database": "Base de données",
"December": "Décembre", "December": "Décembre",
"Default": "Par défaut", "Default": "Par défaut",
@ -187,6 +188,7 @@
"Enter Your Full Name": "Entrez votre nom complet", "Enter Your Full Name": "Entrez votre nom complet",
"Enter Your Password": "Entrez votre mot de passe", "Enter Your Password": "Entrez votre mot de passe",
"Enter Your Role": "Entrez votre rôle", "Enter Your Role": "Entrez votre rôle",
"Error": "",
"Experimental": "Expérimental", "Experimental": "Expérimental",
"Export All Chats (All Users)": "Exporter toutes les discussions (Tous les utilisateurs)", "Export All Chats (All Users)": "Exporter toutes les discussions (Tous les utilisateurs)",
"Export Chats": "Exporter les discussions", "Export Chats": "Exporter les discussions",
@ -226,6 +228,7 @@
"Import Models": "", "Import Models": "",
"Import Prompts": "Importer les prompts", "Import Prompts": "Importer les prompts",
"Include `--api` flag when running stable-diffusion-webui": "Inclure l'indicateur `--api` lors de l'exécution de stable-diffusion-webui", "Include `--api` flag when running stable-diffusion-webui": "Inclure l'indicateur `--api` lors de l'exécution de stable-diffusion-webui",
"Info": "",
"Input commands": "Entrez des commandes d'entrée", "Input commands": "Entrez des commandes d'entrée",
"Interface": "Interface", "Interface": "Interface",
"Invalid Tag": "Tag invalide", "Invalid Tag": "Tag invalide",
@ -310,7 +313,6 @@
"OpenAI URL/Key required.": "L'URL/Clé OpenAI est requise.", "OpenAI URL/Key required.": "L'URL/Clé OpenAI est requise.",
"or": "ou", "or": "ou",
"Other": "Autre", "Other": "Autre",
"Overview": "Aperçu",
"Password": "Mot de passe", "Password": "Mot de passe",
"PDF document (.pdf)": "Document PDF (.pdf)", "PDF document (.pdf)": "Document PDF (.pdf)",
"PDF Extract Images (OCR)": "Extraction d'images PDF (OCR)", "PDF Extract Images (OCR)": "Extraction d'images PDF (OCR)",
@ -361,6 +363,7 @@
"Scan for documents from {{path}}": "Scanner des documents depuis {{path}}", "Scan for documents from {{path}}": "Scanner des documents depuis {{path}}",
"Search": "Recherche", "Search": "Recherche",
"Search a model": "Rechercher un modèle", "Search a model": "Rechercher un modèle",
"Search Chats": "",
"Search Documents": "Rechercher des documents", "Search Documents": "Rechercher des documents",
"Search Models": "", "Search Models": "",
"Search Prompts": "Rechercher des prompts", "Search Prompts": "Rechercher des prompts",
@ -444,6 +447,7 @@
"Top P": "Top P", "Top P": "Top P",
"Trouble accessing Ollama?": "Des problèmes pour accéder à Ollama ?", "Trouble accessing Ollama?": "Des problèmes pour accéder à Ollama ?",
"TTS Settings": "Paramètres TTS", "TTS Settings": "Paramètres TTS",
"Type": "",
"Type Hugging Face Resolve (Download) URL": "Entrez l'URL de résolution (téléchargement) Hugging Face", "Type Hugging Face Resolve (Download) URL": "Entrez l'URL de résolution (téléchargement) Hugging Face",
"Uh-oh! There was an issue connecting to {{provider}}.": "Uh-oh ! Il y a eu un problème de connexion à {{provider}}.", "Uh-oh! There was an issue connecting to {{provider}}.": "Uh-oh ! Il y a eu un problème de connexion à {{provider}}.",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Type de fichier inconnu '{{file_type}}', mais accepté et traité comme du texte brut", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Type de fichier inconnu '{{file_type}}', mais accepté et traité comme du texte brut",
@ -464,6 +468,7 @@
"variable": "variable", "variable": "variable",
"variable to have them replaced with clipboard content.": "variable pour les remplacer par le contenu du presse-papiers.", "variable to have them replaced with clipboard content.": "variable pour les remplacer par le contenu du presse-papiers.",
"Version": "Version", "Version": "Version",
"Warning": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Attention : Si vous mettez à jour ou changez votre modèle d'intégration, vous devrez réimporter tous les documents.", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "Attention : Si vous mettez à jour ou changez votre modèle d'intégration, vous devrez réimporter tous les documents.",
"Web": "Web", "Web": "Web",
"Web Loader Settings": "Paramètres du chargeur Web", "Web Loader Settings": "Paramètres du chargeur Web",

View File

@ -47,6 +47,7 @@
"API keys": "Clés API", "API keys": "Clés API",
"April": "Avril", "April": "Avril",
"Archive": "Archiver", "Archive": "Archiver",
"Archive All Chats": "",
"Archived Chats": "Chats Archivés", "Archived Chats": "Chats Archivés",
"are allowed - Activate this command by typing": "sont autorisés - Activez cette commande en tapant", "are allowed - Activate this command by typing": "sont autorisés - Activez cette commande en tapant",
"Are you sure?": "Êtes-vous sûr ?", "Are you sure?": "Êtes-vous sûr ?",
@ -61,6 +62,7 @@
"available!": "disponible !", "available!": "disponible !",
"Back": "Retour", "Back": "Retour",
"Bad Response": "Mauvaise Réponse", "Bad Response": "Mauvaise Réponse",
"Banners": "",
"Base Model (From)": "Modèle de Base (De)", "Base Model (From)": "Modèle de Base (De)",
"before": "avant", "before": "avant",
"Being lazy": "Est paresseux", "Being lazy": "Est paresseux",
@ -119,7 +121,6 @@
"Custom": "Personnalisé", "Custom": "Personnalisé",
"Customize models for a specific purpose": "Personnaliser les modèles pour un objectif spécifique", "Customize models for a specific purpose": "Personnaliser les modèles pour un objectif spécifique",
"Dark": "Sombre", "Dark": "Sombre",
"Dashboard": "Tableau de bord",
"Database": "Base de données", "Database": "Base de données",
"December": "Décembre", "December": "Décembre",
"Default": "Par défaut", "Default": "Par défaut",
@ -187,6 +188,7 @@
"Enter Your Full Name": "Entrez Votre Nom Complet", "Enter Your Full Name": "Entrez Votre Nom Complet",
"Enter Your Password": "Entrez Votre Mot De Passe", "Enter Your Password": "Entrez Votre Mot De Passe",
"Enter Your Role": "Entrez Votre Rôle", "Enter Your Role": "Entrez Votre Rôle",
"Error": "",
"Experimental": "Expérimental", "Experimental": "Expérimental",
"Export All Chats (All Users)": "Exporter Tous les Chats (Tous les Utilisateurs)", "Export All Chats (All Users)": "Exporter Tous les Chats (Tous les Utilisateurs)",
"Export Chats": "Exporter les Chats", "Export Chats": "Exporter les Chats",
@ -226,6 +228,7 @@
"Import Models": "Importer des Modèles", "Import Models": "Importer des Modèles",
"Import Prompts": "Importer des Prompts", "Import Prompts": "Importer des Prompts",
"Include `--api` flag when running stable-diffusion-webui": "Inclure le drapeau `--api` lors de l'exécution de stable-diffusion-webui", "Include `--api` flag when running stable-diffusion-webui": "Inclure le drapeau `--api` lors de l'exécution de stable-diffusion-webui",
"Info": "",
"Input commands": "Entrez les commandes d'entrée", "Input commands": "Entrez les commandes d'entrée",
"Interface": "Interface", "Interface": "Interface",
"Invalid Tag": "Tag Invalide", "Invalid Tag": "Tag Invalide",
@ -310,7 +313,6 @@
"OpenAI URL/Key required.": "URL/Clé OpenAI requise.", "OpenAI URL/Key required.": "URL/Clé OpenAI requise.",
"or": "ou", "or": "ou",
"Other": "Autre", "Other": "Autre",
"Overview": "Aperçu",
"Password": "Mot de passe", "Password": "Mot de passe",
"PDF document (.pdf)": "Document PDF (.pdf)", "PDF document (.pdf)": "Document PDF (.pdf)",
"PDF Extract Images (OCR)": "Extraction d'images PDF (OCR)", "PDF Extract Images (OCR)": "Extraction d'images PDF (OCR)",
@ -361,6 +363,7 @@
"Scan for documents from {{path}}": "Scanner des documents depuis {{path}}", "Scan for documents from {{path}}": "Scanner des documents depuis {{path}}",
"Search": "Recherche", "Search": "Recherche",
"Search a model": "Rechercher un modèle", "Search a model": "Rechercher un modèle",
"Search Chats": "",
"Search Documents": "Rechercher des Documents", "Search Documents": "Rechercher des Documents",
"Search Models": "", "Search Models": "",
"Search Prompts": "Rechercher des Prompts", "Search Prompts": "Rechercher des Prompts",
@ -444,6 +447,7 @@
"Top P": "Top P", "Top P": "Top P",
"Trouble accessing Ollama?": "Problèmes d'accès à Ollama ?", "Trouble accessing Ollama?": "Problèmes d'accès à Ollama ?",
"TTS Settings": "Paramètres TTS", "TTS Settings": "Paramètres TTS",
"Type": "",
"Type Hugging Face Resolve (Download) URL": "Entrez l'URL de Résolution (Téléchargement) Hugging Face", "Type Hugging Face Resolve (Download) URL": "Entrez l'URL de Résolution (Téléchargement) Hugging Face",
"Uh-oh! There was an issue connecting to {{provider}}.": "Uh-oh ! Il y a eu un problème de connexion à {{provider}}.", "Uh-oh! There was an issue connecting to {{provider}}.": "Uh-oh ! Il y a eu un problème de connexion à {{provider}}.",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Type de Fichier Inconnu '{{file_type}}', mais accepté et traité comme du texte brut", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Type de Fichier Inconnu '{{file_type}}', mais accepté et traité comme du texte brut",
@ -464,6 +468,7 @@
"variable": "variable", "variable": "variable",
"variable to have them replaced with clipboard content.": "variable pour les remplacer par le contenu du presse-papiers.", "variable to have them replaced with clipboard content.": "variable pour les remplacer par le contenu du presse-papiers.",
"Version": "Version", "Version": "Version",
"Warning": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Avertissement : Si vous mettez à jour ou modifier votre modèle d'embedding, vous devrez réimporter tous les documents.", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "Avertissement : Si vous mettez à jour ou modifier votre modèle d'embedding, vous devrez réimporter tous les documents.",
"Web": "Web", "Web": "Web",
"Web Loader Settings": "Paramètres du Chargeur Web", "Web Loader Settings": "Paramètres du Chargeur Web",

View File

@ -47,6 +47,7 @@
"API keys": "מפתחות API", "API keys": "מפתחות API",
"April": "אפריל", "April": "אפריל",
"Archive": "ארכיון", "Archive": "ארכיון",
"Archive All Chats": "",
"Archived Chats": "צ'אטים מאורכבים", "Archived Chats": "צ'אטים מאורכבים",
"are allowed - Activate this command by typing": "מותרים - הפעל פקודה זו על ידי הקלדה", "are allowed - Activate this command by typing": "מותרים - הפעל פקודה זו על ידי הקלדה",
"Are you sure?": "האם אתה בטוח?", "Are you sure?": "האם אתה בטוח?",
@ -61,6 +62,7 @@
"available!": "זמין!", "available!": "זמין!",
"Back": "חזור", "Back": "חזור",
"Bad Response": "תגובה שגויה", "Bad Response": "תגובה שגויה",
"Banners": "",
"Base Model (From)": "", "Base Model (From)": "",
"before": "לפני", "before": "לפני",
"Being lazy": "להיות עצלן", "Being lazy": "להיות עצלן",
@ -119,7 +121,6 @@
"Custom": "מותאם אישית", "Custom": "מותאם אישית",
"Customize models for a specific purpose": "", "Customize models for a specific purpose": "",
"Dark": "כהה", "Dark": "כהה",
"Dashboard": "לוח בקרה",
"Database": "מסד נתונים", "Database": "מסד נתונים",
"December": "דצמבר", "December": "דצמבר",
"Default": "ברירת מחדל", "Default": "ברירת מחדל",
@ -187,6 +188,7 @@
"Enter Your Full Name": "הזן את שמך המלא", "Enter Your Full Name": "הזן את שמך המלא",
"Enter Your Password": "הזן את הסיסמה שלך", "Enter Your Password": "הזן את הסיסמה שלך",
"Enter Your Role": "הזן את התפקיד שלך", "Enter Your Role": "הזן את התפקיד שלך",
"Error": "",
"Experimental": "ניסיוני", "Experimental": "ניסיוני",
"Export All Chats (All Users)": "ייצוא כל הצ'אטים (כל המשתמשים)", "Export All Chats (All Users)": "ייצוא כל הצ'אטים (כל המשתמשים)",
"Export Chats": "ייצוא צ'אטים", "Export Chats": "ייצוא צ'אטים",
@ -226,6 +228,7 @@
"Import Models": "", "Import Models": "",
"Import Prompts": "יבוא פקודות", "Import Prompts": "יבוא פקודות",
"Include `--api` flag when running stable-diffusion-webui": "כלול את הדגל `--api` בעת הרצת stable-diffusion-webui", "Include `--api` flag when running stable-diffusion-webui": "כלול את הדגל `--api` בעת הרצת stable-diffusion-webui",
"Info": "",
"Input commands": "פקודות קלט", "Input commands": "פקודות קלט",
"Interface": "ממשק", "Interface": "ממשק",
"Invalid Tag": "תג לא חוקי", "Invalid Tag": "תג לא חוקי",
@ -310,7 +313,6 @@
"OpenAI URL/Key required.": "נדרשת כתובת URL/מפתח של OpenAI.", "OpenAI URL/Key required.": "נדרשת כתובת URL/מפתח של OpenAI.",
"or": "או", "or": "או",
"Other": "אחר", "Other": "אחר",
"Overview": "סקירה כללית",
"Password": "סיסמה", "Password": "סיסמה",
"PDF document (.pdf)": "מסמך PDF (.pdf)", "PDF document (.pdf)": "מסמך PDF (.pdf)",
"PDF Extract Images (OCR)": "חילוץ תמונות מ-PDF (OCR)", "PDF Extract Images (OCR)": "חילוץ תמונות מ-PDF (OCR)",
@ -361,6 +363,7 @@
"Scan for documents from {{path}}": "סרוק מסמכים מ-{{path}}", "Scan for documents from {{path}}": "סרוק מסמכים מ-{{path}}",
"Search": "חפש", "Search": "חפש",
"Search a model": "חפש מודל", "Search a model": "חפש מודל",
"Search Chats": "",
"Search Documents": "חפש מסמכים", "Search Documents": "חפש מסמכים",
"Search Models": "", "Search Models": "",
"Search Prompts": "חפש פקודות", "Search Prompts": "חפש פקודות",
@ -444,6 +447,7 @@
"Top P": "Top P", "Top P": "Top P",
"Trouble accessing Ollama?": "קשה לגשת לOllama?", "Trouble accessing Ollama?": "קשה לגשת לOllama?",
"TTS Settings": "הגדרות TTS", "TTS Settings": "הגדרות TTS",
"Type": "",
"Type Hugging Face Resolve (Download) URL": "הקלד כתובת URL של פתרון פנים מחבק (הורד)", "Type Hugging Face Resolve (Download) URL": "הקלד כתובת URL של פתרון פנים מחבק (הורד)",
"Uh-oh! There was an issue connecting to {{provider}}.": "או-הו! אירעה בעיה בהתחברות ל- {{provider}}.", "Uh-oh! There was an issue connecting to {{provider}}.": "או-הו! אירעה בעיה בהתחברות ל- {{provider}}.",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "סוג קובץ לא ידוע '{{file_type}}', אך מקבל ומתייחס אליו כטקסט רגיל", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "סוג קובץ לא ידוע '{{file_type}}', אך מקבל ומתייחס אליו כטקסט רגיל",
@ -464,6 +468,7 @@
"variable": "משתנה", "variable": "משתנה",
"variable to have them replaced with clipboard content.": "משתנה להחליפו ב- clipboard תוכן.", "variable to have them replaced with clipboard content.": "משתנה להחליפו ב- clipboard תוכן.",
"Version": "גרסה", "Version": "גרסה",
"Warning": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "אזהרה: אם תעדכן או תשנה את מודל ההטבעה שלך, יהיה עליך לייבא מחדש את כל המסמכים.", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "אזהרה: אם תעדכן או תשנה את מודל ההטבעה שלך, יהיה עליך לייבא מחדש את כל המסמכים.",
"Web": "רשת", "Web": "רשת",
"Web Loader Settings": "הגדרות טעינת אתר", "Web Loader Settings": "הגדרות טעינת אתר",

View File

@ -47,6 +47,7 @@
"API keys": "एपीआई कुंजियाँ", "API keys": "एपीआई कुंजियाँ",
"April": "अप्रैल", "April": "अप्रैल",
"Archive": "पुरालेख", "Archive": "पुरालेख",
"Archive All Chats": "",
"Archived Chats": "संग्रहीत चैट", "Archived Chats": "संग्रहीत चैट",
"are allowed - Activate this command by typing": "अनुमति है - टाइप करके इस कमांड को सक्रिय करें", "are allowed - Activate this command by typing": "अनुमति है - टाइप करके इस कमांड को सक्रिय करें",
"Are you sure?": "क्या आपको यकीन है?", "Are you sure?": "क्या आपको यकीन है?",
@ -61,6 +62,7 @@
"available!": "उपलब्ध!", "available!": "उपलब्ध!",
"Back": "पीछे", "Back": "पीछे",
"Bad Response": "ख़राब प्रतिक्रिया", "Bad Response": "ख़राब प्रतिक्रिया",
"Banners": "",
"Base Model (From)": "", "Base Model (From)": "",
"before": "पहले", "before": "पहले",
"Being lazy": "आलसी होना", "Being lazy": "आलसी होना",
@ -119,7 +121,6 @@
"Custom": "कस्टम संस्करण", "Custom": "कस्टम संस्करण",
"Customize models for a specific purpose": "", "Customize models for a specific purpose": "",
"Dark": "डार्क", "Dark": "डार्क",
"Dashboard": "डैशबोर्ड",
"Database": "डेटाबेस", "Database": "डेटाबेस",
"December": "डिसेंबर", "December": "डिसेंबर",
"Default": "डिफ़ॉल्ट", "Default": "डिफ़ॉल्ट",
@ -187,6 +188,7 @@
"Enter Your Full Name": "अपना पूरा नाम भरें", "Enter Your Full Name": "अपना पूरा नाम भरें",
"Enter Your Password": "अपना पासवर्ड भरें", "Enter Your Password": "अपना पासवर्ड भरें",
"Enter Your Role": "अपनी भूमिका दर्ज करें", "Enter Your Role": "अपनी भूमिका दर्ज करें",
"Error": "",
"Experimental": "प्रयोगात्मक", "Experimental": "प्रयोगात्मक",
"Export All Chats (All Users)": "सभी चैट निर्यात करें (सभी उपयोगकर्ताओं की)", "Export All Chats (All Users)": "सभी चैट निर्यात करें (सभी उपयोगकर्ताओं की)",
"Export Chats": "चैट निर्यात करें", "Export Chats": "चैट निर्यात करें",
@ -226,6 +228,7 @@
"Import Models": "", "Import Models": "",
"Import Prompts": "प्रॉम्प्ट आयात करें", "Import Prompts": "प्रॉम्प्ट आयात करें",
"Include `--api` flag when running stable-diffusion-webui": "stable-diffusion-webui चलाते समय `--api` ध्वज शामिल करें", "Include `--api` flag when running stable-diffusion-webui": "stable-diffusion-webui चलाते समय `--api` ध्वज शामिल करें",
"Info": "",
"Input commands": "इनपुट क命", "Input commands": "इनपुट क命",
"Interface": "इंटरफेस", "Interface": "इंटरफेस",
"Invalid Tag": "अवैध टैग", "Invalid Tag": "अवैध टैग",
@ -310,7 +313,6 @@
"OpenAI URL/Key required.": "OpenAI URL/Key आवश्यक है।", "OpenAI URL/Key required.": "OpenAI URL/Key आवश्यक है।",
"or": "या", "or": "या",
"Other": "अन्य", "Other": "अन्य",
"Overview": "अवलोकन",
"Password": "पासवर्ड", "Password": "पासवर्ड",
"PDF document (.pdf)": "PDF दस्तावेज़ (.pdf)", "PDF document (.pdf)": "PDF दस्तावेज़ (.pdf)",
"PDF Extract Images (OCR)": "PDF छवियाँ निकालें (OCR)", "PDF Extract Images (OCR)": "PDF छवियाँ निकालें (OCR)",
@ -361,6 +363,7 @@
"Scan for documents from {{path}}": "{{path}} से दस्तावेज़ों को स्कैन करें", "Scan for documents from {{path}}": "{{path}} से दस्तावेज़ों को स्कैन करें",
"Search": "खोजें", "Search": "खोजें",
"Search a model": "एक मॉडल खोजें", "Search a model": "एक मॉडल खोजें",
"Search Chats": "",
"Search Documents": "दस्तावेज़ खोजें", "Search Documents": "दस्तावेज़ खोजें",
"Search Models": "", "Search Models": "",
"Search Prompts": "प्रॉम्प्ट खोजें", "Search Prompts": "प्रॉम्प्ट खोजें",
@ -444,6 +447,7 @@
"Top P": "शीर्ष P", "Top P": "शीर्ष P",
"Trouble accessing Ollama?": "Ollama तक पहुँचने में परेशानी हो रही है?", "Trouble accessing Ollama?": "Ollama तक पहुँचने में परेशानी हो रही है?",
"TTS Settings": "TTS सेटिंग्स", "TTS Settings": "TTS सेटिंग्स",
"Type": "",
"Type Hugging Face Resolve (Download) URL": "हगिंग फेस रिज़ॉल्व (डाउनलोड) यूआरएल टाइप करें", "Type Hugging Face Resolve (Download) URL": "हगिंग फेस रिज़ॉल्व (डाउनलोड) यूआरएल टाइप करें",
"Uh-oh! There was an issue connecting to {{provider}}.": "उह ओह! {{provider}} से कनेक्ट करने में एक समस्या थी।", "Uh-oh! There was an issue connecting to {{provider}}.": "उह ओह! {{provider}} से कनेक्ट करने में एक समस्या थी।",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "अज्ञात फ़ाइल प्रकार '{{file_type}}', लेकिन स्वीकार करना और सादे पाठ के रूप में व्यवहार करना", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "अज्ञात फ़ाइल प्रकार '{{file_type}}', लेकिन स्वीकार करना और सादे पाठ के रूप में व्यवहार करना",
@ -464,6 +468,7 @@
"variable": "वेरिएबल", "variable": "वेरिएबल",
"variable to have them replaced with clipboard content.": "उन्हें क्लिपबोर्ड सामग्री से बदलने के लिए वेरिएबल।", "variable to have them replaced with clipboard content.": "उन्हें क्लिपबोर्ड सामग्री से बदलने के लिए वेरिएबल।",
"Version": "संस्करण", "Version": "संस्करण",
"Warning": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "चेतावनी: यदि आप अपने एम्बेडिंग मॉडल को अपडेट या बदलते हैं, तो आपको सभी दस्तावेज़ों को फिर से आयात करने की आवश्यकता होगी।", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "चेतावनी: यदि आप अपने एम्बेडिंग मॉडल को अपडेट या बदलते हैं, तो आपको सभी दस्तावेज़ों को फिर से आयात करने की आवश्यकता होगी।",
"Web": "वेब", "Web": "वेब",
"Web Loader Settings": "वेब लोडर सेटिंग्स", "Web Loader Settings": "वेब लोडर सेटिंग्स",

View File

@ -47,6 +47,7 @@
"API keys": "API ključevi", "API keys": "API ključevi",
"April": "Travanj", "April": "Travanj",
"Archive": "Arhiva", "Archive": "Arhiva",
"Archive All Chats": "",
"Archived Chats": "Arhivirani razgovori", "Archived Chats": "Arhivirani razgovori",
"are allowed - Activate this command by typing": "su dopušteni - Aktivirajte ovu naredbu upisivanjem", "are allowed - Activate this command by typing": "su dopušteni - Aktivirajte ovu naredbu upisivanjem",
"Are you sure?": "Jeste li sigurni?", "Are you sure?": "Jeste li sigurni?",
@ -61,6 +62,7 @@
"available!": "dostupno!", "available!": "dostupno!",
"Back": "Natrag", "Back": "Natrag",
"Bad Response": "Loš odgovor", "Bad Response": "Loš odgovor",
"Banners": "",
"Base Model (From)": "", "Base Model (From)": "",
"before": "prije", "before": "prije",
"Being lazy": "Biti lijen", "Being lazy": "Biti lijen",
@ -119,7 +121,6 @@
"Custom": "Prilagođeno", "Custom": "Prilagođeno",
"Customize models for a specific purpose": "", "Customize models for a specific purpose": "",
"Dark": "Tamno", "Dark": "Tamno",
"Dashboard": "Nadzorna ploča",
"Database": "Baza podataka", "Database": "Baza podataka",
"December": "Prosinac", "December": "Prosinac",
"Default": "Zadano", "Default": "Zadano",
@ -187,6 +188,7 @@
"Enter Your Full Name": "Unesite svoje puno ime", "Enter Your Full Name": "Unesite svoje puno ime",
"Enter Your Password": "Unesite svoju lozinku", "Enter Your Password": "Unesite svoju lozinku",
"Enter Your Role": "Unesite svoju ulogu", "Enter Your Role": "Unesite svoju ulogu",
"Error": "",
"Experimental": "Eksperimentalno", "Experimental": "Eksperimentalno",
"Export All Chats (All Users)": "Izvoz svih razgovora (svi korisnici)", "Export All Chats (All Users)": "Izvoz svih razgovora (svi korisnici)",
"Export Chats": "Izvoz razgovora", "Export Chats": "Izvoz razgovora",
@ -226,6 +228,7 @@
"Import Models": "", "Import Models": "",
"Import Prompts": "Uvoz prompta", "Import Prompts": "Uvoz prompta",
"Include `--api` flag when running stable-diffusion-webui": "Uključite zastavicu `--api` prilikom pokretanja stable-diffusion-webui", "Include `--api` flag when running stable-diffusion-webui": "Uključite zastavicu `--api` prilikom pokretanja stable-diffusion-webui",
"Info": "",
"Input commands": "Unos naredbi", "Input commands": "Unos naredbi",
"Interface": "Sučelje", "Interface": "Sučelje",
"Invalid Tag": "Nevažeća oznaka", "Invalid Tag": "Nevažeća oznaka",
@ -310,7 +313,6 @@
"OpenAI URL/Key required.": "Potreban je OpenAI URL/ključ.", "OpenAI URL/Key required.": "Potreban je OpenAI URL/ključ.",
"or": "ili", "or": "ili",
"Other": "Ostalo", "Other": "Ostalo",
"Overview": "Pregled",
"Password": "Lozinka", "Password": "Lozinka",
"PDF document (.pdf)": "PDF dokument (.pdf)", "PDF document (.pdf)": "PDF dokument (.pdf)",
"PDF Extract Images (OCR)": "PDF izdvajanje slika (OCR)", "PDF Extract Images (OCR)": "PDF izdvajanje slika (OCR)",
@ -361,6 +363,7 @@
"Scan for documents from {{path}}": "Skeniraj dokumente s {{path}}", "Scan for documents from {{path}}": "Skeniraj dokumente s {{path}}",
"Search": "Pretraga", "Search": "Pretraga",
"Search a model": "Pretraži model", "Search a model": "Pretraži model",
"Search Chats": "",
"Search Documents": "Pretraga dokumenata", "Search Documents": "Pretraga dokumenata",
"Search Models": "", "Search Models": "",
"Search Prompts": "Pretraga prompta", "Search Prompts": "Pretraga prompta",
@ -444,6 +447,7 @@
"Top P": "Top P", "Top P": "Top P",
"Trouble accessing Ollama?": "Problemi s pristupom Ollama?", "Trouble accessing Ollama?": "Problemi s pristupom Ollama?",
"TTS Settings": "TTS postavke", "TTS Settings": "TTS postavke",
"Type": "",
"Type Hugging Face Resolve (Download) URL": "Upišite Hugging Face Resolve (Download) URL", "Type Hugging Face Resolve (Download) URL": "Upišite Hugging Face Resolve (Download) URL",
"Uh-oh! There was an issue connecting to {{provider}}.": "Uh-oh! Pojavio se problem s povezivanjem na {{provider}}.", "Uh-oh! There was an issue connecting to {{provider}}.": "Uh-oh! Pojavio se problem s povezivanjem na {{provider}}.",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Nepoznata vrsta datoteke '{{file_type}}', ali prihvaćena i obrađuje se kao običan tekst", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Nepoznata vrsta datoteke '{{file_type}}', ali prihvaćena i obrađuje se kao običan tekst",
@ -464,6 +468,7 @@
"variable": "varijabla", "variable": "varijabla",
"variable to have them replaced with clipboard content.": "varijabla za zamjenu sadržajem međuspremnika.", "variable to have them replaced with clipboard content.": "varijabla za zamjenu sadržajem međuspremnika.",
"Version": "Verzija", "Version": "Verzija",
"Warning": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Upozorenje: Ako ažurirate ili promijenite svoj model za umetanje, morat ćete ponovno uvesti sve dokumente.", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "Upozorenje: Ako ažurirate ili promijenite svoj model za umetanje, morat ćete ponovno uvesti sve dokumente.",
"Web": "Web", "Web": "Web",
"Web Loader Settings": "Postavke web učitavanja", "Web Loader Settings": "Postavke web učitavanja",

View File

@ -47,6 +47,7 @@
"API keys": "Chiavi API", "API keys": "Chiavi API",
"April": "Aprile", "April": "Aprile",
"Archive": "Archivio", "Archive": "Archivio",
"Archive All Chats": "",
"Archived Chats": "Chat archiviate", "Archived Chats": "Chat archiviate",
"are allowed - Activate this command by typing": "sono consentiti - Attiva questo comando digitando", "are allowed - Activate this command by typing": "sono consentiti - Attiva questo comando digitando",
"Are you sure?": "Sei sicuro?", "Are you sure?": "Sei sicuro?",
@ -61,6 +62,7 @@
"available!": "disponibile!", "available!": "disponibile!",
"Back": "Indietro", "Back": "Indietro",
"Bad Response": "Risposta non valida", "Bad Response": "Risposta non valida",
"Banners": "",
"Base Model (From)": "", "Base Model (From)": "",
"before": "prima", "before": "prima",
"Being lazy": "Essere pigri", "Being lazy": "Essere pigri",
@ -119,7 +121,6 @@
"Custom": "Personalizzato", "Custom": "Personalizzato",
"Customize models for a specific purpose": "", "Customize models for a specific purpose": "",
"Dark": "Scuro", "Dark": "Scuro",
"Dashboard": "Pannello di controllo",
"Database": "Database", "Database": "Database",
"December": "Dicembre", "December": "Dicembre",
"Default": "Predefinito", "Default": "Predefinito",
@ -187,6 +188,7 @@
"Enter Your Full Name": "Inserisci il tuo nome completo", "Enter Your Full Name": "Inserisci il tuo nome completo",
"Enter Your Password": "Inserisci la tua password", "Enter Your Password": "Inserisci la tua password",
"Enter Your Role": "Inserisci il tuo ruolo", "Enter Your Role": "Inserisci il tuo ruolo",
"Error": "",
"Experimental": "Sperimentale", "Experimental": "Sperimentale",
"Export All Chats (All Users)": "Esporta tutte le chat (tutti gli utenti)", "Export All Chats (All Users)": "Esporta tutte le chat (tutti gli utenti)",
"Export Chats": "Esporta chat", "Export Chats": "Esporta chat",
@ -226,6 +228,7 @@
"Import Models": "", "Import Models": "",
"Import Prompts": "Importa prompt", "Import Prompts": "Importa prompt",
"Include `--api` flag when running stable-diffusion-webui": "Includi il flag `--api` quando esegui stable-diffusion-webui", "Include `--api` flag when running stable-diffusion-webui": "Includi il flag `--api` quando esegui stable-diffusion-webui",
"Info": "",
"Input commands": "Comandi di input", "Input commands": "Comandi di input",
"Interface": "Interfaccia", "Interface": "Interfaccia",
"Invalid Tag": "Tag non valido", "Invalid Tag": "Tag non valido",
@ -310,7 +313,6 @@
"OpenAI URL/Key required.": "URL/Chiave OpenAI obbligatori.", "OpenAI URL/Key required.": "URL/Chiave OpenAI obbligatori.",
"or": "o", "or": "o",
"Other": "Altro", "Other": "Altro",
"Overview": "Panoramica",
"Password": "Password", "Password": "Password",
"PDF document (.pdf)": "Documento PDF (.pdf)", "PDF document (.pdf)": "Documento PDF (.pdf)",
"PDF Extract Images (OCR)": "Estrazione immagini PDF (OCR)", "PDF Extract Images (OCR)": "Estrazione immagini PDF (OCR)",
@ -361,6 +363,7 @@
"Scan for documents from {{path}}": "Cerca documenti da {{path}}", "Scan for documents from {{path}}": "Cerca documenti da {{path}}",
"Search": "Cerca", "Search": "Cerca",
"Search a model": "Cerca un modello", "Search a model": "Cerca un modello",
"Search Chats": "",
"Search Documents": "Cerca documenti", "Search Documents": "Cerca documenti",
"Search Models": "", "Search Models": "",
"Search Prompts": "Cerca prompt", "Search Prompts": "Cerca prompt",
@ -444,6 +447,7 @@
"Top P": "Top P", "Top P": "Top P",
"Trouble accessing Ollama?": "Problemi di accesso a Ollama?", "Trouble accessing Ollama?": "Problemi di accesso a Ollama?",
"TTS Settings": "Impostazioni TTS", "TTS Settings": "Impostazioni TTS",
"Type": "",
"Type Hugging Face Resolve (Download) URL": "Digita l'URL di Hugging Face Resolve (Download)", "Type Hugging Face Resolve (Download) URL": "Digita l'URL di Hugging Face Resolve (Download)",
"Uh-oh! There was an issue connecting to {{provider}}.": "Uh-oh! Si è verificato un problema durante la connessione a {{provider}}.", "Uh-oh! There was an issue connecting to {{provider}}.": "Uh-oh! Si è verificato un problema durante la connessione a {{provider}}.",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Tipo di file sconosciuto '{{file_type}}', ma accettato e trattato come testo normale", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Tipo di file sconosciuto '{{file_type}}', ma accettato e trattato come testo normale",
@ -464,6 +468,7 @@
"variable": "variabile", "variable": "variabile",
"variable to have them replaced with clipboard content.": "variabile per farli sostituire con il contenuto degli appunti.", "variable to have them replaced with clipboard content.": "variabile per farli sostituire con il contenuto degli appunti.",
"Version": "Versione", "Version": "Versione",
"Warning": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Attenzione: se aggiorni o cambi il tuo modello di embedding, dovrai reimportare tutti i documenti.", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "Attenzione: se aggiorni o cambi il tuo modello di embedding, dovrai reimportare tutti i documenti.",
"Web": "Web", "Web": "Web",
"Web Loader Settings": "Impostazioni del caricatore Web", "Web Loader Settings": "Impostazioni del caricatore Web",

View File

@ -47,6 +47,7 @@
"API keys": "API キー", "API keys": "API キー",
"April": "4月", "April": "4月",
"Archive": "アーカイブ", "Archive": "アーカイブ",
"Archive All Chats": "",
"Archived Chats": "チャット記録", "Archived Chats": "チャット記録",
"are allowed - Activate this command by typing": "が許可されています - 次のように入力してこのコマンドをアクティブ化します", "are allowed - Activate this command by typing": "が許可されています - 次のように入力してこのコマンドをアクティブ化します",
"Are you sure?": "よろしいですか?", "Are you sure?": "よろしいですか?",
@ -61,6 +62,7 @@
"available!": "利用可能!", "available!": "利用可能!",
"Back": "戻る", "Back": "戻る",
"Bad Response": "応答が悪い", "Bad Response": "応答が悪い",
"Banners": "",
"Base Model (From)": "", "Base Model (From)": "",
"before": "より前", "before": "より前",
"Being lazy": "怠惰な", "Being lazy": "怠惰な",
@ -119,7 +121,6 @@
"Custom": "カスタム", "Custom": "カスタム",
"Customize models for a specific purpose": "", "Customize models for a specific purpose": "",
"Dark": "ダーク", "Dark": "ダーク",
"Dashboard": "ダッシュボード",
"Database": "データベース", "Database": "データベース",
"December": "12月", "December": "12月",
"Default": "デフォルト", "Default": "デフォルト",
@ -187,6 +188,7 @@
"Enter Your Full Name": "フルネームを入力してください", "Enter Your Full Name": "フルネームを入力してください",
"Enter Your Password": "パスワードを入力してください", "Enter Your Password": "パスワードを入力してください",
"Enter Your Role": "ロールを入力してください", "Enter Your Role": "ロールを入力してください",
"Error": "",
"Experimental": "実験的", "Experimental": "実験的",
"Export All Chats (All Users)": "すべてのチャットをエクスポート (すべてのユーザー)", "Export All Chats (All Users)": "すべてのチャットをエクスポート (すべてのユーザー)",
"Export Chats": "チャットをエクスポート", "Export Chats": "チャットをエクスポート",
@ -226,6 +228,7 @@
"Import Models": "", "Import Models": "",
"Import Prompts": "プロンプトをインポート", "Import Prompts": "プロンプトをインポート",
"Include `--api` flag when running stable-diffusion-webui": "stable-diffusion-webuiを実行する際に`--api`フラグを含める", "Include `--api` flag when running stable-diffusion-webui": "stable-diffusion-webuiを実行する際に`--api`フラグを含める",
"Info": "",
"Input commands": "入力コマンド", "Input commands": "入力コマンド",
"Interface": "インターフェース", "Interface": "インターフェース",
"Invalid Tag": "無効なタグ", "Invalid Tag": "無効なタグ",
@ -310,7 +313,6 @@
"OpenAI URL/Key required.": "OpenAI URL/Key が必要です。", "OpenAI URL/Key required.": "OpenAI URL/Key が必要です。",
"or": "または", "or": "または",
"Other": "その他", "Other": "その他",
"Overview": "概要",
"Password": "パスワード", "Password": "パスワード",
"PDF document (.pdf)": "PDF ドキュメント (.pdf)", "PDF document (.pdf)": "PDF ドキュメント (.pdf)",
"PDF Extract Images (OCR)": "PDF 画像抽出 (OCR)", "PDF Extract Images (OCR)": "PDF 画像抽出 (OCR)",
@ -361,6 +363,7 @@
"Scan for documents from {{path}}": "{{path}} からドキュメントをスキャン", "Scan for documents from {{path}}": "{{path}} からドキュメントをスキャン",
"Search": "検索", "Search": "検索",
"Search a model": "モデルを検索", "Search a model": "モデルを検索",
"Search Chats": "",
"Search Documents": "ドキュメントを検索", "Search Documents": "ドキュメントを検索",
"Search Models": "", "Search Models": "",
"Search Prompts": "プロンプトを検索", "Search Prompts": "プロンプトを検索",
@ -444,6 +447,7 @@
"Top P": "トップ P", "Top P": "トップ P",
"Trouble accessing Ollama?": "Ollama へのアクセスに問題がありますか?", "Trouble accessing Ollama?": "Ollama へのアクセスに問題がありますか?",
"TTS Settings": "TTS 設定", "TTS Settings": "TTS 設定",
"Type": "",
"Type Hugging Face Resolve (Download) URL": "Hugging Face Resolve (ダウンロード) URL を入力してください", "Type Hugging Face Resolve (Download) URL": "Hugging Face Resolve (ダウンロード) URL を入力してください",
"Uh-oh! There was an issue connecting to {{provider}}.": "おっと! {{provider}} への接続に問題が発生しました。", "Uh-oh! There was an issue connecting to {{provider}}.": "おっと! {{provider}} への接続に問題が発生しました。",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "不明なファイルタイプ '{{file_type}}' ですが、プレーンテキストとして受け入れて処理します", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "不明なファイルタイプ '{{file_type}}' ですが、プレーンテキストとして受け入れて処理します",
@ -464,6 +468,7 @@
"variable": "変数", "variable": "変数",
"variable to have them replaced with clipboard content.": "クリップボードの内容に置き換える変数。", "variable to have them replaced with clipboard content.": "クリップボードの内容に置き換える変数。",
"Version": "バージョン", "Version": "バージョン",
"Warning": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "警告: 埋め込みモデルを更新または変更した場合は、すべてのドキュメントを再インポートする必要があります。", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "警告: 埋め込みモデルを更新または変更した場合は、すべてのドキュメントを再インポートする必要があります。",
"Web": "ウェブ", "Web": "ウェブ",
"Web Loader Settings": "Web 読み込み設定", "Web Loader Settings": "Web 読み込み設定",

View File

@ -47,6 +47,7 @@
"API keys": "API გასაღები", "API keys": "API გასაღები",
"April": "აპრილი", "April": "აპრილი",
"Archive": "არქივი", "Archive": "არქივი",
"Archive All Chats": "",
"Archived Chats": "ჩატის ისტორიის არქივი", "Archived Chats": "ჩატის ისტორიის არქივი",
"are allowed - Activate this command by typing": "დაშვებულია - ბრძანების გასააქტიურებლად აკრიფეთ:", "are allowed - Activate this command by typing": "დაშვებულია - ბრძანების გასააქტიურებლად აკრიფეთ:",
"Are you sure?": "დარწმუნებული ხარ?", "Are you sure?": "დარწმუნებული ხარ?",
@ -61,6 +62,7 @@
"available!": "ხელმისაწვდომია!", "available!": "ხელმისაწვდომია!",
"Back": "უკან", "Back": "უკან",
"Bad Response": "ხარვეზი", "Bad Response": "ხარვეზი",
"Banners": "",
"Base Model (From)": "", "Base Model (From)": "",
"before": "ადგილზე", "before": "ადგილზე",
"Being lazy": "ჩაიტყვევა", "Being lazy": "ჩაიტყვევა",
@ -119,7 +121,6 @@
"Custom": "საკუთარი", "Custom": "საკუთარი",
"Customize models for a specific purpose": "", "Customize models for a specific purpose": "",
"Dark": "მუქი", "Dark": "მუქი",
"Dashboard": "პანელი",
"Database": "მონაცემთა ბაზა", "Database": "მონაცემთა ბაზა",
"December": "დეკემბერი", "December": "დეკემბერი",
"Default": "დეფოლტი", "Default": "დეფოლტი",
@ -187,6 +188,7 @@
"Enter Your Full Name": "შეიყვანეთ თქვენი სრული სახელი", "Enter Your Full Name": "შეიყვანეთ თქვენი სრული სახელი",
"Enter Your Password": "შეიყვანეთ თქვენი პაროლი", "Enter Your Password": "შეიყვანეთ თქვენი პაროლი",
"Enter Your Role": "შეიყვანეთ თქვენი როლი", "Enter Your Role": "შეიყვანეთ თქვენი როლი",
"Error": "",
"Experimental": "ექსპერიმენტალური", "Experimental": "ექსპერიმენტალური",
"Export All Chats (All Users)": "ექსპორტი ყველა ჩათი (ყველა მომხმარებელი)", "Export All Chats (All Users)": "ექსპორტი ყველა ჩათი (ყველა მომხმარებელი)",
"Export Chats": "მიმოწერის ექსპორტირება", "Export Chats": "მიმოწერის ექსპორტირება",
@ -226,6 +228,7 @@
"Import Models": "", "Import Models": "",
"Import Prompts": "მოთხოვნების იმპორტი", "Import Prompts": "მოთხოვნების იმპორტი",
"Include `--api` flag when running stable-diffusion-webui": "ჩართეთ `--api` დროშა stable-diffusion-webui-ის გაშვებისას", "Include `--api` flag when running stable-diffusion-webui": "ჩართეთ `--api` დროშა stable-diffusion-webui-ის გაშვებისას",
"Info": "",
"Input commands": "შეყვანით ბრძანებებს", "Input commands": "შეყვანით ბრძანებებს",
"Interface": "ინტერფეისი", "Interface": "ინტერფეისი",
"Invalid Tag": "არასწორი ტეგი", "Invalid Tag": "არასწორი ტეგი",
@ -310,7 +313,6 @@
"OpenAI URL/Key required.": "OpenAI URL/Key აუცილებელია", "OpenAI URL/Key required.": "OpenAI URL/Key აუცილებელია",
"or": "ან", "or": "ან",
"Other": "სხვა", "Other": "სხვა",
"Overview": "ოვერვიუ",
"Password": "პაროლი", "Password": "პაროლი",
"PDF document (.pdf)": "PDF დოკუმენტი (.pdf)", "PDF document (.pdf)": "PDF დოკუმენტი (.pdf)",
"PDF Extract Images (OCR)": "PDF იდან ამოღებული სურათები (OCR)", "PDF Extract Images (OCR)": "PDF იდან ამოღებული სურათები (OCR)",
@ -361,6 +363,7 @@
"Scan for documents from {{path}}": "დოკუმენტების სკანირება {{ path}}-დან", "Scan for documents from {{path}}": "დოკუმენტების სკანირება {{ path}}-დან",
"Search": "ძიება", "Search": "ძიება",
"Search a model": "მოდელის ძიება", "Search a model": "მოდელის ძიება",
"Search Chats": "",
"Search Documents": "დოკუმენტების ძიება", "Search Documents": "დოკუმენტების ძიება",
"Search Models": "", "Search Models": "",
"Search Prompts": "მოთხოვნების ძიება", "Search Prompts": "მოთხოვნების ძიება",
@ -444,6 +447,7 @@
"Top P": "ტოპ P", "Top P": "ტოპ P",
"Trouble accessing Ollama?": "Ollama-ს ვერ უკავშირდები?", "Trouble accessing Ollama?": "Ollama-ს ვერ უკავშირდები?",
"TTS Settings": "TTS პარამეტრები", "TTS Settings": "TTS პარამეტრები",
"Type": "",
"Type Hugging Face Resolve (Download) URL": "სცადე გადმოწერო Hugging Face Resolve URL", "Type Hugging Face Resolve (Download) URL": "სცადე გადმოწერო Hugging Face Resolve URL",
"Uh-oh! There was an issue connecting to {{provider}}.": "{{provider}}-თან დაკავშირების პრობლემა წარმოიშვა.", "Uh-oh! There was an issue connecting to {{provider}}.": "{{provider}}-თან დაკავშირების პრობლემა წარმოიშვა.",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "უცნობი ფაილის ტიპი „{{file_type}}“, მაგრამ მიიღება და განიხილება როგორც მარტივი ტექსტი", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "უცნობი ფაილის ტიპი „{{file_type}}“, მაგრამ მიიღება და განიხილება როგორც მარტივი ტექსტი",
@ -464,6 +468,7 @@
"variable": "ცვლადი", "variable": "ცვლადი",
"variable to have them replaced with clipboard content.": "ცვლადი, რომ შეცვალოს ისინი ბუფერში შიგთავსით.", "variable to have them replaced with clipboard content.": "ცვლადი, რომ შეცვალოს ისინი ბუფერში შიგთავსით.",
"Version": "ვერსია", "Version": "ვერსია",
"Warning": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "გაფრთხილება: თუ განაახლებთ ან შეცვლით ჩანერგვის მოდელს, მოგიწევთ ყველა დოკუმენტის ხელახლა იმპორტი.", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "გაფრთხილება: თუ განაახლებთ ან შეცვლით ჩანერგვის მოდელს, მოგიწევთ ყველა დოკუმენტის ხელახლა იმპორტი.",
"Web": "ვები", "Web": "ვები",
"Web Loader Settings": "ვების ჩატარების პარამეტრები", "Web Loader Settings": "ვების ჩატარების პარამეტრები",

View File

@ -47,6 +47,7 @@
"API keys": "API 키", "API keys": "API 키",
"April": "4월", "April": "4월",
"Archive": "아카이브", "Archive": "아카이브",
"Archive All Chats": "",
"Archived Chats": "채팅 기록 아카이브", "Archived Chats": "채팅 기록 아카이브",
"are allowed - Activate this command by typing": "허용됩니다 - 이 명령을 활성화하려면 입력하세요.", "are allowed - Activate this command by typing": "허용됩니다 - 이 명령을 활성화하려면 입력하세요.",
"Are you sure?": "확실합니까?", "Are you sure?": "확실합니까?",
@ -61,6 +62,7 @@
"available!": "사용 가능!", "available!": "사용 가능!",
"Back": "뒤로가기", "Back": "뒤로가기",
"Bad Response": "응답이 좋지 않습니다.", "Bad Response": "응답이 좋지 않습니다.",
"Banners": "",
"Base Model (From)": "", "Base Model (From)": "",
"before": "이전", "before": "이전",
"Being lazy": "게으름 피우기", "Being lazy": "게으름 피우기",
@ -119,7 +121,6 @@
"Custom": "사용자 정의", "Custom": "사용자 정의",
"Customize models for a specific purpose": "", "Customize models for a specific purpose": "",
"Dark": "어두운", "Dark": "어두운",
"Dashboard": "대시보드",
"Database": "데이터베이스", "Database": "데이터베이스",
"December": "12월", "December": "12월",
"Default": "기본값", "Default": "기본값",
@ -187,6 +188,7 @@
"Enter Your Full Name": "전체 이름 입력", "Enter Your Full Name": "전체 이름 입력",
"Enter Your Password": "비밀번호 입력", "Enter Your Password": "비밀번호 입력",
"Enter Your Role": "역할 입력", "Enter Your Role": "역할 입력",
"Error": "",
"Experimental": "실험적", "Experimental": "실험적",
"Export All Chats (All Users)": "모든 채팅 내보내기 (모든 사용자)", "Export All Chats (All Users)": "모든 채팅 내보내기 (모든 사용자)",
"Export Chats": "채팅 내보내기", "Export Chats": "채팅 내보내기",
@ -226,6 +228,7 @@
"Import Models": "", "Import Models": "",
"Import Prompts": "프롬프트 가져오기", "Import Prompts": "프롬프트 가져오기",
"Include `--api` flag when running stable-diffusion-webui": "stable-diffusion-webui를 실행할 때 '--api' 플래그 포함", "Include `--api` flag when running stable-diffusion-webui": "stable-diffusion-webui를 실행할 때 '--api' 플래그 포함",
"Info": "",
"Input commands": "입력 명령", "Input commands": "입력 명령",
"Interface": "인터페이스", "Interface": "인터페이스",
"Invalid Tag": "잘못된 태그", "Invalid Tag": "잘못된 태그",
@ -310,7 +313,6 @@
"OpenAI URL/Key required.": "OpenAI URL/Key가 필요합니다.", "OpenAI URL/Key required.": "OpenAI URL/Key가 필요합니다.",
"or": "또는", "or": "또는",
"Other": "기타", "Other": "기타",
"Overview": "개요",
"Password": "비밀번호", "Password": "비밀번호",
"PDF document (.pdf)": "PDF 문서 (.pdf)", "PDF document (.pdf)": "PDF 문서 (.pdf)",
"PDF Extract Images (OCR)": "PDF에서 이미지 추출 (OCR)", "PDF Extract Images (OCR)": "PDF에서 이미지 추출 (OCR)",
@ -361,6 +363,7 @@
"Scan for documents from {{path}}": "{{path}}에서 문서 스캔", "Scan for documents from {{path}}": "{{path}}에서 문서 스캔",
"Search": "검색", "Search": "검색",
"Search a model": "모델 검색", "Search a model": "모델 검색",
"Search Chats": "",
"Search Documents": "문서 검색", "Search Documents": "문서 검색",
"Search Models": "", "Search Models": "",
"Search Prompts": "프롬프트 검색", "Search Prompts": "프롬프트 검색",
@ -444,6 +447,7 @@
"Top P": "Top P", "Top P": "Top P",
"Trouble accessing Ollama?": "Ollama에 접근하는 데 문제가 있나요?", "Trouble accessing Ollama?": "Ollama에 접근하는 데 문제가 있나요?",
"TTS Settings": "TTS 설정", "TTS Settings": "TTS 설정",
"Type": "",
"Type Hugging Face Resolve (Download) URL": "Hugging Face Resolve (다운로드) URL 입력", "Type Hugging Face Resolve (Download) URL": "Hugging Face Resolve (다운로드) URL 입력",
"Uh-oh! There was an issue connecting to {{provider}}.": "앗! {{provider}}에 연결하는 데 문제가 있었습니다.", "Uh-oh! There was an issue connecting to {{provider}}.": "앗! {{provider}}에 연결하는 데 문제가 있었습니다.",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "알 수 없는 파일 유형 '{{file_type}}', 하지만 일반 텍스트로 허용하고 처리합니다.", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "알 수 없는 파일 유형 '{{file_type}}', 하지만 일반 텍스트로 허용하고 처리합니다.",
@ -464,6 +468,7 @@
"variable": "변수", "variable": "변수",
"variable to have them replaced with clipboard content.": "변수를 사용하여 클립보드 내용으로 바꾸세요.", "variable to have them replaced with clipboard content.": "변수를 사용하여 클립보드 내용으로 바꾸세요.",
"Version": "버전", "Version": "버전",
"Warning": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "웹 로더를 업데이트하거나 변경할 경우 모든 문서를 다시 가져와야 합니다.", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "웹 로더를 업데이트하거나 변경할 경우 모든 문서를 다시 가져와야 합니다.",
"Web": "웹", "Web": "웹",
"Web Loader Settings": "웹 로더 설정", "Web Loader Settings": "웹 로더 설정",

View File

@ -47,6 +47,7 @@
"API keys": "API keys", "API keys": "API keys",
"April": "April", "April": "April",
"Archive": "Archief", "Archive": "Archief",
"Archive All Chats": "",
"Archived Chats": "chatrecord", "Archived Chats": "chatrecord",
"are allowed - Activate this command by typing": "zijn toegestaan - Activeer deze commando door te typen", "are allowed - Activate this command by typing": "zijn toegestaan - Activeer deze commando door te typen",
"Are you sure?": "Zeker weten?", "Are you sure?": "Zeker weten?",
@ -61,6 +62,7 @@
"available!": "beschikbaar!", "available!": "beschikbaar!",
"Back": "Terug", "Back": "Terug",
"Bad Response": "Ongeldig antwoord", "Bad Response": "Ongeldig antwoord",
"Banners": "",
"Base Model (From)": "", "Base Model (From)": "",
"before": "voor", "before": "voor",
"Being lazy": "Lustig zijn", "Being lazy": "Lustig zijn",
@ -119,7 +121,6 @@
"Custom": "Aangepast", "Custom": "Aangepast",
"Customize models for a specific purpose": "", "Customize models for a specific purpose": "",
"Dark": "Donker", "Dark": "Donker",
"Dashboard": "Dashboard",
"Database": "Database", "Database": "Database",
"December": "December", "December": "December",
"Default": "Standaard", "Default": "Standaard",
@ -187,6 +188,7 @@
"Enter Your Full Name": "Voer je Volledige Naam in", "Enter Your Full Name": "Voer je Volledige Naam in",
"Enter Your Password": "Voer je Wachtwoord in", "Enter Your Password": "Voer je Wachtwoord in",
"Enter Your Role": "Voer je Rol in", "Enter Your Role": "Voer je Rol in",
"Error": "",
"Experimental": "Experimenteel", "Experimental": "Experimenteel",
"Export All Chats (All Users)": "Exporteer Alle Chats (Alle Gebruikers)", "Export All Chats (All Users)": "Exporteer Alle Chats (Alle Gebruikers)",
"Export Chats": "Exporteer Chats", "Export Chats": "Exporteer Chats",
@ -226,6 +228,7 @@
"Import Models": "", "Import Models": "",
"Import Prompts": "Importeer Prompts", "Import Prompts": "Importeer Prompts",
"Include `--api` flag when running stable-diffusion-webui": "Voeg `--api` vlag toe bij het uitvoeren van stable-diffusion-webui", "Include `--api` flag when running stable-diffusion-webui": "Voeg `--api` vlag toe bij het uitvoeren van stable-diffusion-webui",
"Info": "",
"Input commands": "Voer commando's in", "Input commands": "Voer commando's in",
"Interface": "Interface", "Interface": "Interface",
"Invalid Tag": "Ongeldige Tag", "Invalid Tag": "Ongeldige Tag",
@ -310,7 +313,6 @@
"OpenAI URL/Key required.": "OpenAI URL/Sleutel vereist.", "OpenAI URL/Key required.": "OpenAI URL/Sleutel vereist.",
"or": "of", "or": "of",
"Other": "Andere", "Other": "Andere",
"Overview": "Overzicht",
"Password": "Wachtwoord", "Password": "Wachtwoord",
"PDF document (.pdf)": "PDF document (.pdf)", "PDF document (.pdf)": "PDF document (.pdf)",
"PDF Extract Images (OCR)": "PDF Extract Afbeeldingen (OCR)", "PDF Extract Images (OCR)": "PDF Extract Afbeeldingen (OCR)",
@ -361,6 +363,7 @@
"Scan for documents from {{path}}": "Scan voor documenten van {{path}}", "Scan for documents from {{path}}": "Scan voor documenten van {{path}}",
"Search": "Zoeken", "Search": "Zoeken",
"Search a model": "Zoek een model", "Search a model": "Zoek een model",
"Search Chats": "",
"Search Documents": "Zoek Documenten", "Search Documents": "Zoek Documenten",
"Search Models": "", "Search Models": "",
"Search Prompts": "Zoek Prompts", "Search Prompts": "Zoek Prompts",
@ -444,6 +447,7 @@
"Top P": "Top P", "Top P": "Top P",
"Trouble accessing Ollama?": "Problemen met toegang tot Ollama?", "Trouble accessing Ollama?": "Problemen met toegang tot Ollama?",
"TTS Settings": "TTS instellingen", "TTS Settings": "TTS instellingen",
"Type": "",
"Type Hugging Face Resolve (Download) URL": "Type Hugging Face Resolve (Download) URL", "Type Hugging Face Resolve (Download) URL": "Type Hugging Face Resolve (Download) URL",
"Uh-oh! There was an issue connecting to {{provider}}.": "Uh-oh! Er was een probleem met verbinden met {{provider}}.", "Uh-oh! There was an issue connecting to {{provider}}.": "Uh-oh! Er was een probleem met verbinden met {{provider}}.",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Onbekend Bestandstype '{{file_type}}', maar accepteren en behandelen als platte tekst", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Onbekend Bestandstype '{{file_type}}', maar accepteren en behandelen als platte tekst",
@ -464,6 +468,7 @@
"variable": "variabele", "variable": "variabele",
"variable to have them replaced with clipboard content.": "variabele om ze te laten vervangen door klembord inhoud.", "variable to have them replaced with clipboard content.": "variabele om ze te laten vervangen door klembord inhoud.",
"Version": "Versie", "Version": "Versie",
"Warning": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Warning: Als je de embedding model bijwerkt of wijzigt, moet je alle documenten opnieuw importeren.", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "Warning: Als je de embedding model bijwerkt of wijzigt, moet je alle documenten opnieuw importeren.",
"Web": "Web", "Web": "Web",
"Web Loader Settings": "Web Loader instellingen", "Web Loader Settings": "Web Loader instellingen",

View File

@ -47,6 +47,7 @@
"API keys": "API ਕੁੰਜੀਆਂ", "API keys": "API ਕੁੰਜੀਆਂ",
"April": "ਅਪ੍ਰੈਲ", "April": "ਅਪ੍ਰੈਲ",
"Archive": "ਆਰਕਾਈਵ", "Archive": "ਆਰਕਾਈਵ",
"Archive All Chats": "",
"Archived Chats": "ਆਰਕਾਈਵ ਕੀਤੀਆਂ ਗੱਲਾਂ", "Archived Chats": "ਆਰਕਾਈਵ ਕੀਤੀਆਂ ਗੱਲਾਂ",
"are allowed - Activate this command by typing": "ਅਨੁਮਤ ਹਨ - ਇਸ ਕਮਾਂਡ ਨੂੰ ਟਾਈਪ ਕਰਕੇ ਸਰਗਰਮ ਕਰੋ", "are allowed - Activate this command by typing": "ਅਨੁਮਤ ਹਨ - ਇਸ ਕਮਾਂਡ ਨੂੰ ਟਾਈਪ ਕਰਕੇ ਸਰਗਰਮ ਕਰੋ",
"Are you sure?": "ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ ਹੋ?", "Are you sure?": "ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ ਹੋ?",
@ -61,6 +62,7 @@
"available!": "ਉਪਲਬਧ ਹੈ!", "available!": "ਉਪਲਬਧ ਹੈ!",
"Back": "ਵਾਪਸ", "Back": "ਵਾਪਸ",
"Bad Response": "ਖਰਾਬ ਜਵਾਬ", "Bad Response": "ਖਰਾਬ ਜਵਾਬ",
"Banners": "",
"Base Model (From)": "", "Base Model (From)": "",
"before": "ਪਹਿਲਾਂ", "before": "ਪਹਿਲਾਂ",
"Being lazy": "ਆਲਸੀ ਹੋਣਾ", "Being lazy": "ਆਲਸੀ ਹੋਣਾ",
@ -119,7 +121,6 @@
"Custom": "ਕਸਟਮ", "Custom": "ਕਸਟਮ",
"Customize models for a specific purpose": "", "Customize models for a specific purpose": "",
"Dark": "ਗੂੜ੍ਹਾ", "Dark": "ਗੂੜ੍ਹਾ",
"Dashboard": "ਡੈਸ਼ਬੋਰਡ",
"Database": "ਡਾਟਾਬੇਸ", "Database": "ਡਾਟਾਬੇਸ",
"December": "ਦਸੰਬਰ", "December": "ਦਸੰਬਰ",
"Default": "ਮੂਲ", "Default": "ਮੂਲ",
@ -187,6 +188,7 @@
"Enter Your Full Name": "ਆਪਣਾ ਪੂਰਾ ਨਾਮ ਦਰਜ ਕਰੋ", "Enter Your Full Name": "ਆਪਣਾ ਪੂਰਾ ਨਾਮ ਦਰਜ ਕਰੋ",
"Enter Your Password": "ਆਪਣਾ ਪਾਸਵਰਡ ਦਰਜ ਕਰੋ", "Enter Your Password": "ਆਪਣਾ ਪਾਸਵਰਡ ਦਰਜ ਕਰੋ",
"Enter Your Role": "ਆਪਣੀ ਭੂਮਿਕਾ ਦਰਜ ਕਰੋ", "Enter Your Role": "ਆਪਣੀ ਭੂਮਿਕਾ ਦਰਜ ਕਰੋ",
"Error": "",
"Experimental": "ਪਰਮਾਣੂਕ੍ਰਿਤ", "Experimental": "ਪਰਮਾਣੂਕ੍ਰਿਤ",
"Export All Chats (All Users)": "ਸਾਰੀਆਂ ਗੱਲਾਂ ਨਿਰਯਾਤ ਕਰੋ (ਸਾਰੇ ਉਪਭੋਗਤਾ)", "Export All Chats (All Users)": "ਸਾਰੀਆਂ ਗੱਲਾਂ ਨਿਰਯਾਤ ਕਰੋ (ਸਾਰੇ ਉਪਭੋਗਤਾ)",
"Export Chats": "ਗੱਲਾਂ ਨਿਰਯਾਤ ਕਰੋ", "Export Chats": "ਗੱਲਾਂ ਨਿਰਯਾਤ ਕਰੋ",
@ -226,6 +228,7 @@
"Import Models": "", "Import Models": "",
"Import Prompts": "ਪ੍ਰੰਪਟ ਆਯਾਤ ਕਰੋ", "Import Prompts": "ਪ੍ਰੰਪਟ ਆਯਾਤ ਕਰੋ",
"Include `--api` flag when running stable-diffusion-webui": "ਸਟੇਬਲ-ਡਿਫਿਊਸ਼ਨ-ਵੈਬਯੂਆਈ ਚਲਾਉਣ ਸਮੇਂ `--api` ਝੰਡਾ ਸ਼ਾਮਲ ਕਰੋ", "Include `--api` flag when running stable-diffusion-webui": "ਸਟੇਬਲ-ਡਿਫਿਊਸ਼ਨ-ਵੈਬਯੂਆਈ ਚਲਾਉਣ ਸਮੇਂ `--api` ਝੰਡਾ ਸ਼ਾਮਲ ਕਰੋ",
"Info": "",
"Input commands": "ਇਨਪੁਟ ਕਮਾਂਡਾਂ", "Input commands": "ਇਨਪੁਟ ਕਮਾਂਡਾਂ",
"Interface": "ਇੰਟਰਫੇਸ", "Interface": "ਇੰਟਰਫੇਸ",
"Invalid Tag": "ਗਲਤ ਟੈਗ", "Invalid Tag": "ਗਲਤ ਟੈਗ",
@ -310,7 +313,6 @@
"OpenAI URL/Key required.": "ਓਪਨਏਆਈ URL/ਕੁੰਜੀ ਦੀ ਲੋੜ ਹੈ।", "OpenAI URL/Key required.": "ਓਪਨਏਆਈ URL/ਕੁੰਜੀ ਦੀ ਲੋੜ ਹੈ।",
"or": "ਜਾਂ", "or": "ਜਾਂ",
"Other": "ਹੋਰ", "Other": "ਹੋਰ",
"Overview": "ਸੰਖੇਪ",
"Password": "ਪਾਸਵਰਡ", "Password": "ਪਾਸਵਰਡ",
"PDF document (.pdf)": "PDF ਡਾਕੂਮੈਂਟ (.pdf)", "PDF document (.pdf)": "PDF ਡਾਕੂਮੈਂਟ (.pdf)",
"PDF Extract Images (OCR)": "PDF ਚਿੱਤਰ ਕੱਢੋ (OCR)", "PDF Extract Images (OCR)": "PDF ਚਿੱਤਰ ਕੱਢੋ (OCR)",
@ -361,6 +363,7 @@
"Scan for documents from {{path}}": "{{path}} ਤੋਂ ਡਾਕੂਮੈਂਟਾਂ ਲਈ ਸਕੈਨ ਕਰੋ", "Scan for documents from {{path}}": "{{path}} ਤੋਂ ਡਾਕੂਮੈਂਟਾਂ ਲਈ ਸਕੈਨ ਕਰੋ",
"Search": "ਖੋਜ", "Search": "ਖੋਜ",
"Search a model": "ਇੱਕ ਮਾਡਲ ਖੋਜੋ", "Search a model": "ਇੱਕ ਮਾਡਲ ਖੋਜੋ",
"Search Chats": "",
"Search Documents": "ਡਾਕੂਮੈਂਟ ਖੋਜੋ", "Search Documents": "ਡਾਕੂਮੈਂਟ ਖੋਜੋ",
"Search Models": "", "Search Models": "",
"Search Prompts": "ਪ੍ਰੰਪਟ ਖੋਜੋ", "Search Prompts": "ਪ੍ਰੰਪਟ ਖੋਜੋ",
@ -444,6 +447,7 @@
"Top P": "ਸਿਖਰ P", "Top P": "ਸਿਖਰ P",
"Trouble accessing Ollama?": "ਓਲਾਮਾ ਤੱਕ ਪਹੁੰਚਣ ਵਿੱਚ ਮੁਸ਼ਕਲ?", "Trouble accessing Ollama?": "ਓਲਾਮਾ ਤੱਕ ਪਹੁੰਚਣ ਵਿੱਚ ਮੁਸ਼ਕਲ?",
"TTS Settings": "TTS ਸੈਟਿੰਗਾਂ", "TTS Settings": "TTS ਸੈਟਿੰਗਾਂ",
"Type": "",
"Type Hugging Face Resolve (Download) URL": "Hugging Face Resolve (ਡਾਊਨਲੋਡ) URL ਟਾਈਪ ਕਰੋ", "Type Hugging Face Resolve (Download) URL": "Hugging Face Resolve (ਡਾਊਨਲੋਡ) URL ਟਾਈਪ ਕਰੋ",
"Uh-oh! There was an issue connecting to {{provider}}.": "ਓਹੋ! {{provider}} ਨਾਲ ਕਨੈਕਟ ਕਰਨ ਵਿੱਚ ਸਮੱਸਿਆ ਆਈ।", "Uh-oh! There was an issue connecting to {{provider}}.": "ਓਹੋ! {{provider}} ਨਾਲ ਕਨੈਕਟ ਕਰਨ ਵਿੱਚ ਸਮੱਸਿਆ ਆਈ।",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "ਅਣਜਾਣ ਫਾਈਲ ਕਿਸਮ '{{file_type}}', ਪਰ ਸਧਾਰਨ ਪਾਠ ਵਜੋਂ ਸਵੀਕਾਰ ਕਰਦੇ ਹੋਏ", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "ਅਣਜਾਣ ਫਾਈਲ ਕਿਸਮ '{{file_type}}', ਪਰ ਸਧਾਰਨ ਪਾਠ ਵਜੋਂ ਸਵੀਕਾਰ ਕਰਦੇ ਹੋਏ",
@ -464,6 +468,7 @@
"variable": "ਵੈਰੀਏਬਲ", "variable": "ਵੈਰੀਏਬਲ",
"variable to have them replaced with clipboard content.": "ਕਲਿੱਪਬੋਰਡ ਸਮੱਗਰੀ ਨਾਲ ਬਦਲਣ ਲਈ ਵੈਰੀਏਬਲ।", "variable to have them replaced with clipboard content.": "ਕਲਿੱਪਬੋਰਡ ਸਮੱਗਰੀ ਨਾਲ ਬਦਲਣ ਲਈ ਵੈਰੀਏਬਲ।",
"Version": "ਵਰਜਨ", "Version": "ਵਰਜਨ",
"Warning": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "ਚੇਤਾਵਨੀ: ਜੇ ਤੁਸੀਂ ਆਪਣਾ ਐਮਬੈੱਡਿੰਗ ਮਾਡਲ ਅੱਪਡੇਟ ਜਾਂ ਬਦਲਦੇ ਹੋ, ਤਾਂ ਤੁਹਾਨੂੰ ਸਾਰੇ ਡਾਕੂਮੈਂਟ ਮੁੜ ਆਯਾਤ ਕਰਨ ਦੀ ਲੋੜ ਹੋਵੇਗੀ।", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "ਚੇਤਾਵਨੀ: ਜੇ ਤੁਸੀਂ ਆਪਣਾ ਐਮਬੈੱਡਿੰਗ ਮਾਡਲ ਅੱਪਡੇਟ ਜਾਂ ਬਦਲਦੇ ਹੋ, ਤਾਂ ਤੁਹਾਨੂੰ ਸਾਰੇ ਡਾਕੂਮੈਂਟ ਮੁੜ ਆਯਾਤ ਕਰਨ ਦੀ ਲੋੜ ਹੋਵੇਗੀ।",
"Web": "ਵੈਬ", "Web": "ਵੈਬ",
"Web Loader Settings": "ਵੈਬ ਲੋਡਰ ਸੈਟਿੰਗਾਂ", "Web Loader Settings": "ਵੈਬ ਲੋਡਰ ਸੈਟਿੰਗਾਂ",

View File

@ -47,6 +47,7 @@
"API keys": "Klucze API", "API keys": "Klucze API",
"April": "Kwiecień", "April": "Kwiecień",
"Archive": "Archiwum", "Archive": "Archiwum",
"Archive All Chats": "",
"Archived Chats": "Zarchiwizowane czaty", "Archived Chats": "Zarchiwizowane czaty",
"are allowed - Activate this command by typing": "są dozwolone - Aktywuj to polecenie, wpisując", "are allowed - Activate this command by typing": "są dozwolone - Aktywuj to polecenie, wpisując",
"Are you sure?": "Jesteś pewien?", "Are you sure?": "Jesteś pewien?",
@ -61,6 +62,7 @@
"available!": "dostępny!", "available!": "dostępny!",
"Back": "Wstecz", "Back": "Wstecz",
"Bad Response": "Zła odpowiedź", "Bad Response": "Zła odpowiedź",
"Banners": "",
"Base Model (From)": "", "Base Model (From)": "",
"before": "przed", "before": "przed",
"Being lazy": "Jest leniwy", "Being lazy": "Jest leniwy",
@ -119,7 +121,6 @@
"Custom": "Niestandardowy", "Custom": "Niestandardowy",
"Customize models for a specific purpose": "", "Customize models for a specific purpose": "",
"Dark": "Ciemny", "Dark": "Ciemny",
"Dashboard": "Dashboard",
"Database": "Baza danych", "Database": "Baza danych",
"December": "Grudzień", "December": "Grudzień",
"Default": "Domyślny", "Default": "Domyślny",
@ -187,6 +188,7 @@
"Enter Your Full Name": "Wprowadź swoje imię i nazwisko", "Enter Your Full Name": "Wprowadź swoje imię i nazwisko",
"Enter Your Password": "Wprowadź swoje hasło", "Enter Your Password": "Wprowadź swoje hasło",
"Enter Your Role": "Wprowadź swoją rolę", "Enter Your Role": "Wprowadź swoją rolę",
"Error": "",
"Experimental": "Eksperymentalne", "Experimental": "Eksperymentalne",
"Export All Chats (All Users)": "Eksportuj wszystkie czaty (wszyscy użytkownicy)", "Export All Chats (All Users)": "Eksportuj wszystkie czaty (wszyscy użytkownicy)",
"Export Chats": "Eksportuj czaty", "Export Chats": "Eksportuj czaty",
@ -226,6 +228,7 @@
"Import Models": "", "Import Models": "",
"Import Prompts": "Importuj prompty", "Import Prompts": "Importuj prompty",
"Include `--api` flag when running stable-diffusion-webui": "Dołącz flagę `--api` podczas uruchamiania stable-diffusion-webui", "Include `--api` flag when running stable-diffusion-webui": "Dołącz flagę `--api` podczas uruchamiania stable-diffusion-webui",
"Info": "",
"Input commands": "Wprowadź komendy", "Input commands": "Wprowadź komendy",
"Interface": "Interfejs", "Interface": "Interfejs",
"Invalid Tag": "Nieprawidłowy tag", "Invalid Tag": "Nieprawidłowy tag",
@ -310,7 +313,6 @@
"OpenAI URL/Key required.": "URL/Klucz OpenAI jest wymagany.", "OpenAI URL/Key required.": "URL/Klucz OpenAI jest wymagany.",
"or": "lub", "or": "lub",
"Other": "Inne", "Other": "Inne",
"Overview": "Przegląd",
"Password": "Hasło", "Password": "Hasło",
"PDF document (.pdf)": "Dokument PDF (.pdf)", "PDF document (.pdf)": "Dokument PDF (.pdf)",
"PDF Extract Images (OCR)": "PDF Wyodrębnij obrazy (OCR)", "PDF Extract Images (OCR)": "PDF Wyodrębnij obrazy (OCR)",
@ -361,6 +363,7 @@
"Scan for documents from {{path}}": "Skanuj dokumenty z {{path}}", "Scan for documents from {{path}}": "Skanuj dokumenty z {{path}}",
"Search": "Szukaj", "Search": "Szukaj",
"Search a model": "Szukaj modelu", "Search a model": "Szukaj modelu",
"Search Chats": "",
"Search Documents": "Szukaj dokumentów", "Search Documents": "Szukaj dokumentów",
"Search Models": "", "Search Models": "",
"Search Prompts": "Szukaj promptów", "Search Prompts": "Szukaj promptów",
@ -444,6 +447,7 @@
"Top P": "Najlepsze P", "Top P": "Najlepsze P",
"Trouble accessing Ollama?": "Problemy z dostępem do Ollama?", "Trouble accessing Ollama?": "Problemy z dostępem do Ollama?",
"TTS Settings": "Ustawienia TTS", "TTS Settings": "Ustawienia TTS",
"Type": "",
"Type Hugging Face Resolve (Download) URL": "Wprowadź adres URL do pobrania z Hugging Face", "Type Hugging Face Resolve (Download) URL": "Wprowadź adres URL do pobrania z Hugging Face",
"Uh-oh! There was an issue connecting to {{provider}}.": "O nie! Wystąpił problem z połączeniem z {{provider}}.", "Uh-oh! There was an issue connecting to {{provider}}.": "O nie! Wystąpił problem z połączeniem z {{provider}}.",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Nieznany typ pliku '{{file_type}}', ale akceptowany i traktowany jako zwykły tekst", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Nieznany typ pliku '{{file_type}}', ale akceptowany i traktowany jako zwykły tekst",
@ -464,6 +468,7 @@
"variable": "zmienna", "variable": "zmienna",
"variable to have them replaced with clipboard content.": "zmienna która zostanie zastąpiona zawartością schowka.", "variable to have them replaced with clipboard content.": "zmienna która zostanie zastąpiona zawartością schowka.",
"Version": "Wersja", "Version": "Wersja",
"Warning": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Uwaga: Jeśli uaktualnisz lub zmienisz model osadzania, będziesz musiał ponownie zaimportować wszystkie dokumenty.", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "Uwaga: Jeśli uaktualnisz lub zmienisz model osadzania, będziesz musiał ponownie zaimportować wszystkie dokumenty.",
"Web": "Sieć", "Web": "Sieć",
"Web Loader Settings": "Ustawienia pobierania z sieci", "Web Loader Settings": "Ustawienia pobierania z sieci",

View File

@ -47,6 +47,7 @@
"API keys": "Chaves da API", "API keys": "Chaves da API",
"April": "Abril", "April": "Abril",
"Archive": "Arquivo", "Archive": "Arquivo",
"Archive All Chats": "",
"Archived Chats": "Bate-papos arquivados", "Archived Chats": "Bate-papos arquivados",
"are allowed - Activate this command by typing": "são permitidos - Ative este comando digitando", "are allowed - Activate this command by typing": "são permitidos - Ative este comando digitando",
"Are you sure?": "Tem certeza?", "Are you sure?": "Tem certeza?",
@ -61,6 +62,7 @@
"available!": "disponível!", "available!": "disponível!",
"Back": "Voltar", "Back": "Voltar",
"Bad Response": "Resposta ruim", "Bad Response": "Resposta ruim",
"Banners": "",
"Base Model (From)": "", "Base Model (From)": "",
"before": "antes", "before": "antes",
"Being lazy": "Ser preguiçoso", "Being lazy": "Ser preguiçoso",
@ -119,7 +121,6 @@
"Custom": "Personalizado", "Custom": "Personalizado",
"Customize models for a specific purpose": "", "Customize models for a specific purpose": "",
"Dark": "Escuro", "Dark": "Escuro",
"Dashboard": "Painel",
"Database": "Banco de dados", "Database": "Banco de dados",
"December": "Dezembro", "December": "Dezembro",
"Default": "Padrão", "Default": "Padrão",
@ -187,6 +188,7 @@
"Enter Your Full Name": "Digite seu Nome Completo", "Enter Your Full Name": "Digite seu Nome Completo",
"Enter Your Password": "Digite sua Senha", "Enter Your Password": "Digite sua Senha",
"Enter Your Role": "Digite sua Função", "Enter Your Role": "Digite sua Função",
"Error": "",
"Experimental": "Experimental", "Experimental": "Experimental",
"Export All Chats (All Users)": "Exportar Todos os Bate-papos (Todos os Usuários)", "Export All Chats (All Users)": "Exportar Todos os Bate-papos (Todos os Usuários)",
"Export Chats": "Exportar Bate-papos", "Export Chats": "Exportar Bate-papos",
@ -226,6 +228,7 @@
"Import Models": "", "Import Models": "",
"Import Prompts": "Importar Prompts", "Import Prompts": "Importar Prompts",
"Include `--api` flag when running stable-diffusion-webui": "Inclua a flag `--api` ao executar stable-diffusion-webui", "Include `--api` flag when running stable-diffusion-webui": "Inclua a flag `--api` ao executar stable-diffusion-webui",
"Info": "",
"Input commands": "Comandos de entrada", "Input commands": "Comandos de entrada",
"Interface": "Interface", "Interface": "Interface",
"Invalid Tag": "Etiqueta Inválida", "Invalid Tag": "Etiqueta Inválida",
@ -310,7 +313,6 @@
"OpenAI URL/Key required.": "URL/Chave da API OpenAI é necessária.", "OpenAI URL/Key required.": "URL/Chave da API OpenAI é necessária.",
"or": "ou", "or": "ou",
"Other": "Outro", "Other": "Outro",
"Overview": "Visão Geral",
"Password": "Senha", "Password": "Senha",
"PDF document (.pdf)": "Documento PDF (.pdf)", "PDF document (.pdf)": "Documento PDF (.pdf)",
"PDF Extract Images (OCR)": "Extrair Imagens de PDF (OCR)", "PDF Extract Images (OCR)": "Extrair Imagens de PDF (OCR)",
@ -361,6 +363,7 @@
"Scan for documents from {{path}}": "Digitalizar documentos de {{path}}", "Scan for documents from {{path}}": "Digitalizar documentos de {{path}}",
"Search": "Pesquisar", "Search": "Pesquisar",
"Search a model": "Pesquisar um modelo", "Search a model": "Pesquisar um modelo",
"Search Chats": "",
"Search Documents": "Pesquisar Documentos", "Search Documents": "Pesquisar Documentos",
"Search Models": "", "Search Models": "",
"Search Prompts": "Pesquisar Prompts", "Search Prompts": "Pesquisar Prompts",
@ -444,6 +447,7 @@
"Top P": "Top P", "Top P": "Top P",
"Trouble accessing Ollama?": "Problemas para acessar o Ollama?", "Trouble accessing Ollama?": "Problemas para acessar o Ollama?",
"TTS Settings": "Configurações TTS", "TTS Settings": "Configurações TTS",
"Type": "",
"Type Hugging Face Resolve (Download) URL": "Digite a URL do Hugging Face Resolve (Download)", "Type Hugging Face Resolve (Download) URL": "Digite a URL do Hugging Face Resolve (Download)",
"Uh-oh! There was an issue connecting to {{provider}}.": "Opa! Houve um problema ao conectar-se a {{provider}}.", "Uh-oh! There was an issue connecting to {{provider}}.": "Opa! Houve um problema ao conectar-se a {{provider}}.",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Tipo de arquivo desconhecido '{{file_type}}', mas aceitando e tratando como texto simples", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Tipo de arquivo desconhecido '{{file_type}}', mas aceitando e tratando como texto simples",
@ -464,6 +468,7 @@
"variable": "variável", "variable": "variável",
"variable to have them replaced with clipboard content.": "variável para que sejam substituídos pelo conteúdo da área de transferência.", "variable to have them replaced with clipboard content.": "variável para que sejam substituídos pelo conteúdo da área de transferência.",
"Version": "Versão", "Version": "Versão",
"Warning": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Aviso: Se você atualizar ou alterar seu modelo de incorporação, você precisará reimportar todos os documentos.", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "Aviso: Se você atualizar ou alterar seu modelo de incorporação, você precisará reimportar todos os documentos.",
"Web": "Web", "Web": "Web",
"Web Loader Settings": "Configurações do Carregador da Web", "Web Loader Settings": "Configurações do Carregador da Web",

View File

@ -47,6 +47,7 @@
"API keys": "Chaves da API", "API keys": "Chaves da API",
"April": "Abril", "April": "Abril",
"Archive": "Arquivo", "Archive": "Arquivo",
"Archive All Chats": "",
"Archived Chats": "Bate-papos arquivados", "Archived Chats": "Bate-papos arquivados",
"are allowed - Activate this command by typing": "são permitidos - Ative este comando digitando", "are allowed - Activate this command by typing": "são permitidos - Ative este comando digitando",
"Are you sure?": "Tem certeza?", "Are you sure?": "Tem certeza?",
@ -61,6 +62,7 @@
"available!": "disponível!", "available!": "disponível!",
"Back": "Voltar", "Back": "Voltar",
"Bad Response": "Resposta ruim", "Bad Response": "Resposta ruim",
"Banners": "",
"Base Model (From)": "", "Base Model (From)": "",
"before": "antes", "before": "antes",
"Being lazy": "Ser preguiçoso", "Being lazy": "Ser preguiçoso",
@ -119,7 +121,6 @@
"Custom": "Personalizado", "Custom": "Personalizado",
"Customize models for a specific purpose": "", "Customize models for a specific purpose": "",
"Dark": "Escuro", "Dark": "Escuro",
"Dashboard": "Painel",
"Database": "Banco de dados", "Database": "Banco de dados",
"December": "Dezembro", "December": "Dezembro",
"Default": "Padrão", "Default": "Padrão",
@ -187,6 +188,7 @@
"Enter Your Full Name": "Digite seu Nome Completo", "Enter Your Full Name": "Digite seu Nome Completo",
"Enter Your Password": "Digite sua Senha", "Enter Your Password": "Digite sua Senha",
"Enter Your Role": "Digite sua Função", "Enter Your Role": "Digite sua Função",
"Error": "",
"Experimental": "Experimental", "Experimental": "Experimental",
"Export All Chats (All Users)": "Exportar Todos os Bate-papos (Todos os Usuários)", "Export All Chats (All Users)": "Exportar Todos os Bate-papos (Todos os Usuários)",
"Export Chats": "Exportar Bate-papos", "Export Chats": "Exportar Bate-papos",
@ -226,6 +228,7 @@
"Import Models": "", "Import Models": "",
"Import Prompts": "Importar Prompts", "Import Prompts": "Importar Prompts",
"Include `--api` flag when running stable-diffusion-webui": "Inclua a flag `--api` ao executar stable-diffusion-webui", "Include `--api` flag when running stable-diffusion-webui": "Inclua a flag `--api` ao executar stable-diffusion-webui",
"Info": "",
"Input commands": "Comandos de entrada", "Input commands": "Comandos de entrada",
"Interface": "Interface", "Interface": "Interface",
"Invalid Tag": "Etiqueta Inválida", "Invalid Tag": "Etiqueta Inválida",
@ -310,7 +313,6 @@
"OpenAI URL/Key required.": "URL/Chave da API OpenAI é necessária.", "OpenAI URL/Key required.": "URL/Chave da API OpenAI é necessária.",
"or": "ou", "or": "ou",
"Other": "Outro", "Other": "Outro",
"Overview": "Visão Geral",
"Password": "Senha", "Password": "Senha",
"PDF document (.pdf)": "Documento PDF (.pdf)", "PDF document (.pdf)": "Documento PDF (.pdf)",
"PDF Extract Images (OCR)": "Extrair Imagens de PDF (OCR)", "PDF Extract Images (OCR)": "Extrair Imagens de PDF (OCR)",
@ -361,6 +363,7 @@
"Scan for documents from {{path}}": "Digitalizar documentos de {{path}}", "Scan for documents from {{path}}": "Digitalizar documentos de {{path}}",
"Search": "Pesquisar", "Search": "Pesquisar",
"Search a model": "Pesquisar um modelo", "Search a model": "Pesquisar um modelo",
"Search Chats": "",
"Search Documents": "Pesquisar Documentos", "Search Documents": "Pesquisar Documentos",
"Search Models": "", "Search Models": "",
"Search Prompts": "Pesquisar Prompts", "Search Prompts": "Pesquisar Prompts",
@ -444,6 +447,7 @@
"Top P": "Top P", "Top P": "Top P",
"Trouble accessing Ollama?": "Problemas para acessar o Ollama?", "Trouble accessing Ollama?": "Problemas para acessar o Ollama?",
"TTS Settings": "Configurações TTS", "TTS Settings": "Configurações TTS",
"Type": "",
"Type Hugging Face Resolve (Download) URL": "Digite a URL do Hugging Face Resolve (Download)", "Type Hugging Face Resolve (Download) URL": "Digite a URL do Hugging Face Resolve (Download)",
"Uh-oh! There was an issue connecting to {{provider}}.": "Opa! Houve um problema ao conectar-se a {{provider}}.", "Uh-oh! There was an issue connecting to {{provider}}.": "Opa! Houve um problema ao conectar-se a {{provider}}.",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Tipo de arquivo desconhecido '{{file_type}}', mas aceitando e tratando como texto simples", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Tipo de arquivo desconhecido '{{file_type}}', mas aceitando e tratando como texto simples",
@ -464,6 +468,7 @@
"variable": "variável", "variable": "variável",
"variable to have them replaced with clipboard content.": "variável para que sejam substituídos pelo conteúdo da área de transferência.", "variable to have them replaced with clipboard content.": "variável para que sejam substituídos pelo conteúdo da área de transferência.",
"Version": "Versão", "Version": "Versão",
"Warning": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Aviso: Se você atualizar ou alterar seu modelo de vetorização, você precisará reimportar todos os documentos.", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "Aviso: Se você atualizar ou alterar seu modelo de vetorização, você precisará reimportar todos os documentos.",
"Web": "Web", "Web": "Web",
"Web Loader Settings": "Configurações do Carregador da Web", "Web Loader Settings": "Configurações do Carregador da Web",

View File

@ -47,6 +47,7 @@
"API keys": "Ключи API", "API keys": "Ключи API",
"April": "Апрель", "April": "Апрель",
"Archive": "Архив", "Archive": "Архив",
"Archive All Chats": "",
"Archived Chats": "запис на чат", "Archived Chats": "запис на чат",
"are allowed - Activate this command by typing": "разрешено - активируйте эту команду вводом", "are allowed - Activate this command by typing": "разрешено - активируйте эту команду вводом",
"Are you sure?": "Вы уверены?", "Are you sure?": "Вы уверены?",
@ -61,6 +62,7 @@
"available!": "доступный!", "available!": "доступный!",
"Back": "Назад", "Back": "Назад",
"Bad Response": "Недопустимый ответ", "Bad Response": "Недопустимый ответ",
"Banners": "",
"Base Model (From)": "", "Base Model (From)": "",
"before": "до", "before": "до",
"Being lazy": "ленивый", "Being lazy": "ленивый",
@ -119,7 +121,6 @@
"Custom": "Пользовательский", "Custom": "Пользовательский",
"Customize models for a specific purpose": "", "Customize models for a specific purpose": "",
"Dark": "Тёмный", "Dark": "Тёмный",
"Dashboard": "Панель управления",
"Database": "База данных", "Database": "База данных",
"December": "Декабрь", "December": "Декабрь",
"Default": "По умолчанию", "Default": "По умолчанию",
@ -187,6 +188,7 @@
"Enter Your Full Name": "Введите ваше полное имя", "Enter Your Full Name": "Введите ваше полное имя",
"Enter Your Password": "Введите ваш пароль", "Enter Your Password": "Введите ваш пароль",
"Enter Your Role": "Введите вашу роль", "Enter Your Role": "Введите вашу роль",
"Error": "",
"Experimental": "Экспериментальное", "Experimental": "Экспериментальное",
"Export All Chats (All Users)": "Экспортировать все чаты (все пользователи)", "Export All Chats (All Users)": "Экспортировать все чаты (все пользователи)",
"Export Chats": "Экспортировать чаты", "Export Chats": "Экспортировать чаты",
@ -226,6 +228,7 @@
"Import Models": "", "Import Models": "",
"Import Prompts": "Импорт подсказок", "Import Prompts": "Импорт подсказок",
"Include `--api` flag when running stable-diffusion-webui": "Добавьте флаг `--api` при запуске stable-diffusion-webui", "Include `--api` flag when running stable-diffusion-webui": "Добавьте флаг `--api` при запуске stable-diffusion-webui",
"Info": "",
"Input commands": "Введите команды", "Input commands": "Введите команды",
"Interface": "Интерфейс", "Interface": "Интерфейс",
"Invalid Tag": "Недопустимый тег", "Invalid Tag": "Недопустимый тег",
@ -310,7 +313,6 @@
"OpenAI URL/Key required.": "Требуется URL-адрес API OpenAI или ключ API.", "OpenAI URL/Key required.": "Требуется URL-адрес API OpenAI или ключ API.",
"or": "или", "or": "или",
"Other": "Прочее", "Other": "Прочее",
"Overview": "Обзор",
"Password": "Пароль", "Password": "Пароль",
"PDF document (.pdf)": "PDF-документ (.pdf)", "PDF document (.pdf)": "PDF-документ (.pdf)",
"PDF Extract Images (OCR)": "Извлечение изображений из PDF (OCR)", "PDF Extract Images (OCR)": "Извлечение изображений из PDF (OCR)",
@ -361,6 +363,7 @@
"Scan for documents from {{path}}": "Сканирование документов из {{path}}", "Scan for documents from {{path}}": "Сканирование документов из {{path}}",
"Search": "Поиск", "Search": "Поиск",
"Search a model": "Поиск модели", "Search a model": "Поиск модели",
"Search Chats": "",
"Search Documents": "Поиск документов", "Search Documents": "Поиск документов",
"Search Models": "", "Search Models": "",
"Search Prompts": "Поиск промтов", "Search Prompts": "Поиск промтов",
@ -444,6 +447,7 @@
"Top P": "Top P", "Top P": "Top P",
"Trouble accessing Ollama?": "Проблемы с доступом к Ollama?", "Trouble accessing Ollama?": "Проблемы с доступом к Ollama?",
"TTS Settings": "Настройки TTS", "TTS Settings": "Настройки TTS",
"Type": "",
"Type Hugging Face Resolve (Download) URL": "Введите URL-адрес Hugging Face Resolve (загрузки)", "Type Hugging Face Resolve (Download) URL": "Введите URL-адрес Hugging Face Resolve (загрузки)",
"Uh-oh! There was an issue connecting to {{provider}}.": "Упс! Возникла проблема подключения к {{provider}}.", "Uh-oh! There was an issue connecting to {{provider}}.": "Упс! Возникла проблема подключения к {{provider}}.",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Неизвестный тип файла '{{file_type}}', но принимается и обрабатывается как обычный текст", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Неизвестный тип файла '{{file_type}}', но принимается и обрабатывается как обычный текст",
@ -464,6 +468,7 @@
"variable": "переменная", "variable": "переменная",
"variable to have them replaced with clipboard content.": "переменная, чтобы их заменить содержимым буфера обмена.", "variable to have them replaced with clipboard content.": "переменная, чтобы их заменить содержимым буфера обмена.",
"Version": "Версия", "Version": "Версия",
"Warning": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Предупреждение: Если вы обновите или измените модель эмбеддинга, вам нужно будет повторно импортировать все документы.", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "Предупреждение: Если вы обновите или измените модель эмбеддинга, вам нужно будет повторно импортировать все документы.",
"Web": "Веб", "Web": "Веб",
"Web Loader Settings": "Настройки загрузчика Web", "Web Loader Settings": "Настройки загрузчика Web",

View File

@ -47,6 +47,7 @@
"API keys": "API кључеви", "API keys": "API кључеви",
"April": "Април", "April": "Април",
"Archive": "Архива", "Archive": "Архива",
"Archive All Chats": "",
"Archived Chats": "Архивирана ћаскања", "Archived Chats": "Архивирана ћаскања",
"are allowed - Activate this command by typing": "су дозвољени - Покрените ову наредбу уношењем", "are allowed - Activate this command by typing": "су дозвољени - Покрените ову наредбу уношењем",
"Are you sure?": "Да ли сте сигурни?", "Are you sure?": "Да ли сте сигурни?",
@ -61,6 +62,7 @@
"available!": "доступно!", "available!": "доступно!",
"Back": "Назад", "Back": "Назад",
"Bad Response": "Лош одговор", "Bad Response": "Лош одговор",
"Banners": "",
"Base Model (From)": "", "Base Model (From)": "",
"before": "пре", "before": "пре",
"Being lazy": "Бити лењ", "Being lazy": "Бити лењ",
@ -119,7 +121,6 @@
"Custom": "Прилагођено", "Custom": "Прилагођено",
"Customize models for a specific purpose": "", "Customize models for a specific purpose": "",
"Dark": "Тамна", "Dark": "Тамна",
"Dashboard": "Контролна табла",
"Database": "База података", "Database": "База података",
"December": "Децембар", "December": "Децембар",
"Default": "Подразумевано", "Default": "Подразумевано",
@ -187,6 +188,7 @@
"Enter Your Full Name": "Унесите ваше име и презиме", "Enter Your Full Name": "Унесите ваше име и презиме",
"Enter Your Password": "Унесите вашу лозинку", "Enter Your Password": "Унесите вашу лозинку",
"Enter Your Role": "Унесите вашу улогу", "Enter Your Role": "Унесите вашу улогу",
"Error": "",
"Experimental": "Експериментално", "Experimental": "Експериментално",
"Export All Chats (All Users)": "Извези сва ћаскања (сви корисници)", "Export All Chats (All Users)": "Извези сва ћаскања (сви корисници)",
"Export Chats": "Извези ћаскања", "Export Chats": "Извези ћаскања",
@ -226,6 +228,7 @@
"Import Models": "", "Import Models": "",
"Import Prompts": "Увези упите", "Import Prompts": "Увези упите",
"Include `--api` flag when running stable-diffusion-webui": "Укључи `--api` заставицу при покретању stable-diffusion-webui", "Include `--api` flag when running stable-diffusion-webui": "Укључи `--api` заставицу при покретању stable-diffusion-webui",
"Info": "",
"Input commands": "Унеси наредбе", "Input commands": "Унеси наредбе",
"Interface": "Изглед", "Interface": "Изглед",
"Invalid Tag": "Неисправна ознака", "Invalid Tag": "Неисправна ознака",
@ -310,7 +313,6 @@
"OpenAI URL/Key required.": "Потребан је OpenAI URL/кључ.", "OpenAI URL/Key required.": "Потребан је OpenAI URL/кључ.",
"or": "или", "or": "или",
"Other": "Остало", "Other": "Остало",
"Overview": "Преглед",
"Password": "Лозинка", "Password": "Лозинка",
"PDF document (.pdf)": "PDF документ (.pdf)", "PDF document (.pdf)": "PDF документ (.pdf)",
"PDF Extract Images (OCR)": "Извлачење PDF слика (OCR)", "PDF Extract Images (OCR)": "Извлачење PDF слика (OCR)",
@ -361,6 +363,7 @@
"Scan for documents from {{path}}": "Скенирај документе из {{path}}", "Scan for documents from {{path}}": "Скенирај документе из {{path}}",
"Search": "Претражи", "Search": "Претражи",
"Search a model": "Претражи модел", "Search a model": "Претражи модел",
"Search Chats": "",
"Search Documents": "Претражи документе", "Search Documents": "Претражи документе",
"Search Models": "", "Search Models": "",
"Search Prompts": "Претражи упите", "Search Prompts": "Претражи упите",
@ -444,6 +447,7 @@
"Top P": "Топ П", "Top P": "Топ П",
"Trouble accessing Ollama?": "Проблеми са приступом Ollama-и?", "Trouble accessing Ollama?": "Проблеми са приступом Ollama-и?",
"TTS Settings": "TTS подешавања", "TTS Settings": "TTS подешавања",
"Type": "",
"Type Hugging Face Resolve (Download) URL": "Унесите Hugging Face Resolve (Download) адресу", "Type Hugging Face Resolve (Download) URL": "Унесите Hugging Face Resolve (Download) адресу",
"Uh-oh! There was an issue connecting to {{provider}}.": "Упс! Дошло је до проблема при повезивању са {{provider}}.", "Uh-oh! There was an issue connecting to {{provider}}.": "Упс! Дошло је до проблема при повезивању са {{provider}}.",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Непознат тип датотеке '{{file_type}}', али прихваћен и третиран као обичан текст", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Непознат тип датотеке '{{file_type}}', али прихваћен и третиран као обичан текст",
@ -464,6 +468,7 @@
"variable": "променљива", "variable": "променљива",
"variable to have them replaced with clipboard content.": "променљива за замену са садржајем оставе.", "variable to have them replaced with clipboard content.": "променљива за замену са садржајем оставе.",
"Version": "Издање", "Version": "Издање",
"Warning": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Упозорење: ако ажурирате или промените ваш модел уградње, мораћете поново да увезете све документе.", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "Упозорење: ако ажурирате или промените ваш модел уградње, мораћете поново да увезете све документе.",
"Web": "Веб", "Web": "Веб",
"Web Loader Settings": "Подешавања веб учитавача", "Web Loader Settings": "Подешавања веб учитавача",

View File

@ -47,6 +47,7 @@
"API keys": "API-nycklar", "API keys": "API-nycklar",
"April": "April", "April": "April",
"Archive": "Arkiv", "Archive": "Arkiv",
"Archive All Chats": "",
"Archived Chats": "Arkiverade chattar", "Archived Chats": "Arkiverade chattar",
"are allowed - Activate this command by typing": "är tillåtna - Aktivera detta kommando genom att skriva", "are allowed - Activate this command by typing": "är tillåtna - Aktivera detta kommando genom att skriva",
"Are you sure?": "Är du säker?", "Are you sure?": "Är du säker?",
@ -61,6 +62,7 @@
"available!": "tillgänglig!", "available!": "tillgänglig!",
"Back": "Tillbaka", "Back": "Tillbaka",
"Bad Response": "Felaktig respons", "Bad Response": "Felaktig respons",
"Banners": "",
"Base Model (From)": "", "Base Model (From)": "",
"before": "før", "before": "før",
"Being lazy": "Lägg till", "Being lazy": "Lägg till",
@ -119,7 +121,6 @@
"Custom": "Anpassad", "Custom": "Anpassad",
"Customize models for a specific purpose": "", "Customize models for a specific purpose": "",
"Dark": "Mörk", "Dark": "Mörk",
"Dashboard": "Instrumentbräda",
"Database": "Databas", "Database": "Databas",
"December": "December", "December": "December",
"Default": "Standard", "Default": "Standard",
@ -187,6 +188,7 @@
"Enter Your Full Name": "Ange ditt fullständiga namn", "Enter Your Full Name": "Ange ditt fullständiga namn",
"Enter Your Password": "Ange ditt lösenord", "Enter Your Password": "Ange ditt lösenord",
"Enter Your Role": "Ange din roll", "Enter Your Role": "Ange din roll",
"Error": "",
"Experimental": "Experimentell", "Experimental": "Experimentell",
"Export All Chats (All Users)": "Exportera alla chattar (alla användare)", "Export All Chats (All Users)": "Exportera alla chattar (alla användare)",
"Export Chats": "Exportera chattar", "Export Chats": "Exportera chattar",
@ -226,6 +228,7 @@
"Import Models": "", "Import Models": "",
"Import Prompts": "Importera prompts", "Import Prompts": "Importera prompts",
"Include `--api` flag when running stable-diffusion-webui": "Inkludera `--api`-flagga när du kör stabil-diffusion-webui", "Include `--api` flag when running stable-diffusion-webui": "Inkludera `--api`-flagga när du kör stabil-diffusion-webui",
"Info": "",
"Input commands": "Indatakommandon", "Input commands": "Indatakommandon",
"Interface": "Gränssnitt", "Interface": "Gränssnitt",
"Invalid Tag": "Ogiltig tagg", "Invalid Tag": "Ogiltig tagg",
@ -310,7 +313,6 @@
"OpenAI URL/Key required.": "OpenAI-URL/nyckel krävs.", "OpenAI URL/Key required.": "OpenAI-URL/nyckel krävs.",
"or": "eller", "or": "eller",
"Other": "Andra", "Other": "Andra",
"Overview": "Översikt",
"Password": "Lösenord", "Password": "Lösenord",
"PDF document (.pdf)": "PDF-dokument (.pdf)", "PDF document (.pdf)": "PDF-dokument (.pdf)",
"PDF Extract Images (OCR)": "PDF Extrahera bilder (OCR)", "PDF Extract Images (OCR)": "PDF Extrahera bilder (OCR)",
@ -361,6 +363,7 @@
"Scan for documents from {{path}}": "Skanna efter dokument från {{path}}", "Scan for documents from {{path}}": "Skanna efter dokument från {{path}}",
"Search": "Sök", "Search": "Sök",
"Search a model": "Sök efter en modell", "Search a model": "Sök efter en modell",
"Search Chats": "",
"Search Documents": "Sök dokument", "Search Documents": "Sök dokument",
"Search Models": "", "Search Models": "",
"Search Prompts": "Sök promptar", "Search Prompts": "Sök promptar",
@ -444,6 +447,7 @@
"Top P": "Topp P", "Top P": "Topp P",
"Trouble accessing Ollama?": "Problem med att komma åt Ollama?", "Trouble accessing Ollama?": "Problem med att komma åt Ollama?",
"TTS Settings": "TTS-inställningar", "TTS Settings": "TTS-inställningar",
"Type": "",
"Type Hugging Face Resolve (Download) URL": "Skriv Hugging Face Resolve (nedladdning) URL", "Type Hugging Face Resolve (Download) URL": "Skriv Hugging Face Resolve (nedladdning) URL",
"Uh-oh! There was an issue connecting to {{provider}}.": "Oj då! Det uppstod ett problem med att ansluta till {{provider}}.", "Uh-oh! There was an issue connecting to {{provider}}.": "Oj då! Det uppstod ett problem med att ansluta till {{provider}}.",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Okänd filtyp '{{file_type}}', men accepterar och behandlar som vanlig text", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Okänd filtyp '{{file_type}}', men accepterar och behandlar som vanlig text",
@ -464,6 +468,7 @@
"variable": "variabel", "variable": "variabel",
"variable to have them replaced with clipboard content.": "variabel för att få dem ersatta med urklippsinnehåll.", "variable to have them replaced with clipboard content.": "variabel för att få dem ersatta med urklippsinnehåll.",
"Version": "Version", "Version": "Version",
"Warning": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Varning: Om du uppdaterar eller ändrar din embedding modell måste du importera alla dokument igen.", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "Varning: Om du uppdaterar eller ändrar din embedding modell måste du importera alla dokument igen.",
"Web": "Webb", "Web": "Webb",
"Web Loader Settings": "Web Loader-inställningar", "Web Loader Settings": "Web Loader-inställningar",

View File

@ -47,6 +47,7 @@
"API keys": "API anahtarları", "API keys": "API anahtarları",
"April": "Nisan", "April": "Nisan",
"Archive": "Arşiv", "Archive": "Arşiv",
"Archive All Chats": "",
"Archived Chats": "Arşivlenmiş Sohbetler", "Archived Chats": "Arşivlenmiş Sohbetler",
"are allowed - Activate this command by typing": "izin verilir - Bu komutu yazarak etkinleştirin", "are allowed - Activate this command by typing": "izin verilir - Bu komutu yazarak etkinleştirin",
"Are you sure?": "Emin misiniz?", "Are you sure?": "Emin misiniz?",
@ -61,6 +62,7 @@
"available!": "mevcut!", "available!": "mevcut!",
"Back": "Geri", "Back": "Geri",
"Bad Response": "Kötü Yanıt", "Bad Response": "Kötü Yanıt",
"Banners": "",
"Base Model (From)": "", "Base Model (From)": "",
"before": "önce", "before": "önce",
"Being lazy": "Tembelleşiyor", "Being lazy": "Tembelleşiyor",
@ -119,7 +121,6 @@
"Custom": "Özel", "Custom": "Özel",
"Customize models for a specific purpose": "", "Customize models for a specific purpose": "",
"Dark": "Koyu", "Dark": "Koyu",
"Dashboard": "Panel",
"Database": "Veritabanı", "Database": "Veritabanı",
"December": "Aralık", "December": "Aralık",
"Default": "Varsayılan", "Default": "Varsayılan",
@ -187,6 +188,7 @@
"Enter Your Full Name": "Tam Adınızı Girin", "Enter Your Full Name": "Tam Adınızı Girin",
"Enter Your Password": "Parolanızı Girin", "Enter Your Password": "Parolanızı Girin",
"Enter Your Role": "Rolünüzü Girin", "Enter Your Role": "Rolünüzü Girin",
"Error": "",
"Experimental": "Deneysel", "Experimental": "Deneysel",
"Export All Chats (All Users)": "Tüm Sohbetleri Dışa Aktar (Tüm Kullanıcılar)", "Export All Chats (All Users)": "Tüm Sohbetleri Dışa Aktar (Tüm Kullanıcılar)",
"Export Chats": "Sohbetleri Dışa Aktar", "Export Chats": "Sohbetleri Dışa Aktar",
@ -226,6 +228,7 @@
"Import Models": "", "Import Models": "",
"Import Prompts": "Promptları İçe Aktar", "Import Prompts": "Promptları İçe Aktar",
"Include `--api` flag when running stable-diffusion-webui": "stable-diffusion-webui çalıştırılırken `--api` bayrağını dahil edin", "Include `--api` flag when running stable-diffusion-webui": "stable-diffusion-webui çalıştırılırken `--api` bayrağını dahil edin",
"Info": "",
"Input commands": "Giriş komutları", "Input commands": "Giriş komutları",
"Interface": "Arayüz", "Interface": "Arayüz",
"Invalid Tag": "Geçersiz etiket", "Invalid Tag": "Geçersiz etiket",
@ -310,7 +313,6 @@
"OpenAI URL/Key required.": "OpenAI URL/Anahtar gereklidir.", "OpenAI URL/Key required.": "OpenAI URL/Anahtar gereklidir.",
"or": "veya", "or": "veya",
"Other": "Diğer", "Other": "Diğer",
"Overview": "Genel Bakış",
"Password": "Parola", "Password": "Parola",
"PDF document (.pdf)": "PDF belgesi (.pdf)", "PDF document (.pdf)": "PDF belgesi (.pdf)",
"PDF Extract Images (OCR)": "PDF Görüntülerini Çıkart (OCR)", "PDF Extract Images (OCR)": "PDF Görüntülerini Çıkart (OCR)",
@ -361,6 +363,7 @@
"Scan for documents from {{path}}": "{{path}} dizininden belgeleri tarayın", "Scan for documents from {{path}}": "{{path}} dizininden belgeleri tarayın",
"Search": "Ara", "Search": "Ara",
"Search a model": "Bir model ara", "Search a model": "Bir model ara",
"Search Chats": "",
"Search Documents": "Belgeleri Ara", "Search Documents": "Belgeleri Ara",
"Search Models": "", "Search Models": "",
"Search Prompts": "Prompt Ara", "Search Prompts": "Prompt Ara",
@ -444,6 +447,7 @@
"Top P": "Top P", "Top P": "Top P",
"Trouble accessing Ollama?": "Ollama'ya erişmede sorun mu yaşıyorsunuz?", "Trouble accessing Ollama?": "Ollama'ya erişmede sorun mu yaşıyorsunuz?",
"TTS Settings": "TTS Ayarları", "TTS Settings": "TTS Ayarları",
"Type": "",
"Type Hugging Face Resolve (Download) URL": "Hugging Face Resolve (Download) URL'sini Yazın", "Type Hugging Face Resolve (Download) URL": "Hugging Face Resolve (Download) URL'sini Yazın",
"Uh-oh! There was an issue connecting to {{provider}}.": "Ah! {{provider}}'a bağlanırken bir sorun oluştu.", "Uh-oh! There was an issue connecting to {{provider}}.": "Ah! {{provider}}'a bağlanırken bir sorun oluştu.",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Bilinmeyen Dosya Türü '{{file_type}}', ancak düz metin olarak kabul ediliyor ve işleniyor", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Bilinmeyen Dosya Türü '{{file_type}}', ancak düz metin olarak kabul ediliyor ve işleniyor",
@ -464,6 +468,7 @@
"variable": "değişken", "variable": "değişken",
"variable to have them replaced with clipboard content.": "panodaki içerikle değiştirilmesi için değişken.", "variable to have them replaced with clipboard content.": "panodaki içerikle değiştirilmesi için değişken.",
"Version": "Sürüm", "Version": "Sürüm",
"Warning": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Uyarı: Gömme modelinizi günceller veya değiştirirseniz, tüm belgeleri yeniden içe aktarmanız gerekecektir.", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "Uyarı: Gömme modelinizi günceller veya değiştirirseniz, tüm belgeleri yeniden içe aktarmanız gerekecektir.",
"Web": "Web", "Web": "Web",
"Web Loader Settings": "Web Yükleyici Ayarları", "Web Loader Settings": "Web Yükleyici Ayarları",

View File

@ -47,6 +47,7 @@
"API keys": "Ключі API", "API keys": "Ключі API",
"April": "Квітень", "April": "Квітень",
"Archive": "Архів", "Archive": "Архів",
"Archive All Chats": "",
"Archived Chats": "Архівовані чати", "Archived Chats": "Архівовані чати",
"are allowed - Activate this command by typing": "дозволено - активізуйте цю команду набором", "are allowed - Activate this command by typing": "дозволено - активізуйте цю команду набором",
"Are you sure?": "Ви впевнені?", "Are you sure?": "Ви впевнені?",
@ -61,6 +62,7 @@
"available!": "доступно!", "available!": "доступно!",
"Back": "Назад", "Back": "Назад",
"Bad Response": "Неправильна відповідь", "Bad Response": "Неправильна відповідь",
"Banners": "",
"Base Model (From)": "", "Base Model (From)": "",
"before": "до того, як", "before": "до того, як",
"Being lazy": "Не поспішати", "Being lazy": "Не поспішати",
@ -119,7 +121,6 @@
"Custom": "Налаштувати", "Custom": "Налаштувати",
"Customize models for a specific purpose": "", "Customize models for a specific purpose": "",
"Dark": "Темна", "Dark": "Темна",
"Dashboard": "Панель управління",
"Database": "База даних", "Database": "База даних",
"December": "Грудень", "December": "Грудень",
"Default": "За замовчуванням", "Default": "За замовчуванням",
@ -187,6 +188,7 @@
"Enter Your Full Name": "Введіть ваше ім'я", "Enter Your Full Name": "Введіть ваше ім'я",
"Enter Your Password": "Введіть ваш пароль", "Enter Your Password": "Введіть ваш пароль",
"Enter Your Role": "Введіть вашу роль", "Enter Your Role": "Введіть вашу роль",
"Error": "",
"Experimental": "Експериментальне", "Experimental": "Експериментальне",
"Export All Chats (All Users)": "Експортувати всі чати (всі користувачі)", "Export All Chats (All Users)": "Експортувати всі чати (всі користувачі)",
"Export Chats": "Експортувати чати", "Export Chats": "Експортувати чати",
@ -226,6 +228,7 @@
"Import Models": "", "Import Models": "",
"Import Prompts": "Імпортувати промти", "Import Prompts": "Імпортувати промти",
"Include `--api` flag when running stable-diffusion-webui": "Включіть прапор `--api` при запуску stable-diffusion-webui", "Include `--api` flag when running stable-diffusion-webui": "Включіть прапор `--api` при запуску stable-diffusion-webui",
"Info": "",
"Input commands": "Команди вводу", "Input commands": "Команди вводу",
"Interface": "Інтерфейс", "Interface": "Інтерфейс",
"Invalid Tag": "Недійсний тег", "Invalid Tag": "Недійсний тег",
@ -310,7 +313,6 @@
"OpenAI URL/Key required.": "Потрібен OpenAI URL/ключ.", "OpenAI URL/Key required.": "Потрібен OpenAI URL/ключ.",
"or": "або", "or": "або",
"Other": "Інше", "Other": "Інше",
"Overview": "Огляд",
"Password": "Пароль", "Password": "Пароль",
"PDF document (.pdf)": "PDF документ (.pdf)", "PDF document (.pdf)": "PDF документ (.pdf)",
"PDF Extract Images (OCR)": "Розпізнавання зображень з PDF (OCR)", "PDF Extract Images (OCR)": "Розпізнавання зображень з PDF (OCR)",
@ -361,6 +363,7 @@
"Scan for documents from {{path}}": "Сканування документів з {{path}}", "Scan for documents from {{path}}": "Сканування документів з {{path}}",
"Search": "Пошук", "Search": "Пошук",
"Search a model": "Шукати модель", "Search a model": "Шукати модель",
"Search Chats": "",
"Search Documents": "Пошук документів", "Search Documents": "Пошук документів",
"Search Models": "", "Search Models": "",
"Search Prompts": "Пошук промтів", "Search Prompts": "Пошук промтів",
@ -444,6 +447,7 @@
"Top P": "Top P", "Top P": "Top P",
"Trouble accessing Ollama?": "Проблеми з доступом до Ollama?", "Trouble accessing Ollama?": "Проблеми з доступом до Ollama?",
"TTS Settings": "Налаштування TTS", "TTS Settings": "Налаштування TTS",
"Type": "",
"Type Hugging Face Resolve (Download) URL": "Введіть URL ресурсу Hugging Face Resolve (завантаження)", "Type Hugging Face Resolve (Download) URL": "Введіть URL ресурсу Hugging Face Resolve (завантаження)",
"Uh-oh! There was an issue connecting to {{provider}}.": "Ой! Виникла проблема при підключенні до {{provider}}.", "Uh-oh! There was an issue connecting to {{provider}}.": "Ой! Виникла проблема при підключенні до {{provider}}.",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Невідомий тип файлу '{{file_type}}', але приймається та обробляється як звичайний текст", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Невідомий тип файлу '{{file_type}}', але приймається та обробляється як звичайний текст",
@ -464,6 +468,7 @@
"variable": "змінна", "variable": "змінна",
"variable to have them replaced with clipboard content.": "змінна, щоб замінити їх вмістом буфера обміну.", "variable to have them replaced with clipboard content.": "змінна, щоб замінити їх вмістом буфера обміну.",
"Version": "Версія", "Version": "Версія",
"Warning": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Попередження: Якщо ви оновлюєте або змінюєте модель вбудовування, вам потрібно буде повторно імпортувати всі документи.", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "Попередження: Якщо ви оновлюєте або змінюєте модель вбудовування, вам потрібно буде повторно імпортувати всі документи.",
"Web": "Веб", "Web": "Веб",
"Web Loader Settings": "Налаштування веб-завантажувача", "Web Loader Settings": "Налаштування веб-завантажувача",

View File

@ -47,6 +47,7 @@
"API keys": "API Keys", "API keys": "API Keys",
"April": "Tháng 4", "April": "Tháng 4",
"Archive": "Lưu trữ", "Archive": "Lưu trữ",
"Archive All Chats": "",
"Archived Chats": "bản ghi trò chuyện", "Archived Chats": "bản ghi trò chuyện",
"are allowed - Activate this command by typing": "được phép - Kích hoạt lệnh này bằng cách gõ", "are allowed - Activate this command by typing": "được phép - Kích hoạt lệnh này bằng cách gõ",
"Are you sure?": "Bạn có chắc chắn không?", "Are you sure?": "Bạn có chắc chắn không?",
@ -61,6 +62,7 @@
"available!": "có sẵn!", "available!": "có sẵn!",
"Back": "Quay lại", "Back": "Quay lại",
"Bad Response": "Trả lời KHÔNG tốt", "Bad Response": "Trả lời KHÔNG tốt",
"Banners": "",
"Base Model (From)": "", "Base Model (From)": "",
"before": "trước", "before": "trước",
"Being lazy": "Lười biếng", "Being lazy": "Lười biếng",
@ -119,7 +121,6 @@
"Custom": "Tùy chỉnh", "Custom": "Tùy chỉnh",
"Customize models for a specific purpose": "", "Customize models for a specific purpose": "",
"Dark": "Tối", "Dark": "Tối",
"Dashboard": "Trang tổng quan",
"Database": "Cơ sở dữ liệu", "Database": "Cơ sở dữ liệu",
"December": "Tháng 12", "December": "Tháng 12",
"Default": "Mặc định", "Default": "Mặc định",
@ -187,6 +188,7 @@
"Enter Your Full Name": "Nhập Họ và Tên của bạn", "Enter Your Full Name": "Nhập Họ và Tên của bạn",
"Enter Your Password": "Nhập Mật khẩu của bạn", "Enter Your Password": "Nhập Mật khẩu của bạn",
"Enter Your Role": "Nhập vai trò của bạn", "Enter Your Role": "Nhập vai trò của bạn",
"Error": "",
"Experimental": "Thử nghiệm", "Experimental": "Thử nghiệm",
"Export All Chats (All Users)": "Tải về tất cả nội dung chat (tất cả mọi người)", "Export All Chats (All Users)": "Tải về tất cả nội dung chat (tất cả mọi người)",
"Export Chats": "Tải nội dung chat về máy", "Export Chats": "Tải nội dung chat về máy",
@ -226,6 +228,7 @@
"Import Models": "", "Import Models": "",
"Import Prompts": "Nạp các prompt lên hệ thống", "Import Prompts": "Nạp các prompt lên hệ thống",
"Include `--api` flag when running stable-diffusion-webui": "Bao gồm flag `--api` khi chạy stable-diffusion-webui", "Include `--api` flag when running stable-diffusion-webui": "Bao gồm flag `--api` khi chạy stable-diffusion-webui",
"Info": "",
"Input commands": "Nhập các câu lệnh", "Input commands": "Nhập các câu lệnh",
"Interface": "Giao diện", "Interface": "Giao diện",
"Invalid Tag": "Tag không hợp lệ", "Invalid Tag": "Tag không hợp lệ",
@ -310,7 +313,6 @@
"OpenAI URL/Key required.": "Yêu cầu URL/Key API OpenAI.", "OpenAI URL/Key required.": "Yêu cầu URL/Key API OpenAI.",
"or": "hoặc", "or": "hoặc",
"Other": "Khác", "Other": "Khác",
"Overview": "Tổng quan",
"Password": "Mật khẩu", "Password": "Mật khẩu",
"PDF document (.pdf)": "Tập tin PDF (.pdf)", "PDF document (.pdf)": "Tập tin PDF (.pdf)",
"PDF Extract Images (OCR)": "Trích xuất ảnh từ PDF (OCR)", "PDF Extract Images (OCR)": "Trích xuất ảnh từ PDF (OCR)",
@ -361,6 +363,7 @@
"Scan for documents from {{path}}": "Quét tài liệu từ đường dẫn: {{path}}", "Scan for documents from {{path}}": "Quét tài liệu từ đường dẫn: {{path}}",
"Search": "Tìm kiếm", "Search": "Tìm kiếm",
"Search a model": "Tìm model", "Search a model": "Tìm model",
"Search Chats": "",
"Search Documents": "Tìm tài liệu", "Search Documents": "Tìm tài liệu",
"Search Models": "", "Search Models": "",
"Search Prompts": "Tìm prompt", "Search Prompts": "Tìm prompt",
@ -444,6 +447,7 @@
"Top P": "Top P", "Top P": "Top P",
"Trouble accessing Ollama?": "Gặp vấn đề khi truy cập Ollama?", "Trouble accessing Ollama?": "Gặp vấn đề khi truy cập Ollama?",
"TTS Settings": "Cài đặt Chuyển văn bản thành Giọng nói", "TTS Settings": "Cài đặt Chuyển văn bản thành Giọng nói",
"Type": "",
"Type Hugging Face Resolve (Download) URL": "Nhập URL Hugging Face Resolve (Tải xuống)", "Type Hugging Face Resolve (Download) URL": "Nhập URL Hugging Face Resolve (Tải xuống)",
"Uh-oh! There was an issue connecting to {{provider}}.": "Ồ! Đã xảy ra sự cố khi kết nối với {{provider}}.", "Uh-oh! There was an issue connecting to {{provider}}.": "Ồ! Đã xảy ra sự cố khi kết nối với {{provider}}.",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Loại Tệp Không xác định '{{file_type}}', nhưng đang chấp nhận và xử lý như văn bản thô", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Loại Tệp Không xác định '{{file_type}}', nhưng đang chấp nhận và xử lý như văn bản thô",
@ -464,6 +468,7 @@
"variable": "biến", "variable": "biến",
"variable to have them replaced with clipboard content.": "biến để có chúng được thay thế bằng nội dung clipboard.", "variable to have them replaced with clipboard content.": "biến để có chúng được thay thế bằng nội dung clipboard.",
"Version": "Version", "Version": "Version",
"Warning": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Cảnh báo: Nếu cập nhật hoặc thay đổi embedding model, bạn sẽ cần cập nhật lại tất cả tài liệu.", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "Cảnh báo: Nếu cập nhật hoặc thay đổi embedding model, bạn sẽ cần cập nhật lại tất cả tài liệu.",
"Web": "Web", "Web": "Web",
"Web Loader Settings": "Cài đặt Web Loader", "Web Loader Settings": "Cài đặt Web Loader",

View File

@ -47,6 +47,7 @@
"API keys": "API 密钥", "API keys": "API 密钥",
"April": "四月", "April": "四月",
"Archive": "存档", "Archive": "存档",
"Archive All Chats": "",
"Archived Chats": "聊天记录存档", "Archived Chats": "聊天记录存档",
"are allowed - Activate this command by typing": "允许 - 通过输入来激活这个命令", "are allowed - Activate this command by typing": "允许 - 通过输入来激活这个命令",
"Are you sure?": "你确定吗?", "Are you sure?": "你确定吗?",
@ -61,6 +62,7 @@
"available!": "可用!", "available!": "可用!",
"Back": "返回", "Back": "返回",
"Bad Response": "不良响应", "Bad Response": "不良响应",
"Banners": "",
"Base Model (From)": "", "Base Model (From)": "",
"before": "之前", "before": "之前",
"Being lazy": "懒惰", "Being lazy": "懒惰",
@ -119,7 +121,6 @@
"Custom": "自定义", "Custom": "自定义",
"Customize models for a specific purpose": "", "Customize models for a specific purpose": "",
"Dark": "暗色", "Dark": "暗色",
"Dashboard": "仪表盘",
"Database": "数据库", "Database": "数据库",
"December": "十二月", "December": "十二月",
"Default": "默认", "Default": "默认",
@ -187,6 +188,7 @@
"Enter Your Full Name": "输入您的全名", "Enter Your Full Name": "输入您的全名",
"Enter Your Password": "输入您的密码", "Enter Your Password": "输入您的密码",
"Enter Your Role": "输入您的角色", "Enter Your Role": "输入您的角色",
"Error": "",
"Experimental": "实验性", "Experimental": "实验性",
"Export All Chats (All Users)": "导出所有聊天(所有用户)", "Export All Chats (All Users)": "导出所有聊天(所有用户)",
"Export Chats": "导出聊天", "Export Chats": "导出聊天",
@ -226,6 +228,7 @@
"Import Models": "", "Import Models": "",
"Import Prompts": "导入提示", "Import Prompts": "导入提示",
"Include `--api` flag when running stable-diffusion-webui": "运行 stable-diffusion-webui 时包含 `--api` 标志", "Include `--api` flag when running stable-diffusion-webui": "运行 stable-diffusion-webui 时包含 `--api` 标志",
"Info": "",
"Input commands": "输入命令", "Input commands": "输入命令",
"Interface": "界面", "Interface": "界面",
"Invalid Tag": "无效标签", "Invalid Tag": "无效标签",
@ -310,7 +313,6 @@
"OpenAI URL/Key required.": "需要 OpenAI URL/Key", "OpenAI URL/Key required.": "需要 OpenAI URL/Key",
"or": "或", "or": "或",
"Other": "其他", "Other": "其他",
"Overview": "概述",
"Password": "密码", "Password": "密码",
"PDF document (.pdf)": "PDF 文档 (.pdf)", "PDF document (.pdf)": "PDF 文档 (.pdf)",
"PDF Extract Images (OCR)": "PDF 图像处理 (使用 OCR)", "PDF Extract Images (OCR)": "PDF 图像处理 (使用 OCR)",
@ -361,6 +363,7 @@
"Scan for documents from {{path}}": "从 {{path}} 扫描文档", "Scan for documents from {{path}}": "从 {{path}} 扫描文档",
"Search": "搜索", "Search": "搜索",
"Search a model": "搜索模型", "Search a model": "搜索模型",
"Search Chats": "",
"Search Documents": "搜索文档", "Search Documents": "搜索文档",
"Search Models": "", "Search Models": "",
"Search Prompts": "搜索提示词", "Search Prompts": "搜索提示词",
@ -444,6 +447,7 @@
"Top P": "Top P", "Top P": "Top P",
"Trouble accessing Ollama?": "访问 Ollama 时遇到问题?", "Trouble accessing Ollama?": "访问 Ollama 时遇到问题?",
"TTS Settings": "文本转语音设置", "TTS Settings": "文本转语音设置",
"Type": "",
"Type Hugging Face Resolve (Download) URL": "输入 Hugging Face 解析下载URL", "Type Hugging Face Resolve (Download) URL": "输入 Hugging Face 解析下载URL",
"Uh-oh! There was an issue connecting to {{provider}}.": "哎呀!连接到{{provider}}时出现问题。", "Uh-oh! There was an issue connecting to {{provider}}.": "哎呀!连接到{{provider}}时出现问题。",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "未知文件类型'{{file_type}}',将视为纯文本进行处理", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "未知文件类型'{{file_type}}',将视为纯文本进行处理",
@ -464,6 +468,7 @@
"variable": "变量", "variable": "变量",
"variable to have them replaced with clipboard content.": "变量将被剪贴板内容替换。", "variable to have them replaced with clipboard content.": "变量将被剪贴板内容替换。",
"Version": "版本", "Version": "版本",
"Warning": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "警告: 如果更新或更改 embedding 模型,则需要重新导入所有文档。", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "警告: 如果更新或更改 embedding 模型,则需要重新导入所有文档。",
"Web": "网页", "Web": "网页",
"Web Loader Settings": "Web 加载器设置", "Web Loader Settings": "Web 加载器设置",

View File

@ -47,6 +47,7 @@
"API keys": "API Keys", "API keys": "API Keys",
"April": "4月", "April": "4月",
"Archive": "存檔", "Archive": "存檔",
"Archive All Chats": "",
"Archived Chats": "聊天記錄存檔", "Archived Chats": "聊天記錄存檔",
"are allowed - Activate this command by typing": "是允許的 - 透過輸入", "are allowed - Activate this command by typing": "是允許的 - 透過輸入",
"Are you sure?": "你確定嗎?", "Are you sure?": "你確定嗎?",
@ -61,6 +62,7 @@
"available!": "可以使用!", "available!": "可以使用!",
"Back": "返回", "Back": "返回",
"Bad Response": "錯誤回應", "Bad Response": "錯誤回應",
"Banners": "",
"Base Model (From)": "", "Base Model (From)": "",
"before": "前", "before": "前",
"Being lazy": "懶人模式", "Being lazy": "懶人模式",
@ -119,7 +121,6 @@
"Custom": "自訂", "Custom": "自訂",
"Customize models for a specific purpose": "", "Customize models for a specific purpose": "",
"Dark": "暗色", "Dark": "暗色",
"Dashboard": "儀表板",
"Database": "資料庫", "Database": "資料庫",
"December": "12月", "December": "12月",
"Default": "預設", "Default": "預設",
@ -187,6 +188,7 @@
"Enter Your Full Name": "輸入你的全名", "Enter Your Full Name": "輸入你的全名",
"Enter Your Password": "輸入你的密碼", "Enter Your Password": "輸入你的密碼",
"Enter Your Role": "輸入你的角色", "Enter Your Role": "輸入你的角色",
"Error": "",
"Experimental": "實驗功能", "Experimental": "實驗功能",
"Export All Chats (All Users)": "匯出所有聊天紀錄(所有使用者)", "Export All Chats (All Users)": "匯出所有聊天紀錄(所有使用者)",
"Export Chats": "匯出聊天紀錄", "Export Chats": "匯出聊天紀錄",
@ -226,6 +228,7 @@
"Import Models": "", "Import Models": "",
"Import Prompts": "匯入提示詞", "Import Prompts": "匯入提示詞",
"Include `--api` flag when running stable-diffusion-webui": "在運行 stable-diffusion-webui 時加上 `--api` 標誌", "Include `--api` flag when running stable-diffusion-webui": "在運行 stable-diffusion-webui 時加上 `--api` 標誌",
"Info": "",
"Input commands": "輸入命令", "Input commands": "輸入命令",
"Interface": "介面", "Interface": "介面",
"Invalid Tag": "無效標籤", "Invalid Tag": "無效標籤",
@ -310,7 +313,6 @@
"OpenAI URL/Key required.": "需要 OpenAI URL/金鑰。", "OpenAI URL/Key required.": "需要 OpenAI URL/金鑰。",
"or": "或", "or": "或",
"Other": "其他", "Other": "其他",
"Overview": "總覽",
"Password": "密碼", "Password": "密碼",
"PDF document (.pdf)": "PDF 文件 (.pdf)", "PDF document (.pdf)": "PDF 文件 (.pdf)",
"PDF Extract Images (OCR)": "PDF 圖像擷取OCR 光學文字辨識)", "PDF Extract Images (OCR)": "PDF 圖像擷取OCR 光學文字辨識)",
@ -361,6 +363,7 @@
"Scan for documents from {{path}}": "從 {{path}} 掃描文件", "Scan for documents from {{path}}": "從 {{path}} 掃描文件",
"Search": "搜尋", "Search": "搜尋",
"Search a model": "搜尋模型", "Search a model": "搜尋模型",
"Search Chats": "",
"Search Documents": "搜尋文件", "Search Documents": "搜尋文件",
"Search Models": "", "Search Models": "",
"Search Prompts": "搜尋提示詞", "Search Prompts": "搜尋提示詞",
@ -444,6 +447,7 @@
"Top P": "Top P", "Top P": "Top P",
"Trouble accessing Ollama?": "存取 Ollama 時遇到問題?", "Trouble accessing Ollama?": "存取 Ollama 時遇到問題?",
"TTS Settings": "文字轉語音設定", "TTS Settings": "文字轉語音設定",
"Type": "",
"Type Hugging Face Resolve (Download) URL": "輸入 Hugging Face 解析後的下載URL", "Type Hugging Face Resolve (Download) URL": "輸入 Hugging Face 解析後的下載URL",
"Uh-oh! There was an issue connecting to {{provider}}.": "哎呀!連線到 {{provider}} 時出現問題。", "Uh-oh! There was an issue connecting to {{provider}}.": "哎呀!連線到 {{provider}} 時出現問題。",
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "未知的文件類型 '{{file_type}}',但接受並視為純文字", "Unknown File Type '{{file_type}}', but accepting and treating as plain text": "未知的文件類型 '{{file_type}}',但接受並視為純文字",
@ -464,6 +468,7 @@
"variable": "變數", "variable": "變數",
"variable to have them replaced with clipboard content.": "變數將替換為剪貼簿內容", "variable to have them replaced with clipboard content.": "變數將替換為剪貼簿內容",
"Version": "版本", "Version": "版本",
"Warning": "",
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "警告:如果更新或更改你的嵌入模型,則需要重新導入所有文件", "Warning: If you update or change your embedding model, you will need to re-import all documents.": "警告:如果更新或更改你的嵌入模型,則需要重新導入所有文件",
"Web": "網頁", "Web": "網頁",
"Web Loader Settings": "Web 載入器設定", "Web Loader Settings": "Web 載入器設定",

View File

@ -1,6 +1,7 @@
import { APP_NAME } from '$lib/constants'; import { APP_NAME } from '$lib/constants';
import { type Writable, writable } from 'svelte/store'; import { type Writable, writable } from 'svelte/store';
import type { GlobalModelConfig, ModelConfig } from '$lib/apis'; import type { GlobalModelConfig, ModelConfig } from '$lib/apis';
import type { Banner } from '$lib/types';
// Backend // Backend
export const WEBUI_NAME = writable(APP_NAME); export const WEBUI_NAME = writable(APP_NAME);
@ -36,6 +37,8 @@ export const documents = writable([
} }
]); ]);
export const banners: Writable<Banner[]> = writable([]);
export const settings: Writable<Settings> = writable({}); export const settings: Writable<Settings> = writable({});
export const showSidebar = writable(false); export const showSidebar = writable(false);

9
src/lib/types/index.ts Normal file
View File

@ -0,0 +1,9 @@
export type Banner = {
id: string;
type: string;
title?: string;
content: string;
url?: string;
dismissible?: boolean;
timestamp: number;
};

View File

@ -22,6 +22,7 @@
prompts, prompts,
documents, documents,
tags, tags,
banners,
showChangelog, showChangelog,
config config
} from '$lib/stores'; } from '$lib/stores';
@ -33,6 +34,7 @@
import ShortcutsModal from '$lib/components/chat/ShortcutsModal.svelte'; import ShortcutsModal from '$lib/components/chat/ShortcutsModal.svelte';
import ChangelogModal from '$lib/components/ChangelogModal.svelte'; import ChangelogModal from '$lib/components/ChangelogModal.svelte';
import Tooltip from '$lib/components/common/Tooltip.svelte'; import Tooltip from '$lib/components/common/Tooltip.svelte';
import { getBanners } from '$lib/apis/configs';
const i18n = getContext('i18n'); const i18n = getContext('i18n');
@ -82,6 +84,9 @@
(async () => { (async () => {
documents.set(await getDocs(localStorage.token)); documents.set(await getDocs(localStorage.token));
})(), })(),
(async () => {
banners.set(await getBanners(localStorage.token));
})(),
(async () => { (async () => {
tags.set(await getAllChatTags(localStorage.token)); tags.set(await getAllChatTags(localStorage.token));
})() })()

View File

@ -18,7 +18,8 @@ import { defineConfig } from 'vite';
export default defineConfig({ export default defineConfig({
plugins: [sveltekit()], plugins: [sveltekit()],
define: { define: {
APP_VERSION: JSON.stringify(process.env.npm_package_version) APP_VERSION: JSON.stringify(process.env.npm_package_version),
APP_BUILD_HASH: JSON.stringify(process.env.APP_BUILD_HASH || 'dev-build')
}, },
build: { build: {
sourcemap: true sourcemap: true