mirror of
https://github.com/open-webui/open-webui
synced 2025-03-19 19:48:14 +00:00
Merge branch 'dev' into feat/disable-community-sharing
This commit is contained in:
commit
78dedb3389
10
.github/workflows/docker-build.yaml
vendored
10
.github/workflows/docker-build.yaml
vendored
@ -84,6 +84,8 @@ jobs:
|
||||
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-to: type=registry,ref=${{ steps.cache-meta.outputs.tags }},mode=max
|
||||
build-args: |
|
||||
BUILD_HASH=${{ github.sha }}
|
||||
|
||||
- name: Export digest
|
||||
run: |
|
||||
@ -170,7 +172,9 @@ jobs:
|
||||
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-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
|
||||
run: |
|
||||
@ -257,7 +261,9 @@ jobs:
|
||||
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-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
|
||||
run: |
|
||||
|
@ -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.
|
||||
ARG USE_EMBEDDING_MODEL=sentence-transformers/all-MiniLM-L6-v2
|
||||
ARG USE_RERANKING_MODEL=""
|
||||
ARG BUILD_HASH=dev-build
|
||||
# Override at your own risk - non-root configurations are untested
|
||||
ARG UID=0
|
||||
ARG GID=0
|
||||
|
||||
######## WebUI frontend ########
|
||||
FROM --platform=$BUILDPLATFORM node:21-alpine3.19 as build
|
||||
ARG BUILD_HASH
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
@ -24,6 +26,7 @@ COPY package.json package-lock.json ./
|
||||
RUN npm ci
|
||||
|
||||
COPY . .
|
||||
ENV APP_BUILD_HASH=${BUILD_HASH}
|
||||
RUN npm run build
|
||||
|
||||
######## WebUI backend ########
|
||||
@ -35,6 +38,7 @@ ARG USE_OLLAMA
|
||||
ARG USE_CUDA_VER
|
||||
ARG USE_EMBEDDING_MODEL
|
||||
ARG USE_RERANKING_MODEL
|
||||
ARG BUILD_HASH
|
||||
ARG UID
|
||||
ARG GID
|
||||
|
||||
@ -150,4 +154,6 @@ HEALTHCHECK CMD curl --silent --fail http://localhost:8080/health | jq -e '.stat
|
||||
|
||||
USER $UID:$GID
|
||||
|
||||
ENV WEBUI_BUILD_VERSION=${BUILD_HASH}
|
||||
|
||||
CMD [ "bash", "start.sh"]
|
||||
|
@ -13,7 +13,7 @@ from apps.webui.routers import (
|
||||
utils,
|
||||
)
|
||||
from config import (
|
||||
WEBUI_VERSION,
|
||||
WEBUI_BUILD_HASH,
|
||||
WEBUI_AUTH,
|
||||
DEFAULT_MODELS,
|
||||
DEFAULT_PROMPT_SUGGESTIONS,
|
||||
@ -23,6 +23,7 @@ from config import (
|
||||
WEBHOOK_URL,
|
||||
WEBUI_AUTH_TRUSTED_EMAIL_HEADER,
|
||||
JWT_EXPIRES_IN,
|
||||
WEBUI_BANNERS,
|
||||
AppConfig,
|
||||
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.USER_PERMISSIONS = USER_PERMISSIONS
|
||||
app.state.config.WEBHOOK_URL = WEBHOOK_URL
|
||||
app.state.config.BANNERS = WEBUI_BANNERS
|
||||
|
||||
app.state.config.ENABLE_COMMUNITY_SHARING = ENABLE_COMMUNITY_SHARING
|
||||
|
||||
|
@ -8,6 +8,8 @@ from pydantic import BaseModel
|
||||
import time
|
||||
import uuid
|
||||
|
||||
from config import BannerModel
|
||||
|
||||
from apps.webui.models.users import Users
|
||||
|
||||
from utils.utils import (
|
||||
@ -57,3 +59,31 @@ async def set_global_default_suggestions(
|
||||
data = form_data.model_dump()
|
||||
request.app.state.config.DEFAULT_PROMPT_SUGGESTIONS = data["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
|
||||
|
@ -8,6 +8,8 @@ from chromadb import Settings
|
||||
from base64 import b64encode
|
||||
from bs4 import BeautifulSoup
|
||||
from typing import TypeVar, Generic, Union
|
||||
from pydantic import BaseModel
|
||||
from typing import Optional
|
||||
|
||||
from pathlib import Path
|
||||
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
|
||||
@ -572,6 +574,21 @@ ENABLE_COMMUNITY_SHARING = PersistentConfig(
|
||||
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
|
||||
####################################
|
||||
|
@ -55,6 +55,7 @@ from config import (
|
||||
WEBHOOK_URL,
|
||||
ENABLE_ADMIN_EXPORT,
|
||||
AppConfig,
|
||||
WEBUI_BUILD_HASH,
|
||||
)
|
||||
from constants import ERROR_MESSAGES
|
||||
|
||||
@ -84,7 +85,8 @@ 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
|
||||
"""
|
||||
)
|
||||
|
@ -1,4 +1,5 @@
|
||||
# noqa: INP001
|
||||
import os
|
||||
import shutil
|
||||
import subprocess
|
||||
from sys import stderr
|
||||
@ -18,4 +19,5 @@ class CustomBuildHook(BuildHookInterface):
|
||||
stderr.write("### npm install\n")
|
||||
subprocess.run([npm, "install"], check=True) # noqa: S603
|
||||
stderr.write("\n### npm run build\n")
|
||||
os.environ["APP_BUILD_HASH"] = version
|
||||
subprocess.run([npm, "run", "build"], check=True) # noqa: S603
|
||||
|
4
package-lock.json
generated
4
package-lock.json
generated
@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "open-webui",
|
||||
"version": "0.2.0.dev1",
|
||||
"version": "0.2.0.dev2",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "open-webui",
|
||||
"version": "0.2.0.dev1",
|
||||
"version": "0.2.0.dev2",
|
||||
"dependencies": {
|
||||
"@pyscript/core": "^0.4.32",
|
||||
"@sveltejs/adapter-node": "^1.3.1",
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "open-webui",
|
||||
"version": "0.2.0.dev1",
|
||||
"version": "0.2.0.dev2",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "npm run pyodide:fetch && vite dev --host",
|
||||
|
@ -1,4 +1,5 @@
|
||||
import { WEBUI_API_BASE_URL } from '$lib/constants';
|
||||
import type { Banner } from '$lib/types';
|
||||
|
||||
export const setDefaultModels = async (token: string, models: string) => {
|
||||
let error = null;
|
||||
@ -59,3 +60,60 @@ export const setDefaultPromptSuggestions = async (token: string, promptSuggestio
|
||||
|
||||
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;
|
||||
};
|
||||
|
136
src/lib/components/admin/Settings/Banners.svelte
Normal file
136
src/lib/components/admin/Settings/Banners.svelte
Normal 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>
|
@ -6,6 +6,9 @@
|
||||
import General from './Settings/General.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');
|
||||
|
||||
export let show = false;
|
||||
@ -117,24 +120,63 @@
|
||||
</div>
|
||||
<div class=" self-center">{$i18n.t('Database')}</div>
|
||||
</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 class="flex-1 md:min-h-[380px]">
|
||||
{#if selectedTab === 'general'}
|
||||
<General
|
||||
saveHandler={() => {
|
||||
show = false;
|
||||
toast.success($i18n.t('Settings saved successfully!'));
|
||||
}}
|
||||
/>
|
||||
{:else if selectedTab === 'users'}
|
||||
<Users
|
||||
saveHandler={() => {
|
||||
show = false;
|
||||
toast.success($i18n.t('Settings saved successfully!'));
|
||||
}}
|
||||
/>
|
||||
{:else if selectedTab === 'db'}
|
||||
<Database
|
||||
saveHandler={() => {
|
||||
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}
|
||||
|
@ -15,7 +15,8 @@
|
||||
settings,
|
||||
showSidebar,
|
||||
tags as _tags,
|
||||
WEBUI_NAME
|
||||
WEBUI_NAME,
|
||||
banners
|
||||
} from '$lib/stores';
|
||||
import { convertMessagesToHistory, copyToClipboard, splitStream } from '$lib/utils';
|
||||
|
||||
@ -40,6 +41,7 @@
|
||||
import { queryMemory } from '$lib/apis/memories';
|
||||
import type { Writable } from 'svelte/store';
|
||||
import type { i18n as i18nType } from 'i18next';
|
||||
import Banner from '../common/Banner.svelte';
|
||||
|
||||
const i18n: Writable<i18nType> = getContext('i18n');
|
||||
|
||||
@ -1004,6 +1006,34 @@
|
||||
{chat}
|
||||
{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=" pb-2.5 flex flex-col justify-between w-full flex-auto overflow-auto h-0 max-w-full"
|
||||
|
@ -1,7 +1,7 @@
|
||||
<script lang="ts">
|
||||
import { getVersionUpdates } from '$lib/apis';
|
||||
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 { compareVersion } from '$lib/utils';
|
||||
import { onMount, getContext } from 'svelte';
|
||||
@ -54,7 +54,7 @@
|
||||
<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 gap-1">
|
||||
<Tooltip content={WEBUI_VERSION === '0.1.117' ? "🪖 We're just getting started." : ''}>
|
||||
<Tooltip content={WEBUI_BUILD_HASH}>
|
||||
v{WEBUI_VERSION}
|
||||
</Tooltip>
|
||||
|
||||
|
125
src/lib/components/common/Banner.svelte
Normal file
125
src/lib/components/common/Banner.svelte
Normal 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">×</button
|
||||
>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
{/if}
|
@ -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 WEBUI_VERSION = APP_VERSION;
|
||||
export const WEBUI_BUILD_HASH = APP_BUILD_HASH;
|
||||
export const REQUIRED_OLLAMA_VERSION = '0.1.16';
|
||||
|
||||
export const SUPPORTED_FILE_TYPE = [
|
||||
|
@ -47,6 +47,7 @@
|
||||
"API keys": "مفاتيح واجهة برمجة التطبيقات",
|
||||
"April": "أبريل",
|
||||
"Archive": "الأرشيف",
|
||||
"Archive All Chats": "",
|
||||
"Archived Chats": "الأرشيف المحادثات",
|
||||
"are allowed - Activate this command by typing": "مسموح - قم بتنشيط هذا الأمر عن طريق الكتابة",
|
||||
"Are you sure?": "هل أنت متأكد ؟",
|
||||
@ -61,6 +62,7 @@
|
||||
"available!": "متاح",
|
||||
"Back": "خلف",
|
||||
"Bad Response": "استجابة خطاء",
|
||||
"Banners": "",
|
||||
"Base Model (From)": "",
|
||||
"before": "قبل",
|
||||
"Being lazy": "كون كسول",
|
||||
@ -119,7 +121,6 @@
|
||||
"Custom": "مخصص",
|
||||
"Customize models for a specific purpose": "",
|
||||
"Dark": "مظلم",
|
||||
"Dashboard": "لوحة التحكم",
|
||||
"Database": "قاعدة البيانات",
|
||||
"December": "ديسمبر",
|
||||
"Default": "الإفتراضي",
|
||||
@ -187,6 +188,7 @@
|
||||
"Enter Your Full Name": "أدخل الاسم كامل",
|
||||
"Enter Your Password": "ادخل كلمة المرور",
|
||||
"Enter Your Role": "أدخل الصلاحيات",
|
||||
"Error": "",
|
||||
"Experimental": "تجريبي",
|
||||
"Export All Chats (All Users)": "تصدير جميع الدردشات (جميع المستخدمين)",
|
||||
"Export Chats": "تصدير جميع الدردشات",
|
||||
@ -226,6 +228,7 @@
|
||||
"Import Models": "",
|
||||
"Import Prompts": "مطالبات الاستيراد",
|
||||
"Include `--api` flag when running stable-diffusion-webui": "قم بتضمين علامة `-api` عند تشغيل Stable-diffusion-webui",
|
||||
"Info": "",
|
||||
"Input commands": "إدخال الأوامر",
|
||||
"Interface": "واجهه المستخدم",
|
||||
"Invalid Tag": "تاق غير صالحة",
|
||||
@ -310,7 +313,6 @@
|
||||
"OpenAI URL/Key required.": "URL/مفتاح OpenAI.مطلوب عنوان ",
|
||||
"or": "أو",
|
||||
"Other": "آخر",
|
||||
"Overview": "عرض",
|
||||
"Password": "الباسورد",
|
||||
"PDF document (.pdf)": "PDF ملف (.pdf)",
|
||||
"PDF Extract Images (OCR)": "PDF أستخرج الصور (OCR)",
|
||||
@ -361,6 +363,7 @@
|
||||
"Scan for documents from {{path}}": "{{path}} مسح على الملفات من",
|
||||
"Search": "البحث",
|
||||
"Search a model": "البحث عن موديل",
|
||||
"Search Chats": "",
|
||||
"Search Documents": "البحث المستندات",
|
||||
"Search Models": "",
|
||||
"Search Prompts": "أبحث حث",
|
||||
@ -444,6 +447,7 @@
|
||||
"Top P": "Top P",
|
||||
"Trouble accessing Ollama?": "هل تواجه مشكلة في الوصول",
|
||||
"TTS Settings": "TTS اعدادات",
|
||||
"Type": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "اكتب عنوان URL لحل مشكلة الوجه (تنزيل).",
|
||||
"Uh-oh! There was an issue connecting to {{provider}}.": "{{provider}}خطاء أوه! حدثت مشكلة في الاتصال بـ ",
|
||||
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "نوع ملف غير معروف '{{file_type}}', ولكن القبول والتعامل كنص عادي ",
|
||||
@ -464,6 +468,7 @@
|
||||
"variable": "المتغير",
|
||||
"variable to have them replaced with clipboard content.": "متغير لاستبدالها بمحتوى الحافظة.",
|
||||
"Version": "إصدار",
|
||||
"Warning": "",
|
||||
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "تحذير: إذا قمت بتحديث أو تغيير نموذج التضمين الخاص بك، فستحتاج إلى إعادة استيراد كافة المستندات.",
|
||||
"Web": "Web",
|
||||
"Web Loader Settings": "Web تحميل اعدادات",
|
||||
|
@ -47,6 +47,7 @@
|
||||
"API keys": "API Ключове",
|
||||
"April": "Април",
|
||||
"Archive": "Архивирани Чатове",
|
||||
"Archive All Chats": "",
|
||||
"Archived Chats": "Архивирани Чатове",
|
||||
"are allowed - Activate this command by typing": "са разрешени - Активирайте тази команда чрез въвеждане",
|
||||
"Are you sure?": "Сигурни ли сте?",
|
||||
@ -61,6 +62,7 @@
|
||||
"available!": "наличен!",
|
||||
"Back": "Назад",
|
||||
"Bad Response": "Невалиден отговор от API",
|
||||
"Banners": "",
|
||||
"Base Model (From)": "",
|
||||
"before": "преди",
|
||||
"Being lazy": "Да бъдеш мързелив",
|
||||
@ -119,7 +121,6 @@
|
||||
"Custom": "Персонализиран",
|
||||
"Customize models for a specific purpose": "",
|
||||
"Dark": "Тъмен",
|
||||
"Dashboard": "Панел",
|
||||
"Database": "База данни",
|
||||
"December": "Декември",
|
||||
"Default": "По подразбиране",
|
||||
@ -187,6 +188,7 @@
|
||||
"Enter Your Full Name": "Въведете вашето пълно име",
|
||||
"Enter Your Password": "Въведете вашата парола",
|
||||
"Enter Your Role": "Въведете вашата роля",
|
||||
"Error": "",
|
||||
"Experimental": "Експериментално",
|
||||
"Export All Chats (All Users)": "Експортване на всички чатове (За всички потребители)",
|
||||
"Export Chats": "Експортване на чатове",
|
||||
@ -226,6 +228,7 @@
|
||||
"Import Models": "",
|
||||
"Import Prompts": "Импортване на промптове",
|
||||
"Include `--api` flag when running stable-diffusion-webui": "Включете флага `--api`, когато стартирате stable-diffusion-webui",
|
||||
"Info": "",
|
||||
"Input commands": "Въведете команди",
|
||||
"Interface": "Интерфейс",
|
||||
"Invalid Tag": "Невалиден тег",
|
||||
@ -310,7 +313,6 @@
|
||||
"OpenAI URL/Key required.": "OpenAI URL/Key е задължителен.",
|
||||
"or": "или",
|
||||
"Other": "Other",
|
||||
"Overview": "Обзор",
|
||||
"Password": "Парола",
|
||||
"PDF document (.pdf)": "PDF документ (.pdf)",
|
||||
"PDF Extract Images (OCR)": "PDF Extract Images (OCR)",
|
||||
@ -361,6 +363,7 @@
|
||||
"Scan for documents from {{path}}": "Сканиране за документи в {{path}}",
|
||||
"Search": "Търси",
|
||||
"Search a model": "Търси модел",
|
||||
"Search Chats": "",
|
||||
"Search Documents": "Търси Документи",
|
||||
"Search Models": "",
|
||||
"Search Prompts": "Търси Промптове",
|
||||
@ -444,6 +447,7 @@
|
||||
"Top P": "Top P",
|
||||
"Trouble accessing Ollama?": "Проблеми с достъпът до Ollama?",
|
||||
"TTS Settings": "TTS Настройки",
|
||||
"Type": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "Въведете Hugging Face Resolve (Download) URL",
|
||||
"Uh-oh! There was an issue connecting to {{provider}}.": "О, не! Възникна проблем при свързването с {{provider}}.",
|
||||
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Непознат файлов тип '{{file_type}}', но се приема и обработва като текст",
|
||||
@ -464,6 +468,7 @@
|
||||
"variable": "променлива",
|
||||
"variable to have them replaced with clipboard content.": "променливи да се заменят съдържанието от клипборд.",
|
||||
"Version": "Версия",
|
||||
"Warning": "",
|
||||
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Предупреждение: Ако актуализирате или промените вашия модел за вграждане, трябва да повторите импортирането на всички документи.",
|
||||
"Web": "Уеб",
|
||||
"Web Loader Settings": "Настройки за зареждане на уеб",
|
||||
|
@ -47,6 +47,7 @@
|
||||
"API keys": "এপিআই কোডস",
|
||||
"April": "আপ্রিল",
|
||||
"Archive": "আর্কাইভ",
|
||||
"Archive All Chats": "",
|
||||
"Archived Chats": "চ্যাট ইতিহাস সংরক্ষণাগার",
|
||||
"are allowed - Activate this command by typing": "অনুমোদিত - কমান্ডটি চালু করার জন্য লিখুন",
|
||||
"Are you sure?": "আপনি নিশ্চিত?",
|
||||
@ -61,6 +62,7 @@
|
||||
"available!": "উপলব্ধ!",
|
||||
"Back": "পেছনে",
|
||||
"Bad Response": "খারাপ প্রতিক্রিয়া",
|
||||
"Banners": "",
|
||||
"Base Model (From)": "",
|
||||
"before": "পূর্ববর্তী",
|
||||
"Being lazy": "অলস হওয়া",
|
||||
@ -119,7 +121,6 @@
|
||||
"Custom": "কাস্টম",
|
||||
"Customize models for a specific purpose": "",
|
||||
"Dark": "ডার্ক",
|
||||
"Dashboard": "ড্যাশবোর্ড",
|
||||
"Database": "ডেটাবেজ",
|
||||
"December": "ডেসেম্বর",
|
||||
"Default": "ডিফল্ট",
|
||||
@ -187,6 +188,7 @@
|
||||
"Enter Your Full Name": "আপনার পূর্ণ নাম লিখুন",
|
||||
"Enter Your Password": "আপনার পাসওয়ার্ড লিখুন",
|
||||
"Enter Your Role": "আপনার রোল লিখুন",
|
||||
"Error": "",
|
||||
"Experimental": "পরিক্ষামূলক",
|
||||
"Export All Chats (All Users)": "সব চ্যাট এক্সপোর্ট করুন (সব ইউজারের)",
|
||||
"Export Chats": "চ্যাটগুলো এক্সপোর্ট করুন",
|
||||
@ -226,6 +228,7 @@
|
||||
"Import Models": "",
|
||||
"Import Prompts": "প্রম্পটগুলো ইমপোর্ট করুন",
|
||||
"Include `--api` flag when running stable-diffusion-webui": "stable-diffusion-webui চালু করার সময় `--api` ফ্ল্যাগ সংযুক্ত করুন",
|
||||
"Info": "",
|
||||
"Input commands": "ইনপুট কমান্ডস",
|
||||
"Interface": "ইন্টারফেস",
|
||||
"Invalid Tag": "অবৈধ ট্যাগ",
|
||||
@ -310,7 +313,6 @@
|
||||
"OpenAI URL/Key required.": "OpenAI URL/Key আবশ্যক",
|
||||
"or": "অথবা",
|
||||
"Other": "অন্যান্য",
|
||||
"Overview": "বিবরণ",
|
||||
"Password": "পাসওয়ার্ড",
|
||||
"PDF document (.pdf)": "PDF ডকুমেন্ট (.pdf)",
|
||||
"PDF Extract Images (OCR)": "পিডিএফ এর ছবি থেকে লেখা বের করুন (OCR)",
|
||||
@ -361,6 +363,7 @@
|
||||
"Scan for documents from {{path}}": "ডকুমেন্টসমূহের জন্য {{path}} স্ক্যান করুন",
|
||||
"Search": "অনুসন্ধান",
|
||||
"Search a model": "মডেল অনুসন্ধান করুন",
|
||||
"Search Chats": "",
|
||||
"Search Documents": "ডকুমেন্টসমূহ অনুসন্ধান করুন",
|
||||
"Search Models": "",
|
||||
"Search Prompts": "প্রম্পটসমূহ অনুসন্ধান করুন",
|
||||
@ -444,6 +447,7 @@
|
||||
"Top P": "Top P",
|
||||
"Trouble accessing Ollama?": "Ollama এক্সেস করতে সমস্যা হচ্ছে?",
|
||||
"TTS Settings": "TTS সেটিংসমূহ",
|
||||
"Type": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "Hugging Face থেকে ডাউনলোড করার ইউআরএল টাইপ করুন",
|
||||
"Uh-oh! There was an issue connecting to {{provider}}.": "ওহ-হো! {{provider}} এর সাথে কানেকশনে সমস্যা হয়েছে।",
|
||||
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "অপরিচিত ফাইল ফরম্যাট '{{file_type}}', তবে প্লেইন টেক্সট হিসেবে গ্রহণ করা হলো",
|
||||
@ -464,6 +468,7 @@
|
||||
"variable": "ভেরিয়েবল",
|
||||
"variable to have them replaced with clipboard content.": "ক্লিপবোর্ডের কন্টেন্ট দিয়ে যেই ভেরিয়েবল রিপ্লেস করা যাবে।",
|
||||
"Version": "ভার্সন",
|
||||
"Warning": "",
|
||||
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "সতর্কীকরণ: আপনি যদি আপনার এম্বেডিং মডেল আপডেট বা পরিবর্তন করেন, তাহলে আপনাকে সমস্ত নথি পুনরায় আমদানি করতে হবে।.",
|
||||
"Web": "ওয়েব",
|
||||
"Web Loader Settings": "ওয়েব লোডার সেটিংস",
|
||||
|
@ -47,6 +47,7 @@
|
||||
"API keys": "Claus de l'API",
|
||||
"April": "Abril",
|
||||
"Archive": "Arxiu",
|
||||
"Archive All Chats": "",
|
||||
"Archived Chats": "Arxiu d'historial de xat",
|
||||
"are allowed - Activate this command by typing": "estan permesos - Activa aquesta comanda escrivint",
|
||||
"Are you sure?": "Estàs segur?",
|
||||
@ -61,6 +62,7 @@
|
||||
"available!": "disponible!",
|
||||
"Back": "Enrere",
|
||||
"Bad Response": "Resposta Erroni",
|
||||
"Banners": "",
|
||||
"Base Model (From)": "",
|
||||
"before": "abans",
|
||||
"Being lazy": "Ser l'estupidez",
|
||||
@ -119,7 +121,6 @@
|
||||
"Custom": "Personalitzat",
|
||||
"Customize models for a specific purpose": "",
|
||||
"Dark": "Fosc",
|
||||
"Dashboard": "Tauler",
|
||||
"Database": "Base de Dades",
|
||||
"December": "Desembre",
|
||||
"Default": "Per defecte",
|
||||
@ -187,6 +188,7 @@
|
||||
"Enter Your Full Name": "Introdueix el Teu Nom Complet",
|
||||
"Enter Your Password": "Introdueix la Teva Contrasenya",
|
||||
"Enter Your Role": "Introdueix el Teu Ròl",
|
||||
"Error": "",
|
||||
"Experimental": "Experimental",
|
||||
"Export All Chats (All Users)": "Exporta Tots els Xats (Tots els Usuaris)",
|
||||
"Export Chats": "Exporta Xats",
|
||||
@ -226,6 +228,7 @@
|
||||
"Import Models": "",
|
||||
"Import Prompts": "Importa Prompts",
|
||||
"Include `--api` flag when running stable-diffusion-webui": "Inclou la bandera `--api` quan executis stable-diffusion-webui",
|
||||
"Info": "",
|
||||
"Input commands": "Entra ordres",
|
||||
"Interface": "Interfície",
|
||||
"Invalid Tag": "Etiqueta Inválida",
|
||||
@ -310,7 +313,6 @@
|
||||
"OpenAI URL/Key required.": "URL/Clau d'OpenAI requerides.",
|
||||
"or": "o",
|
||||
"Other": "Altres",
|
||||
"Overview": "Visió general",
|
||||
"Password": "Contrasenya",
|
||||
"PDF document (.pdf)": "Document PDF (.pdf)",
|
||||
"PDF Extract Images (OCR)": "Extreu Imatges de PDF (OCR)",
|
||||
@ -361,6 +363,7 @@
|
||||
"Scan for documents from {{path}}": "Escaneja documents des de {{path}}",
|
||||
"Search": "Cerca",
|
||||
"Search a model": "Cerca un model",
|
||||
"Search Chats": "",
|
||||
"Search Documents": "Cerca Documents",
|
||||
"Search Models": "",
|
||||
"Search Prompts": "Cerca Prompts",
|
||||
@ -444,6 +447,7 @@
|
||||
"Top P": "Top P",
|
||||
"Trouble accessing Ollama?": "Problemes accedint a Ollama?",
|
||||
"TTS Settings": "Configuracions TTS",
|
||||
"Type": "",
|
||||
"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}}.",
|
||||
"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 to have them replaced with clipboard content.": "variable per tenir-les reemplaçades amb el contingut del porta-retalls.",
|
||||
"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.",
|
||||
"Web": "Web",
|
||||
"Web Loader Settings": "Configuració del carregador web",
|
||||
|
@ -47,6 +47,7 @@
|
||||
"API keys": "",
|
||||
"April": "",
|
||||
"Archive": "",
|
||||
"Archive All Chats": "",
|
||||
"Archived Chats": "pagrekord sa chat",
|
||||
"are allowed - Activate this command by typing": "gitugotan - I-enable kini nga sugo pinaagi sa pag-type",
|
||||
"Are you sure?": "Sigurado ka ?",
|
||||
@ -61,6 +62,7 @@
|
||||
"available!": "magamit!",
|
||||
"Back": "Balik",
|
||||
"Bad Response": "",
|
||||
"Banners": "",
|
||||
"Base Model (From)": "",
|
||||
"before": "",
|
||||
"Being lazy": "",
|
||||
@ -119,7 +121,6 @@
|
||||
"Custom": "Custom",
|
||||
"Customize models for a specific purpose": "",
|
||||
"Dark": "Ngitngit",
|
||||
"Dashboard": "",
|
||||
"Database": "Database",
|
||||
"December": "",
|
||||
"Default": "Pinaagi sa default",
|
||||
@ -187,6 +188,7 @@
|
||||
"Enter Your Full Name": "Ibutang ang imong tibuok nga ngalan",
|
||||
"Enter Your Password": "Ibutang ang imong password",
|
||||
"Enter Your Role": "",
|
||||
"Error": "",
|
||||
"Experimental": "Eksperimento",
|
||||
"Export All Chats (All Users)": "I-export ang tanan nga mga chat (Tanan nga tiggamit)",
|
||||
"Export Chats": "I-export ang mga chat",
|
||||
@ -226,6 +228,7 @@
|
||||
"Import Models": "",
|
||||
"Import Prompts": "Import prompt",
|
||||
"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",
|
||||
"Interface": "Interface",
|
||||
"Invalid Tag": "",
|
||||
@ -310,7 +313,6 @@
|
||||
"OpenAI URL/Key required.": "",
|
||||
"or": "O",
|
||||
"Other": "",
|
||||
"Overview": "",
|
||||
"Password": "Password",
|
||||
"PDF document (.pdf)": "",
|
||||
"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}}",
|
||||
"Search": "Pagpanukiduki",
|
||||
"Search a model": "",
|
||||
"Search Chats": "",
|
||||
"Search Documents": "Pangitaa ang mga dokumento",
|
||||
"Search Models": "",
|
||||
"Search Prompts": "Pangitaa ang mga prompt",
|
||||
@ -444,6 +447,7 @@
|
||||
"Top P": "Ibabaw nga P",
|
||||
"Trouble accessing Ollama?": "Adunay mga problema sa pag-access sa Ollama?",
|
||||
"TTS Settings": "Mga Setting sa TTS",
|
||||
"Type": "",
|
||||
"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}}.",
|
||||
"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 to have them replaced with clipboard content.": "variable aron pulihan kini sa mga sulud sa clipboard.",
|
||||
"Version": "Bersyon",
|
||||
"Warning": "",
|
||||
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
|
||||
"Web": "Web",
|
||||
"Web Loader Settings": "",
|
||||
|
@ -47,6 +47,7 @@
|
||||
"API keys": "API Schlüssel",
|
||||
"April": "April",
|
||||
"Archive": "Archivieren",
|
||||
"Archive All Chats": "",
|
||||
"Archived Chats": "Archivierte Chats",
|
||||
"are allowed - Activate this command by typing": "sind erlaubt - Aktiviere diesen Befehl, indem du",
|
||||
"Are you sure?": "Bist du sicher?",
|
||||
@ -61,6 +62,7 @@
|
||||
"available!": "verfügbar!",
|
||||
"Back": "Zurück",
|
||||
"Bad Response": "Schlechte Antwort",
|
||||
"Banners": "",
|
||||
"Base Model (From)": "",
|
||||
"before": "bereits geteilt",
|
||||
"Being lazy": "Faul sein",
|
||||
@ -119,7 +121,6 @@
|
||||
"Custom": "Benutzerdefiniert",
|
||||
"Customize models for a specific purpose": "",
|
||||
"Dark": "Dunkel",
|
||||
"Dashboard": "Dashboard",
|
||||
"Database": "Datenbank",
|
||||
"December": "Dezember",
|
||||
"Default": "Standard",
|
||||
@ -187,6 +188,7 @@
|
||||
"Enter Your Full Name": "Gib deinen vollständigen Namen ein",
|
||||
"Enter Your Password": "Gib dein Passwort ein",
|
||||
"Enter Your Role": "Gebe deine Rolle ein",
|
||||
"Error": "",
|
||||
"Experimental": "Experimentell",
|
||||
"Export All Chats (All Users)": "Alle Chats exportieren (alle Benutzer)",
|
||||
"Export Chats": "Chats exportieren",
|
||||
@ -226,6 +228,7 @@
|
||||
"Import Models": "",
|
||||
"Import Prompts": "Prompts importieren",
|
||||
"Include `--api` flag when running stable-diffusion-webui": "Füge das `--api`-Flag hinzu, wenn du stable-diffusion-webui nutzt",
|
||||
"Info": "",
|
||||
"Input commands": "Eingabebefehle",
|
||||
"Interface": "Benutzeroberfläche",
|
||||
"Invalid Tag": "Ungültiger Tag",
|
||||
@ -310,7 +313,6 @@
|
||||
"OpenAI URL/Key required.": "OpenAI URL/Key erforderlich.",
|
||||
"or": "oder",
|
||||
"Other": "Andere",
|
||||
"Overview": "Übersicht",
|
||||
"Password": "Passwort",
|
||||
"PDF document (.pdf)": "PDF-Dokument (.pdf)",
|
||||
"PDF Extract Images (OCR)": "Text von Bildern aus PDFs extrahieren (OCR)",
|
||||
@ -361,6 +363,7 @@
|
||||
"Scan for documents from {{path}}": "Dokumente von {{path}} scannen",
|
||||
"Search": "Suchen",
|
||||
"Search a model": "Nach einem Modell suchen",
|
||||
"Search Chats": "",
|
||||
"Search Documents": "Dokumente suchen",
|
||||
"Search Models": "",
|
||||
"Search Prompts": "Prompts suchen",
|
||||
@ -444,6 +447,7 @@
|
||||
"Top P": "Top P",
|
||||
"Trouble accessing Ollama?": "Probleme beim Zugriff auf Ollama?",
|
||||
"TTS Settings": "TTS-Einstellungen",
|
||||
"Type": "",
|
||||
"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}}.",
|
||||
"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 to have them replaced with clipboard content.": "Variable, um den Inhalt der Zwischenablage beim Nutzen des Prompts zu ersetzen.",
|
||||
"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.",
|
||||
"Web": "Web",
|
||||
"Web Loader Settings": "Web Loader Einstellungen",
|
||||
|
@ -47,6 +47,7 @@
|
||||
"API keys": "",
|
||||
"April": "",
|
||||
"Archive": "",
|
||||
"Archive All Chats": "",
|
||||
"Archived Chats": "",
|
||||
"are allowed - Activate this command by typing": "are allowed. Activate typing",
|
||||
"Are you sure?": "Such certainty?",
|
||||
@ -61,6 +62,7 @@
|
||||
"available!": "available! So excite!",
|
||||
"Back": "Back",
|
||||
"Bad Response": "",
|
||||
"Banners": "",
|
||||
"Base Model (From)": "",
|
||||
"before": "",
|
||||
"Being lazy": "",
|
||||
@ -119,7 +121,6 @@
|
||||
"Custom": "Custom",
|
||||
"Customize models for a specific purpose": "",
|
||||
"Dark": "Dark",
|
||||
"Dashboard": "",
|
||||
"Database": "Database",
|
||||
"December": "",
|
||||
"Default": "Default",
|
||||
@ -187,6 +188,7 @@
|
||||
"Enter Your Full Name": "Enter Your Full Wow",
|
||||
"Enter Your Password": "Enter Your Barkword",
|
||||
"Enter Your Role": "",
|
||||
"Error": "",
|
||||
"Experimental": "Much Experiment",
|
||||
"Export All Chats (All Users)": "Export All Chats (All Doggos)",
|
||||
"Export Chats": "Export Barks",
|
||||
@ -226,6 +228,7 @@
|
||||
"Import Models": "",
|
||||
"Import Prompts": "Import Promptos",
|
||||
"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": "",
|
||||
@ -310,7 +313,6 @@
|
||||
"OpenAI URL/Key required.": "",
|
||||
"or": "or",
|
||||
"Other": "",
|
||||
"Overview": "",
|
||||
"Password": "Barkword",
|
||||
"PDF document (.pdf)": "",
|
||||
"PDF Extract Images (OCR)": "PDF Extract Wowmages (OCR)",
|
||||
@ -361,6 +363,7 @@
|
||||
"Scan for documents from {{path}}": "Scan for documents from {{path}} wow",
|
||||
"Search": "Search very search",
|
||||
"Search a model": "",
|
||||
"Search Chats": "",
|
||||
"Search Documents": "Search Documents much find",
|
||||
"Search Models": "",
|
||||
"Search Prompts": "Search Prompts much wow",
|
||||
@ -444,6 +447,7 @@
|
||||
"Top P": "Top P very top",
|
||||
"Trouble accessing Ollama?": "Trouble accessing Ollama? Much trouble?",
|
||||
"TTS Settings": "TTS Settings much settings",
|
||||
"Type": "",
|
||||
"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!",
|
||||
"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 to have them replaced with clipboard content.": "variable to have them replaced with clipboard content. Very replace.",
|
||||
"Version": "Version much version",
|
||||
"Warning": "",
|
||||
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
|
||||
"Web": "Web very web",
|
||||
"Web Loader Settings": "",
|
||||
|
@ -47,6 +47,7 @@
|
||||
"API keys": "",
|
||||
"April": "",
|
||||
"Archive": "",
|
||||
"Archive All Chats": "",
|
||||
"Archived Chats": "",
|
||||
"are allowed - Activate this command by typing": "",
|
||||
"Are you sure?": "",
|
||||
@ -61,6 +62,7 @@
|
||||
"available!": "",
|
||||
"Back": "",
|
||||
"Bad Response": "",
|
||||
"Banners": "",
|
||||
"Base Model (From)": "",
|
||||
"before": "",
|
||||
"Being lazy": "",
|
||||
@ -119,7 +121,6 @@
|
||||
"Custom": "",
|
||||
"Customize models for a specific purpose": "",
|
||||
"Dark": "",
|
||||
"Dashboard": "",
|
||||
"Database": "",
|
||||
"December": "",
|
||||
"Default": "",
|
||||
@ -187,6 +188,7 @@
|
||||
"Enter Your Full Name": "",
|
||||
"Enter Your Password": "",
|
||||
"Enter Your Role": "",
|
||||
"Error": "",
|
||||
"Experimental": "",
|
||||
"Export All Chats (All Users)": "",
|
||||
"Export Chats": "",
|
||||
@ -226,6 +228,7 @@
|
||||
"Import Models": "",
|
||||
"Import Prompts": "",
|
||||
"Include `--api` flag when running stable-diffusion-webui": "",
|
||||
"Info": "",
|
||||
"Input commands": "",
|
||||
"Interface": "",
|
||||
"Invalid Tag": "",
|
||||
@ -310,7 +313,6 @@
|
||||
"OpenAI URL/Key required.": "",
|
||||
"or": "",
|
||||
"Other": "",
|
||||
"Overview": "",
|
||||
"Password": "",
|
||||
"PDF document (.pdf)": "",
|
||||
"PDF Extract Images (OCR)": "",
|
||||
@ -361,6 +363,7 @@
|
||||
"Scan for documents from {{path}}": "",
|
||||
"Search": "",
|
||||
"Search a model": "",
|
||||
"Search Chats": "",
|
||||
"Search Documents": "",
|
||||
"Search Models": "",
|
||||
"Search Prompts": "",
|
||||
@ -444,6 +447,7 @@
|
||||
"Top P": "",
|
||||
"Trouble accessing Ollama?": "",
|
||||
"TTS Settings": "",
|
||||
"Type": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "",
|
||||
"Uh-oh! There was an issue connecting to {{provider}}.": "",
|
||||
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "",
|
||||
@ -464,6 +468,7 @@
|
||||
"variable": "",
|
||||
"variable to have them replaced with clipboard content.": "",
|
||||
"Version": "",
|
||||
"Warning": "",
|
||||
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
|
||||
"Web": "",
|
||||
"Web Loader Settings": "",
|
||||
|
@ -47,6 +47,7 @@
|
||||
"API keys": "",
|
||||
"April": "",
|
||||
"Archive": "",
|
||||
"Archive All Chats": "",
|
||||
"Archived Chats": "",
|
||||
"are allowed - Activate this command by typing": "",
|
||||
"Are you sure?": "",
|
||||
@ -61,6 +62,7 @@
|
||||
"available!": "",
|
||||
"Back": "",
|
||||
"Bad Response": "",
|
||||
"Banners": "",
|
||||
"Base Model (From)": "",
|
||||
"before": "",
|
||||
"Being lazy": "",
|
||||
@ -119,7 +121,6 @@
|
||||
"Custom": "",
|
||||
"Customize models for a specific purpose": "",
|
||||
"Dark": "",
|
||||
"Dashboard": "",
|
||||
"Database": "",
|
||||
"December": "",
|
||||
"Default": "",
|
||||
@ -187,6 +188,7 @@
|
||||
"Enter Your Full Name": "",
|
||||
"Enter Your Password": "",
|
||||
"Enter Your Role": "",
|
||||
"Error": "",
|
||||
"Experimental": "",
|
||||
"Export All Chats (All Users)": "",
|
||||
"Export Chats": "",
|
||||
@ -226,6 +228,7 @@
|
||||
"Import Models": "",
|
||||
"Import Prompts": "",
|
||||
"Include `--api` flag when running stable-diffusion-webui": "",
|
||||
"Info": "",
|
||||
"Input commands": "",
|
||||
"Interface": "",
|
||||
"Invalid Tag": "",
|
||||
@ -310,7 +313,6 @@
|
||||
"OpenAI URL/Key required.": "",
|
||||
"or": "",
|
||||
"Other": "",
|
||||
"Overview": "",
|
||||
"Password": "",
|
||||
"PDF document (.pdf)": "",
|
||||
"PDF Extract Images (OCR)": "",
|
||||
@ -361,6 +363,7 @@
|
||||
"Scan for documents from {{path}}": "",
|
||||
"Search": "",
|
||||
"Search a model": "",
|
||||
"Search Chats": "",
|
||||
"Search Documents": "",
|
||||
"Search Models": "",
|
||||
"Search Prompts": "",
|
||||
@ -444,6 +447,7 @@
|
||||
"Top P": "",
|
||||
"Trouble accessing Ollama?": "",
|
||||
"TTS Settings": "",
|
||||
"Type": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "",
|
||||
"Uh-oh! There was an issue connecting to {{provider}}.": "",
|
||||
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "",
|
||||
@ -464,6 +468,7 @@
|
||||
"variable": "",
|
||||
"variable to have them replaced with clipboard content.": "",
|
||||
"Version": "",
|
||||
"Warning": "",
|
||||
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "",
|
||||
"Web": "",
|
||||
"Web Loader Settings": "",
|
||||
|
@ -47,6 +47,7 @@
|
||||
"API keys": "Claves de la API",
|
||||
"April": "Abril",
|
||||
"Archive": "Archivar",
|
||||
"Archive All Chats": "",
|
||||
"Archived Chats": "Chats archivados",
|
||||
"are allowed - Activate this command by typing": "están permitidos - Active este comando escribiendo",
|
||||
"Are you sure?": "¿Está seguro?",
|
||||
@ -61,6 +62,7 @@
|
||||
"available!": "¡disponible!",
|
||||
"Back": "Volver",
|
||||
"Bad Response": "Respuesta incorrecta",
|
||||
"Banners": "",
|
||||
"Base Model (From)": "",
|
||||
"before": "antes",
|
||||
"Being lazy": "Ser perezoso",
|
||||
@ -119,7 +121,6 @@
|
||||
"Custom": "Personalizado",
|
||||
"Customize models for a specific purpose": "",
|
||||
"Dark": "Oscuro",
|
||||
"Dashboard": "Tablero",
|
||||
"Database": "Base de datos",
|
||||
"December": "Diciembre",
|
||||
"Default": "Por defecto",
|
||||
@ -187,6 +188,7 @@
|
||||
"Enter Your Full Name": "Ingrese su nombre completo",
|
||||
"Enter Your Password": "Ingrese su contraseña",
|
||||
"Enter Your Role": "Ingrese su rol",
|
||||
"Error": "",
|
||||
"Experimental": "Experimental",
|
||||
"Export All Chats (All Users)": "Exportar todos los chats (Todos los usuarios)",
|
||||
"Export Chats": "Exportar Chats",
|
||||
@ -226,6 +228,7 @@
|
||||
"Import Models": "",
|
||||
"Import Prompts": "Importar Prompts",
|
||||
"Include `--api` flag when running stable-diffusion-webui": "Incluir el indicador `--api` al ejecutar stable-diffusion-webui",
|
||||
"Info": "",
|
||||
"Input commands": "Ingresar comandos",
|
||||
"Interface": "Interfaz",
|
||||
"Invalid Tag": "Etiqueta Inválida",
|
||||
@ -310,7 +313,6 @@
|
||||
"OpenAI URL/Key required.": "URL/Clave de OpenAI es requerida.",
|
||||
"or": "o",
|
||||
"Other": "Otro",
|
||||
"Overview": "Resumen",
|
||||
"Password": "Contraseña",
|
||||
"PDF document (.pdf)": "PDF document (.pdf)",
|
||||
"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}}",
|
||||
"Search": "Buscar",
|
||||
"Search a model": "Buscar un modelo",
|
||||
"Search Chats": "",
|
||||
"Search Documents": "Buscar Documentos",
|
||||
"Search Models": "",
|
||||
"Search Prompts": "Buscar Prompts",
|
||||
@ -444,6 +447,7 @@
|
||||
"Top P": "Top P",
|
||||
"Trouble accessing Ollama?": "¿Problemas para acceder a Ollama?",
|
||||
"TTS Settings": "Configuración de TTS",
|
||||
"Type": "",
|
||||
"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}}.",
|
||||
"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 to have them replaced with clipboard content.": "variable para reemplazarlos con el contenido del portapapeles.",
|
||||
"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.",
|
||||
"Web": "Web",
|
||||
"Web Loader Settings": "Web Loader Settings",
|
||||
|
@ -47,6 +47,7 @@
|
||||
"API keys": "API keys",
|
||||
"April": "ژوئن",
|
||||
"Archive": "آرشیو",
|
||||
"Archive All Chats": "",
|
||||
"Archived Chats": "آرشیو تاریخچه چت",
|
||||
"are allowed - Activate this command by typing": "مجاز هستند - این دستور را با تایپ کردن این فعال کنید:",
|
||||
"Are you sure?": "آیا مطمئن هستید؟",
|
||||
@ -61,6 +62,7 @@
|
||||
"available!": "در دسترس!",
|
||||
"Back": "بازگشت",
|
||||
"Bad Response": "پاسخ خوب نیست",
|
||||
"Banners": "",
|
||||
"Base Model (From)": "",
|
||||
"before": "قبل",
|
||||
"Being lazy": "حالت سازنده",
|
||||
@ -119,7 +121,6 @@
|
||||
"Custom": "دلخواه",
|
||||
"Customize models for a specific purpose": "",
|
||||
"Dark": "تیره",
|
||||
"Dashboard": "داشبورد",
|
||||
"Database": "پایگاه داده",
|
||||
"December": "دسامبر",
|
||||
"Default": "پیشفرض",
|
||||
@ -187,6 +188,7 @@
|
||||
"Enter Your Full Name": "نام کامل خود را وارد کنید",
|
||||
"Enter Your Password": "رمز عبور خود را وارد کنید",
|
||||
"Enter Your Role": "نقش خود را وارد کنید",
|
||||
"Error": "",
|
||||
"Experimental": "آزمایشی",
|
||||
"Export All Chats (All Users)": "اکسپورت از همه گپ\u200cها(همه کاربران)",
|
||||
"Export Chats": "اکسپورت از گپ\u200cها",
|
||||
@ -226,6 +228,7 @@
|
||||
"Import Models": "",
|
||||
"Import Prompts": "ایمپورت پرامپت\u200cها",
|
||||
"Include `--api` flag when running stable-diffusion-webui": "فلگ `--api` را هنکام اجرای stable-diffusion-webui استفاده کنید.",
|
||||
"Info": "",
|
||||
"Input commands": "ورودی دستورات",
|
||||
"Interface": "رابط",
|
||||
"Invalid Tag": "تگ نامعتبر",
|
||||
@ -310,7 +313,6 @@
|
||||
"OpenAI URL/Key required.": "URL/Key OpenAI مورد نیاز است.",
|
||||
"or": "روشن",
|
||||
"Other": "دیگر",
|
||||
"Overview": "نمای کلی",
|
||||
"Password": "رمز عبور",
|
||||
"PDF document (.pdf)": "PDF سند (.pdf)",
|
||||
"PDF Extract Images (OCR)": "استخراج تصاویر از PDF (OCR)",
|
||||
@ -361,6 +363,7 @@
|
||||
"Scan for documents from {{path}}": "اسکن اسناد از {{path}}",
|
||||
"Search": "جستجو",
|
||||
"Search a model": "جستجوی مدل",
|
||||
"Search Chats": "",
|
||||
"Search Documents": "جستجوی اسناد",
|
||||
"Search Models": "",
|
||||
"Search Prompts": "جستجوی پرامپت\u200cها",
|
||||
@ -444,6 +447,7 @@
|
||||
"Top P": "Top P",
|
||||
"Trouble accessing Ollama?": "در دسترسی به اولاما مشکل دارید؟",
|
||||
"TTS Settings": "تنظیمات TTS",
|
||||
"Type": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "مقدار URL دانلود (Resolve) Hugging Face را وارد کنید",
|
||||
"Uh-oh! There was an issue connecting to {{provider}}.": "اوه اوه! مشکلی در اتصال به {{provider}} وجود داشت.",
|
||||
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "نوع فایل '{{file_type}}' ناشناخته است، به عنوان یک فایل متنی ساده با آن برخورد می شود.",
|
||||
@ -464,6 +468,7 @@
|
||||
"variable": "متغیر",
|
||||
"variable to have them replaced with clipboard content.": "متغیر برای جایگزینی آنها با محتوای کلیپ بورد.",
|
||||
"Version": "نسخه",
|
||||
"Warning": "",
|
||||
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "هشدار: اگر شما به روز کنید یا تغییر دهید مدل شما، باید تمام سند ها را مجددا وارد کنید.",
|
||||
"Web": "وب",
|
||||
"Web Loader Settings": "تنظیمات لودر وب",
|
||||
|
@ -47,6 +47,7 @@
|
||||
"API keys": "API-avaimet",
|
||||
"April": "huhtikuu",
|
||||
"Archive": "Arkisto",
|
||||
"Archive All Chats": "",
|
||||
"Archived Chats": "Arkistoidut keskustelut",
|
||||
"are allowed - Activate this command by typing": "ovat sallittuja - Aktivoi tämä komento kirjoittamalla",
|
||||
"Are you sure?": "Oletko varma?",
|
||||
@ -61,6 +62,7 @@
|
||||
"available!": "saatavilla!",
|
||||
"Back": "Takaisin",
|
||||
"Bad Response": "Epäkelpo vastaus",
|
||||
"Banners": "",
|
||||
"Base Model (From)": "",
|
||||
"before": "ennen",
|
||||
"Being lazy": "Oli laiska",
|
||||
@ -119,7 +121,6 @@
|
||||
"Custom": "Mukautettu",
|
||||
"Customize models for a specific purpose": "",
|
||||
"Dark": "Tumma",
|
||||
"Dashboard": "Kojelauta",
|
||||
"Database": "Tietokanta",
|
||||
"December": "joulukuu",
|
||||
"Default": "Oletus",
|
||||
@ -187,6 +188,7 @@
|
||||
"Enter Your Full Name": "Syötä koko nimesi",
|
||||
"Enter Your Password": "Syötä salasanasi",
|
||||
"Enter Your Role": "Syötä roolisi",
|
||||
"Error": "",
|
||||
"Experimental": "Kokeellinen",
|
||||
"Export All Chats (All Users)": "Vie kaikki keskustelut (kaikki käyttäjät)",
|
||||
"Export Chats": "Vie keskustelut",
|
||||
@ -226,6 +228,7 @@
|
||||
"Import Models": "",
|
||||
"Import Prompts": "Tuo kehotteita",
|
||||
"Include `--api` flag when running stable-diffusion-webui": "Sisällytä `--api`-parametri suorittaessasi stable-diffusion-webui",
|
||||
"Info": "",
|
||||
"Input commands": "Syötä komennot",
|
||||
"Interface": "Käyttöliittymä",
|
||||
"Invalid Tag": "Virheellinen tagi",
|
||||
@ -310,7 +313,6 @@
|
||||
"OpenAI URL/Key required.": "OpenAI URL/ -avain vaaditaan.",
|
||||
"or": "tai",
|
||||
"Other": "Muu",
|
||||
"Overview": "Yleiskatsaus",
|
||||
"Password": "Salasana",
|
||||
"PDF document (.pdf)": "PDF-tiedosto (.pdf)",
|
||||
"PDF Extract Images (OCR)": "PDF-tiedoston kuvien erottelu (OCR)",
|
||||
@ -361,6 +363,7 @@
|
||||
"Scan for documents from {{path}}": "Skannaa asiakirjoja polusta {{path}}",
|
||||
"Search": "Haku",
|
||||
"Search a model": "Hae mallia",
|
||||
"Search Chats": "",
|
||||
"Search Documents": "Hae asiakirjoja",
|
||||
"Search Models": "",
|
||||
"Search Prompts": "Hae kehotteita",
|
||||
@ -444,6 +447,7 @@
|
||||
"Top P": "Top P",
|
||||
"Trouble accessing Ollama?": "Ongelmia Ollama-yhteydessä?",
|
||||
"TTS Settings": "Puheentuottamisasetukset",
|
||||
"Type": "",
|
||||
"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.",
|
||||
"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 to have them replaced with clipboard content.": "muuttuja korvataan leikepöydän sisällöllä.",
|
||||
"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.",
|
||||
"Web": "Web",
|
||||
"Web Loader Settings": "Web Loader asetukset",
|
||||
|
@ -47,6 +47,7 @@
|
||||
"API keys": "Clés API",
|
||||
"April": "Avril",
|
||||
"Archive": "Archiver",
|
||||
"Archive All Chats": "",
|
||||
"Archived Chats": "enregistrement du chat",
|
||||
"are allowed - Activate this command by typing": "sont autorisés - Activez cette commande en tapant",
|
||||
"Are you sure?": "Êtes-vous sûr ?",
|
||||
@ -61,6 +62,7 @@
|
||||
"available!": "disponible !",
|
||||
"Back": "Retour",
|
||||
"Bad Response": "Mauvaise réponse",
|
||||
"Banners": "",
|
||||
"Base Model (From)": "",
|
||||
"before": "avant",
|
||||
"Being lazy": "En manque de temps",
|
||||
@ -119,7 +121,6 @@
|
||||
"Custom": "Personnalisé",
|
||||
"Customize models for a specific purpose": "",
|
||||
"Dark": "Sombre",
|
||||
"Dashboard": "Tableau de bord",
|
||||
"Database": "Base de données",
|
||||
"December": "Décembre",
|
||||
"Default": "Par défaut",
|
||||
@ -187,6 +188,7 @@
|
||||
"Enter Your Full Name": "Entrez votre nom complet",
|
||||
"Enter Your Password": "Entrez votre mot de passe",
|
||||
"Enter Your Role": "Entrez votre rôle",
|
||||
"Error": "",
|
||||
"Experimental": "Expérimental",
|
||||
"Export All Chats (All Users)": "Exporter toutes les discussions (Tous les utilisateurs)",
|
||||
"Export Chats": "Exporter les discussions",
|
||||
@ -226,6 +228,7 @@
|
||||
"Import Models": "",
|
||||
"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",
|
||||
"Info": "",
|
||||
"Input commands": "Entrez des commandes d'entrée",
|
||||
"Interface": "Interface",
|
||||
"Invalid Tag": "Tag invalide",
|
||||
@ -310,7 +313,6 @@
|
||||
"OpenAI URL/Key required.": "L'URL/Clé OpenAI est requise.",
|
||||
"or": "ou",
|
||||
"Other": "Autre",
|
||||
"Overview": "Aperçu",
|
||||
"Password": "Mot de passe",
|
||||
"PDF document (.pdf)": "Document PDF (.pdf)",
|
||||
"PDF Extract Images (OCR)": "Extraction d'images PDF (OCR)",
|
||||
@ -361,6 +363,7 @@
|
||||
"Scan for documents from {{path}}": "Scanner des documents depuis {{path}}",
|
||||
"Search": "Recherche",
|
||||
"Search a model": "Rechercher un modèle",
|
||||
"Search Chats": "",
|
||||
"Search Documents": "Rechercher des documents",
|
||||
"Search Models": "",
|
||||
"Search Prompts": "Rechercher des prompts",
|
||||
@ -444,6 +447,7 @@
|
||||
"Top P": "Top P",
|
||||
"Trouble accessing Ollama?": "Des problèmes pour accéder à Ollama ?",
|
||||
"TTS Settings": "Paramètres TTS",
|
||||
"Type": "",
|
||||
"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}}.",
|
||||
"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 to have them replaced with clipboard content.": "variable pour les remplacer par le contenu du presse-papiers.",
|
||||
"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.",
|
||||
"Web": "Web",
|
||||
"Web Loader Settings": "Paramètres du chargeur Web",
|
||||
|
@ -47,6 +47,7 @@
|
||||
"API keys": "Clés API",
|
||||
"April": "Avril",
|
||||
"Archive": "Archiver",
|
||||
"Archive All Chats": "",
|
||||
"Archived Chats": "Chats Archivés",
|
||||
"are allowed - Activate this command by typing": "sont autorisés - Activez cette commande en tapant",
|
||||
"Are you sure?": "Êtes-vous sûr ?",
|
||||
@ -61,6 +62,7 @@
|
||||
"available!": "disponible !",
|
||||
"Back": "Retour",
|
||||
"Bad Response": "Mauvaise Réponse",
|
||||
"Banners": "",
|
||||
"Base Model (From)": "Modèle de Base (De)",
|
||||
"before": "avant",
|
||||
"Being lazy": "Est paresseux",
|
||||
@ -119,7 +121,6 @@
|
||||
"Custom": "Personnalisé",
|
||||
"Customize models for a specific purpose": "Personnaliser les modèles pour un objectif spécifique",
|
||||
"Dark": "Sombre",
|
||||
"Dashboard": "Tableau de bord",
|
||||
"Database": "Base de données",
|
||||
"December": "Décembre",
|
||||
"Default": "Par défaut",
|
||||
@ -187,6 +188,7 @@
|
||||
"Enter Your Full Name": "Entrez Votre Nom Complet",
|
||||
"Enter Your Password": "Entrez Votre Mot De Passe",
|
||||
"Enter Your Role": "Entrez Votre Rôle",
|
||||
"Error": "",
|
||||
"Experimental": "Expérimental",
|
||||
"Export All Chats (All Users)": "Exporter Tous les Chats (Tous les Utilisateurs)",
|
||||
"Export Chats": "Exporter les Chats",
|
||||
@ -226,6 +228,7 @@
|
||||
"Import Models": "Importer des Modèles",
|
||||
"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",
|
||||
"Info": "",
|
||||
"Input commands": "Entrez les commandes d'entrée",
|
||||
"Interface": "Interface",
|
||||
"Invalid Tag": "Tag Invalide",
|
||||
@ -310,7 +313,6 @@
|
||||
"OpenAI URL/Key required.": "URL/Clé OpenAI requise.",
|
||||
"or": "ou",
|
||||
"Other": "Autre",
|
||||
"Overview": "Aperçu",
|
||||
"Password": "Mot de passe",
|
||||
"PDF document (.pdf)": "Document PDF (.pdf)",
|
||||
"PDF Extract Images (OCR)": "Extraction d'images PDF (OCR)",
|
||||
@ -361,6 +363,7 @@
|
||||
"Scan for documents from {{path}}": "Scanner des documents depuis {{path}}",
|
||||
"Search": "Recherche",
|
||||
"Search a model": "Rechercher un modèle",
|
||||
"Search Chats": "",
|
||||
"Search Documents": "Rechercher des Documents",
|
||||
"Search Models": "",
|
||||
"Search Prompts": "Rechercher des Prompts",
|
||||
@ -444,6 +447,7 @@
|
||||
"Top P": "Top P",
|
||||
"Trouble accessing Ollama?": "Problèmes d'accès à Ollama ?",
|
||||
"TTS Settings": "Paramètres TTS",
|
||||
"Type": "",
|
||||
"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}}.",
|
||||
"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 to have them replaced with clipboard content.": "variable pour les remplacer par le contenu du presse-papiers.",
|
||||
"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.",
|
||||
"Web": "Web",
|
||||
"Web Loader Settings": "Paramètres du Chargeur Web",
|
||||
|
@ -47,6 +47,7 @@
|
||||
"API keys": "מפתחות API",
|
||||
"April": "אפריל",
|
||||
"Archive": "ארכיון",
|
||||
"Archive All Chats": "",
|
||||
"Archived Chats": "צ'אטים מאורכבים",
|
||||
"are allowed - Activate this command by typing": "מותרים - הפעל פקודה זו על ידי הקלדה",
|
||||
"Are you sure?": "האם אתה בטוח?",
|
||||
@ -61,6 +62,7 @@
|
||||
"available!": "זמין!",
|
||||
"Back": "חזור",
|
||||
"Bad Response": "תגובה שגויה",
|
||||
"Banners": "",
|
||||
"Base Model (From)": "",
|
||||
"before": "לפני",
|
||||
"Being lazy": "להיות עצלן",
|
||||
@ -119,7 +121,6 @@
|
||||
"Custom": "מותאם אישית",
|
||||
"Customize models for a specific purpose": "",
|
||||
"Dark": "כהה",
|
||||
"Dashboard": "לוח בקרה",
|
||||
"Database": "מסד נתונים",
|
||||
"December": "דצמבר",
|
||||
"Default": "ברירת מחדל",
|
||||
@ -187,6 +188,7 @@
|
||||
"Enter Your Full Name": "הזן את שמך המלא",
|
||||
"Enter Your Password": "הזן את הסיסמה שלך",
|
||||
"Enter Your Role": "הזן את התפקיד שלך",
|
||||
"Error": "",
|
||||
"Experimental": "ניסיוני",
|
||||
"Export All Chats (All Users)": "ייצוא כל הצ'אטים (כל המשתמשים)",
|
||||
"Export Chats": "ייצוא צ'אטים",
|
||||
@ -226,6 +228,7 @@
|
||||
"Import Models": "",
|
||||
"Import Prompts": "יבוא פקודות",
|
||||
"Include `--api` flag when running stable-diffusion-webui": "כלול את הדגל `--api` בעת הרצת stable-diffusion-webui",
|
||||
"Info": "",
|
||||
"Input commands": "פקודות קלט",
|
||||
"Interface": "ממשק",
|
||||
"Invalid Tag": "תג לא חוקי",
|
||||
@ -310,7 +313,6 @@
|
||||
"OpenAI URL/Key required.": "נדרשת כתובת URL/מפתח של OpenAI.",
|
||||
"or": "או",
|
||||
"Other": "אחר",
|
||||
"Overview": "סקירה כללית",
|
||||
"Password": "סיסמה",
|
||||
"PDF document (.pdf)": "מסמך PDF (.pdf)",
|
||||
"PDF Extract Images (OCR)": "חילוץ תמונות מ-PDF (OCR)",
|
||||
@ -361,6 +363,7 @@
|
||||
"Scan for documents from {{path}}": "סרוק מסמכים מ-{{path}}",
|
||||
"Search": "חפש",
|
||||
"Search a model": "חפש מודל",
|
||||
"Search Chats": "",
|
||||
"Search Documents": "חפש מסמכים",
|
||||
"Search Models": "",
|
||||
"Search Prompts": "חפש פקודות",
|
||||
@ -444,6 +447,7 @@
|
||||
"Top P": "Top P",
|
||||
"Trouble accessing Ollama?": "קשה לגשת לOllama?",
|
||||
"TTS Settings": "הגדרות TTS",
|
||||
"Type": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "הקלד כתובת URL של פתרון פנים מחבק (הורד)",
|
||||
"Uh-oh! There was an issue connecting to {{provider}}.": "או-הו! אירעה בעיה בהתחברות ל- {{provider}}.",
|
||||
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "סוג קובץ לא ידוע '{{file_type}}', אך מקבל ומתייחס אליו כטקסט רגיל",
|
||||
@ -464,6 +468,7 @@
|
||||
"variable": "משתנה",
|
||||
"variable to have them replaced with clipboard content.": "משתנה להחליפו ב- clipboard תוכן.",
|
||||
"Version": "גרסה",
|
||||
"Warning": "",
|
||||
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "אזהרה: אם תעדכן או תשנה את מודל ההטבעה שלך, יהיה עליך לייבא מחדש את כל המסמכים.",
|
||||
"Web": "רשת",
|
||||
"Web Loader Settings": "הגדרות טעינת אתר",
|
||||
|
@ -47,6 +47,7 @@
|
||||
"API keys": "एपीआई कुंजियाँ",
|
||||
"April": "अप्रैल",
|
||||
"Archive": "पुरालेख",
|
||||
"Archive All Chats": "",
|
||||
"Archived Chats": "संग्रहीत चैट",
|
||||
"are allowed - Activate this command by typing": "अनुमति है - टाइप करके इस कमांड को सक्रिय करें",
|
||||
"Are you sure?": "क्या आपको यकीन है?",
|
||||
@ -61,6 +62,7 @@
|
||||
"available!": "उपलब्ध!",
|
||||
"Back": "पीछे",
|
||||
"Bad Response": "ख़राब प्रतिक्रिया",
|
||||
"Banners": "",
|
||||
"Base Model (From)": "",
|
||||
"before": "पहले",
|
||||
"Being lazy": "आलसी होना",
|
||||
@ -119,7 +121,6 @@
|
||||
"Custom": "कस्टम संस्करण",
|
||||
"Customize models for a specific purpose": "",
|
||||
"Dark": "डार्क",
|
||||
"Dashboard": "डैशबोर्ड",
|
||||
"Database": "डेटाबेस",
|
||||
"December": "डिसेंबर",
|
||||
"Default": "डिफ़ॉल्ट",
|
||||
@ -187,6 +188,7 @@
|
||||
"Enter Your Full Name": "अपना पूरा नाम भरें",
|
||||
"Enter Your Password": "अपना पासवर्ड भरें",
|
||||
"Enter Your Role": "अपनी भूमिका दर्ज करें",
|
||||
"Error": "",
|
||||
"Experimental": "प्रयोगात्मक",
|
||||
"Export All Chats (All Users)": "सभी चैट निर्यात करें (सभी उपयोगकर्ताओं की)",
|
||||
"Export Chats": "चैट निर्यात करें",
|
||||
@ -226,6 +228,7 @@
|
||||
"Import Models": "",
|
||||
"Import Prompts": "प्रॉम्प्ट आयात करें",
|
||||
"Include `--api` flag when running stable-diffusion-webui": "stable-diffusion-webui चलाते समय `--api` ध्वज शामिल करें",
|
||||
"Info": "",
|
||||
"Input commands": "इनपुट क命",
|
||||
"Interface": "इंटरफेस",
|
||||
"Invalid Tag": "अवैध टैग",
|
||||
@ -310,7 +313,6 @@
|
||||
"OpenAI URL/Key required.": "OpenAI URL/Key आवश्यक है।",
|
||||
"or": "या",
|
||||
"Other": "अन्य",
|
||||
"Overview": "अवलोकन",
|
||||
"Password": "पासवर्ड",
|
||||
"PDF document (.pdf)": "PDF दस्तावेज़ (.pdf)",
|
||||
"PDF Extract Images (OCR)": "PDF छवियाँ निकालें (OCR)",
|
||||
@ -361,6 +363,7 @@
|
||||
"Scan for documents from {{path}}": "{{path}} से दस्तावेज़ों को स्कैन करें",
|
||||
"Search": "खोजें",
|
||||
"Search a model": "एक मॉडल खोजें",
|
||||
"Search Chats": "",
|
||||
"Search Documents": "दस्तावेज़ खोजें",
|
||||
"Search Models": "",
|
||||
"Search Prompts": "प्रॉम्प्ट खोजें",
|
||||
@ -444,6 +447,7 @@
|
||||
"Top P": "शीर्ष P",
|
||||
"Trouble accessing Ollama?": "Ollama तक पहुँचने में परेशानी हो रही है?",
|
||||
"TTS Settings": "TTS सेटिंग्स",
|
||||
"Type": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "हगिंग फेस रिज़ॉल्व (डाउनलोड) यूआरएल टाइप करें",
|
||||
"Uh-oh! There was an issue connecting to {{provider}}.": "उह ओह! {{provider}} से कनेक्ट करने में एक समस्या थी।",
|
||||
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "अज्ञात फ़ाइल प्रकार '{{file_type}}', लेकिन स्वीकार करना और सादे पाठ के रूप में व्यवहार करना",
|
||||
@ -464,6 +468,7 @@
|
||||
"variable": "वेरिएबल",
|
||||
"variable to have them replaced with clipboard content.": "उन्हें क्लिपबोर्ड सामग्री से बदलने के लिए वेरिएबल।",
|
||||
"Version": "संस्करण",
|
||||
"Warning": "",
|
||||
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "चेतावनी: यदि आप अपने एम्बेडिंग मॉडल को अपडेट या बदलते हैं, तो आपको सभी दस्तावेज़ों को फिर से आयात करने की आवश्यकता होगी।",
|
||||
"Web": "वेब",
|
||||
"Web Loader Settings": "वेब लोडर सेटिंग्स",
|
||||
|
@ -47,6 +47,7 @@
|
||||
"API keys": "API ključevi",
|
||||
"April": "Travanj",
|
||||
"Archive": "Arhiva",
|
||||
"Archive All Chats": "",
|
||||
"Archived Chats": "Arhivirani razgovori",
|
||||
"are allowed - Activate this command by typing": "su dopušteni - Aktivirajte ovu naredbu upisivanjem",
|
||||
"Are you sure?": "Jeste li sigurni?",
|
||||
@ -61,6 +62,7 @@
|
||||
"available!": "dostupno!",
|
||||
"Back": "Natrag",
|
||||
"Bad Response": "Loš odgovor",
|
||||
"Banners": "",
|
||||
"Base Model (From)": "",
|
||||
"before": "prije",
|
||||
"Being lazy": "Biti lijen",
|
||||
@ -119,7 +121,6 @@
|
||||
"Custom": "Prilagođeno",
|
||||
"Customize models for a specific purpose": "",
|
||||
"Dark": "Tamno",
|
||||
"Dashboard": "Nadzorna ploča",
|
||||
"Database": "Baza podataka",
|
||||
"December": "Prosinac",
|
||||
"Default": "Zadano",
|
||||
@ -187,6 +188,7 @@
|
||||
"Enter Your Full Name": "Unesite svoje puno ime",
|
||||
"Enter Your Password": "Unesite svoju lozinku",
|
||||
"Enter Your Role": "Unesite svoju ulogu",
|
||||
"Error": "",
|
||||
"Experimental": "Eksperimentalno",
|
||||
"Export All Chats (All Users)": "Izvoz svih razgovora (svi korisnici)",
|
||||
"Export Chats": "Izvoz razgovora",
|
||||
@ -226,6 +228,7 @@
|
||||
"Import Models": "",
|
||||
"Import Prompts": "Uvoz prompta",
|
||||
"Include `--api` flag when running stable-diffusion-webui": "Uključite zastavicu `--api` prilikom pokretanja stable-diffusion-webui",
|
||||
"Info": "",
|
||||
"Input commands": "Unos naredbi",
|
||||
"Interface": "Sučelje",
|
||||
"Invalid Tag": "Nevažeća oznaka",
|
||||
@ -310,7 +313,6 @@
|
||||
"OpenAI URL/Key required.": "Potreban je OpenAI URL/ključ.",
|
||||
"or": "ili",
|
||||
"Other": "Ostalo",
|
||||
"Overview": "Pregled",
|
||||
"Password": "Lozinka",
|
||||
"PDF document (.pdf)": "PDF dokument (.pdf)",
|
||||
"PDF Extract Images (OCR)": "PDF izdvajanje slika (OCR)",
|
||||
@ -361,6 +363,7 @@
|
||||
"Scan for documents from {{path}}": "Skeniraj dokumente s {{path}}",
|
||||
"Search": "Pretraga",
|
||||
"Search a model": "Pretraži model",
|
||||
"Search Chats": "",
|
||||
"Search Documents": "Pretraga dokumenata",
|
||||
"Search Models": "",
|
||||
"Search Prompts": "Pretraga prompta",
|
||||
@ -444,6 +447,7 @@
|
||||
"Top P": "Top P",
|
||||
"Trouble accessing Ollama?": "Problemi s pristupom Ollama?",
|
||||
"TTS Settings": "TTS postavke",
|
||||
"Type": "",
|
||||
"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}}.",
|
||||
"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 to have them replaced with clipboard content.": "varijabla za zamjenu sadržajem međuspremnika.",
|
||||
"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.",
|
||||
"Web": "Web",
|
||||
"Web Loader Settings": "Postavke web učitavanja",
|
||||
|
@ -47,6 +47,7 @@
|
||||
"API keys": "Chiavi API",
|
||||
"April": "Aprile",
|
||||
"Archive": "Archivio",
|
||||
"Archive All Chats": "",
|
||||
"Archived Chats": "Chat archiviate",
|
||||
"are allowed - Activate this command by typing": "sono consentiti - Attiva questo comando digitando",
|
||||
"Are you sure?": "Sei sicuro?",
|
||||
@ -61,6 +62,7 @@
|
||||
"available!": "disponibile!",
|
||||
"Back": "Indietro",
|
||||
"Bad Response": "Risposta non valida",
|
||||
"Banners": "",
|
||||
"Base Model (From)": "",
|
||||
"before": "prima",
|
||||
"Being lazy": "Essere pigri",
|
||||
@ -119,7 +121,6 @@
|
||||
"Custom": "Personalizzato",
|
||||
"Customize models for a specific purpose": "",
|
||||
"Dark": "Scuro",
|
||||
"Dashboard": "Pannello di controllo",
|
||||
"Database": "Database",
|
||||
"December": "Dicembre",
|
||||
"Default": "Predefinito",
|
||||
@ -187,6 +188,7 @@
|
||||
"Enter Your Full Name": "Inserisci il tuo nome completo",
|
||||
"Enter Your Password": "Inserisci la tua password",
|
||||
"Enter Your Role": "Inserisci il tuo ruolo",
|
||||
"Error": "",
|
||||
"Experimental": "Sperimentale",
|
||||
"Export All Chats (All Users)": "Esporta tutte le chat (tutti gli utenti)",
|
||||
"Export Chats": "Esporta chat",
|
||||
@ -226,6 +228,7 @@
|
||||
"Import Models": "",
|
||||
"Import Prompts": "Importa prompt",
|
||||
"Include `--api` flag when running stable-diffusion-webui": "Includi il flag `--api` quando esegui stable-diffusion-webui",
|
||||
"Info": "",
|
||||
"Input commands": "Comandi di input",
|
||||
"Interface": "Interfaccia",
|
||||
"Invalid Tag": "Tag non valido",
|
||||
@ -310,7 +313,6 @@
|
||||
"OpenAI URL/Key required.": "URL/Chiave OpenAI obbligatori.",
|
||||
"or": "o",
|
||||
"Other": "Altro",
|
||||
"Overview": "Panoramica",
|
||||
"Password": "Password",
|
||||
"PDF document (.pdf)": "Documento PDF (.pdf)",
|
||||
"PDF Extract Images (OCR)": "Estrazione immagini PDF (OCR)",
|
||||
@ -361,6 +363,7 @@
|
||||
"Scan for documents from {{path}}": "Cerca documenti da {{path}}",
|
||||
"Search": "Cerca",
|
||||
"Search a model": "Cerca un modello",
|
||||
"Search Chats": "",
|
||||
"Search Documents": "Cerca documenti",
|
||||
"Search Models": "",
|
||||
"Search Prompts": "Cerca prompt",
|
||||
@ -444,6 +447,7 @@
|
||||
"Top P": "Top P",
|
||||
"Trouble accessing Ollama?": "Problemi di accesso a Ollama?",
|
||||
"TTS Settings": "Impostazioni TTS",
|
||||
"Type": "",
|
||||
"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}}.",
|
||||
"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 to have them replaced with clipboard content.": "variabile per farli sostituire con il contenuto degli appunti.",
|
||||
"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.",
|
||||
"Web": "Web",
|
||||
"Web Loader Settings": "Impostazioni del caricatore Web",
|
||||
|
@ -47,6 +47,7 @@
|
||||
"API keys": "API キー",
|
||||
"April": "4月",
|
||||
"Archive": "アーカイブ",
|
||||
"Archive All Chats": "",
|
||||
"Archived Chats": "チャット記録",
|
||||
"are allowed - Activate this command by typing": "が許可されています - 次のように入力してこのコマンドをアクティブ化します",
|
||||
"Are you sure?": "よろしいですか?",
|
||||
@ -61,6 +62,7 @@
|
||||
"available!": "利用可能!",
|
||||
"Back": "戻る",
|
||||
"Bad Response": "応答が悪い",
|
||||
"Banners": "",
|
||||
"Base Model (From)": "",
|
||||
"before": "より前",
|
||||
"Being lazy": "怠惰な",
|
||||
@ -119,7 +121,6 @@
|
||||
"Custom": "カスタム",
|
||||
"Customize models for a specific purpose": "",
|
||||
"Dark": "ダーク",
|
||||
"Dashboard": "ダッシュボード",
|
||||
"Database": "データベース",
|
||||
"December": "12月",
|
||||
"Default": "デフォルト",
|
||||
@ -187,6 +188,7 @@
|
||||
"Enter Your Full Name": "フルネームを入力してください",
|
||||
"Enter Your Password": "パスワードを入力してください",
|
||||
"Enter Your Role": "ロールを入力してください",
|
||||
"Error": "",
|
||||
"Experimental": "実験的",
|
||||
"Export All Chats (All Users)": "すべてのチャットをエクスポート (すべてのユーザー)",
|
||||
"Export Chats": "チャットをエクスポート",
|
||||
@ -226,6 +228,7 @@
|
||||
"Import Models": "",
|
||||
"Import Prompts": "プロンプトをインポート",
|
||||
"Include `--api` flag when running stable-diffusion-webui": "stable-diffusion-webuiを実行する際に`--api`フラグを含める",
|
||||
"Info": "",
|
||||
"Input commands": "入力コマンド",
|
||||
"Interface": "インターフェース",
|
||||
"Invalid Tag": "無効なタグ",
|
||||
@ -310,7 +313,6 @@
|
||||
"OpenAI URL/Key required.": "OpenAI URL/Key が必要です。",
|
||||
"or": "または",
|
||||
"Other": "その他",
|
||||
"Overview": "概要",
|
||||
"Password": "パスワード",
|
||||
"PDF document (.pdf)": "PDF ドキュメント (.pdf)",
|
||||
"PDF Extract Images (OCR)": "PDF 画像抽出 (OCR)",
|
||||
@ -361,6 +363,7 @@
|
||||
"Scan for documents from {{path}}": "{{path}} からドキュメントをスキャン",
|
||||
"Search": "検索",
|
||||
"Search a model": "モデルを検索",
|
||||
"Search Chats": "",
|
||||
"Search Documents": "ドキュメントを検索",
|
||||
"Search Models": "",
|
||||
"Search Prompts": "プロンプトを検索",
|
||||
@ -444,6 +447,7 @@
|
||||
"Top P": "トップ P",
|
||||
"Trouble accessing Ollama?": "Ollama へのアクセスに問題がありますか?",
|
||||
"TTS Settings": "TTS 設定",
|
||||
"Type": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "Hugging Face Resolve (ダウンロード) URL を入力してください",
|
||||
"Uh-oh! There was an issue connecting to {{provider}}.": "おっと! {{provider}} への接続に問題が発生しました。",
|
||||
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "不明なファイルタイプ '{{file_type}}' ですが、プレーンテキストとして受け入れて処理します",
|
||||
@ -464,6 +468,7 @@
|
||||
"variable": "変数",
|
||||
"variable to have them replaced with clipboard content.": "クリップボードの内容に置き換える変数。",
|
||||
"Version": "バージョン",
|
||||
"Warning": "",
|
||||
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "警告: 埋め込みモデルを更新または変更した場合は、すべてのドキュメントを再インポートする必要があります。",
|
||||
"Web": "ウェブ",
|
||||
"Web Loader Settings": "Web 読み込み設定",
|
||||
|
@ -47,6 +47,7 @@
|
||||
"API keys": "API გასაღები",
|
||||
"April": "აპრილი",
|
||||
"Archive": "არქივი",
|
||||
"Archive All Chats": "",
|
||||
"Archived Chats": "ჩატის ისტორიის არქივი",
|
||||
"are allowed - Activate this command by typing": "დაშვებულია - ბრძანების გასააქტიურებლად აკრიფეთ:",
|
||||
"Are you sure?": "დარწმუნებული ხარ?",
|
||||
@ -61,6 +62,7 @@
|
||||
"available!": "ხელმისაწვდომია!",
|
||||
"Back": "უკან",
|
||||
"Bad Response": "ხარვეზი",
|
||||
"Banners": "",
|
||||
"Base Model (From)": "",
|
||||
"before": "ადგილზე",
|
||||
"Being lazy": "ჩაიტყვევა",
|
||||
@ -119,7 +121,6 @@
|
||||
"Custom": "საკუთარი",
|
||||
"Customize models for a specific purpose": "",
|
||||
"Dark": "მუქი",
|
||||
"Dashboard": "პანელი",
|
||||
"Database": "მონაცემთა ბაზა",
|
||||
"December": "დეკემბერი",
|
||||
"Default": "დეფოლტი",
|
||||
@ -187,6 +188,7 @@
|
||||
"Enter Your Full Name": "შეიყვანეთ თქვენი სრული სახელი",
|
||||
"Enter Your Password": "შეიყვანეთ თქვენი პაროლი",
|
||||
"Enter Your Role": "შეიყვანეთ თქვენი როლი",
|
||||
"Error": "",
|
||||
"Experimental": "ექსპერიმენტალური",
|
||||
"Export All Chats (All Users)": "ექსპორტი ყველა ჩათი (ყველა მომხმარებელი)",
|
||||
"Export Chats": "მიმოწერის ექსპორტირება",
|
||||
@ -226,6 +228,7 @@
|
||||
"Import Models": "",
|
||||
"Import Prompts": "მოთხოვნების იმპორტი",
|
||||
"Include `--api` flag when running stable-diffusion-webui": "ჩართეთ `--api` დროშა stable-diffusion-webui-ის გაშვებისას",
|
||||
"Info": "",
|
||||
"Input commands": "შეყვანით ბრძანებებს",
|
||||
"Interface": "ინტერფეისი",
|
||||
"Invalid Tag": "არასწორი ტეგი",
|
||||
@ -310,7 +313,6 @@
|
||||
"OpenAI URL/Key required.": "OpenAI URL/Key აუცილებელია",
|
||||
"or": "ან",
|
||||
"Other": "სხვა",
|
||||
"Overview": "ოვერვიუ",
|
||||
"Password": "პაროლი",
|
||||
"PDF document (.pdf)": "PDF დოკუმენტი (.pdf)",
|
||||
"PDF Extract Images (OCR)": "PDF იდან ამოღებული სურათები (OCR)",
|
||||
@ -361,6 +363,7 @@
|
||||
"Scan for documents from {{path}}": "დოკუმენტების სკანირება {{ path}}-დან",
|
||||
"Search": "ძიება",
|
||||
"Search a model": "მოდელის ძიება",
|
||||
"Search Chats": "",
|
||||
"Search Documents": "დოკუმენტების ძიება",
|
||||
"Search Models": "",
|
||||
"Search Prompts": "მოთხოვნების ძიება",
|
||||
@ -444,6 +447,7 @@
|
||||
"Top P": "ტოპ P",
|
||||
"Trouble accessing Ollama?": "Ollama-ს ვერ უკავშირდები?",
|
||||
"TTS Settings": "TTS პარამეტრები",
|
||||
"Type": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "სცადე გადმოწერო Hugging Face Resolve URL",
|
||||
"Uh-oh! There was an issue connecting to {{provider}}.": "{{provider}}-თან დაკავშირების პრობლემა წარმოიშვა.",
|
||||
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "უცნობი ფაილის ტიპი „{{file_type}}“, მაგრამ მიიღება და განიხილება როგორც მარტივი ტექსტი",
|
||||
@ -464,6 +468,7 @@
|
||||
"variable": "ცვლადი",
|
||||
"variable to have them replaced with clipboard content.": "ცვლადი, რომ შეცვალოს ისინი ბუფერში შიგთავსით.",
|
||||
"Version": "ვერსია",
|
||||
"Warning": "",
|
||||
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "გაფრთხილება: თუ განაახლებთ ან შეცვლით ჩანერგვის მოდელს, მოგიწევთ ყველა დოკუმენტის ხელახლა იმპორტი.",
|
||||
"Web": "ვები",
|
||||
"Web Loader Settings": "ვების ჩატარების პარამეტრები",
|
||||
|
@ -47,6 +47,7 @@
|
||||
"API keys": "API 키",
|
||||
"April": "4월",
|
||||
"Archive": "아카이브",
|
||||
"Archive All Chats": "",
|
||||
"Archived Chats": "채팅 기록 아카이브",
|
||||
"are allowed - Activate this command by typing": "허용됩니다 - 이 명령을 활성화하려면 입력하세요.",
|
||||
"Are you sure?": "확실합니까?",
|
||||
@ -61,6 +62,7 @@
|
||||
"available!": "사용 가능!",
|
||||
"Back": "뒤로가기",
|
||||
"Bad Response": "응답이 좋지 않습니다.",
|
||||
"Banners": "",
|
||||
"Base Model (From)": "",
|
||||
"before": "이전",
|
||||
"Being lazy": "게으름 피우기",
|
||||
@ -119,7 +121,6 @@
|
||||
"Custom": "사용자 정의",
|
||||
"Customize models for a specific purpose": "",
|
||||
"Dark": "어두운",
|
||||
"Dashboard": "대시보드",
|
||||
"Database": "데이터베이스",
|
||||
"December": "12월",
|
||||
"Default": "기본값",
|
||||
@ -187,6 +188,7 @@
|
||||
"Enter Your Full Name": "전체 이름 입력",
|
||||
"Enter Your Password": "비밀번호 입력",
|
||||
"Enter Your Role": "역할 입력",
|
||||
"Error": "",
|
||||
"Experimental": "실험적",
|
||||
"Export All Chats (All Users)": "모든 채팅 내보내기 (모든 사용자)",
|
||||
"Export Chats": "채팅 내보내기",
|
||||
@ -226,6 +228,7 @@
|
||||
"Import Models": "",
|
||||
"Import Prompts": "프롬프트 가져오기",
|
||||
"Include `--api` flag when running stable-diffusion-webui": "stable-diffusion-webui를 실행할 때 '--api' 플래그 포함",
|
||||
"Info": "",
|
||||
"Input commands": "입력 명령",
|
||||
"Interface": "인터페이스",
|
||||
"Invalid Tag": "잘못된 태그",
|
||||
@ -310,7 +313,6 @@
|
||||
"OpenAI URL/Key required.": "OpenAI URL/Key가 필요합니다.",
|
||||
"or": "또는",
|
||||
"Other": "기타",
|
||||
"Overview": "개요",
|
||||
"Password": "비밀번호",
|
||||
"PDF document (.pdf)": "PDF 문서 (.pdf)",
|
||||
"PDF Extract Images (OCR)": "PDF에서 이미지 추출 (OCR)",
|
||||
@ -361,6 +363,7 @@
|
||||
"Scan for documents from {{path}}": "{{path}}에서 문서 스캔",
|
||||
"Search": "검색",
|
||||
"Search a model": "모델 검색",
|
||||
"Search Chats": "",
|
||||
"Search Documents": "문서 검색",
|
||||
"Search Models": "",
|
||||
"Search Prompts": "프롬프트 검색",
|
||||
@ -444,6 +447,7 @@
|
||||
"Top P": "Top P",
|
||||
"Trouble accessing Ollama?": "Ollama에 접근하는 데 문제가 있나요?",
|
||||
"TTS Settings": "TTS 설정",
|
||||
"Type": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "Hugging Face Resolve (다운로드) URL 입력",
|
||||
"Uh-oh! There was an issue connecting to {{provider}}.": "앗! {{provider}}에 연결하는 데 문제가 있었습니다.",
|
||||
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "알 수 없는 파일 유형 '{{file_type}}', 하지만 일반 텍스트로 허용하고 처리합니다.",
|
||||
@ -464,6 +468,7 @@
|
||||
"variable": "변수",
|
||||
"variable to have them replaced with clipboard content.": "변수를 사용하여 클립보드 내용으로 바꾸세요.",
|
||||
"Version": "버전",
|
||||
"Warning": "",
|
||||
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "웹 로더를 업데이트하거나 변경할 경우 모든 문서를 다시 가져와야 합니다.",
|
||||
"Web": "웹",
|
||||
"Web Loader Settings": "웹 로더 설정",
|
||||
|
@ -47,6 +47,7 @@
|
||||
"API keys": "API keys",
|
||||
"April": "April",
|
||||
"Archive": "Archief",
|
||||
"Archive All Chats": "",
|
||||
"Archived Chats": "chatrecord",
|
||||
"are allowed - Activate this command by typing": "zijn toegestaan - Activeer deze commando door te typen",
|
||||
"Are you sure?": "Zeker weten?",
|
||||
@ -61,6 +62,7 @@
|
||||
"available!": "beschikbaar!",
|
||||
"Back": "Terug",
|
||||
"Bad Response": "Ongeldig antwoord",
|
||||
"Banners": "",
|
||||
"Base Model (From)": "",
|
||||
"before": "voor",
|
||||
"Being lazy": "Lustig zijn",
|
||||
@ -119,7 +121,6 @@
|
||||
"Custom": "Aangepast",
|
||||
"Customize models for a specific purpose": "",
|
||||
"Dark": "Donker",
|
||||
"Dashboard": "Dashboard",
|
||||
"Database": "Database",
|
||||
"December": "December",
|
||||
"Default": "Standaard",
|
||||
@ -187,6 +188,7 @@
|
||||
"Enter Your Full Name": "Voer je Volledige Naam in",
|
||||
"Enter Your Password": "Voer je Wachtwoord in",
|
||||
"Enter Your Role": "Voer je Rol in",
|
||||
"Error": "",
|
||||
"Experimental": "Experimenteel",
|
||||
"Export All Chats (All Users)": "Exporteer Alle Chats (Alle Gebruikers)",
|
||||
"Export Chats": "Exporteer Chats",
|
||||
@ -226,6 +228,7 @@
|
||||
"Import Models": "",
|
||||
"Import Prompts": "Importeer Prompts",
|
||||
"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",
|
||||
"Interface": "Interface",
|
||||
"Invalid Tag": "Ongeldige Tag",
|
||||
@ -310,7 +313,6 @@
|
||||
"OpenAI URL/Key required.": "OpenAI URL/Sleutel vereist.",
|
||||
"or": "of",
|
||||
"Other": "Andere",
|
||||
"Overview": "Overzicht",
|
||||
"Password": "Wachtwoord",
|
||||
"PDF document (.pdf)": "PDF document (.pdf)",
|
||||
"PDF Extract Images (OCR)": "PDF Extract Afbeeldingen (OCR)",
|
||||
@ -361,6 +363,7 @@
|
||||
"Scan for documents from {{path}}": "Scan voor documenten van {{path}}",
|
||||
"Search": "Zoeken",
|
||||
"Search a model": "Zoek een model",
|
||||
"Search Chats": "",
|
||||
"Search Documents": "Zoek Documenten",
|
||||
"Search Models": "",
|
||||
"Search Prompts": "Zoek Prompts",
|
||||
@ -444,6 +447,7 @@
|
||||
"Top P": "Top P",
|
||||
"Trouble accessing Ollama?": "Problemen met toegang tot Ollama?",
|
||||
"TTS Settings": "TTS instellingen",
|
||||
"Type": "",
|
||||
"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}}.",
|
||||
"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 to have them replaced with clipboard content.": "variabele om ze te laten vervangen door klembord inhoud.",
|
||||
"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.",
|
||||
"Web": "Web",
|
||||
"Web Loader Settings": "Web Loader instellingen",
|
||||
|
@ -47,6 +47,7 @@
|
||||
"API keys": "API ਕੁੰਜੀਆਂ",
|
||||
"April": "ਅਪ੍ਰੈਲ",
|
||||
"Archive": "ਆਰਕਾਈਵ",
|
||||
"Archive All Chats": "",
|
||||
"Archived Chats": "ਆਰਕਾਈਵ ਕੀਤੀਆਂ ਗੱਲਾਂ",
|
||||
"are allowed - Activate this command by typing": "ਅਨੁਮਤ ਹਨ - ਇਸ ਕਮਾਂਡ ਨੂੰ ਟਾਈਪ ਕਰਕੇ ਸਰਗਰਮ ਕਰੋ",
|
||||
"Are you sure?": "ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ ਹੋ?",
|
||||
@ -61,6 +62,7 @@
|
||||
"available!": "ਉਪਲਬਧ ਹੈ!",
|
||||
"Back": "ਵਾਪਸ",
|
||||
"Bad Response": "ਖਰਾਬ ਜਵਾਬ",
|
||||
"Banners": "",
|
||||
"Base Model (From)": "",
|
||||
"before": "ਪਹਿਲਾਂ",
|
||||
"Being lazy": "ਆਲਸੀ ਹੋਣਾ",
|
||||
@ -119,7 +121,6 @@
|
||||
"Custom": "ਕਸਟਮ",
|
||||
"Customize models for a specific purpose": "",
|
||||
"Dark": "ਗੂੜ੍ਹਾ",
|
||||
"Dashboard": "ਡੈਸ਼ਬੋਰਡ",
|
||||
"Database": "ਡਾਟਾਬੇਸ",
|
||||
"December": "ਦਸੰਬਰ",
|
||||
"Default": "ਮੂਲ",
|
||||
@ -187,6 +188,7 @@
|
||||
"Enter Your Full Name": "ਆਪਣਾ ਪੂਰਾ ਨਾਮ ਦਰਜ ਕਰੋ",
|
||||
"Enter Your Password": "ਆਪਣਾ ਪਾਸਵਰਡ ਦਰਜ ਕਰੋ",
|
||||
"Enter Your Role": "ਆਪਣੀ ਭੂਮਿਕਾ ਦਰਜ ਕਰੋ",
|
||||
"Error": "",
|
||||
"Experimental": "ਪਰਮਾਣੂਕ੍ਰਿਤ",
|
||||
"Export All Chats (All Users)": "ਸਾਰੀਆਂ ਗੱਲਾਂ ਨਿਰਯਾਤ ਕਰੋ (ਸਾਰੇ ਉਪਭੋਗਤਾ)",
|
||||
"Export Chats": "ਗੱਲਾਂ ਨਿਰਯਾਤ ਕਰੋ",
|
||||
@ -226,6 +228,7 @@
|
||||
"Import Models": "",
|
||||
"Import Prompts": "ਪ੍ਰੰਪਟ ਆਯਾਤ ਕਰੋ",
|
||||
"Include `--api` flag when running stable-diffusion-webui": "ਸਟੇਬਲ-ਡਿਫਿਊਸ਼ਨ-ਵੈਬਯੂਆਈ ਚਲਾਉਣ ਸਮੇਂ `--api` ਝੰਡਾ ਸ਼ਾਮਲ ਕਰੋ",
|
||||
"Info": "",
|
||||
"Input commands": "ਇਨਪੁਟ ਕਮਾਂਡਾਂ",
|
||||
"Interface": "ਇੰਟਰਫੇਸ",
|
||||
"Invalid Tag": "ਗਲਤ ਟੈਗ",
|
||||
@ -310,7 +313,6 @@
|
||||
"OpenAI URL/Key required.": "ਓਪਨਏਆਈ URL/ਕੁੰਜੀ ਦੀ ਲੋੜ ਹੈ।",
|
||||
"or": "ਜਾਂ",
|
||||
"Other": "ਹੋਰ",
|
||||
"Overview": "ਸੰਖੇਪ",
|
||||
"Password": "ਪਾਸਵਰਡ",
|
||||
"PDF document (.pdf)": "PDF ਡਾਕੂਮੈਂਟ (.pdf)",
|
||||
"PDF Extract Images (OCR)": "PDF ਚਿੱਤਰ ਕੱਢੋ (OCR)",
|
||||
@ -361,6 +363,7 @@
|
||||
"Scan for documents from {{path}}": "{{path}} ਤੋਂ ਡਾਕੂਮੈਂਟਾਂ ਲਈ ਸਕੈਨ ਕਰੋ",
|
||||
"Search": "ਖੋਜ",
|
||||
"Search a model": "ਇੱਕ ਮਾਡਲ ਖੋਜੋ",
|
||||
"Search Chats": "",
|
||||
"Search Documents": "ਡਾਕੂਮੈਂਟ ਖੋਜੋ",
|
||||
"Search Models": "",
|
||||
"Search Prompts": "ਪ੍ਰੰਪਟ ਖੋਜੋ",
|
||||
@ -444,6 +447,7 @@
|
||||
"Top P": "ਸਿਖਰ P",
|
||||
"Trouble accessing Ollama?": "ਓਲਾਮਾ ਤੱਕ ਪਹੁੰਚਣ ਵਿੱਚ ਮੁਸ਼ਕਲ?",
|
||||
"TTS Settings": "TTS ਸੈਟਿੰਗਾਂ",
|
||||
"Type": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "Hugging Face Resolve (ਡਾਊਨਲੋਡ) URL ਟਾਈਪ ਕਰੋ",
|
||||
"Uh-oh! There was an issue connecting to {{provider}}.": "ਓਹੋ! {{provider}} ਨਾਲ ਕਨੈਕਟ ਕਰਨ ਵਿੱਚ ਸਮੱਸਿਆ ਆਈ।",
|
||||
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "ਅਣਜਾਣ ਫਾਈਲ ਕਿਸਮ '{{file_type}}', ਪਰ ਸਧਾਰਨ ਪਾਠ ਵਜੋਂ ਸਵੀਕਾਰ ਕਰਦੇ ਹੋਏ",
|
||||
@ -464,6 +468,7 @@
|
||||
"variable": "ਵੈਰੀਏਬਲ",
|
||||
"variable to have them replaced with clipboard content.": "ਕਲਿੱਪਬੋਰਡ ਸਮੱਗਰੀ ਨਾਲ ਬਦਲਣ ਲਈ ਵੈਰੀਏਬਲ।",
|
||||
"Version": "ਵਰਜਨ",
|
||||
"Warning": "",
|
||||
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "ਚੇਤਾਵਨੀ: ਜੇ ਤੁਸੀਂ ਆਪਣਾ ਐਮਬੈੱਡਿੰਗ ਮਾਡਲ ਅੱਪਡੇਟ ਜਾਂ ਬਦਲਦੇ ਹੋ, ਤਾਂ ਤੁਹਾਨੂੰ ਸਾਰੇ ਡਾਕੂਮੈਂਟ ਮੁੜ ਆਯਾਤ ਕਰਨ ਦੀ ਲੋੜ ਹੋਵੇਗੀ।",
|
||||
"Web": "ਵੈਬ",
|
||||
"Web Loader Settings": "ਵੈਬ ਲੋਡਰ ਸੈਟਿੰਗਾਂ",
|
||||
|
@ -47,6 +47,7 @@
|
||||
"API keys": "Klucze API",
|
||||
"April": "Kwiecień",
|
||||
"Archive": "Archiwum",
|
||||
"Archive All Chats": "",
|
||||
"Archived Chats": "Zarchiwizowane czaty",
|
||||
"are allowed - Activate this command by typing": "są dozwolone - Aktywuj to polecenie, wpisując",
|
||||
"Are you sure?": "Jesteś pewien?",
|
||||
@ -61,6 +62,7 @@
|
||||
"available!": "dostępny!",
|
||||
"Back": "Wstecz",
|
||||
"Bad Response": "Zła odpowiedź",
|
||||
"Banners": "",
|
||||
"Base Model (From)": "",
|
||||
"before": "przed",
|
||||
"Being lazy": "Jest leniwy",
|
||||
@ -119,7 +121,6 @@
|
||||
"Custom": "Niestandardowy",
|
||||
"Customize models for a specific purpose": "",
|
||||
"Dark": "Ciemny",
|
||||
"Dashboard": "Dashboard",
|
||||
"Database": "Baza danych",
|
||||
"December": "Grudzień",
|
||||
"Default": "Domyślny",
|
||||
@ -187,6 +188,7 @@
|
||||
"Enter Your Full Name": "Wprowadź swoje imię i nazwisko",
|
||||
"Enter Your Password": "Wprowadź swoje hasło",
|
||||
"Enter Your Role": "Wprowadź swoją rolę",
|
||||
"Error": "",
|
||||
"Experimental": "Eksperymentalne",
|
||||
"Export All Chats (All Users)": "Eksportuj wszystkie czaty (wszyscy użytkownicy)",
|
||||
"Export Chats": "Eksportuj czaty",
|
||||
@ -226,6 +228,7 @@
|
||||
"Import Models": "",
|
||||
"Import Prompts": "Importuj prompty",
|
||||
"Include `--api` flag when running stable-diffusion-webui": "Dołącz flagę `--api` podczas uruchamiania stable-diffusion-webui",
|
||||
"Info": "",
|
||||
"Input commands": "Wprowadź komendy",
|
||||
"Interface": "Interfejs",
|
||||
"Invalid Tag": "Nieprawidłowy tag",
|
||||
@ -310,7 +313,6 @@
|
||||
"OpenAI URL/Key required.": "URL/Klucz OpenAI jest wymagany.",
|
||||
"or": "lub",
|
||||
"Other": "Inne",
|
||||
"Overview": "Przegląd",
|
||||
"Password": "Hasło",
|
||||
"PDF document (.pdf)": "Dokument PDF (.pdf)",
|
||||
"PDF Extract Images (OCR)": "PDF Wyodrębnij obrazy (OCR)",
|
||||
@ -361,6 +363,7 @@
|
||||
"Scan for documents from {{path}}": "Skanuj dokumenty z {{path}}",
|
||||
"Search": "Szukaj",
|
||||
"Search a model": "Szukaj modelu",
|
||||
"Search Chats": "",
|
||||
"Search Documents": "Szukaj dokumentów",
|
||||
"Search Models": "",
|
||||
"Search Prompts": "Szukaj promptów",
|
||||
@ -444,6 +447,7 @@
|
||||
"Top P": "Najlepsze P",
|
||||
"Trouble accessing Ollama?": "Problemy z dostępem do Ollama?",
|
||||
"TTS Settings": "Ustawienia TTS",
|
||||
"Type": "",
|
||||
"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}}.",
|
||||
"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 to have them replaced with clipboard content.": "zmienna która zostanie zastąpiona zawartością schowka.",
|
||||
"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.",
|
||||
"Web": "Sieć",
|
||||
"Web Loader Settings": "Ustawienia pobierania z sieci",
|
||||
|
@ -47,6 +47,7 @@
|
||||
"API keys": "Chaves da API",
|
||||
"April": "Abril",
|
||||
"Archive": "Arquivo",
|
||||
"Archive All Chats": "",
|
||||
"Archived Chats": "Bate-papos arquivados",
|
||||
"are allowed - Activate this command by typing": "são permitidos - Ative este comando digitando",
|
||||
"Are you sure?": "Tem certeza?",
|
||||
@ -61,6 +62,7 @@
|
||||
"available!": "disponível!",
|
||||
"Back": "Voltar",
|
||||
"Bad Response": "Resposta ruim",
|
||||
"Banners": "",
|
||||
"Base Model (From)": "",
|
||||
"before": "antes",
|
||||
"Being lazy": "Ser preguiçoso",
|
||||
@ -119,7 +121,6 @@
|
||||
"Custom": "Personalizado",
|
||||
"Customize models for a specific purpose": "",
|
||||
"Dark": "Escuro",
|
||||
"Dashboard": "Painel",
|
||||
"Database": "Banco de dados",
|
||||
"December": "Dezembro",
|
||||
"Default": "Padrão",
|
||||
@ -187,6 +188,7 @@
|
||||
"Enter Your Full Name": "Digite seu Nome Completo",
|
||||
"Enter Your Password": "Digite sua Senha",
|
||||
"Enter Your Role": "Digite sua Função",
|
||||
"Error": "",
|
||||
"Experimental": "Experimental",
|
||||
"Export All Chats (All Users)": "Exportar Todos os Bate-papos (Todos os Usuários)",
|
||||
"Export Chats": "Exportar Bate-papos",
|
||||
@ -226,6 +228,7 @@
|
||||
"Import Models": "",
|
||||
"Import Prompts": "Importar Prompts",
|
||||
"Include `--api` flag when running stable-diffusion-webui": "Inclua a flag `--api` ao executar stable-diffusion-webui",
|
||||
"Info": "",
|
||||
"Input commands": "Comandos de entrada",
|
||||
"Interface": "Interface",
|
||||
"Invalid Tag": "Etiqueta Inválida",
|
||||
@ -310,7 +313,6 @@
|
||||
"OpenAI URL/Key required.": "URL/Chave da API OpenAI é necessária.",
|
||||
"or": "ou",
|
||||
"Other": "Outro",
|
||||
"Overview": "Visão Geral",
|
||||
"Password": "Senha",
|
||||
"PDF document (.pdf)": "Documento PDF (.pdf)",
|
||||
"PDF Extract Images (OCR)": "Extrair Imagens de PDF (OCR)",
|
||||
@ -361,6 +363,7 @@
|
||||
"Scan for documents from {{path}}": "Digitalizar documentos de {{path}}",
|
||||
"Search": "Pesquisar",
|
||||
"Search a model": "Pesquisar um modelo",
|
||||
"Search Chats": "",
|
||||
"Search Documents": "Pesquisar Documentos",
|
||||
"Search Models": "",
|
||||
"Search Prompts": "Pesquisar Prompts",
|
||||
@ -444,6 +447,7 @@
|
||||
"Top P": "Top P",
|
||||
"Trouble accessing Ollama?": "Problemas para acessar o Ollama?",
|
||||
"TTS Settings": "Configurações TTS",
|
||||
"Type": "",
|
||||
"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}}.",
|
||||
"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 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",
|
||||
"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.",
|
||||
"Web": "Web",
|
||||
"Web Loader Settings": "Configurações do Carregador da Web",
|
||||
|
@ -47,6 +47,7 @@
|
||||
"API keys": "Chaves da API",
|
||||
"April": "Abril",
|
||||
"Archive": "Arquivo",
|
||||
"Archive All Chats": "",
|
||||
"Archived Chats": "Bate-papos arquivados",
|
||||
"are allowed - Activate this command by typing": "são permitidos - Ative este comando digitando",
|
||||
"Are you sure?": "Tem certeza?",
|
||||
@ -61,6 +62,7 @@
|
||||
"available!": "disponível!",
|
||||
"Back": "Voltar",
|
||||
"Bad Response": "Resposta ruim",
|
||||
"Banners": "",
|
||||
"Base Model (From)": "",
|
||||
"before": "antes",
|
||||
"Being lazy": "Ser preguiçoso",
|
||||
@ -119,7 +121,6 @@
|
||||
"Custom": "Personalizado",
|
||||
"Customize models for a specific purpose": "",
|
||||
"Dark": "Escuro",
|
||||
"Dashboard": "Painel",
|
||||
"Database": "Banco de dados",
|
||||
"December": "Dezembro",
|
||||
"Default": "Padrão",
|
||||
@ -187,6 +188,7 @@
|
||||
"Enter Your Full Name": "Digite seu Nome Completo",
|
||||
"Enter Your Password": "Digite sua Senha",
|
||||
"Enter Your Role": "Digite sua Função",
|
||||
"Error": "",
|
||||
"Experimental": "Experimental",
|
||||
"Export All Chats (All Users)": "Exportar Todos os Bate-papos (Todos os Usuários)",
|
||||
"Export Chats": "Exportar Bate-papos",
|
||||
@ -226,6 +228,7 @@
|
||||
"Import Models": "",
|
||||
"Import Prompts": "Importar Prompts",
|
||||
"Include `--api` flag when running stable-diffusion-webui": "Inclua a flag `--api` ao executar stable-diffusion-webui",
|
||||
"Info": "",
|
||||
"Input commands": "Comandos de entrada",
|
||||
"Interface": "Interface",
|
||||
"Invalid Tag": "Etiqueta Inválida",
|
||||
@ -310,7 +313,6 @@
|
||||
"OpenAI URL/Key required.": "URL/Chave da API OpenAI é necessária.",
|
||||
"or": "ou",
|
||||
"Other": "Outro",
|
||||
"Overview": "Visão Geral",
|
||||
"Password": "Senha",
|
||||
"PDF document (.pdf)": "Documento PDF (.pdf)",
|
||||
"PDF Extract Images (OCR)": "Extrair Imagens de PDF (OCR)",
|
||||
@ -361,6 +363,7 @@
|
||||
"Scan for documents from {{path}}": "Digitalizar documentos de {{path}}",
|
||||
"Search": "Pesquisar",
|
||||
"Search a model": "Pesquisar um modelo",
|
||||
"Search Chats": "",
|
||||
"Search Documents": "Pesquisar Documentos",
|
||||
"Search Models": "",
|
||||
"Search Prompts": "Pesquisar Prompts",
|
||||
@ -444,6 +447,7 @@
|
||||
"Top P": "Top P",
|
||||
"Trouble accessing Ollama?": "Problemas para acessar o Ollama?",
|
||||
"TTS Settings": "Configurações TTS",
|
||||
"Type": "",
|
||||
"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}}.",
|
||||
"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 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",
|
||||
"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.",
|
||||
"Web": "Web",
|
||||
"Web Loader Settings": "Configurações do Carregador da Web",
|
||||
|
@ -47,6 +47,7 @@
|
||||
"API keys": "Ключи API",
|
||||
"April": "Апрель",
|
||||
"Archive": "Архив",
|
||||
"Archive All Chats": "",
|
||||
"Archived Chats": "запис на чат",
|
||||
"are allowed - Activate this command by typing": "разрешено - активируйте эту команду вводом",
|
||||
"Are you sure?": "Вы уверены?",
|
||||
@ -61,6 +62,7 @@
|
||||
"available!": "доступный!",
|
||||
"Back": "Назад",
|
||||
"Bad Response": "Недопустимый ответ",
|
||||
"Banners": "",
|
||||
"Base Model (From)": "",
|
||||
"before": "до",
|
||||
"Being lazy": "ленивый",
|
||||
@ -119,7 +121,6 @@
|
||||
"Custom": "Пользовательский",
|
||||
"Customize models for a specific purpose": "",
|
||||
"Dark": "Тёмный",
|
||||
"Dashboard": "Панель управления",
|
||||
"Database": "База данных",
|
||||
"December": "Декабрь",
|
||||
"Default": "По умолчанию",
|
||||
@ -187,6 +188,7 @@
|
||||
"Enter Your Full Name": "Введите ваше полное имя",
|
||||
"Enter Your Password": "Введите ваш пароль",
|
||||
"Enter Your Role": "Введите вашу роль",
|
||||
"Error": "",
|
||||
"Experimental": "Экспериментальное",
|
||||
"Export All Chats (All Users)": "Экспортировать все чаты (все пользователи)",
|
||||
"Export Chats": "Экспортировать чаты",
|
||||
@ -226,6 +228,7 @@
|
||||
"Import Models": "",
|
||||
"Import Prompts": "Импорт подсказок",
|
||||
"Include `--api` flag when running stable-diffusion-webui": "Добавьте флаг `--api` при запуске stable-diffusion-webui",
|
||||
"Info": "",
|
||||
"Input commands": "Введите команды",
|
||||
"Interface": "Интерфейс",
|
||||
"Invalid Tag": "Недопустимый тег",
|
||||
@ -310,7 +313,6 @@
|
||||
"OpenAI URL/Key required.": "Требуется URL-адрес API OpenAI или ключ API.",
|
||||
"or": "или",
|
||||
"Other": "Прочее",
|
||||
"Overview": "Обзор",
|
||||
"Password": "Пароль",
|
||||
"PDF document (.pdf)": "PDF-документ (.pdf)",
|
||||
"PDF Extract Images (OCR)": "Извлечение изображений из PDF (OCR)",
|
||||
@ -361,6 +363,7 @@
|
||||
"Scan for documents from {{path}}": "Сканирование документов из {{path}}",
|
||||
"Search": "Поиск",
|
||||
"Search a model": "Поиск модели",
|
||||
"Search Chats": "",
|
||||
"Search Documents": "Поиск документов",
|
||||
"Search Models": "",
|
||||
"Search Prompts": "Поиск промтов",
|
||||
@ -444,6 +447,7 @@
|
||||
"Top P": "Top P",
|
||||
"Trouble accessing Ollama?": "Проблемы с доступом к Ollama?",
|
||||
"TTS Settings": "Настройки TTS",
|
||||
"Type": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "Введите URL-адрес Hugging Face Resolve (загрузки)",
|
||||
"Uh-oh! There was an issue connecting to {{provider}}.": "Упс! Возникла проблема подключения к {{provider}}.",
|
||||
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Неизвестный тип файла '{{file_type}}', но принимается и обрабатывается как обычный текст",
|
||||
@ -464,6 +468,7 @@
|
||||
"variable": "переменная",
|
||||
"variable to have them replaced with clipboard content.": "переменная, чтобы их заменить содержимым буфера обмена.",
|
||||
"Version": "Версия",
|
||||
"Warning": "",
|
||||
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Предупреждение: Если вы обновите или измените модель эмбеддинга, вам нужно будет повторно импортировать все документы.",
|
||||
"Web": "Веб",
|
||||
"Web Loader Settings": "Настройки загрузчика Web",
|
||||
|
@ -47,6 +47,7 @@
|
||||
"API keys": "API кључеви",
|
||||
"April": "Април",
|
||||
"Archive": "Архива",
|
||||
"Archive All Chats": "",
|
||||
"Archived Chats": "Архивирана ћаскања",
|
||||
"are allowed - Activate this command by typing": "су дозвољени - Покрените ову наредбу уношењем",
|
||||
"Are you sure?": "Да ли сте сигурни?",
|
||||
@ -61,6 +62,7 @@
|
||||
"available!": "доступно!",
|
||||
"Back": "Назад",
|
||||
"Bad Response": "Лош одговор",
|
||||
"Banners": "",
|
||||
"Base Model (From)": "",
|
||||
"before": "пре",
|
||||
"Being lazy": "Бити лењ",
|
||||
@ -119,7 +121,6 @@
|
||||
"Custom": "Прилагођено",
|
||||
"Customize models for a specific purpose": "",
|
||||
"Dark": "Тамна",
|
||||
"Dashboard": "Контролна табла",
|
||||
"Database": "База података",
|
||||
"December": "Децембар",
|
||||
"Default": "Подразумевано",
|
||||
@ -187,6 +188,7 @@
|
||||
"Enter Your Full Name": "Унесите ваше име и презиме",
|
||||
"Enter Your Password": "Унесите вашу лозинку",
|
||||
"Enter Your Role": "Унесите вашу улогу",
|
||||
"Error": "",
|
||||
"Experimental": "Експериментално",
|
||||
"Export All Chats (All Users)": "Извези сва ћаскања (сви корисници)",
|
||||
"Export Chats": "Извези ћаскања",
|
||||
@ -226,6 +228,7 @@
|
||||
"Import Models": "",
|
||||
"Import Prompts": "Увези упите",
|
||||
"Include `--api` flag when running stable-diffusion-webui": "Укључи `--api` заставицу при покретању stable-diffusion-webui",
|
||||
"Info": "",
|
||||
"Input commands": "Унеси наредбе",
|
||||
"Interface": "Изглед",
|
||||
"Invalid Tag": "Неисправна ознака",
|
||||
@ -310,7 +313,6 @@
|
||||
"OpenAI URL/Key required.": "Потребан је OpenAI URL/кључ.",
|
||||
"or": "или",
|
||||
"Other": "Остало",
|
||||
"Overview": "Преглед",
|
||||
"Password": "Лозинка",
|
||||
"PDF document (.pdf)": "PDF документ (.pdf)",
|
||||
"PDF Extract Images (OCR)": "Извлачење PDF слика (OCR)",
|
||||
@ -361,6 +363,7 @@
|
||||
"Scan for documents from {{path}}": "Скенирај документе из {{path}}",
|
||||
"Search": "Претражи",
|
||||
"Search a model": "Претражи модел",
|
||||
"Search Chats": "",
|
||||
"Search Documents": "Претражи документе",
|
||||
"Search Models": "",
|
||||
"Search Prompts": "Претражи упите",
|
||||
@ -444,6 +447,7 @@
|
||||
"Top P": "Топ П",
|
||||
"Trouble accessing Ollama?": "Проблеми са приступом Ollama-и?",
|
||||
"TTS Settings": "TTS подешавања",
|
||||
"Type": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "Унесите Hugging Face Resolve (Download) адресу",
|
||||
"Uh-oh! There was an issue connecting to {{provider}}.": "Упс! Дошло је до проблема при повезивању са {{provider}}.",
|
||||
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Непознат тип датотеке '{{file_type}}', али прихваћен и третиран као обичан текст",
|
||||
@ -464,6 +468,7 @@
|
||||
"variable": "променљива",
|
||||
"variable to have them replaced with clipboard content.": "променљива за замену са садржајем оставе.",
|
||||
"Version": "Издање",
|
||||
"Warning": "",
|
||||
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Упозорење: ако ажурирате или промените ваш модел уградње, мораћете поново да увезете све документе.",
|
||||
"Web": "Веб",
|
||||
"Web Loader Settings": "Подешавања веб учитавача",
|
||||
|
@ -47,6 +47,7 @@
|
||||
"API keys": "API-nycklar",
|
||||
"April": "April",
|
||||
"Archive": "Arkiv",
|
||||
"Archive All Chats": "",
|
||||
"Archived Chats": "Arkiverade chattar",
|
||||
"are allowed - Activate this command by typing": "är tillåtna - Aktivera detta kommando genom att skriva",
|
||||
"Are you sure?": "Är du säker?",
|
||||
@ -61,6 +62,7 @@
|
||||
"available!": "tillgänglig!",
|
||||
"Back": "Tillbaka",
|
||||
"Bad Response": "Felaktig respons",
|
||||
"Banners": "",
|
||||
"Base Model (From)": "",
|
||||
"before": "før",
|
||||
"Being lazy": "Lägg till",
|
||||
@ -119,7 +121,6 @@
|
||||
"Custom": "Anpassad",
|
||||
"Customize models for a specific purpose": "",
|
||||
"Dark": "Mörk",
|
||||
"Dashboard": "Instrumentbräda",
|
||||
"Database": "Databas",
|
||||
"December": "December",
|
||||
"Default": "Standard",
|
||||
@ -187,6 +188,7 @@
|
||||
"Enter Your Full Name": "Ange ditt fullständiga namn",
|
||||
"Enter Your Password": "Ange ditt lösenord",
|
||||
"Enter Your Role": "Ange din roll",
|
||||
"Error": "",
|
||||
"Experimental": "Experimentell",
|
||||
"Export All Chats (All Users)": "Exportera alla chattar (alla användare)",
|
||||
"Export Chats": "Exportera chattar",
|
||||
@ -226,6 +228,7 @@
|
||||
"Import Models": "",
|
||||
"Import Prompts": "Importera prompts",
|
||||
"Include `--api` flag when running stable-diffusion-webui": "Inkludera `--api`-flagga när du kör stabil-diffusion-webui",
|
||||
"Info": "",
|
||||
"Input commands": "Indatakommandon",
|
||||
"Interface": "Gränssnitt",
|
||||
"Invalid Tag": "Ogiltig tagg",
|
||||
@ -310,7 +313,6 @@
|
||||
"OpenAI URL/Key required.": "OpenAI-URL/nyckel krävs.",
|
||||
"or": "eller",
|
||||
"Other": "Andra",
|
||||
"Overview": "Översikt",
|
||||
"Password": "Lösenord",
|
||||
"PDF document (.pdf)": "PDF-dokument (.pdf)",
|
||||
"PDF Extract Images (OCR)": "PDF Extrahera bilder (OCR)",
|
||||
@ -361,6 +363,7 @@
|
||||
"Scan for documents from {{path}}": "Skanna efter dokument från {{path}}",
|
||||
"Search": "Sök",
|
||||
"Search a model": "Sök efter en modell",
|
||||
"Search Chats": "",
|
||||
"Search Documents": "Sök dokument",
|
||||
"Search Models": "",
|
||||
"Search Prompts": "Sök promptar",
|
||||
@ -444,6 +447,7 @@
|
||||
"Top P": "Topp P",
|
||||
"Trouble accessing Ollama?": "Problem med att komma åt Ollama?",
|
||||
"TTS Settings": "TTS-inställningar",
|
||||
"Type": "",
|
||||
"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}}.",
|
||||
"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 to have them replaced with clipboard content.": "variabel för att få dem ersatta med urklippsinnehåll.",
|
||||
"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.",
|
||||
"Web": "Webb",
|
||||
"Web Loader Settings": "Web Loader-inställningar",
|
||||
|
@ -47,6 +47,7 @@
|
||||
"API keys": "API anahtarları",
|
||||
"April": "Nisan",
|
||||
"Archive": "Arşiv",
|
||||
"Archive All Chats": "",
|
||||
"Archived Chats": "Arşivlenmiş Sohbetler",
|
||||
"are allowed - Activate this command by typing": "izin verilir - Bu komutu yazarak etkinleştirin",
|
||||
"Are you sure?": "Emin misiniz?",
|
||||
@ -61,6 +62,7 @@
|
||||
"available!": "mevcut!",
|
||||
"Back": "Geri",
|
||||
"Bad Response": "Kötü Yanıt",
|
||||
"Banners": "",
|
||||
"Base Model (From)": "",
|
||||
"before": "önce",
|
||||
"Being lazy": "Tembelleşiyor",
|
||||
@ -119,7 +121,6 @@
|
||||
"Custom": "Özel",
|
||||
"Customize models for a specific purpose": "",
|
||||
"Dark": "Koyu",
|
||||
"Dashboard": "Panel",
|
||||
"Database": "Veritabanı",
|
||||
"December": "Aralık",
|
||||
"Default": "Varsayılan",
|
||||
@ -187,6 +188,7 @@
|
||||
"Enter Your Full Name": "Tam Adınızı Girin",
|
||||
"Enter Your Password": "Parolanızı Girin",
|
||||
"Enter Your Role": "Rolünüzü Girin",
|
||||
"Error": "",
|
||||
"Experimental": "Deneysel",
|
||||
"Export All Chats (All Users)": "Tüm Sohbetleri Dışa Aktar (Tüm Kullanıcılar)",
|
||||
"Export Chats": "Sohbetleri Dışa Aktar",
|
||||
@ -226,6 +228,7 @@
|
||||
"Import Models": "",
|
||||
"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",
|
||||
"Info": "",
|
||||
"Input commands": "Giriş komutları",
|
||||
"Interface": "Arayüz",
|
||||
"Invalid Tag": "Geçersiz etiket",
|
||||
@ -310,7 +313,6 @@
|
||||
"OpenAI URL/Key required.": "OpenAI URL/Anahtar gereklidir.",
|
||||
"or": "veya",
|
||||
"Other": "Diğer",
|
||||
"Overview": "Genel Bakış",
|
||||
"Password": "Parola",
|
||||
"PDF document (.pdf)": "PDF belgesi (.pdf)",
|
||||
"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",
|
||||
"Search": "Ara",
|
||||
"Search a model": "Bir model ara",
|
||||
"Search Chats": "",
|
||||
"Search Documents": "Belgeleri Ara",
|
||||
"Search Models": "",
|
||||
"Search Prompts": "Prompt Ara",
|
||||
@ -444,6 +447,7 @@
|
||||
"Top P": "Top P",
|
||||
"Trouble accessing Ollama?": "Ollama'ya erişmede sorun mu yaşıyorsunuz?",
|
||||
"TTS Settings": "TTS Ayarları",
|
||||
"Type": "",
|
||||
"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.",
|
||||
"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 to have them replaced with clipboard content.": "panodaki içerikle değiştirilmesi için değişken.",
|
||||
"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.",
|
||||
"Web": "Web",
|
||||
"Web Loader Settings": "Web Yükleyici Ayarları",
|
||||
|
@ -47,6 +47,7 @@
|
||||
"API keys": "Ключі API",
|
||||
"April": "Квітень",
|
||||
"Archive": "Архів",
|
||||
"Archive All Chats": "",
|
||||
"Archived Chats": "Архівовані чати",
|
||||
"are allowed - Activate this command by typing": "дозволено - активізуйте цю команду набором",
|
||||
"Are you sure?": "Ви впевнені?",
|
||||
@ -61,6 +62,7 @@
|
||||
"available!": "доступно!",
|
||||
"Back": "Назад",
|
||||
"Bad Response": "Неправильна відповідь",
|
||||
"Banners": "",
|
||||
"Base Model (From)": "",
|
||||
"before": "до того, як",
|
||||
"Being lazy": "Не поспішати",
|
||||
@ -119,7 +121,6 @@
|
||||
"Custom": "Налаштувати",
|
||||
"Customize models for a specific purpose": "",
|
||||
"Dark": "Темна",
|
||||
"Dashboard": "Панель управління",
|
||||
"Database": "База даних",
|
||||
"December": "Грудень",
|
||||
"Default": "За замовчуванням",
|
||||
@ -187,6 +188,7 @@
|
||||
"Enter Your Full Name": "Введіть ваше ім'я",
|
||||
"Enter Your Password": "Введіть ваш пароль",
|
||||
"Enter Your Role": "Введіть вашу роль",
|
||||
"Error": "",
|
||||
"Experimental": "Експериментальне",
|
||||
"Export All Chats (All Users)": "Експортувати всі чати (всі користувачі)",
|
||||
"Export Chats": "Експортувати чати",
|
||||
@ -226,6 +228,7 @@
|
||||
"Import Models": "",
|
||||
"Import Prompts": "Імпортувати промти",
|
||||
"Include `--api` flag when running stable-diffusion-webui": "Включіть прапор `--api` при запуску stable-diffusion-webui",
|
||||
"Info": "",
|
||||
"Input commands": "Команди вводу",
|
||||
"Interface": "Інтерфейс",
|
||||
"Invalid Tag": "Недійсний тег",
|
||||
@ -310,7 +313,6 @@
|
||||
"OpenAI URL/Key required.": "Потрібен OpenAI URL/ключ.",
|
||||
"or": "або",
|
||||
"Other": "Інше",
|
||||
"Overview": "Огляд",
|
||||
"Password": "Пароль",
|
||||
"PDF document (.pdf)": "PDF документ (.pdf)",
|
||||
"PDF Extract Images (OCR)": "Розпізнавання зображень з PDF (OCR)",
|
||||
@ -361,6 +363,7 @@
|
||||
"Scan for documents from {{path}}": "Сканування документів з {{path}}",
|
||||
"Search": "Пошук",
|
||||
"Search a model": "Шукати модель",
|
||||
"Search Chats": "",
|
||||
"Search Documents": "Пошук документів",
|
||||
"Search Models": "",
|
||||
"Search Prompts": "Пошук промтів",
|
||||
@ -444,6 +447,7 @@
|
||||
"Top P": "Top P",
|
||||
"Trouble accessing Ollama?": "Проблеми з доступом до Ollama?",
|
||||
"TTS Settings": "Налаштування TTS",
|
||||
"Type": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "Введіть URL ресурсу Hugging Face Resolve (завантаження)",
|
||||
"Uh-oh! There was an issue connecting to {{provider}}.": "Ой! Виникла проблема при підключенні до {{provider}}.",
|
||||
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "Невідомий тип файлу '{{file_type}}', але приймається та обробляється як звичайний текст",
|
||||
@ -464,6 +468,7 @@
|
||||
"variable": "змінна",
|
||||
"variable to have them replaced with clipboard content.": "змінна, щоб замінити їх вмістом буфера обміну.",
|
||||
"Version": "Версія",
|
||||
"Warning": "",
|
||||
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "Попередження: Якщо ви оновлюєте або змінюєте модель вбудовування, вам потрібно буде повторно імпортувати всі документи.",
|
||||
"Web": "Веб",
|
||||
"Web Loader Settings": "Налаштування веб-завантажувача",
|
||||
|
@ -47,6 +47,7 @@
|
||||
"API keys": "API Keys",
|
||||
"April": "Tháng 4",
|
||||
"Archive": "Lưu trữ",
|
||||
"Archive All Chats": "",
|
||||
"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 you sure?": "Bạn có chắc chắn không?",
|
||||
@ -61,6 +62,7 @@
|
||||
"available!": "có sẵn!",
|
||||
"Back": "Quay lại",
|
||||
"Bad Response": "Trả lời KHÔNG tốt",
|
||||
"Banners": "",
|
||||
"Base Model (From)": "",
|
||||
"before": "trước",
|
||||
"Being lazy": "Lười biếng",
|
||||
@ -119,7 +121,6 @@
|
||||
"Custom": "Tùy chỉnh",
|
||||
"Customize models for a specific purpose": "",
|
||||
"Dark": "Tối",
|
||||
"Dashboard": "Trang tổng quan",
|
||||
"Database": "Cơ sở dữ liệu",
|
||||
"December": "Tháng 12",
|
||||
"Default": "Mặc định",
|
||||
@ -187,6 +188,7 @@
|
||||
"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 Role": "Nhập vai trò của bạn",
|
||||
"Error": "",
|
||||
"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 Chats": "Tải nội dung chat về máy",
|
||||
@ -226,6 +228,7 @@
|
||||
"Import Models": "",
|
||||
"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",
|
||||
"Info": "",
|
||||
"Input commands": "Nhập các câu lệnh",
|
||||
"Interface": "Giao diện",
|
||||
"Invalid Tag": "Tag không hợp lệ",
|
||||
@ -310,7 +313,6 @@
|
||||
"OpenAI URL/Key required.": "Yêu cầu URL/Key API OpenAI.",
|
||||
"or": "hoặc",
|
||||
"Other": "Khác",
|
||||
"Overview": "Tổng quan",
|
||||
"Password": "Mật khẩu",
|
||||
"PDF document (.pdf)": "Tập tin PDF (.pdf)",
|
||||
"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}}",
|
||||
"Search": "Tìm kiếm",
|
||||
"Search a model": "Tìm model",
|
||||
"Search Chats": "",
|
||||
"Search Documents": "Tìm tài liệu",
|
||||
"Search Models": "",
|
||||
"Search Prompts": "Tìm prompt",
|
||||
@ -444,6 +447,7 @@
|
||||
"Top P": "Top P",
|
||||
"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",
|
||||
"Type": "",
|
||||
"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}}.",
|
||||
"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 to have them replaced with clipboard content.": "biến để có chúng được thay thế bằng nội dung clipboard.",
|
||||
"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.",
|
||||
"Web": "Web",
|
||||
"Web Loader Settings": "Cài đặt Web Loader",
|
||||
|
@ -47,6 +47,7 @@
|
||||
"API keys": "API 密钥",
|
||||
"April": "四月",
|
||||
"Archive": "存档",
|
||||
"Archive All Chats": "",
|
||||
"Archived Chats": "聊天记录存档",
|
||||
"are allowed - Activate this command by typing": "允许 - 通过输入来激活这个命令",
|
||||
"Are you sure?": "你确定吗?",
|
||||
@ -61,6 +62,7 @@
|
||||
"available!": "可用!",
|
||||
"Back": "返回",
|
||||
"Bad Response": "不良响应",
|
||||
"Banners": "",
|
||||
"Base Model (From)": "",
|
||||
"before": "之前",
|
||||
"Being lazy": "懒惰",
|
||||
@ -119,7 +121,6 @@
|
||||
"Custom": "自定义",
|
||||
"Customize models for a specific purpose": "",
|
||||
"Dark": "暗色",
|
||||
"Dashboard": "仪表盘",
|
||||
"Database": "数据库",
|
||||
"December": "十二月",
|
||||
"Default": "默认",
|
||||
@ -187,6 +188,7 @@
|
||||
"Enter Your Full Name": "输入您的全名",
|
||||
"Enter Your Password": "输入您的密码",
|
||||
"Enter Your Role": "输入您的角色",
|
||||
"Error": "",
|
||||
"Experimental": "实验性",
|
||||
"Export All Chats (All Users)": "导出所有聊天(所有用户)",
|
||||
"Export Chats": "导出聊天",
|
||||
@ -226,6 +228,7 @@
|
||||
"Import Models": "",
|
||||
"Import Prompts": "导入提示",
|
||||
"Include `--api` flag when running stable-diffusion-webui": "运行 stable-diffusion-webui 时包含 `--api` 标志",
|
||||
"Info": "",
|
||||
"Input commands": "输入命令",
|
||||
"Interface": "界面",
|
||||
"Invalid Tag": "无效标签",
|
||||
@ -310,7 +313,6 @@
|
||||
"OpenAI URL/Key required.": "需要 OpenAI URL/Key",
|
||||
"or": "或",
|
||||
"Other": "其他",
|
||||
"Overview": "概述",
|
||||
"Password": "密码",
|
||||
"PDF document (.pdf)": "PDF 文档 (.pdf)",
|
||||
"PDF Extract Images (OCR)": "PDF 图像处理 (使用 OCR)",
|
||||
@ -361,6 +363,7 @@
|
||||
"Scan for documents from {{path}}": "从 {{path}} 扫描文档",
|
||||
"Search": "搜索",
|
||||
"Search a model": "搜索模型",
|
||||
"Search Chats": "",
|
||||
"Search Documents": "搜索文档",
|
||||
"Search Models": "",
|
||||
"Search Prompts": "搜索提示词",
|
||||
@ -444,6 +447,7 @@
|
||||
"Top P": "Top P",
|
||||
"Trouble accessing Ollama?": "访问 Ollama 时遇到问题?",
|
||||
"TTS Settings": "文本转语音设置",
|
||||
"Type": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "输入 Hugging Face 解析(下载)URL",
|
||||
"Uh-oh! There was an issue connecting to {{provider}}.": "哎呀!连接到{{provider}}时出现问题。",
|
||||
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "未知文件类型'{{file_type}}',将视为纯文本进行处理",
|
||||
@ -464,6 +468,7 @@
|
||||
"variable": "变量",
|
||||
"variable to have them replaced with clipboard content.": "变量将被剪贴板内容替换。",
|
||||
"Version": "版本",
|
||||
"Warning": "",
|
||||
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "警告: 如果更新或更改 embedding 模型,则需要重新导入所有文档。",
|
||||
"Web": "网页",
|
||||
"Web Loader Settings": "Web 加载器设置",
|
||||
|
@ -47,6 +47,7 @@
|
||||
"API keys": "API Keys",
|
||||
"April": "4月",
|
||||
"Archive": "存檔",
|
||||
"Archive All Chats": "",
|
||||
"Archived Chats": "聊天記錄存檔",
|
||||
"are allowed - Activate this command by typing": "是允許的 - 透過輸入",
|
||||
"Are you sure?": "你確定嗎?",
|
||||
@ -61,6 +62,7 @@
|
||||
"available!": "可以使用!",
|
||||
"Back": "返回",
|
||||
"Bad Response": "錯誤回應",
|
||||
"Banners": "",
|
||||
"Base Model (From)": "",
|
||||
"before": "前",
|
||||
"Being lazy": "懶人模式",
|
||||
@ -119,7 +121,6 @@
|
||||
"Custom": "自訂",
|
||||
"Customize models for a specific purpose": "",
|
||||
"Dark": "暗色",
|
||||
"Dashboard": "儀表板",
|
||||
"Database": "資料庫",
|
||||
"December": "12月",
|
||||
"Default": "預設",
|
||||
@ -187,6 +188,7 @@
|
||||
"Enter Your Full Name": "輸入你的全名",
|
||||
"Enter Your Password": "輸入你的密碼",
|
||||
"Enter Your Role": "輸入你的角色",
|
||||
"Error": "",
|
||||
"Experimental": "實驗功能",
|
||||
"Export All Chats (All Users)": "匯出所有聊天紀錄(所有使用者)",
|
||||
"Export Chats": "匯出聊天紀錄",
|
||||
@ -226,6 +228,7 @@
|
||||
"Import Models": "",
|
||||
"Import Prompts": "匯入提示詞",
|
||||
"Include `--api` flag when running stable-diffusion-webui": "在運行 stable-diffusion-webui 時加上 `--api` 標誌",
|
||||
"Info": "",
|
||||
"Input commands": "輸入命令",
|
||||
"Interface": "介面",
|
||||
"Invalid Tag": "無效標籤",
|
||||
@ -310,7 +313,6 @@
|
||||
"OpenAI URL/Key required.": "需要 OpenAI URL/金鑰。",
|
||||
"or": "或",
|
||||
"Other": "其他",
|
||||
"Overview": "總覽",
|
||||
"Password": "密碼",
|
||||
"PDF document (.pdf)": "PDF 文件 (.pdf)",
|
||||
"PDF Extract Images (OCR)": "PDF 圖像擷取(OCR 光學文字辨識)",
|
||||
@ -361,6 +363,7 @@
|
||||
"Scan for documents from {{path}}": "從 {{path}} 掃描文件",
|
||||
"Search": "搜尋",
|
||||
"Search a model": "搜尋模型",
|
||||
"Search Chats": "",
|
||||
"Search Documents": "搜尋文件",
|
||||
"Search Models": "",
|
||||
"Search Prompts": "搜尋提示詞",
|
||||
@ -444,6 +447,7 @@
|
||||
"Top P": "Top P",
|
||||
"Trouble accessing Ollama?": "存取 Ollama 時遇到問題?",
|
||||
"TTS Settings": "文字轉語音設定",
|
||||
"Type": "",
|
||||
"Type Hugging Face Resolve (Download) URL": "輸入 Hugging Face 解析後的(下載)URL",
|
||||
"Uh-oh! There was an issue connecting to {{provider}}.": "哎呀!連線到 {{provider}} 時出現問題。",
|
||||
"Unknown File Type '{{file_type}}', but accepting and treating as plain text": "未知的文件類型 '{{file_type}}',但接受並視為純文字",
|
||||
@ -464,6 +468,7 @@
|
||||
"variable": "變數",
|
||||
"variable to have them replaced with clipboard content.": "變數將替換為剪貼簿內容",
|
||||
"Version": "版本",
|
||||
"Warning": "",
|
||||
"Warning: If you update or change your embedding model, you will need to re-import all documents.": "警告:如果更新或更改你的嵌入模型,則需要重新導入所有文件",
|
||||
"Web": "網頁",
|
||||
"Web Loader Settings": "Web 載入器設定",
|
||||
|
@ -1,6 +1,7 @@
|
||||
import { APP_NAME } from '$lib/constants';
|
||||
import { type Writable, writable } from 'svelte/store';
|
||||
import type { GlobalModelConfig, ModelConfig } from '$lib/apis';
|
||||
import type { Banner } from '$lib/types';
|
||||
|
||||
// Backend
|
||||
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 showSidebar = writable(false);
|
||||
|
9
src/lib/types/index.ts
Normal file
9
src/lib/types/index.ts
Normal file
@ -0,0 +1,9 @@
|
||||
export type Banner = {
|
||||
id: string;
|
||||
type: string;
|
||||
title?: string;
|
||||
content: string;
|
||||
url?: string;
|
||||
dismissible?: boolean;
|
||||
timestamp: number;
|
||||
};
|
@ -22,6 +22,7 @@
|
||||
prompts,
|
||||
documents,
|
||||
tags,
|
||||
banners,
|
||||
showChangelog,
|
||||
config
|
||||
} from '$lib/stores';
|
||||
@ -33,6 +34,7 @@
|
||||
import ShortcutsModal from '$lib/components/chat/ShortcutsModal.svelte';
|
||||
import ChangelogModal from '$lib/components/ChangelogModal.svelte';
|
||||
import Tooltip from '$lib/components/common/Tooltip.svelte';
|
||||
import { getBanners } from '$lib/apis/configs';
|
||||
|
||||
const i18n = getContext('i18n');
|
||||
|
||||
@ -82,6 +84,9 @@
|
||||
(async () => {
|
||||
documents.set(await getDocs(localStorage.token));
|
||||
})(),
|
||||
(async () => {
|
||||
banners.set(await getBanners(localStorage.token));
|
||||
})(),
|
||||
(async () => {
|
||||
tags.set(await getAllChatTags(localStorage.token));
|
||||
})()
|
||||
|
@ -18,7 +18,8 @@ import { defineConfig } from 'vite';
|
||||
export default defineConfig({
|
||||
plugins: [sveltekit()],
|
||||
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: {
|
||||
sourcemap: true
|
||||
|
Loading…
Reference in New Issue
Block a user