mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-12 12:25:20 +00:00
Merge pull request #18978 from open-webui/dev
Some checks failed
Frontend Build / Format & Build Frontend (push) Has been cancelled
Frontend Build / Frontend Unit Tests (push) Has been cancelled
Deploy to HuggingFace Spaces / check-secret (push) Has been cancelled
Release to PyPI / release (push) Has been cancelled
Release / release (push) Has been cancelled
Create and publish Docker images with specific build args / build-main-image (linux/amd64, ubuntu-latest) (push) Has been cancelled
Create and publish Docker images with specific build args / build-main-image (linux/arm64, ubuntu-24.04-arm) (push) Has been cancelled
Create and publish Docker images with specific build args / build-cuda-image (linux/amd64, ubuntu-latest) (push) Has been cancelled
Create and publish Docker images with specific build args / build-cuda-image (linux/arm64, ubuntu-24.04-arm) (push) Has been cancelled
Create and publish Docker images with specific build args / build-cuda126-image (linux/amd64, ubuntu-latest) (push) Has been cancelled
Create and publish Docker images with specific build args / build-cuda126-image (linux/arm64, ubuntu-24.04-arm) (push) Has been cancelled
Create and publish Docker images with specific build args / build-ollama-image (linux/amd64, ubuntu-latest) (push) Has been cancelled
Create and publish Docker images with specific build args / build-ollama-image (linux/arm64, ubuntu-24.04-arm) (push) Has been cancelled
Create and publish Docker images with specific build args / build-slim-image (linux/amd64, ubuntu-latest) (push) Has been cancelled
Create and publish Docker images with specific build args / build-slim-image (linux/arm64, ubuntu-24.04-arm) (push) Has been cancelled
Python CI / Format Backend (push) Has been cancelled
Deploy to HuggingFace Spaces / deploy (push) Has been cancelled
Create and publish Docker images with specific build args / merge-main-images (push) Has been cancelled
Create and publish Docker images with specific build args / merge-cuda-images (push) Has been cancelled
Create and publish Docker images with specific build args / merge-cuda126-images (push) Has been cancelled
Create and publish Docker images with specific build args / merge-ollama-images (push) Has been cancelled
Create and publish Docker images with specific build args / merge-slim-images (push) Has been cancelled
Some checks failed
Frontend Build / Format & Build Frontend (push) Has been cancelled
Frontend Build / Frontend Unit Tests (push) Has been cancelled
Deploy to HuggingFace Spaces / check-secret (push) Has been cancelled
Release to PyPI / release (push) Has been cancelled
Release / release (push) Has been cancelled
Create and publish Docker images with specific build args / build-main-image (linux/amd64, ubuntu-latest) (push) Has been cancelled
Create and publish Docker images with specific build args / build-main-image (linux/arm64, ubuntu-24.04-arm) (push) Has been cancelled
Create and publish Docker images with specific build args / build-cuda-image (linux/amd64, ubuntu-latest) (push) Has been cancelled
Create and publish Docker images with specific build args / build-cuda-image (linux/arm64, ubuntu-24.04-arm) (push) Has been cancelled
Create and publish Docker images with specific build args / build-cuda126-image (linux/amd64, ubuntu-latest) (push) Has been cancelled
Create and publish Docker images with specific build args / build-cuda126-image (linux/arm64, ubuntu-24.04-arm) (push) Has been cancelled
Create and publish Docker images with specific build args / build-ollama-image (linux/amd64, ubuntu-latest) (push) Has been cancelled
Create and publish Docker images with specific build args / build-ollama-image (linux/arm64, ubuntu-24.04-arm) (push) Has been cancelled
Create and publish Docker images with specific build args / build-slim-image (linux/amd64, ubuntu-latest) (push) Has been cancelled
Create and publish Docker images with specific build args / build-slim-image (linux/arm64, ubuntu-24.04-arm) (push) Has been cancelled
Python CI / Format Backend (push) Has been cancelled
Deploy to HuggingFace Spaces / deploy (push) Has been cancelled
Create and publish Docker images with specific build args / merge-main-images (push) Has been cancelled
Create and publish Docker images with specific build args / merge-cuda-images (push) Has been cancelled
Create and publish Docker images with specific build args / merge-cuda126-images (push) Has been cancelled
Create and publish Docker images with specific build args / merge-ollama-images (push) Has been cancelled
Create and publish Docker images with specific build args / merge-slim-images (push) Has been cancelled
0.6.36
This commit is contained in:
commit
e0d5de1697
71 changed files with 1354 additions and 19 deletions
13
CHANGELOG.md
13
CHANGELOG.md
|
|
@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file.
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [0.6.36] - 2025-11-07
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- 🔐 OAuth group parsing now supports configurable separators via the "OAUTH_GROUPS_SEPARATOR" environment variable, enabling proper handling of semicolon-separated group claims from providers like CILogon. [#18987](https://github.com/open-webui/open-webui/pull/18987), [#18979](https://github.com/open-webui/open-webui/issues/18979)
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- 🛠️ Tool calling functionality is restored by correcting asynchronous function handling in tool parameter updates. [#18981](https://github.com/open-webui/open-webui/issues/18981)
|
||||||
|
- 🖼️ The ComfyUI image edit workflow editor modal now opens correctly when clicking the Edit button. [#18978](https://github.com/open-webui/open-webui/issues/18978)
|
||||||
|
- 🔥 Firecrawl import errors are resolved by implementing lazy loading and using the correct class name. [#18973](https://github.com/open-webui/open-webui/issues/18973)
|
||||||
|
- 🔌 Socket.IO CORS warning is resolved by properly configuring CORS origins for Socket.IO connections. [Commit](https://github.com/open-webui/open-webui/commit/639d26252e528c9c37a5f553b11eb94376d8792d)
|
||||||
|
|
||||||
## [0.6.35] - 2025-11-06
|
## [0.6.35] - 2025-11-06
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
|
||||||
|
|
@ -570,6 +570,8 @@ OAUTH_BLOCKED_GROUPS = PersistentConfig(
|
||||||
os.environ.get("OAUTH_BLOCKED_GROUPS", "[]"),
|
os.environ.get("OAUTH_BLOCKED_GROUPS", "[]"),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
OAUTH_GROUPS_SEPARATOR = os.environ.get("OAUTH_GROUPS_SEPARATOR", ";")
|
||||||
|
|
||||||
OAUTH_ROLES_CLAIM = PersistentConfig(
|
OAUTH_ROLES_CLAIM = PersistentConfig(
|
||||||
"OAUTH_ROLES_CLAIM",
|
"OAUTH_ROLES_CLAIM",
|
||||||
"oauth.roles_claim",
|
"oauth.roles_claim",
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,6 @@ from typing import Optional, List
|
||||||
from open_webui.retrieval.web.main import SearchResult, get_filtered_results
|
from open_webui.retrieval.web.main import SearchResult, get_filtered_results
|
||||||
from open_webui.env import SRC_LOG_LEVELS
|
from open_webui.env import SRC_LOG_LEVELS
|
||||||
|
|
||||||
from firecrawl import Firecrawl
|
|
||||||
|
|
||||||
log = logging.getLogger(__name__)
|
log = logging.getLogger(__name__)
|
||||||
log.setLevel(SRC_LOG_LEVELS["RAG"])
|
log.setLevel(SRC_LOG_LEVELS["RAG"])
|
||||||
|
|
@ -18,7 +17,9 @@ def search_firecrawl(
|
||||||
filter_list: Optional[List[str]] = None,
|
filter_list: Optional[List[str]] = None,
|
||||||
) -> List[SearchResult]:
|
) -> List[SearchResult]:
|
||||||
try:
|
try:
|
||||||
firecrawl = Firecrawl(api_key=firecrawl_api_key, api_url=firecrawl_url)
|
from firecrawl import FirecrawlApp
|
||||||
|
|
||||||
|
firecrawl = FirecrawlApp(api_key=firecrawl_api_key, api_url=firecrawl_url)
|
||||||
response = firecrawl.search(
|
response = firecrawl.search(
|
||||||
query=query, limit=count, ignore_invalid_urls=True, timeout=count * 3
|
query=query, limit=count, ignore_invalid_urls=True, timeout=count * 3
|
||||||
)
|
)
|
||||||
|
|
|
||||||
|
|
@ -41,7 +41,6 @@ from open_webui.config import (
|
||||||
)
|
)
|
||||||
from open_webui.env import SRC_LOG_LEVELS
|
from open_webui.env import SRC_LOG_LEVELS
|
||||||
|
|
||||||
from firecrawl import Firecrawl
|
|
||||||
|
|
||||||
log = logging.getLogger(__name__)
|
log = logging.getLogger(__name__)
|
||||||
log.setLevel(SRC_LOG_LEVELS["RAG"])
|
log.setLevel(SRC_LOG_LEVELS["RAG"])
|
||||||
|
|
@ -227,7 +226,9 @@ class SafeFireCrawlLoader(BaseLoader, RateLimitMixin, URLProcessingMixin):
|
||||||
self.params,
|
self.params,
|
||||||
)
|
)
|
||||||
try:
|
try:
|
||||||
firecrawl = Firecrawl(api_key=self.api_key, api_url=self.api_url)
|
from firecrawl import FirecrawlApp
|
||||||
|
|
||||||
|
firecrawl = FirecrawlApp(api_key=self.api_key, api_url=self.api_url)
|
||||||
result = firecrawl.batch_scrape(
|
result = firecrawl.batch_scrape(
|
||||||
self.web_paths,
|
self.web_paths,
|
||||||
formats=["markdown"],
|
formats=["markdown"],
|
||||||
|
|
@ -266,7 +267,9 @@ class SafeFireCrawlLoader(BaseLoader, RateLimitMixin, URLProcessingMixin):
|
||||||
self.params,
|
self.params,
|
||||||
)
|
)
|
||||||
try:
|
try:
|
||||||
firecrawl = Firecrawl(api_key=self.api_key, api_url=self.api_url)
|
from firecrawl import FirecrawlApp
|
||||||
|
|
||||||
|
firecrawl = FirecrawlApp(api_key=self.api_key, api_url=self.api_url)
|
||||||
result = firecrawl.batch_scrape(
|
result = firecrawl.batch_scrape(
|
||||||
self.web_paths,
|
self.web_paths,
|
||||||
formats=["markdown"],
|
formats=["markdown"],
|
||||||
|
|
|
||||||
|
|
@ -53,6 +53,9 @@ log.setLevel(SRC_LOG_LEVELS["SOCKET"])
|
||||||
|
|
||||||
REDIS = None
|
REDIS = None
|
||||||
|
|
||||||
|
# Configure CORS for Socket.IO
|
||||||
|
SOCKETIO_CORS_ORIGINS = "*" if CORS_ALLOW_ORIGIN == ["*"] else CORS_ALLOW_ORIGIN
|
||||||
|
|
||||||
if WEBSOCKET_MANAGER == "redis":
|
if WEBSOCKET_MANAGER == "redis":
|
||||||
if WEBSOCKET_SENTINEL_HOSTS:
|
if WEBSOCKET_SENTINEL_HOSTS:
|
||||||
mgr = socketio.AsyncRedisManager(
|
mgr = socketio.AsyncRedisManager(
|
||||||
|
|
@ -63,7 +66,7 @@ if WEBSOCKET_MANAGER == "redis":
|
||||||
else:
|
else:
|
||||||
mgr = socketio.AsyncRedisManager(WEBSOCKET_REDIS_URL)
|
mgr = socketio.AsyncRedisManager(WEBSOCKET_REDIS_URL)
|
||||||
sio = socketio.AsyncServer(
|
sio = socketio.AsyncServer(
|
||||||
cors_allowed_origins=CORS_ALLOW_ORIGIN,
|
cors_allowed_origins=SOCKETIO_CORS_ORIGINS,
|
||||||
async_mode="asgi",
|
async_mode="asgi",
|
||||||
transports=(["websocket"] if ENABLE_WEBSOCKET_SUPPORT else ["polling"]),
|
transports=(["websocket"] if ENABLE_WEBSOCKET_SUPPORT else ["polling"]),
|
||||||
allow_upgrades=ENABLE_WEBSOCKET_SUPPORT,
|
allow_upgrades=ENABLE_WEBSOCKET_SUPPORT,
|
||||||
|
|
@ -72,7 +75,7 @@ if WEBSOCKET_MANAGER == "redis":
|
||||||
)
|
)
|
||||||
else:
|
else:
|
||||||
sio = socketio.AsyncServer(
|
sio = socketio.AsyncServer(
|
||||||
cors_allowed_origins=CORS_ALLOW_ORIGIN,
|
cors_allowed_origins=SOCKETIO_CORS_ORIGINS,
|
||||||
async_mode="asgi",
|
async_mode="asgi",
|
||||||
transports=(["websocket"] if ENABLE_WEBSOCKET_SUPPORT else ["polling"]),
|
transports=(["websocket"] if ENABLE_WEBSOCKET_SUPPORT else ["polling"]),
|
||||||
allow_upgrades=ENABLE_WEBSOCKET_SUPPORT,
|
allow_upgrades=ENABLE_WEBSOCKET_SUPPORT,
|
||||||
|
|
|
||||||
|
|
@ -2839,7 +2839,7 @@ async def process_chat_response(
|
||||||
)
|
)
|
||||||
|
|
||||||
else:
|
else:
|
||||||
tool_function = await get_updated_tool_function(
|
tool_function = get_updated_tool_function(
|
||||||
function=tool["callable"],
|
function=tool["callable"],
|
||||||
extra_params={
|
extra_params={
|
||||||
"__messages__": form_data.get(
|
"__messages__": form_data.get(
|
||||||
|
|
|
||||||
|
|
@ -42,6 +42,7 @@ from open_webui.config import (
|
||||||
ENABLE_OAUTH_GROUP_MANAGEMENT,
|
ENABLE_OAUTH_GROUP_MANAGEMENT,
|
||||||
ENABLE_OAUTH_GROUP_CREATION,
|
ENABLE_OAUTH_GROUP_CREATION,
|
||||||
OAUTH_BLOCKED_GROUPS,
|
OAUTH_BLOCKED_GROUPS,
|
||||||
|
OAUTH_GROUPS_SEPARATOR,
|
||||||
OAUTH_ROLES_CLAIM,
|
OAUTH_ROLES_CLAIM,
|
||||||
OAUTH_SUB_CLAIM,
|
OAUTH_SUB_CLAIM,
|
||||||
OAUTH_GROUPS_CLAIM,
|
OAUTH_GROUPS_CLAIM,
|
||||||
|
|
@ -1035,6 +1036,10 @@ class OAuthManager:
|
||||||
if isinstance(claim_data, list):
|
if isinstance(claim_data, list):
|
||||||
user_oauth_groups = claim_data
|
user_oauth_groups = claim_data
|
||||||
elif isinstance(claim_data, str):
|
elif isinstance(claim_data, str):
|
||||||
|
# Split by the configured separator if present
|
||||||
|
if OAUTH_GROUPS_SEPARATOR in claim_data:
|
||||||
|
user_oauth_groups = claim_data.split(OAUTH_GROUPS_SEPARATOR)
|
||||||
|
else:
|
||||||
user_oauth_groups = [claim_data]
|
user_oauth_groups = [claim_data]
|
||||||
else:
|
else:
|
||||||
user_oauth_groups = []
|
user_oauth_groups = []
|
||||||
|
|
|
||||||
|
|
@ -91,13 +91,13 @@ def get_async_tool_function_and_apply_extra_params(
|
||||||
return new_function
|
return new_function
|
||||||
|
|
||||||
|
|
||||||
async def get_updated_tool_function(function: Callable, extra_params: dict):
|
def get_updated_tool_function(function: Callable, extra_params: dict):
|
||||||
# Get the original function and merge updated params
|
# Get the original function and merge updated params
|
||||||
__function__ = getattr(function, "__function__", None)
|
__function__ = getattr(function, "__function__", None)
|
||||||
__extra_params__ = getattr(function, "__extra_params__", None)
|
__extra_params__ = getattr(function, "__extra_params__", None)
|
||||||
|
|
||||||
if __function__ is not None and __extra_params__ is not None:
|
if __function__ is not None and __extra_params__ is not None:
|
||||||
return await get_async_tool_function_and_apply_extra_params(
|
return get_async_tool_function_and_apply_extra_params(
|
||||||
__function__,
|
__function__,
|
||||||
{**__extra_params__, **extra_params},
|
{**__extra_params__, **extra_params},
|
||||||
)
|
)
|
||||||
|
|
|
||||||
|
|
@ -59,14 +59,15 @@ We appreciate the community's interest in identifying potential vulnerabilities.
|
||||||
>
|
>
|
||||||
> 1. affects default configurations, **or**
|
> 1. affects default configurations, **or**
|
||||||
> 2. represents a genuine bypass of intended security controls, **or**
|
> 2. represents a genuine bypass of intended security controls, **or**
|
||||||
> 3. works only with non-default configurations, **but the configuration in question is likely to be used by production deployments**,
|
> 3. works only with non-default configurations, **but the configuration in question is likely to be used by production deployments**, **then we absolutely want to hear about it.** This policy is intended to filter configuration issues and deployment problems, not to discourage legitimate security research.
|
||||||
> **then we absolutely want to hear about it.** This policy is intended to filter configuration issues and deployment problems, not to discourage legitimate security research.
|
|
||||||
|
|
||||||
8. **Threat Model Understanding Required**: Reports must demonstrate understanding of Open WebUI's self-hosted, authenticated, role-based access control architecture. Comparing Open WebUI to services with fundamentally different security models without acknowledging the architectural differences may result in report rejection.
|
8. **Threat Model Understanding Required**: Reports must demonstrate understanding of Open WebUI's self-hosted, authenticated, role-based access control architecture. Comparing Open WebUI to services with fundamentally different security models without acknowledging the architectural differences may result in report rejection.
|
||||||
|
|
||||||
9. **CVSS Scoring Accuracy:** If you include a CVSS score with your report, it must accurately reflect the vulnerability according to CVSS methodology. Common errors include 1) rating PR:N (None) when authentication is required, 2) scoring hypothetical attack chains instead of the actual vulnerability, or 3) inflating severity without evidence. **We will adjust inaccurate CVSS scores.** Intentionally inflated scores may result in report rejection.
|
9. **CVSS Scoring Accuracy:** If you include a CVSS score with your report, it must accurately reflect the vulnerability according to CVSS methodology. Common errors include 1) rating PR:N (None) when authentication is required, 2) scoring hypothetical attack chains instead of the actual vulnerability, or 3) inflating severity without evidence. **We will adjust inaccurate CVSS scores.** Intentionally inflated scores may result in report rejection.
|
||||||
|
|
||||||
> [!WARNING] > **Using CVE Precedents:** If you cite other CVEs to support your report, ensure they are **genuinely comparable** in vulnerability type, threat model, and attack vector. Citing CVEs from different product categories, different vulnerability classes or different deployment models will lead us to suspect the use of AI in your report.
|
> [!WARNING]
|
||||||
|
>
|
||||||
|
> **Using CVE Precedents:** If you cite other CVEs to support your report, ensure they are **genuinely comparable** in vulnerability type, threat model, and attack vector. Citing CVEs from different product categories, different vulnerability classes or different deployment models will lead us to suspect the use of AI in your report.
|
||||||
|
|
||||||
10. **Admin Actions Are Out of Scope:** Vulnerabilities that require an administrator to actively perform unsafe actions are **not considered valid vulnerabilities**. Admins have full system control and are expected to understand the security implications of their actions and configurations. This includes but is not limited to: adding malicious external servers (models, tools, webhooks), pasting untrusted code into Functions/Tools, or intentionally weakening security settings. **Reports requiring admin negligence or social engineering of admins may be rejected.**
|
10. **Admin Actions Are Out of Scope:** Vulnerabilities that require an administrator to actively perform unsafe actions are **not considered valid vulnerabilities**. Admins have full system control and are expected to understand the security implications of their actions and configurations. This includes but is not limited to: adding malicious external servers (models, tools, webhooks), pasting untrusted code into Functions/Tools, or intentionally weakening security settings. **Reports requiring admin negligence or social engineering of admins may be rejected.**
|
||||||
|
|
||||||
|
|
|
||||||
4
package-lock.json
generated
4
package-lock.json
generated
|
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "open-webui",
|
"name": "open-webui",
|
||||||
"version": "0.6.35",
|
"version": "0.6.36",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "open-webui",
|
"name": "open-webui",
|
||||||
"version": "0.6.35",
|
"version": "0.6.36",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@azure/msal-browser": "^4.5.0",
|
"@azure/msal-browser": "^4.5.0",
|
||||||
"@codemirror/lang-javascript": "^6.2.2",
|
"@codemirror/lang-javascript": "^6.2.2",
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "open-webui",
|
"name": "open-webui",
|
||||||
"version": "0.6.35",
|
"version": "0.6.36",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "npm run pyodide:fetch && vite dev --host",
|
"dev": "npm run pyodide:fetch && vite dev --host",
|
||||||
|
|
|
||||||
|
|
@ -62,6 +62,7 @@
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
|
let showComfyUIEditWorkflowEditor = false;
|
||||||
let REQUIRED_EDIT_WORKFLOW_NODES = [
|
let REQUIRED_EDIT_WORKFLOW_NODES = [
|
||||||
{
|
{
|
||||||
type: 'image',
|
type: 'image',
|
||||||
|
|
@ -1075,7 +1076,7 @@
|
||||||
aria-label={$i18n.t('Edit workflow.json content')}
|
aria-label={$i18n.t('Edit workflow.json content')}
|
||||||
on:click={() => {
|
on:click={() => {
|
||||||
// open code editor modal
|
// open code editor modal
|
||||||
showComfyUIWorkflowEditor = true;
|
showComfyUIEditWorkflowEditor = true;
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{$i18n.t('Edit')}
|
{$i18n.t('Edit')}
|
||||||
|
|
@ -1100,7 +1101,7 @@
|
||||||
|
|
||||||
<div class="mt-1 text-xs text-gray-400 dark:text-gray-500">
|
<div class="mt-1 text-xs text-gray-400 dark:text-gray-500">
|
||||||
<CodeEditorModal
|
<CodeEditorModal
|
||||||
bind:show={showComfyUIWorkflowEditor}
|
bind:show={showComfyUIEditWorkflowEditor}
|
||||||
value={config.IMAGES_EDIT_COMFYUI_WORKFLOW}
|
value={config.IMAGES_EDIT_COMFYUI_WORKFLOW}
|
||||||
lang="json"
|
lang="json"
|
||||||
onChange={(e) => {
|
onChange={(e) => {
|
||||||
|
|
|
||||||
|
|
@ -65,6 +65,36 @@
|
||||||
<div class="flex flex-col md:flex-row w-full md:space-x-2 dark:text-gray-200">
|
<div class="flex flex-col md:flex-row w-full md:space-x-2 dark:text-gray-200">
|
||||||
<div class="flex flex-col w-full sm:flex-row sm:justify-center sm:space-x-6">
|
<div class="flex flex-col w-full sm:flex-row sm:justify-center sm:space-x-6">
|
||||||
<div class=" grid grid-cols-1 sm:grid-cols-2 gap-2 gap-x-4 w-full">
|
<div class=" grid grid-cols-1 sm:grid-cols-2 gap-2 gap-x-4 w-full">
|
||||||
|
<!-- {$i18n.t('Chat')} -->
|
||||||
|
<!-- {$i18n.t('Global')} -->
|
||||||
|
<!-- {$i18n.t('Input')} -->
|
||||||
|
<!-- {$i18n.t('Message')} -->
|
||||||
|
|
||||||
|
<!-- {$i18n.t('New Chat')} -->
|
||||||
|
<!-- {$i18n.t('New Temporary Chat')} -->
|
||||||
|
<!-- {$i18n.t('Delete Chat')} -->
|
||||||
|
<!-- {$i18n.t('Search')} -->
|
||||||
|
<!-- {$i18n.t('Open Settings')} -->
|
||||||
|
<!-- {$i18n.t('Show Shortcuts')} -->
|
||||||
|
<!-- {$i18n.t('Toggle Sidebar')} -->
|
||||||
|
<!-- {$i18n.t('Close Modal')} -->
|
||||||
|
<!-- {$i18n.t('Focus Chat Input')} -->
|
||||||
|
<!-- {$i18n.t('Accept Autocomplete Generation\nJump to Prompt Variable')} -->
|
||||||
|
<!-- {$i18n.t('Prevent File Creation')} -->
|
||||||
|
<!-- {$i18n.t('Attach File From Knowledge')} -->
|
||||||
|
<!-- {$i18n.t('Add Custom Prompt')} -->
|
||||||
|
<!-- {$i18n.t('Talk to Model')} -->
|
||||||
|
<!-- {$i18n.t('Generate Message Pair')} -->
|
||||||
|
<!-- {$i18n.t('Regenerate Response')} -->
|
||||||
|
<!-- {$i18n.t('Stop Generating')} -->
|
||||||
|
<!-- {$i18n.t('Edit Last Message')} -->
|
||||||
|
<!-- {$i18n.t('Copy Last Response')} -->
|
||||||
|
<!-- {$i18n.t('Copy Last Code Block')} -->
|
||||||
|
|
||||||
|
<!-- {$i18n.t('Only active when "Paste Large Text as File" setting is toggled on.')} -->
|
||||||
|
<!-- {$i18n.t('Only active when the chat input is in focus.')} -->
|
||||||
|
<!-- {$i18n.t('Only active when the chat input is in focus and an LLM is generating a response.')} -->
|
||||||
|
<!-- {$i18n.t('Only can be triggered when the chat input is in focus.')} -->
|
||||||
{#each items as shortcut}
|
{#each items as shortcut}
|
||||||
<div class="col-span-1 flex items-start">
|
<div class="col-span-1 flex items-start">
|
||||||
<ShortcutItem {shortcut} {isMac} />
|
<ShortcutItem {shortcut} {isMac} />
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "يتم استخدام نموذج المهمة عند تنفيذ مهام مثل إنشاء عناوين للدردشات واستعلامات بحث الويب",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "يتم استخدام نموذج المهمة عند تنفيذ مهام مثل إنشاء عناوين للدردشات واستعلامات بحث الويب",
|
||||||
"a user": "مستخدم",
|
"a user": "مستخدم",
|
||||||
"About": "عن",
|
"About": "عن",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "",
|
"Access": "",
|
||||||
"Access Control": "",
|
"Access Control": "",
|
||||||
"Accessible to all users": "",
|
"Accessible to all users": "",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "",
|
"Add Content": "",
|
||||||
"Add content here": "",
|
"Add content here": "",
|
||||||
"Add Custom Parameter": "",
|
"Add Custom Parameter": "",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "",
|
"Add Details": "",
|
||||||
"Add Files": "إضافة ملفات",
|
"Add Files": "إضافة ملفات",
|
||||||
"Add Group": "",
|
"Add Group": "",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "",
|
"Ask": "",
|
||||||
"Ask a question": "",
|
"Ask a question": "",
|
||||||
"Assistant": "",
|
"Assistant": "",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "",
|
"Attach Knowledge": "",
|
||||||
"Attach Notes": "",
|
"Attach Notes": "",
|
||||||
"Attach Webpage": "",
|
"Attach Webpage": "",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "",
|
"Close Banner": "",
|
||||||
"Close Configure Connection Modal": "",
|
"Close Configure Connection Modal": "",
|
||||||
"Close modal": "",
|
"Close modal": "",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "",
|
"Close settings modal": "",
|
||||||
"Close Sidebar": "",
|
"Close Sidebar": "",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "",
|
"Copied to clipboard": "",
|
||||||
"Copy": "نسخ",
|
"Copy": "نسخ",
|
||||||
"Copy Formatted Text": "",
|
"Copy Formatted Text": "",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "",
|
"Copy link": "",
|
||||||
"Copy Link": "أنسخ الرابط",
|
"Copy Link": "أنسخ الرابط",
|
||||||
"Copy to clipboard": "",
|
"Copy to clipboard": "",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "",
|
"Edit Default Permissions": "",
|
||||||
"Edit Folder": "",
|
"Edit Folder": "",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "",
|
"Edit Memory": "",
|
||||||
"Edit User": "تعديل المستخدم",
|
"Edit User": "تعديل المستخدم",
|
||||||
"Edit User Group": "",
|
"Edit User Group": "",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "",
|
"Firecrawl API Base URL": "",
|
||||||
"Firecrawl API Key": "",
|
"Firecrawl API Key": "",
|
||||||
"Floating Quick Actions": "",
|
"Floating Quick Actions": "",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "",
|
"Folder": "",
|
||||||
"Folder Background Image": "",
|
"Folder Background Image": "",
|
||||||
"Folder deleted successfully": "",
|
"Folder deleted successfully": "",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "",
|
"Generate": "",
|
||||||
"Generate an image": "",
|
"Generate an image": "",
|
||||||
"Generate Image": "",
|
"Generate Image": "",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "",
|
"Generated Image": "",
|
||||||
"Generating search query": "إنشاء استعلام بحث",
|
"Generating search query": "إنشاء استعلام بحث",
|
||||||
"Generating...": "",
|
"Generating...": "",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "",
|
"Memory updated successfully": "",
|
||||||
"Merge Responses": "",
|
"Merge Responses": "",
|
||||||
"Merged Response": "نتيجة الردود المدمجة",
|
"Merged Response": "نتيجة الردود المدمجة",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "",
|
"Message rating should be enabled to use this feature": "",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "لن تتم مشاركة الرسائل التي ترسلها بعد إنشاء الرابط الخاص بك. سيتمكن المستخدمون الذين لديهم عنوان URL من عرض الدردشة المشتركة",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "لن تتم مشاركة الرسائل التي ترسلها بعد إنشاء الرابط الخاص بك. سيتمكن المستخدمون الذين لديهم عنوان URL من عرض الدردشة المشتركة",
|
||||||
"Microsoft OneDrive": "",
|
"Microsoft OneDrive": "",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "",
|
"New Note": "",
|
||||||
"New Password": "كلمة المرور الجديدة",
|
"New Password": "كلمة المرور الجديدة",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "",
|
"New Tool": "",
|
||||||
"new-channel": "",
|
"new-channel": "",
|
||||||
"Next message": "",
|
"Next message": "",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Ollama الاصدار",
|
"Ollama Version": "Ollama الاصدار",
|
||||||
"On": "تشغيل",
|
"On": "تشغيل",
|
||||||
"OneDrive": "",
|
"OneDrive": "",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "",
|
"Only alphanumeric characters and hyphens are allowed": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "يُسمح فقط بالأحرف الأبجدية الرقمية والواصلات في سلسلة الأمر.",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "يُسمح فقط بالأحرف الأبجدية الرقمية والواصلات في سلسلة الأمر.",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
|
||||||
"Only markdown files are allowed": "",
|
"Only markdown files are allowed": "",
|
||||||
"Only select users and groups with permission can access": "",
|
"Only select users and groups with permission can access": "",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "",
|
"Open modal to configure connection": "",
|
||||||
"Open Modal To Manage Floating Quick Actions": "",
|
"Open Modal To Manage Floating Quick Actions": "",
|
||||||
"Open Modal To Manage Image Compression": "",
|
"Open Modal To Manage Image Compression": "",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "",
|
"Open Sidebar": "",
|
||||||
"Open User Profile Menu": "",
|
"Open User Profile Menu": "",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "",
|
"Prefer not to say": "",
|
||||||
"Prefix ID": "",
|
"Prefix ID": "",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "",
|
"Preview": "",
|
||||||
"Previous 30 days": "أخر 30 يوم",
|
"Previous 30 days": "أخر 30 يوم",
|
||||||
"Previous 7 days": "أخر 7 أيام",
|
"Previous 7 days": "أخر 7 أيام",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "رفض عندما لا ينبغي أن يكون",
|
"Refused when it shouldn't have": "رفض عندما لا ينبغي أن يكون",
|
||||||
"Regenerate": "تجديد",
|
"Regenerate": "تجديد",
|
||||||
"Regenerate Menu": "",
|
"Regenerate Menu": "",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "",
|
"Register Again": "",
|
||||||
"Register Client": "",
|
"Register Client": "",
|
||||||
"Registered": "",
|
"Registered": "",
|
||||||
|
|
@ -1443,6 +1461,7 @@
|
||||||
"Show Formatting Toolbar": "",
|
"Show Formatting Toolbar": "",
|
||||||
"Show image preview": "",
|
"Show image preview": "",
|
||||||
"Show Model": "",
|
"Show Model": "",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "",
|
"Show your support!": "",
|
||||||
"Showcased creativity": "أظهر الإبداع",
|
"Showcased creativity": "أظهر الإبداع",
|
||||||
"Sign in": "تسجيل الدخول",
|
"Sign in": "تسجيل الدخول",
|
||||||
|
|
@ -1478,6 +1497,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "",
|
"Stop": "",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "وقف التسلسل",
|
"Stop Sequence": "وقف التسلسل",
|
||||||
"Stream Chat Response": "",
|
"Stream Chat Response": "",
|
||||||
"Stream Delta Chunk Size": "",
|
"Stream Delta Chunk Size": "",
|
||||||
|
|
@ -1507,6 +1527,7 @@
|
||||||
"Tags Generation": "",
|
"Tags Generation": "",
|
||||||
"Tags Generation Prompt": "",
|
"Tags Generation Prompt": "",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "",
|
"Tap to interrupt": "",
|
||||||
"Task List": "",
|
"Task List": "",
|
||||||
"Task Model": "",
|
"Task Model": "",
|
||||||
|
|
@ -1588,6 +1609,7 @@
|
||||||
"Toast notifications for new updates": "",
|
"Toast notifications for new updates": "",
|
||||||
"Today": "اليوم",
|
"Today": "اليوم",
|
||||||
"Today at {{LOCALIZED_TIME}}": "",
|
"Today at {{LOCALIZED_TIME}}": "",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "",
|
"Toggle whether current connection is active.": "",
|
||||||
"Token": "",
|
"Token": "",
|
||||||
"Too verbose": "",
|
"Too verbose": "",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "يُستخدم نموذج المهام عند تنفيذ مهام مثل توليد عناوين المحادثات واستعلامات البحث على الويب",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "يُستخدم نموذج المهام عند تنفيذ مهام مثل توليد عناوين المحادثات واستعلامات البحث على الويب",
|
||||||
"a user": "مستخدم",
|
"a user": "مستخدم",
|
||||||
"About": "حول",
|
"About": "حول",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "الوصول",
|
"Access": "الوصول",
|
||||||
"Access Control": "التحكم في الوصول",
|
"Access Control": "التحكم في الوصول",
|
||||||
"Accessible to all users": "متاح لجميع المستخدمين",
|
"Accessible to all users": "متاح لجميع المستخدمين",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "إضافة محتوى",
|
"Add Content": "إضافة محتوى",
|
||||||
"Add content here": "أضف المحتوى هنا",
|
"Add content here": "أضف المحتوى هنا",
|
||||||
"Add Custom Parameter": "",
|
"Add Custom Parameter": "",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "",
|
"Add Details": "",
|
||||||
"Add Files": "إضافة ملفات",
|
"Add Files": "إضافة ملفات",
|
||||||
"Add Group": "إضافة مجموعة",
|
"Add Group": "إضافة مجموعة",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "اسأل",
|
"Ask": "اسأل",
|
||||||
"Ask a question": "اطرح سؤالاً",
|
"Ask a question": "اطرح سؤالاً",
|
||||||
"Assistant": "المساعد",
|
"Assistant": "المساعد",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "",
|
"Attach Knowledge": "",
|
||||||
"Attach Notes": "",
|
"Attach Notes": "",
|
||||||
"Attach Webpage": "",
|
"Attach Webpage": "",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "",
|
"Close Banner": "",
|
||||||
"Close Configure Connection Modal": "",
|
"Close Configure Connection Modal": "",
|
||||||
"Close modal": "",
|
"Close modal": "",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "",
|
"Close settings modal": "",
|
||||||
"Close Sidebar": "",
|
"Close Sidebar": "",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "تم النسخ إلى الحافظة",
|
"Copied to clipboard": "تم النسخ إلى الحافظة",
|
||||||
"Copy": "نسخ",
|
"Copy": "نسخ",
|
||||||
"Copy Formatted Text": "",
|
"Copy Formatted Text": "",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "",
|
"Copy link": "",
|
||||||
"Copy Link": "نسخ الرابط",
|
"Copy Link": "نسخ الرابط",
|
||||||
"Copy to clipboard": "نسخ إلى الحافظة",
|
"Copy to clipboard": "نسخ إلى الحافظة",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "تعديل الأذونات الافتراضية",
|
"Edit Default Permissions": "تعديل الأذونات الافتراضية",
|
||||||
"Edit Folder": "",
|
"Edit Folder": "",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "تعديل الذاكرة",
|
"Edit Memory": "تعديل الذاكرة",
|
||||||
"Edit User": "تعديل المستخدم",
|
"Edit User": "تعديل المستخدم",
|
||||||
"Edit User Group": "تعديل مجموعة المستخدمين",
|
"Edit User Group": "تعديل مجموعة المستخدمين",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "",
|
"Firecrawl API Base URL": "",
|
||||||
"Firecrawl API Key": "",
|
"Firecrawl API Key": "",
|
||||||
"Floating Quick Actions": "",
|
"Floating Quick Actions": "",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "",
|
"Folder": "",
|
||||||
"Folder Background Image": "",
|
"Folder Background Image": "",
|
||||||
"Folder deleted successfully": "تم حذف المجلد بنجاح",
|
"Folder deleted successfully": "تم حذف المجلد بنجاح",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "",
|
"Generate": "",
|
||||||
"Generate an image": "توليد صورة",
|
"Generate an image": "توليد صورة",
|
||||||
"Generate Image": "توليد صورة",
|
"Generate Image": "توليد صورة",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "",
|
"Generated Image": "",
|
||||||
"Generating search query": "إنشاء استعلام بحث",
|
"Generating search query": "إنشاء استعلام بحث",
|
||||||
"Generating...": "",
|
"Generating...": "",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "تم تحديث الذاكرة بنجاح",
|
"Memory updated successfully": "تم تحديث الذاكرة بنجاح",
|
||||||
"Merge Responses": "دمج الردود",
|
"Merge Responses": "دمج الردود",
|
||||||
"Merged Response": "نتيجة الردود المدمجة",
|
"Merged Response": "نتيجة الردود المدمجة",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "يجب تفعيل تقييم الرسائل لاستخدام هذه الميزة",
|
"Message rating should be enabled to use this feature": "يجب تفعيل تقييم الرسائل لاستخدام هذه الميزة",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "لن تتم مشاركة الرسائل التي ترسلها بعد إنشاء الرابط الخاص بك. سيتمكن المستخدمون الذين لديهم عنوان URL من عرض الدردشة المشتركة",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "لن تتم مشاركة الرسائل التي ترسلها بعد إنشاء الرابط الخاص بك. سيتمكن المستخدمون الذين لديهم عنوان URL من عرض الدردشة المشتركة",
|
||||||
"Microsoft OneDrive": "",
|
"Microsoft OneDrive": "",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "",
|
"New Note": "",
|
||||||
"New Password": "كلمة المرور الجديدة",
|
"New Password": "كلمة المرور الجديدة",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "",
|
"New Tool": "",
|
||||||
"new-channel": "قناة جديدة",
|
"new-channel": "قناة جديدة",
|
||||||
"Next message": "",
|
"Next message": "",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Ollama الاصدار",
|
"Ollama Version": "Ollama الاصدار",
|
||||||
"On": "تشغيل",
|
"On": "تشغيل",
|
||||||
"OneDrive": "OneDrive",
|
"OneDrive": "OneDrive",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "يُسمح فقط بالحروف والأرقام والواصلات",
|
"Only alphanumeric characters and hyphens are allowed": "يُسمح فقط بالحروف والأرقام والواصلات",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "يُسمح فقط بالأحرف الأبجدية الرقمية والواصلات في سلسلة الأمر.",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "يُسمح فقط بالأحرف الأبجدية الرقمية والواصلات في سلسلة الأمر.",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "يمكن تعديل المجموعات فقط، أنشئ قاعدة معرفة جديدة لتعديل أو إضافة مستندات.",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "يمكن تعديل المجموعات فقط، أنشئ قاعدة معرفة جديدة لتعديل أو إضافة مستندات.",
|
||||||
"Only markdown files are allowed": "",
|
"Only markdown files are allowed": "",
|
||||||
"Only select users and groups with permission can access": "يمكن الوصول فقط من قبل المستخدمين والمجموعات المصرح لهم",
|
"Only select users and groups with permission can access": "يمكن الوصول فقط من قبل المستخدمين والمجموعات المصرح لهم",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "",
|
"Open modal to configure connection": "",
|
||||||
"Open Modal To Manage Floating Quick Actions": "",
|
"Open Modal To Manage Floating Quick Actions": "",
|
||||||
"Open Modal To Manage Image Compression": "",
|
"Open Modal To Manage Image Compression": "",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "",
|
"Open Sidebar": "",
|
||||||
"Open User Profile Menu": "",
|
"Open User Profile Menu": "",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "",
|
"Prefer not to say": "",
|
||||||
"Prefix ID": "معرف البادئة",
|
"Prefix ID": "معرف البادئة",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "يُستخدم معرف البادئة لتفادي التعارض مع الاتصالات الأخرى من خلال إضافة بادئة إلى معرفات النماذج – اتركه فارغًا لتعطيله",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "يُستخدم معرف البادئة لتفادي التعارض مع الاتصالات الأخرى من خلال إضافة بادئة إلى معرفات النماذج – اتركه فارغًا لتعطيله",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "",
|
"Preview": "",
|
||||||
"Previous 30 days": "أخر 30 يوم",
|
"Previous 30 days": "أخر 30 يوم",
|
||||||
"Previous 7 days": "أخر 7 أيام",
|
"Previous 7 days": "أخر 7 أيام",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "رفض عندما لا ينبغي أن يكون",
|
"Refused when it shouldn't have": "رفض عندما لا ينبغي أن يكون",
|
||||||
"Regenerate": "تجديد",
|
"Regenerate": "تجديد",
|
||||||
"Regenerate Menu": "",
|
"Regenerate Menu": "",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "",
|
"Register Again": "",
|
||||||
"Register Client": "",
|
"Register Client": "",
|
||||||
"Registered": "",
|
"Registered": "",
|
||||||
|
|
@ -1443,6 +1461,7 @@
|
||||||
"Show Formatting Toolbar": "",
|
"Show Formatting Toolbar": "",
|
||||||
"Show image preview": "",
|
"Show image preview": "",
|
||||||
"Show Model": "",
|
"Show Model": "",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "أظهر دعمك!",
|
"Show your support!": "أظهر دعمك!",
|
||||||
"Showcased creativity": "أظهر الإبداع",
|
"Showcased creativity": "أظهر الإبداع",
|
||||||
"Sign in": "تسجيل الدخول",
|
"Sign in": "تسجيل الدخول",
|
||||||
|
|
@ -1478,6 +1497,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "إيقاف",
|
"Stop": "إيقاف",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "وقف التسلسل",
|
"Stop Sequence": "وقف التسلسل",
|
||||||
"Stream Chat Response": "بث استجابة الدردشة",
|
"Stream Chat Response": "بث استجابة الدردشة",
|
||||||
"Stream Delta Chunk Size": "",
|
"Stream Delta Chunk Size": "",
|
||||||
|
|
@ -1507,6 +1527,7 @@
|
||||||
"Tags Generation": "إنشاء الوسوم",
|
"Tags Generation": "إنشاء الوسوم",
|
||||||
"Tags Generation Prompt": "توجيه إنشاء الوسوم",
|
"Tags Generation Prompt": "توجيه إنشاء الوسوم",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "يتم استخدام أخذ العينات بدون ذيل لتقليل تأثير الرموز الأقل احتمالًا. القيمة الأعلى (مثل 2.0) تقلل التأثير أكثر، والقيمة 1.0 تعطل هذا الإعداد.",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "يتم استخدام أخذ العينات بدون ذيل لتقليل تأثير الرموز الأقل احتمالًا. القيمة الأعلى (مثل 2.0) تقلل التأثير أكثر، والقيمة 1.0 تعطل هذا الإعداد.",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "اضغط للمقاطعة",
|
"Tap to interrupt": "اضغط للمقاطعة",
|
||||||
"Task List": "",
|
"Task List": "",
|
||||||
"Task Model": "",
|
"Task Model": "",
|
||||||
|
|
@ -1588,6 +1609,7 @@
|
||||||
"Toast notifications for new updates": "إشعارات منبثقة للتحديثات الجديدة",
|
"Toast notifications for new updates": "إشعارات منبثقة للتحديثات الجديدة",
|
||||||
"Today": "اليوم",
|
"Today": "اليوم",
|
||||||
"Today at {{LOCALIZED_TIME}}": "",
|
"Today at {{LOCALIZED_TIME}}": "",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "",
|
"Toggle whether current connection is active.": "",
|
||||||
"Token": "رمز",
|
"Token": "رمز",
|
||||||
"Too verbose": "مفرط في التفاصيل",
|
"Too verbose": "مفرط في التفاصيل",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Моделът на задачите се използва при изпълнението на задачите като генериране на заглавия за чатове и заявки за търсене в мрежата",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Моделът на задачите се използва при изпълнението на задачите като генериране на заглавия за чатове и заявки за търсене в мрежата",
|
||||||
"a user": "потребител",
|
"a user": "потребител",
|
||||||
"About": "Относно",
|
"About": "Относно",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "Достъп",
|
"Access": "Достъп",
|
||||||
"Access Control": "Контрол на достъпа",
|
"Access Control": "Контрол на достъпа",
|
||||||
"Accessible to all users": "Достъпно за всички потребители",
|
"Accessible to all users": "Достъпно за всички потребители",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "Добавяне на съдържание",
|
"Add Content": "Добавяне на съдържание",
|
||||||
"Add content here": "Добавете съдържание тук",
|
"Add content here": "Добавете съдържание тук",
|
||||||
"Add Custom Parameter": "",
|
"Add Custom Parameter": "",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "",
|
"Add Details": "",
|
||||||
"Add Files": "Добавяне на Файлове",
|
"Add Files": "Добавяне на Файлове",
|
||||||
"Add Group": "Добавяне на група",
|
"Add Group": "Добавяне на група",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "Питай",
|
"Ask": "Питай",
|
||||||
"Ask a question": "Задайте въпрос",
|
"Ask a question": "Задайте въпрос",
|
||||||
"Assistant": "Асистент",
|
"Assistant": "Асистент",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "",
|
"Attach Knowledge": "",
|
||||||
"Attach Notes": "",
|
"Attach Notes": "",
|
||||||
"Attach Webpage": "",
|
"Attach Webpage": "",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "",
|
"Close Banner": "",
|
||||||
"Close Configure Connection Modal": "",
|
"Close Configure Connection Modal": "",
|
||||||
"Close modal": "",
|
"Close modal": "",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "",
|
"Close settings modal": "",
|
||||||
"Close Sidebar": "",
|
"Close Sidebar": "",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "Копирано в клипборда",
|
"Copied to clipboard": "Копирано в клипборда",
|
||||||
"Copy": "Копирай",
|
"Copy": "Копирай",
|
||||||
"Copy Formatted Text": "",
|
"Copy Formatted Text": "",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "",
|
"Copy link": "",
|
||||||
"Copy Link": "Копиране на връзка",
|
"Copy Link": "Копиране на връзка",
|
||||||
"Copy to clipboard": "Копиране в клипборда",
|
"Copy to clipboard": "Копиране в клипборда",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "Редактиране на разрешения по подразбиране",
|
"Edit Default Permissions": "Редактиране на разрешения по подразбиране",
|
||||||
"Edit Folder": "",
|
"Edit Folder": "",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "Редактиране на памет",
|
"Edit Memory": "Редактиране на памет",
|
||||||
"Edit User": "Редактиране на потребител",
|
"Edit User": "Редактиране на потребител",
|
||||||
"Edit User Group": "Редактиране на потребителска група",
|
"Edit User Group": "Редактиране на потребителска група",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "",
|
"Firecrawl API Base URL": "",
|
||||||
"Firecrawl API Key": "",
|
"Firecrawl API Key": "",
|
||||||
"Floating Quick Actions": "",
|
"Floating Quick Actions": "",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "",
|
"Folder": "",
|
||||||
"Folder Background Image": "",
|
"Folder Background Image": "",
|
||||||
"Folder deleted successfully": "Папката е изтрита успешно",
|
"Folder deleted successfully": "Папката е изтрита успешно",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "",
|
"Generate": "",
|
||||||
"Generate an image": "Генериране на изображение",
|
"Generate an image": "Генериране на изображение",
|
||||||
"Generate Image": "Генериране на изображение",
|
"Generate Image": "Генериране на изображение",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "",
|
"Generated Image": "",
|
||||||
"Generating search query": "Генериране на заявка за търсене",
|
"Generating search query": "Генериране на заявка за търсене",
|
||||||
"Generating...": "",
|
"Generating...": "",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "Паметта е актуализирана успешно",
|
"Memory updated successfully": "Паметта е актуализирана успешно",
|
||||||
"Merge Responses": "Обединяване на отговори",
|
"Merge Responses": "Обединяване на отговори",
|
||||||
"Merged Response": "Обединен отговор",
|
"Merged Response": "Обединен отговор",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "Оценяването на съобщения трябва да бъде активирано, за да използвате тази функция",
|
"Message rating should be enabled to use this feature": "Оценяването на съобщения трябва да бъде активирано, за да използвате тази функция",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Съобщенията, които изпращате след създаването на връзката, няма да бъдат споделяни. Потребителите с URL адреса ще могат да видят споделения чат.",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Съобщенията, които изпращате след създаването на връзката, няма да бъдат споделяни. Потребителите с URL адреса ще могат да видят споделения чат.",
|
||||||
"Microsoft OneDrive": "",
|
"Microsoft OneDrive": "",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "Нова бележка",
|
"New Note": "Нова бележка",
|
||||||
"New Password": "Нова парола",
|
"New Password": "Нова парола",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "",
|
"New Tool": "",
|
||||||
"new-channel": "нов-канал",
|
"new-channel": "нов-канал",
|
||||||
"Next message": "",
|
"Next message": "",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Ollama Версия",
|
"Ollama Version": "Ollama Версия",
|
||||||
"On": "Вкл.",
|
"On": "Вкл.",
|
||||||
"OneDrive": "OneDrive",
|
"OneDrive": "OneDrive",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "Разрешени са само буквено-цифрови знаци и тирета",
|
"Only alphanumeric characters and hyphens are allowed": "Разрешени са само буквено-цифрови знаци и тирета",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "Само алфанумерични знаци и тире са разрешени в командния низ.",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "Само алфанумерични знаци и тире са разрешени в командния низ.",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Само колекциите могат да бъдат редактирани, създайте нова база от знания, за да редактирате/добавяте документи.",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Само колекциите могат да бъдат редактирани, създайте нова база от знания, за да редактирате/добавяте документи.",
|
||||||
"Only markdown files are allowed": "",
|
"Only markdown files are allowed": "",
|
||||||
"Only select users and groups with permission can access": "Само избрани потребители и групи с разрешение могат да имат достъп",
|
"Only select users and groups with permission can access": "Само избрани потребители и групи с разрешение могат да имат достъп",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "",
|
"Open modal to configure connection": "",
|
||||||
"Open Modal To Manage Floating Quick Actions": "",
|
"Open Modal To Manage Floating Quick Actions": "",
|
||||||
"Open Modal To Manage Image Compression": "",
|
"Open Modal To Manage Image Compression": "",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "",
|
"Open Sidebar": "",
|
||||||
"Open User Profile Menu": "",
|
"Open User Profile Menu": "",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "",
|
"Prefer not to say": "",
|
||||||
"Prefix ID": "Префикс ID",
|
"Prefix ID": "Префикс ID",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Префикс ID се използва за избягване на конфликти с други връзки чрез добавяне на префикс към ID-тата на моделите - оставете празно, за да деактивирате",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Префикс ID се използва за избягване на конфликти с други връзки чрез добавяне на префикс към ID-тата на моделите - оставете празно, за да деактивирате",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "",
|
"Preview": "",
|
||||||
"Previous 30 days": "Предишните 30 дни",
|
"Previous 30 days": "Предишните 30 дни",
|
||||||
"Previous 7 days": "Предишните 7 дни",
|
"Previous 7 days": "Предишните 7 дни",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "Отказано, когато не трябва да бъде",
|
"Refused when it shouldn't have": "Отказано, когато не трябва да бъде",
|
||||||
"Regenerate": "Регенериране",
|
"Regenerate": "Регенериране",
|
||||||
"Regenerate Menu": "",
|
"Regenerate Menu": "",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "",
|
"Register Again": "",
|
||||||
"Register Client": "",
|
"Register Client": "",
|
||||||
"Registered": "",
|
"Registered": "",
|
||||||
|
|
@ -1439,6 +1457,7 @@
|
||||||
"Show Formatting Toolbar": "",
|
"Show Formatting Toolbar": "",
|
||||||
"Show image preview": "",
|
"Show image preview": "",
|
||||||
"Show Model": "Покажи модел",
|
"Show Model": "Покажи модел",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "Покажете вашата подкрепа!",
|
"Show your support!": "Покажете вашата подкрепа!",
|
||||||
"Showcased creativity": "Показана креативност",
|
"Showcased creativity": "Показана креативност",
|
||||||
"Sign in": "Вписване",
|
"Sign in": "Вписване",
|
||||||
|
|
@ -1474,6 +1493,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "Спри",
|
"Stop": "Спри",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "Стоп последователност",
|
"Stop Sequence": "Стоп последователност",
|
||||||
"Stream Chat Response": "Поточен чат отговор",
|
"Stream Chat Response": "Поточен чат отговор",
|
||||||
"Stream Delta Chunk Size": "",
|
"Stream Delta Chunk Size": "",
|
||||||
|
|
@ -1503,6 +1523,7 @@
|
||||||
"Tags Generation": "Генериране на тагове",
|
"Tags Generation": "Генериране на тагове",
|
||||||
"Tags Generation Prompt": "Промпт за генериране на тагове",
|
"Tags Generation Prompt": "Промпт за генериране на тагове",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "Докоснете за прекъсване",
|
"Tap to interrupt": "Докоснете за прекъсване",
|
||||||
"Task List": "",
|
"Task List": "",
|
||||||
"Task Model": "",
|
"Task Model": "",
|
||||||
|
|
@ -1584,6 +1605,7 @@
|
||||||
"Toast notifications for new updates": "Изскачащи известия за нови актуализации",
|
"Toast notifications for new updates": "Изскачащи известия за нови актуализации",
|
||||||
"Today": "Днес",
|
"Today": "Днес",
|
||||||
"Today at {{LOCALIZED_TIME}}": "",
|
"Today at {{LOCALIZED_TIME}}": "",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "",
|
"Toggle whether current connection is active.": "",
|
||||||
"Token": "Токен",
|
"Token": "Токен",
|
||||||
"Too verbose": "Прекалено многословно",
|
"Too verbose": "Прекалено многословно",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "চ্যাট এবং ওয়েব অনুসন্ধান প্রশ্নের জন্য শিরোনাম তৈরি করার মতো কাজগুলি সম্পাদন করার সময় একটি টাস্ক মডেল ব্যবহার করা হয়",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "চ্যাট এবং ওয়েব অনুসন্ধান প্রশ্নের জন্য শিরোনাম তৈরি করার মতো কাজগুলি সম্পাদন করার সময় একটি টাস্ক মডেল ব্যবহার করা হয়",
|
||||||
"a user": "একজন ব্যাবহারকারী",
|
"a user": "একজন ব্যাবহারকারী",
|
||||||
"About": "সম্পর্কে",
|
"About": "সম্পর্কে",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "",
|
"Access": "",
|
||||||
"Access Control": "",
|
"Access Control": "",
|
||||||
"Accessible to all users": "",
|
"Accessible to all users": "",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "",
|
"Add Content": "",
|
||||||
"Add content here": "",
|
"Add content here": "",
|
||||||
"Add Custom Parameter": "",
|
"Add Custom Parameter": "",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "",
|
"Add Details": "",
|
||||||
"Add Files": "ফাইল যোগ করুন",
|
"Add Files": "ফাইল যোগ করুন",
|
||||||
"Add Group": "",
|
"Add Group": "",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "",
|
"Ask": "",
|
||||||
"Ask a question": "",
|
"Ask a question": "",
|
||||||
"Assistant": "",
|
"Assistant": "",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "",
|
"Attach Knowledge": "",
|
||||||
"Attach Notes": "",
|
"Attach Notes": "",
|
||||||
"Attach Webpage": "",
|
"Attach Webpage": "",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "",
|
"Close Banner": "",
|
||||||
"Close Configure Connection Modal": "",
|
"Close Configure Connection Modal": "",
|
||||||
"Close modal": "",
|
"Close modal": "",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "",
|
"Close settings modal": "",
|
||||||
"Close Sidebar": "",
|
"Close Sidebar": "",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "",
|
"Copied to clipboard": "",
|
||||||
"Copy": "অনুলিপি",
|
"Copy": "অনুলিপি",
|
||||||
"Copy Formatted Text": "",
|
"Copy Formatted Text": "",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "",
|
"Copy link": "",
|
||||||
"Copy Link": "লিংক কপি করুন",
|
"Copy Link": "লিংক কপি করুন",
|
||||||
"Copy to clipboard": "",
|
"Copy to clipboard": "",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "",
|
"Edit Default Permissions": "",
|
||||||
"Edit Folder": "",
|
"Edit Folder": "",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "",
|
"Edit Memory": "",
|
||||||
"Edit User": "ইউজার এডিট করুন",
|
"Edit User": "ইউজার এডিট করুন",
|
||||||
"Edit User Group": "",
|
"Edit User Group": "",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "",
|
"Firecrawl API Base URL": "",
|
||||||
"Firecrawl API Key": "",
|
"Firecrawl API Key": "",
|
||||||
"Floating Quick Actions": "",
|
"Floating Quick Actions": "",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "",
|
"Folder": "",
|
||||||
"Folder Background Image": "",
|
"Folder Background Image": "",
|
||||||
"Folder deleted successfully": "",
|
"Folder deleted successfully": "",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "",
|
"Generate": "",
|
||||||
"Generate an image": "",
|
"Generate an image": "",
|
||||||
"Generate Image": "",
|
"Generate Image": "",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "",
|
"Generated Image": "",
|
||||||
"Generating search query": "অনুসন্ধান ক্যোয়ারী তৈরি করা হচ্ছে",
|
"Generating search query": "অনুসন্ধান ক্যোয়ারী তৈরি করা হচ্ছে",
|
||||||
"Generating...": "",
|
"Generating...": "",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "",
|
"Memory updated successfully": "",
|
||||||
"Merge Responses": "",
|
"Merge Responses": "",
|
||||||
"Merged Response": "একত্রিত প্রতিক্রিয়া ফলাফল",
|
"Merged Response": "একত্রিত প্রতিক্রিয়া ফলাফল",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "",
|
"Message rating should be enabled to use this feature": "",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "আপনার লিঙ্ক তৈরি করার পরে আপনার পাঠানো বার্তাগুলি শেয়ার করা হবে না। ইউআরএল ব্যবহারকারীরা শেয়ার করা চ্যাট দেখতে পারবেন।",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "আপনার লিঙ্ক তৈরি করার পরে আপনার পাঠানো বার্তাগুলি শেয়ার করা হবে না। ইউআরএল ব্যবহারকারীরা শেয়ার করা চ্যাট দেখতে পারবেন।",
|
||||||
"Microsoft OneDrive": "",
|
"Microsoft OneDrive": "",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "",
|
"New Note": "",
|
||||||
"New Password": "নতুন পাসওয়ার্ড",
|
"New Password": "নতুন পাসওয়ার্ড",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "",
|
"New Tool": "",
|
||||||
"new-channel": "",
|
"new-channel": "",
|
||||||
"Next message": "",
|
"Next message": "",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Ollama ভার্সন",
|
"Ollama Version": "Ollama ভার্সন",
|
||||||
"On": "চালু",
|
"On": "চালু",
|
||||||
"OneDrive": "",
|
"OneDrive": "",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "",
|
"Only alphanumeric characters and hyphens are allowed": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "কমান্ড স্ট্রিং-এ শুধুমাত্র ইংরেজি অক্ষর, সংখ্যা এবং হাইফেন ব্যবহার করা যাবে।",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "কমান্ড স্ট্রিং-এ শুধুমাত্র ইংরেজি অক্ষর, সংখ্যা এবং হাইফেন ব্যবহার করা যাবে।",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
|
||||||
"Only markdown files are allowed": "",
|
"Only markdown files are allowed": "",
|
||||||
"Only select users and groups with permission can access": "",
|
"Only select users and groups with permission can access": "",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "",
|
"Open modal to configure connection": "",
|
||||||
"Open Modal To Manage Floating Quick Actions": "",
|
"Open Modal To Manage Floating Quick Actions": "",
|
||||||
"Open Modal To Manage Image Compression": "",
|
"Open Modal To Manage Image Compression": "",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "",
|
"Open Sidebar": "",
|
||||||
"Open User Profile Menu": "",
|
"Open User Profile Menu": "",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "",
|
"Prefer not to say": "",
|
||||||
"Prefix ID": "",
|
"Prefix ID": "",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "",
|
"Preview": "",
|
||||||
"Previous 30 days": "পূর্ব ৩০ দিন",
|
"Previous 30 days": "পূর্ব ৩০ দিন",
|
||||||
"Previous 7 days": "পূর্ব ৭ দিন",
|
"Previous 7 days": "পূর্ব ৭ দিন",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "যদি উপযুক্ত নয়, তবে রেজিগেনেট করা হচ্ছে",
|
"Refused when it shouldn't have": "যদি উপযুক্ত নয়, তবে রেজিগেনেট করা হচ্ছে",
|
||||||
"Regenerate": "রেজিগেনেট করুন",
|
"Regenerate": "রেজিগেনেট করুন",
|
||||||
"Regenerate Menu": "",
|
"Regenerate Menu": "",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "",
|
"Register Again": "",
|
||||||
"Register Client": "",
|
"Register Client": "",
|
||||||
"Registered": "",
|
"Registered": "",
|
||||||
|
|
@ -1439,6 +1457,7 @@
|
||||||
"Show Formatting Toolbar": "",
|
"Show Formatting Toolbar": "",
|
||||||
"Show image preview": "",
|
"Show image preview": "",
|
||||||
"Show Model": "",
|
"Show Model": "",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "",
|
"Show your support!": "",
|
||||||
"Showcased creativity": "সৃজনশীলতা প্রদর্শন",
|
"Showcased creativity": "সৃজনশীলতা প্রদর্শন",
|
||||||
"Sign in": "সাইন ইন",
|
"Sign in": "সাইন ইন",
|
||||||
|
|
@ -1474,6 +1493,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "",
|
"Stop": "",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "সিকোয়েন্স থামান",
|
"Stop Sequence": "সিকোয়েন্স থামান",
|
||||||
"Stream Chat Response": "",
|
"Stream Chat Response": "",
|
||||||
"Stream Delta Chunk Size": "",
|
"Stream Delta Chunk Size": "",
|
||||||
|
|
@ -1503,6 +1523,7 @@
|
||||||
"Tags Generation": "",
|
"Tags Generation": "",
|
||||||
"Tags Generation Prompt": "",
|
"Tags Generation Prompt": "",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "",
|
"Tap to interrupt": "",
|
||||||
"Task List": "",
|
"Task List": "",
|
||||||
"Task Model": "",
|
"Task Model": "",
|
||||||
|
|
@ -1584,6 +1605,7 @@
|
||||||
"Toast notifications for new updates": "",
|
"Toast notifications for new updates": "",
|
||||||
"Today": "আজ",
|
"Today": "আজ",
|
||||||
"Today at {{LOCALIZED_TIME}}": "",
|
"Today at {{LOCALIZED_TIME}}": "",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "",
|
"Toggle whether current connection is active.": "",
|
||||||
"Token": "",
|
"Token": "",
|
||||||
"Too verbose": "",
|
"Too verbose": "",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "ལས་ཀའི་དཔེ་དབྱིབས་ནི་ཁ་བརྡའི་ཁ་བྱང་བཟོ་བ་དང་དྲ་བའི་འཚོལ་བཤེར་འདྲི་བ་ལྟ་བུའི་ལས་འགན་སྒྲུབ་སྐབས་སྤྱོད་ཀྱི་ཡོད།",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "ལས་ཀའི་དཔེ་དབྱིབས་ནི་ཁ་བརྡའི་ཁ་བྱང་བཟོ་བ་དང་དྲ་བའི་འཚོལ་བཤེར་འདྲི་བ་ལྟ་བུའི་ལས་འགན་སྒྲུབ་སྐབས་སྤྱོད་ཀྱི་ཡོད།",
|
||||||
"a user": "བེད་སྤྱོད་མཁན་ཞིག",
|
"a user": "བེད་སྤྱོད་མཁན་ཞིག",
|
||||||
"About": "སྐོར་ལོ།",
|
"About": "སྐོར་ལོ།",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "འཛུལ་སྤྱོད།",
|
"Access": "འཛུལ་སྤྱོད།",
|
||||||
"Access Control": "འཛུལ་སྤྱོད་ཚོད་འཛིན།",
|
"Access Control": "འཛུལ་སྤྱོད་ཚོད་འཛིན།",
|
||||||
"Accessible to all users": "བེད་སྤྱོད་མཁན་ཡོངས་ལ་འཛུལ་སྤྱོད་ཆོག་པ།",
|
"Accessible to all users": "བེད་སྤྱོད་མཁན་ཡོངས་ལ་འཛུལ་སྤྱོད་ཆོག་པ།",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "ནང་དོན་སྣོན་པ།",
|
"Add Content": "ནང་དོན་སྣོན་པ།",
|
||||||
"Add content here": "ནང་དོན་འདིར་སྣོན་པ།",
|
"Add content here": "ནང་དོན་འདིར་སྣོན་པ།",
|
||||||
"Add Custom Parameter": "",
|
"Add Custom Parameter": "",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "",
|
"Add Details": "",
|
||||||
"Add Files": "ཡིག་ཆ་སྣོན་པ།",
|
"Add Files": "ཡིག་ཆ་སྣོན་པ།",
|
||||||
"Add Group": "ཚོགས་པ་སྣོན་པ།",
|
"Add Group": "ཚོགས་པ་སྣོན་པ།",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "འདྲི་བ།",
|
"Ask": "འདྲི་བ།",
|
||||||
"Ask a question": "དྲི་བ་ཞིག་འདྲི་བ།",
|
"Ask a question": "དྲི་བ་ཞིག་འདྲི་བ།",
|
||||||
"Assistant": "ལག་རོགས་པ།",
|
"Assistant": "ལག་རོགས་པ།",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "",
|
"Attach Knowledge": "",
|
||||||
"Attach Notes": "",
|
"Attach Notes": "",
|
||||||
"Attach Webpage": "",
|
"Attach Webpage": "",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "",
|
"Close Banner": "",
|
||||||
"Close Configure Connection Modal": "",
|
"Close Configure Connection Modal": "",
|
||||||
"Close modal": "",
|
"Close modal": "",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "",
|
"Close settings modal": "",
|
||||||
"Close Sidebar": "",
|
"Close Sidebar": "",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "སྦྱར་སྡེར་དུ་འདྲ་བཤུས་བྱས་པ།",
|
"Copied to clipboard": "སྦྱར་སྡེར་དུ་འདྲ་བཤུས་བྱས་པ།",
|
||||||
"Copy": "འདྲ་བཤུས།",
|
"Copy": "འདྲ་བཤུས།",
|
||||||
"Copy Formatted Text": "",
|
"Copy Formatted Text": "",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "",
|
"Copy link": "",
|
||||||
"Copy Link": "སྦྲེལ་ཐག་འདྲ་བཤུས།",
|
"Copy Link": "སྦྲེལ་ཐག་འདྲ་བཤུས།",
|
||||||
"Copy to clipboard": "སྦྱར་སྡེར་དུ་འདྲ་བཤུས།",
|
"Copy to clipboard": "སྦྱར་སྡེར་དུ་འདྲ་བཤུས།",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "སྔོན་སྒྲིག་དབང་ཚད་ཞུ་དག",
|
"Edit Default Permissions": "སྔོན་སྒྲིག་དབང་ཚད་ཞུ་དག",
|
||||||
"Edit Folder": "",
|
"Edit Folder": "",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "དྲན་ཤེས་ཞུ་དག",
|
"Edit Memory": "དྲན་ཤེས་ཞུ་དག",
|
||||||
"Edit User": "བེད་སྤྱོད་མཁན་ཞུ་དག",
|
"Edit User": "བེད་སྤྱོད་མཁན་ཞུ་དག",
|
||||||
"Edit User Group": "བེད་སྤྱོད་མཁན་ཚོགས་པ་ཞུ་དག",
|
"Edit User Group": "བེད་སྤྱོད་མཁན་ཚོགས་པ་ཞུ་དག",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "",
|
"Firecrawl API Base URL": "",
|
||||||
"Firecrawl API Key": "",
|
"Firecrawl API Key": "",
|
||||||
"Floating Quick Actions": "",
|
"Floating Quick Actions": "",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "",
|
"Folder": "",
|
||||||
"Folder Background Image": "",
|
"Folder Background Image": "",
|
||||||
"Folder deleted successfully": "ཡིག་སྣོད་ལེགས་པར་བསུབས་ཟིན།",
|
"Folder deleted successfully": "ཡིག་སྣོད་ལེགས་པར་བསུབས་ཟིན།",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "",
|
"Generate": "",
|
||||||
"Generate an image": "པར་ཞིག་བཟོ་བ།",
|
"Generate an image": "པར་ཞིག་བཟོ་བ།",
|
||||||
"Generate Image": "པར་བཟོ་བ།",
|
"Generate Image": "པར་བཟོ་བ།",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "",
|
"Generated Image": "",
|
||||||
"Generating search query": "འཚོལ་བཤེར་འདྲི་བ་བཟོ་བཞིན་པ།",
|
"Generating search query": "འཚོལ་བཤེར་འདྲི་བ་བཟོ་བཞིན་པ།",
|
||||||
"Generating...": "",
|
"Generating...": "",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "དྲན་ཤེས་ལེགས་པར་གསར་སྒྱུར་བྱས་ཟིན།",
|
"Memory updated successfully": "དྲན་ཤེས་ལེགས་པར་གསར་སྒྱུར་བྱས་ཟིན།",
|
||||||
"Merge Responses": "ལན་ཟླ་སྒྲིལ།",
|
"Merge Responses": "ལན་ཟླ་སྒྲིལ།",
|
||||||
"Merged Response": "བསྡུར་མཐུན་གྱི་ལན་གསལ་གནས་ཡོད།",
|
"Merged Response": "བསྡུར་མཐུན་གྱི་ལན་གསལ་གནས་ཡོད།",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "ཁྱད་ཆོས་འདི་བེད་སྤྱོད་གཏོང་བར་འཕྲིན་ལ་སྐར་མ་སྤྲོད་པ་སྒུལ་བསྐྱོད་བྱེད་དགོས།",
|
"Message rating should be enabled to use this feature": "ཁྱད་ཆོས་འདི་བེད་སྤྱོད་གཏོང་བར་འཕྲིན་ལ་སྐར་མ་སྤྲོད་པ་སྒུལ་བསྐྱོད་བྱེད་དགོས།",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "ཁྱེད་ཀྱི་སྦྲེལ་ཐག་བཟོས་རྗེས་ཁྱེད་ཀྱིས་བསྐུར་བའི་འཕྲིན་དག་མཉམ་སྤྱོད་བྱེད་མི་འགྱུར། URL ཡོད་པའི་བེད་སྤྱོད་མཁན་ཚོས་མཉམ་སྤྱོད་ཁ་བརྡ་ལྟ་ཐུབ་ངེས།",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "ཁྱེད་ཀྱི་སྦྲེལ་ཐག་བཟོས་རྗེས་ཁྱེད་ཀྱིས་བསྐུར་བའི་འཕྲིན་དག་མཉམ་སྤྱོད་བྱེད་མི་འགྱུར། URL ཡོད་པའི་བེད་སྤྱོད་མཁན་ཚོས་མཉམ་སྤྱོད་ཁ་བརྡ་ལྟ་ཐུབ་ངེས།",
|
||||||
"Microsoft OneDrive": "",
|
"Microsoft OneDrive": "",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "",
|
"New Note": "",
|
||||||
"New Password": "གསང་གྲངས་གསར་པ།",
|
"New Password": "གསང་གྲངས་གསར་པ།",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "",
|
"New Tool": "",
|
||||||
"new-channel": "བགྲོ་གླེང་གསར་པ།",
|
"new-channel": "བགྲོ་གླེང་གསར་པ།",
|
||||||
"Next message": "",
|
"Next message": "",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Ollama པར་གཞི།",
|
"Ollama Version": "Ollama པར་གཞི།",
|
||||||
"On": "ཁ་ཕྱེ་བ།",
|
"On": "ཁ་ཕྱེ་བ།",
|
||||||
"OneDrive": "OneDrive",
|
"OneDrive": "OneDrive",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "ཨང་ཀི་དང་དབྱིན་ཡིག་གི་ཡིག་འབྲུ་དང་སྦྲེལ་རྟགས་ཁོ་ན་ཆོག་པ།",
|
"Only alphanumeric characters and hyphens are allowed": "ཨང་ཀི་དང་དབྱིན་ཡིག་གི་ཡིག་འབྲུ་དང་སྦྲེལ་རྟགས་ཁོ་ན་ཆོག་པ།",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "བཀའ་བརྡའི་ཡིག་ཕྲེང་ནང་ཨང་ཀི་དང་དབྱིན་ཡིག་གི་ཡིག་འབྲུ་དང་སྦྲེལ་རྟགས་ཁོ་ན་ཆོག་པ།",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "བཀའ་བརྡའི་ཡིག་ཕྲེང་ནང་ཨང་ཀི་དང་དབྱིན་ཡིག་གི་ཡིག་འབྲུ་དང་སྦྲེལ་རྟགས་ཁོ་ན་ཆོག་པ།",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "བསྡུ་གསོག་ཁོ་ན་ཞུ་དག་བྱེད་ཐུབ། ཡིག་ཆ་ཞུ་དག་/སྣོན་པར་ཤེས་བྱའི་རྟེན་གཞི་གསར་པ་ཞིག་བཟོ་བ།",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "བསྡུ་གསོག་ཁོ་ན་ཞུ་དག་བྱེད་ཐུབ། ཡིག་ཆ་ཞུ་དག་/སྣོན་པར་ཤེས་བྱའི་རྟེན་གཞི་གསར་པ་ཞིག་བཟོ་བ།",
|
||||||
"Only markdown files are allowed": "",
|
"Only markdown files are allowed": "",
|
||||||
"Only select users and groups with permission can access": "དབང་ཚད་ཡོད་པའི་བེད་སྤྱོད་མཁན་དང་ཚོགས་པ་གདམ་ག་བྱས་པ་ཁོ་ན་འཛུལ་སྤྱོད་ཐུབ།",
|
"Only select users and groups with permission can access": "དབང་ཚད་ཡོད་པའི་བེད་སྤྱོད་མཁན་དང་ཚོགས་པ་གདམ་ག་བྱས་པ་ཁོ་ན་འཛུལ་སྤྱོད་ཐུབ།",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "",
|
"Open modal to configure connection": "",
|
||||||
"Open Modal To Manage Floating Quick Actions": "",
|
"Open Modal To Manage Floating Quick Actions": "",
|
||||||
"Open Modal To Manage Image Compression": "",
|
"Open Modal To Manage Image Compression": "",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "",
|
"Open Sidebar": "",
|
||||||
"Open User Profile Menu": "",
|
"Open User Profile Menu": "",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "",
|
"Prefer not to say": "",
|
||||||
"Prefix ID": "སྔོན་སྦྱོར་ ID",
|
"Prefix ID": "སྔོན་སྦྱོར་ ID",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "སྔོན་སྦྱོར་ ID ནི་དཔེ་དབྱིབས་ཀྱི་ IDs ལ་སྔོན་སྦྱོར་ཞིག་སྣོན་ནས་སྦྲེལ་མཐུད་གཞན་དང་གདོང་ཐུག་ལས་གཡོལ་བར་བེད་སྤྱོད་བྱེད། - ནུས་མེད་བཏང་བར་སྟོང་པ་བཞག་པ།",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "སྔོན་སྦྱོར་ ID ནི་དཔེ་དབྱིབས་ཀྱི་ IDs ལ་སྔོན་སྦྱོར་ཞིག་སྣོན་ནས་སྦྲེལ་མཐུད་གཞན་དང་གདོང་ཐུག་ལས་གཡོལ་བར་བེད་སྤྱོད་བྱེད། - ནུས་མེད་བཏང་བར་སྟོང་པ་བཞག་པ།",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "",
|
"Preview": "",
|
||||||
"Previous 30 days": "ཉིན་ ༣༠ སྔོན་མ།",
|
"Previous 30 days": "ཉིན་ ༣༠ སྔོན་མ།",
|
||||||
"Previous 7 days": "ཉིན་ ༧ སྔོན་མ།",
|
"Previous 7 days": "ཉིན་ ༧ སྔོན་མ།",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "མི་དགོས་དུས་ཁས་མ་བླངས།",
|
"Refused when it shouldn't have": "མི་དགོས་དུས་ཁས་མ་བླངས།",
|
||||||
"Regenerate": "བསྐྱར་བཟོ།",
|
"Regenerate": "བསྐྱར་བཟོ།",
|
||||||
"Regenerate Menu": "",
|
"Regenerate Menu": "",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "",
|
"Register Again": "",
|
||||||
"Register Client": "",
|
"Register Client": "",
|
||||||
"Registered": "",
|
"Registered": "",
|
||||||
|
|
@ -1438,6 +1456,7 @@
|
||||||
"Show Formatting Toolbar": "",
|
"Show Formatting Toolbar": "",
|
||||||
"Show image preview": "",
|
"Show image preview": "",
|
||||||
"Show Model": "དཔེ་དབྱིབས་སྟོན་པ།",
|
"Show Model": "དཔེ་དབྱིབས་སྟོན་པ།",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "ཁྱེད་ཀྱི་རྒྱབ་སྐྱོར་སྟོན་པ།",
|
"Show your support!": "ཁྱེད་ཀྱི་རྒྱབ་སྐྱོར་སྟོན་པ།",
|
||||||
"Showcased creativity": "གསར་གཏོད་ནུས་པ་ངོམ་པ།",
|
"Showcased creativity": "གསར་གཏོད་ནུས་པ་ངོམ་པ།",
|
||||||
"Sign in": "ནང་འཛུལ།",
|
"Sign in": "ནང་འཛུལ།",
|
||||||
|
|
@ -1473,6 +1492,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "མཚམས་འཇོག",
|
"Stop": "མཚམས་འཇོག",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "མཚམས་འཇོག་རིམ་པ།",
|
"Stop Sequence": "མཚམས་འཇོག་རིམ་པ།",
|
||||||
"Stream Chat Response": "ཁ་བརྡའི་ལན་རྒྱུག་པ།",
|
"Stream Chat Response": "ཁ་བརྡའི་ལན་རྒྱུག་པ།",
|
||||||
"Stream Delta Chunk Size": "",
|
"Stream Delta Chunk Size": "",
|
||||||
|
|
@ -1502,6 +1522,7 @@
|
||||||
"Tags Generation": "རྟགས་བཟོ་སྐྲུན།",
|
"Tags Generation": "རྟགས་བཟོ་སྐྲུན།",
|
||||||
"Tags Generation Prompt": "རྟགས་བཟོ་སྐྲུན་གྱི་འགུལ་སློང་།",
|
"Tags Generation Prompt": "རྟགས་བཟོ་སྐྲུན་གྱི་འགུལ་སློང་།",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "མཇུག་མ་རང་དབང་མ་དཔེ་འདེམས་པ་ནི་ཐོན་འབྲས་ནས་ཆགས་ཚུལ་དམའ་བའི་ཊོཀ་ཀེན་གྱི་ཤུགས་རྐྱེན་ཉུང་དུ་གཏོང་བར་བེད་སྤྱོད་བྱེད། རིན་ཐང་མཐོ་བ་ (དཔེར་ན། 2.0) ཡིས་ཤུགས་རྐྱེན་དེ་སྔར་ལས་ཉུང་དུ་གཏོང་ངེས། དེ་བཞིན་དུ་རིན་ཐང་ 1.0 ཡིས་སྒྲིག་འགོད་འདི་ནུས་མེད་བཏང་ངེས།",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "མཇུག་མ་རང་དབང་མ་དཔེ་འདེམས་པ་ནི་ཐོན་འབྲས་ནས་ཆགས་ཚུལ་དམའ་བའི་ཊོཀ་ཀེན་གྱི་ཤུགས་རྐྱེན་ཉུང་དུ་གཏོང་བར་བེད་སྤྱོད་བྱེད། རིན་ཐང་མཐོ་བ་ (དཔེར་ན། 2.0) ཡིས་ཤུགས་རྐྱེན་དེ་སྔར་ལས་ཉུང་དུ་གཏོང་ངེས། དེ་བཞིན་དུ་རིན་ཐང་ 1.0 ཡིས་སྒྲིག་འགོད་འདི་ནུས་མེད་བཏང་ངེས།",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "བར་ཆད་བྱེད་པར་མནན་པ།",
|
"Tap to interrupt": "བར་ཆད་བྱེད་པར་མནན་པ།",
|
||||||
"Task List": "",
|
"Task List": "",
|
||||||
"Task Model": "",
|
"Task Model": "",
|
||||||
|
|
@ -1583,6 +1604,7 @@
|
||||||
"Toast notifications for new updates": "གསར་སྒྱུར་གསར་པའི་ཆེད་དུ་ Toast བརྡ་ཁྱབ།",
|
"Toast notifications for new updates": "གསར་སྒྱུར་གསར་པའི་ཆེད་དུ་ Toast བརྡ་ཁྱབ།",
|
||||||
"Today": "དེ་རིང་།",
|
"Today": "དེ་རིང་།",
|
||||||
"Today at {{LOCALIZED_TIME}}": "",
|
"Today at {{LOCALIZED_TIME}}": "",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "",
|
"Toggle whether current connection is active.": "",
|
||||||
"Token": "ཊོཀ་ཀེན།",
|
"Token": "ཊོཀ་ཀེན།",
|
||||||
"Too verbose": "རིང་དྲགས།",
|
"Too verbose": "རིང་དྲགས།",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Model zadatka koristi se pri izvođenju zadataka kao što su generiranje naslova za razgovore i upite za pretraživanje weba",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Model zadatka koristi se pri izvođenju zadataka kao što su generiranje naslova za razgovore i upite za pretraživanje weba",
|
||||||
"a user": "korisnik",
|
"a user": "korisnik",
|
||||||
"About": "O aplikaciji",
|
"About": "O aplikaciji",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "",
|
"Access": "",
|
||||||
"Access Control": "",
|
"Access Control": "",
|
||||||
"Accessible to all users": "",
|
"Accessible to all users": "",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "",
|
"Add Content": "",
|
||||||
"Add content here": "",
|
"Add content here": "",
|
||||||
"Add Custom Parameter": "",
|
"Add Custom Parameter": "",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "",
|
"Add Details": "",
|
||||||
"Add Files": "Dodaj datoteke",
|
"Add Files": "Dodaj datoteke",
|
||||||
"Add Group": "",
|
"Add Group": "",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "Pitaj",
|
"Ask": "Pitaj",
|
||||||
"Ask a question": "Pitaj pitanje",
|
"Ask a question": "Pitaj pitanje",
|
||||||
"Assistant": "Asistent",
|
"Assistant": "Asistent",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "Prikazi znanje",
|
"Attach Knowledge": "Prikazi znanje",
|
||||||
"Attach Notes": "Prikazi zapise",
|
"Attach Notes": "Prikazi zapise",
|
||||||
"Attach Webpage": "",
|
"Attach Webpage": "",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "",
|
"Close Banner": "",
|
||||||
"Close Configure Connection Modal": "",
|
"Close Configure Connection Modal": "",
|
||||||
"Close modal": "",
|
"Close modal": "",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "",
|
"Close settings modal": "",
|
||||||
"Close Sidebar": "",
|
"Close Sidebar": "",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "",
|
"Copied to clipboard": "",
|
||||||
"Copy": "Kopiraj",
|
"Copy": "Kopiraj",
|
||||||
"Copy Formatted Text": "",
|
"Copy Formatted Text": "",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "",
|
"Copy link": "",
|
||||||
"Copy Link": "Kopiraj vezu",
|
"Copy Link": "Kopiraj vezu",
|
||||||
"Copy to clipboard": "",
|
"Copy to clipboard": "",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "",
|
"Edit Default Permissions": "",
|
||||||
"Edit Folder": "",
|
"Edit Folder": "",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "",
|
"Edit Memory": "",
|
||||||
"Edit User": "Uredi korisnika",
|
"Edit User": "Uredi korisnika",
|
||||||
"Edit User Group": "",
|
"Edit User Group": "",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "",
|
"Firecrawl API Base URL": "",
|
||||||
"Firecrawl API Key": "",
|
"Firecrawl API Key": "",
|
||||||
"Floating Quick Actions": "",
|
"Floating Quick Actions": "",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "",
|
"Folder": "",
|
||||||
"Folder Background Image": "",
|
"Folder Background Image": "",
|
||||||
"Folder deleted successfully": "",
|
"Folder deleted successfully": "",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "",
|
"Generate": "",
|
||||||
"Generate an image": "",
|
"Generate an image": "",
|
||||||
"Generate Image": "Gneriraj sliku",
|
"Generate Image": "Gneriraj sliku",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "",
|
"Generated Image": "",
|
||||||
"Generating search query": "Generiranje upita za pretraživanje",
|
"Generating search query": "Generiranje upita za pretraživanje",
|
||||||
"Generating...": "",
|
"Generating...": "",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "",
|
"Memory updated successfully": "",
|
||||||
"Merge Responses": "",
|
"Merge Responses": "",
|
||||||
"Merged Response": "Spojeni odgovor",
|
"Merged Response": "Spojeni odgovor",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "",
|
"Message rating should be enabled to use this feature": "",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Poruke koje pošaljete nakon stvaranja veze neće se dijeliti. Korisnici s URL-om moći će vidjeti zajednički chat.",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Poruke koje pošaljete nakon stvaranja veze neće se dijeliti. Korisnici s URL-om moći će vidjeti zajednički chat.",
|
||||||
"Microsoft OneDrive": "",
|
"Microsoft OneDrive": "",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "",
|
"New Note": "",
|
||||||
"New Password": "Nova lozinka",
|
"New Password": "Nova lozinka",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "",
|
"New Tool": "",
|
||||||
"new-channel": "",
|
"new-channel": "",
|
||||||
"Next message": "",
|
"Next message": "",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Ollama verzija",
|
"Ollama Version": "Ollama verzija",
|
||||||
"On": "Uključeno",
|
"On": "Uključeno",
|
||||||
"OneDrive": "",
|
"OneDrive": "",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "",
|
"Only alphanumeric characters and hyphens are allowed": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "Samo alfanumerički znakovi i crtice su dopušteni u naredbenom nizu.",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "Samo alfanumerički znakovi i crtice su dopušteni u naredbenom nizu.",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
|
||||||
"Only markdown files are allowed": "",
|
"Only markdown files are allowed": "",
|
||||||
"Only select users and groups with permission can access": "",
|
"Only select users and groups with permission can access": "",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "",
|
"Open modal to configure connection": "",
|
||||||
"Open Modal To Manage Floating Quick Actions": "",
|
"Open Modal To Manage Floating Quick Actions": "",
|
||||||
"Open Modal To Manage Image Compression": "",
|
"Open Modal To Manage Image Compression": "",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "",
|
"Open Sidebar": "",
|
||||||
"Open User Profile Menu": "",
|
"Open User Profile Menu": "",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "",
|
"Prefer not to say": "",
|
||||||
"Prefix ID": "",
|
"Prefix ID": "",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "",
|
"Preview": "",
|
||||||
"Previous 30 days": "Prethodnih 30 dana",
|
"Previous 30 days": "Prethodnih 30 dana",
|
||||||
"Previous 7 days": "Prethodnih 7 dana",
|
"Previous 7 days": "Prethodnih 7 dana",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "Odbijen kada nije trebao biti",
|
"Refused when it shouldn't have": "Odbijen kada nije trebao biti",
|
||||||
"Regenerate": "Regeneriraj",
|
"Regenerate": "Regeneriraj",
|
||||||
"Regenerate Menu": "",
|
"Regenerate Menu": "",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "",
|
"Register Again": "",
|
||||||
"Register Client": "",
|
"Register Client": "",
|
||||||
"Registered": "",
|
"Registered": "",
|
||||||
|
|
@ -1440,6 +1458,7 @@
|
||||||
"Show Formatting Toolbar": "",
|
"Show Formatting Toolbar": "",
|
||||||
"Show image preview": "",
|
"Show image preview": "",
|
||||||
"Show Model": "",
|
"Show Model": "",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "",
|
"Show your support!": "",
|
||||||
"Showcased creativity": "Prikazana kreativnost",
|
"Showcased creativity": "Prikazana kreativnost",
|
||||||
"Sign in": "Prijava",
|
"Sign in": "Prijava",
|
||||||
|
|
@ -1475,6 +1494,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "",
|
"Stop": "",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "Zaustavi sekvencu",
|
"Stop Sequence": "Zaustavi sekvencu",
|
||||||
"Stream Chat Response": "",
|
"Stream Chat Response": "",
|
||||||
"Stream Delta Chunk Size": "",
|
"Stream Delta Chunk Size": "",
|
||||||
|
|
@ -1504,6 +1524,7 @@
|
||||||
"Tags Generation": "",
|
"Tags Generation": "",
|
||||||
"Tags Generation Prompt": "",
|
"Tags Generation Prompt": "",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "",
|
"Tap to interrupt": "",
|
||||||
"Task List": "",
|
"Task List": "",
|
||||||
"Task Model": "",
|
"Task Model": "",
|
||||||
|
|
@ -1585,6 +1606,7 @@
|
||||||
"Toast notifications for new updates": "",
|
"Toast notifications for new updates": "",
|
||||||
"Today": "Danas",
|
"Today": "Danas",
|
||||||
"Today at {{LOCALIZED_TIME}}": "",
|
"Today at {{LOCALIZED_TIME}}": "",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "",
|
"Toggle whether current connection is active.": "",
|
||||||
"Token": "",
|
"Token": "",
|
||||||
"Too verbose": "",
|
"Too verbose": "",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Un model de tasca s'utilitza quan es realitzen tasques com ara generar títols per a xats i consultes de cerca per a la web",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Un model de tasca s'utilitza quan es realitzen tasques com ara generar títols per a xats i consultes de cerca per a la web",
|
||||||
"a user": "un usuari",
|
"a user": "un usuari",
|
||||||
"About": "Sobre",
|
"About": "Sobre",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "Accés",
|
"Access": "Accés",
|
||||||
"Access Control": "Control d'accés",
|
"Access Control": "Control d'accés",
|
||||||
"Accessible to all users": "Accessible a tots els usuaris",
|
"Accessible to all users": "Accessible a tots els usuaris",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "Afegir contingut",
|
"Add Content": "Afegir contingut",
|
||||||
"Add content here": "Afegir contingut aquí",
|
"Add content here": "Afegir contingut aquí",
|
||||||
"Add Custom Parameter": "Afegir paràmetre personalitzat ",
|
"Add Custom Parameter": "Afegir paràmetre personalitzat ",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "Afegir detalls",
|
"Add Details": "Afegir detalls",
|
||||||
"Add Files": "Afegir arxius",
|
"Add Files": "Afegir arxius",
|
||||||
"Add Group": "Afegir grup",
|
"Add Group": "Afegir grup",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "Preguntar",
|
"Ask": "Preguntar",
|
||||||
"Ask a question": "Fer una pregunta",
|
"Ask a question": "Fer una pregunta",
|
||||||
"Assistant": "Assistent",
|
"Assistant": "Assistent",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "Adjuntar coneixement",
|
"Attach Knowledge": "Adjuntar coneixement",
|
||||||
"Attach Notes": "Adjuntar notes",
|
"Attach Notes": "Adjuntar notes",
|
||||||
"Attach Webpage": "Adjuntar pàgina web",
|
"Attach Webpage": "Adjuntar pàgina web",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "Tancar el bàner",
|
"Close Banner": "Tancar el bàner",
|
||||||
"Close Configure Connection Modal": "Tancar la finestra de configuració de la connexió",
|
"Close Configure Connection Modal": "Tancar la finestra de configuració de la connexió",
|
||||||
"Close modal": "Tancar el modal",
|
"Close modal": "Tancar el modal",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "Tancar el modal de configuració",
|
"Close settings modal": "Tancar el modal de configuració",
|
||||||
"Close Sidebar": "Tancar la barra lateral",
|
"Close Sidebar": "Tancar la barra lateral",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "Copiat al porta-retalls",
|
"Copied to clipboard": "Copiat al porta-retalls",
|
||||||
"Copy": "Copiar",
|
"Copy": "Copiar",
|
||||||
"Copy Formatted Text": "Copiar el text formatat",
|
"Copy Formatted Text": "Copiar el text formatat",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "Copiar l'enllaç",
|
"Copy link": "Copiar l'enllaç",
|
||||||
"Copy Link": "Copiar l'enllaç",
|
"Copy Link": "Copiar l'enllaç",
|
||||||
"Copy to clipboard": "Copiar al porta-retalls",
|
"Copy to clipboard": "Copiar al porta-retalls",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "Editar el permisos per defecte",
|
"Edit Default Permissions": "Editar el permisos per defecte",
|
||||||
"Edit Folder": "Editar la carpeta",
|
"Edit Folder": "Editar la carpeta",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "Editar la memòria",
|
"Edit Memory": "Editar la memòria",
|
||||||
"Edit User": "Editar l'usuari",
|
"Edit User": "Editar l'usuari",
|
||||||
"Edit User Group": "Editar el grup d'usuaris",
|
"Edit User Group": "Editar el grup d'usuaris",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "URL de l'API de base de Firecrawl",
|
"Firecrawl API Base URL": "URL de l'API de base de Firecrawl",
|
||||||
"Firecrawl API Key": "Clau API de Firecrawl",
|
"Firecrawl API Key": "Clau API de Firecrawl",
|
||||||
"Floating Quick Actions": "Accions ràpides flotants",
|
"Floating Quick Actions": "Accions ràpides flotants",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "Carpeta",
|
"Folder": "Carpeta",
|
||||||
"Folder Background Image": "Imatge del fons de la carpeta",
|
"Folder Background Image": "Imatge del fons de la carpeta",
|
||||||
"Folder deleted successfully": "Carpeta eliminada correctament",
|
"Folder deleted successfully": "Carpeta eliminada correctament",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "Generar",
|
"Generate": "Generar",
|
||||||
"Generate an image": "Generar una imatge",
|
"Generate an image": "Generar una imatge",
|
||||||
"Generate Image": "Generar imatge",
|
"Generate Image": "Generar imatge",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "Imatge generada",
|
"Generated Image": "Imatge generada",
|
||||||
"Generating search query": "Generant consulta",
|
"Generating search query": "Generant consulta",
|
||||||
"Generating...": "Generant...",
|
"Generating...": "Generant...",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "Memòria actualitzada correctament",
|
"Memory updated successfully": "Memòria actualitzada correctament",
|
||||||
"Merge Responses": "Fusionar les respostes",
|
"Merge Responses": "Fusionar les respostes",
|
||||||
"Merged Response": "Resposta combinada",
|
"Merged Response": "Resposta combinada",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "La classificació dels missatges s'hauria d'activar per utilitzar aquesta funció",
|
"Message rating should be enabled to use this feature": "La classificació dels missatges s'hauria d'activar per utilitzar aquesta funció",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Els missatges enviats després de crear el teu enllaç no es compartiran. Els usuaris amb l'URL podran veure el xat compartit.",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Els missatges enviats després de crear el teu enllaç no es compartiran. Els usuaris amb l'URL podran veure el xat compartit.",
|
||||||
"Microsoft OneDrive": "Microsoft OneDrive",
|
"Microsoft OneDrive": "Microsoft OneDrive",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "Nova nota",
|
"New Note": "Nova nota",
|
||||||
"New Password": "Nova contrasenya",
|
"New Password": "Nova contrasenya",
|
||||||
"New Prompt": "Nova indicació",
|
"New Prompt": "Nova indicació",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "Nova eina",
|
"New Tool": "Nova eina",
|
||||||
"new-channel": "nou-canal",
|
"new-channel": "nou-canal",
|
||||||
"Next message": "Missatge següent",
|
"Next message": "Missatge següent",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Versió d'Ollama",
|
"Ollama Version": "Versió d'Ollama",
|
||||||
"On": "Activat",
|
"On": "Activat",
|
||||||
"OneDrive": "OneDrive",
|
"OneDrive": "OneDrive",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "Només es permeten caràcters alfanumèrics i guions",
|
"Only alphanumeric characters and hyphens are allowed": "Només es permeten caràcters alfanumèrics i guions",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "Només es permeten caràcters alfanumèrics i guions en la comanda.",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "Només es permeten caràcters alfanumèrics i guions en la comanda.",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Només es poden editar col·leccions, crea una nova base de coneixement per editar/afegir documents.",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Només es poden editar col·leccions, crea una nova base de coneixement per editar/afegir documents.",
|
||||||
"Only markdown files are allowed": "Només es permeten arxius markdown",
|
"Only markdown files are allowed": "Només es permeten arxius markdown",
|
||||||
"Only select users and groups with permission can access": "Només hi poden accedir usuaris i grups seleccionats amb permís",
|
"Only select users and groups with permission can access": "Només hi poden accedir usuaris i grups seleccionats amb permís",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "Obre el modal per configurar la connexió",
|
"Open modal to configure connection": "Obre el modal per configurar la connexió",
|
||||||
"Open Modal To Manage Floating Quick Actions": "Obre el model per configurar les Accions ràpides flotants",
|
"Open Modal To Manage Floating Quick Actions": "Obre el model per configurar les Accions ràpides flotants",
|
||||||
"Open Modal To Manage Image Compression": "Obrir un modal per gestionar la compressió d'imatges",
|
"Open Modal To Manage Image Compression": "Obrir un modal per gestionar la compressió d'imatges",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "Obre la barra lateral",
|
"Open Sidebar": "Obre la barra lateral",
|
||||||
"Open User Profile Menu": "Obre el menú de perfil d'usuari",
|
"Open User Profile Menu": "Obre el menú de perfil d'usuari",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI pot utilitzar eines de servidors OpenAPI.",
|
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI pot utilitzar eines de servidors OpenAPI.",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "Prefereixo no dir-ho",
|
"Prefer not to say": "Prefereixo no dir-ho",
|
||||||
"Prefix ID": "Identificador del prefix",
|
"Prefix ID": "Identificador del prefix",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "L'identificador de prefix s'utilitza per evitar conflictes amb altres connexions afegint un prefix als ID de model; deixa'l en blanc per desactivar-lo.",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "L'identificador de prefix s'utilitza per evitar conflictes amb altres connexions afegint un prefix als ID de model; deixa'l en blanc per desactivar-lo.",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "Previsualització",
|
"Preview": "Previsualització",
|
||||||
"Previous 30 days": "30 dies anteriors",
|
"Previous 30 days": "30 dies anteriors",
|
||||||
"Previous 7 days": "7 dies anteriors",
|
"Previous 7 days": "7 dies anteriors",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "Refusat quan no hauria d'haver estat",
|
"Refused when it shouldn't have": "Refusat quan no hauria d'haver estat",
|
||||||
"Regenerate": "Regenerar",
|
"Regenerate": "Regenerar",
|
||||||
"Regenerate Menu": "Regenerar el menú",
|
"Regenerate Menu": "Regenerar el menú",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "Registrar de nou",
|
"Register Again": "Registrar de nou",
|
||||||
"Register Client": "Registrar client",
|
"Register Client": "Registrar client",
|
||||||
"Registered": "Registrat",
|
"Registered": "Registrat",
|
||||||
|
|
@ -1440,6 +1458,7 @@
|
||||||
"Show Formatting Toolbar": "Mostrar la barra de format",
|
"Show Formatting Toolbar": "Mostrar la barra de format",
|
||||||
"Show image preview": "Mostrar la previsualització de la imatge",
|
"Show image preview": "Mostrar la previsualització de la imatge",
|
||||||
"Show Model": "Mostrar el model",
|
"Show Model": "Mostrar el model",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "Mostra el teu suport!",
|
"Show your support!": "Mostra el teu suport!",
|
||||||
"Showcased creativity": "Creativitat mostrada",
|
"Showcased creativity": "Creativitat mostrada",
|
||||||
"Sign in": "Iniciar sessió",
|
"Sign in": "Iniciar sessió",
|
||||||
|
|
@ -1475,6 +1494,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "Atura",
|
"Stop": "Atura",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "Atura la seqüència",
|
"Stop Sequence": "Atura la seqüència",
|
||||||
"Stream Chat Response": "Fer streaming de la resposta del xat",
|
"Stream Chat Response": "Fer streaming de la resposta del xat",
|
||||||
"Stream Delta Chunk Size": "Mida del fragment Delta del flux",
|
"Stream Delta Chunk Size": "Mida del fragment Delta del flux",
|
||||||
|
|
@ -1504,6 +1524,7 @@
|
||||||
"Tags Generation": "Generació d'etiquetes",
|
"Tags Generation": "Generació d'etiquetes",
|
||||||
"Tags Generation Prompt": "Indicació per a la generació d'etiquetes",
|
"Tags Generation Prompt": "Indicació per a la generació d'etiquetes",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "El mostreig sense cua s'utilitza per reduir l'impacte de tokens menys probables de la sortida. Un valor més alt (p. ex., 2,0) reduirà més l'impacte, mentre que un valor d'1,0 desactiva aquesta configuració.",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "El mostreig sense cua s'utilitza per reduir l'impacte de tokens menys probables de la sortida. Un valor més alt (p. ex., 2,0) reduirà més l'impacte, mentre que un valor d'1,0 desactiva aquesta configuració.",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "Prem per interrompre",
|
"Tap to interrupt": "Prem per interrompre",
|
||||||
"Task List": "Llista de tasques",
|
"Task List": "Llista de tasques",
|
||||||
"Task Model": "Model de tasques",
|
"Task Model": "Model de tasques",
|
||||||
|
|
@ -1585,6 +1606,7 @@
|
||||||
"Toast notifications for new updates": "Notificacions Toast de noves actualitzacions",
|
"Toast notifications for new updates": "Notificacions Toast de noves actualitzacions",
|
||||||
"Today": "Avui",
|
"Today": "Avui",
|
||||||
"Today at {{LOCALIZED_TIME}}": "Avui a les {{LOCALIZED_TIME}}",
|
"Today at {{LOCALIZED_TIME}}": "Avui a les {{LOCALIZED_TIME}}",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "Alterna si la connexió actual està activa.",
|
"Toggle whether current connection is active.": "Alterna si la connexió actual està activa.",
|
||||||
"Token": "Token",
|
"Token": "Token",
|
||||||
"Too verbose": "Massa explicit",
|
"Too verbose": "Massa explicit",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "",
|
||||||
"a user": "usa ka user",
|
"a user": "usa ka user",
|
||||||
"About": "Mahitungod sa",
|
"About": "Mahitungod sa",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "",
|
"Access": "",
|
||||||
"Access Control": "",
|
"Access Control": "",
|
||||||
"Accessible to all users": "",
|
"Accessible to all users": "",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "",
|
"Add Content": "",
|
||||||
"Add content here": "",
|
"Add content here": "",
|
||||||
"Add Custom Parameter": "",
|
"Add Custom Parameter": "",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "",
|
"Add Details": "",
|
||||||
"Add Files": "Idugang ang mga file",
|
"Add Files": "Idugang ang mga file",
|
||||||
"Add Group": "",
|
"Add Group": "",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "",
|
"Ask": "",
|
||||||
"Ask a question": "",
|
"Ask a question": "",
|
||||||
"Assistant": "",
|
"Assistant": "",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "",
|
"Attach Knowledge": "",
|
||||||
"Attach Notes": "",
|
"Attach Notes": "",
|
||||||
"Attach Webpage": "",
|
"Attach Webpage": "",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "",
|
"Close Banner": "",
|
||||||
"Close Configure Connection Modal": "",
|
"Close Configure Connection Modal": "",
|
||||||
"Close modal": "",
|
"Close modal": "",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "",
|
"Close settings modal": "",
|
||||||
"Close Sidebar": "",
|
"Close Sidebar": "",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "",
|
"Copied to clipboard": "",
|
||||||
"Copy": "",
|
"Copy": "",
|
||||||
"Copy Formatted Text": "",
|
"Copy Formatted Text": "",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "",
|
"Copy link": "",
|
||||||
"Copy Link": "",
|
"Copy Link": "",
|
||||||
"Copy to clipboard": "",
|
"Copy to clipboard": "",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "",
|
"Edit Default Permissions": "",
|
||||||
"Edit Folder": "",
|
"Edit Folder": "",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "",
|
"Edit Memory": "",
|
||||||
"Edit User": "I-edit ang tiggamit",
|
"Edit User": "I-edit ang tiggamit",
|
||||||
"Edit User Group": "",
|
"Edit User Group": "",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "",
|
"Firecrawl API Base URL": "",
|
||||||
"Firecrawl API Key": "",
|
"Firecrawl API Key": "",
|
||||||
"Floating Quick Actions": "",
|
"Floating Quick Actions": "",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "",
|
"Folder": "",
|
||||||
"Folder Background Image": "",
|
"Folder Background Image": "",
|
||||||
"Folder deleted successfully": "",
|
"Folder deleted successfully": "",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "",
|
"Generate": "",
|
||||||
"Generate an image": "",
|
"Generate an image": "",
|
||||||
"Generate Image": "",
|
"Generate Image": "",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "",
|
"Generated Image": "",
|
||||||
"Generating search query": "",
|
"Generating search query": "",
|
||||||
"Generating...": "",
|
"Generating...": "",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "",
|
"Memory updated successfully": "",
|
||||||
"Merge Responses": "",
|
"Merge Responses": "",
|
||||||
"Merged Response": "Gihiusa nga Resulta sa Tubag",
|
"Merged Response": "Gihiusa nga Resulta sa Tubag",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "",
|
"Message rating should be enabled to use this feature": "",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "",
|
||||||
"Microsoft OneDrive": "",
|
"Microsoft OneDrive": "",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "",
|
"New Note": "",
|
||||||
"New Password": "Bag-ong Password",
|
"New Password": "Bag-ong Password",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "",
|
"New Tool": "",
|
||||||
"new-channel": "",
|
"new-channel": "",
|
||||||
"Next message": "",
|
"Next message": "",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Ollama nga bersyon",
|
"Ollama Version": "Ollama nga bersyon",
|
||||||
"On": "Gipaandar",
|
"On": "Gipaandar",
|
||||||
"OneDrive": "",
|
"OneDrive": "",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "",
|
"Only alphanumeric characters and hyphens are allowed": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "Ang alphanumeric nga mga karakter ug hyphen lang ang gitugotan sa command string.",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "Ang alphanumeric nga mga karakter ug hyphen lang ang gitugotan sa command string.",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
|
||||||
"Only markdown files are allowed": "",
|
"Only markdown files are allowed": "",
|
||||||
"Only select users and groups with permission can access": "",
|
"Only select users and groups with permission can access": "",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "",
|
"Open modal to configure connection": "",
|
||||||
"Open Modal To Manage Floating Quick Actions": "",
|
"Open Modal To Manage Floating Quick Actions": "",
|
||||||
"Open Modal To Manage Image Compression": "",
|
"Open Modal To Manage Image Compression": "",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "",
|
"Open Sidebar": "",
|
||||||
"Open User Profile Menu": "",
|
"Open User Profile Menu": "",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "",
|
"Prefer not to say": "",
|
||||||
"Prefix ID": "",
|
"Prefix ID": "",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "",
|
"Preview": "",
|
||||||
"Previous 30 days": "",
|
"Previous 30 days": "",
|
||||||
"Previous 7 days": "",
|
"Previous 7 days": "",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "",
|
"Refused when it shouldn't have": "",
|
||||||
"Regenerate": "",
|
"Regenerate": "",
|
||||||
"Regenerate Menu": "",
|
"Regenerate Menu": "",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "",
|
"Register Again": "",
|
||||||
"Register Client": "",
|
"Register Client": "",
|
||||||
"Registered": "",
|
"Registered": "",
|
||||||
|
|
@ -1439,6 +1457,7 @@
|
||||||
"Show Formatting Toolbar": "",
|
"Show Formatting Toolbar": "",
|
||||||
"Show image preview": "",
|
"Show image preview": "",
|
||||||
"Show Model": "",
|
"Show Model": "",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "",
|
"Show your support!": "",
|
||||||
"Showcased creativity": "",
|
"Showcased creativity": "",
|
||||||
"Sign in": "Para maka log in",
|
"Sign in": "Para maka log in",
|
||||||
|
|
@ -1474,6 +1493,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "",
|
"Stop": "",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "Pagkasunod-sunod sa pagsira",
|
"Stop Sequence": "Pagkasunod-sunod sa pagsira",
|
||||||
"Stream Chat Response": "",
|
"Stream Chat Response": "",
|
||||||
"Stream Delta Chunk Size": "",
|
"Stream Delta Chunk Size": "",
|
||||||
|
|
@ -1503,6 +1523,7 @@
|
||||||
"Tags Generation": "",
|
"Tags Generation": "",
|
||||||
"Tags Generation Prompt": "",
|
"Tags Generation Prompt": "",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "",
|
"Tap to interrupt": "",
|
||||||
"Task List": "",
|
"Task List": "",
|
||||||
"Task Model": "",
|
"Task Model": "",
|
||||||
|
|
@ -1584,6 +1605,7 @@
|
||||||
"Toast notifications for new updates": "",
|
"Toast notifications for new updates": "",
|
||||||
"Today": "",
|
"Today": "",
|
||||||
"Today at {{LOCALIZED_TIME}}": "",
|
"Today at {{LOCALIZED_TIME}}": "",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "",
|
"Toggle whether current connection is active.": "",
|
||||||
"Token": "",
|
"Token": "",
|
||||||
"Too verbose": "",
|
"Too verbose": "",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Model pro úkoly se používá při provádění úkolů, jako je generování názvů pro konverzace a vyhledávací dotazy na webu.",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Model pro úkoly se používá při provádění úkolů, jako je generování názvů pro konverzace a vyhledávací dotazy na webu.",
|
||||||
"a user": "uživatel",
|
"a user": "uživatel",
|
||||||
"About": "O aplikaci",
|
"About": "O aplikaci",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "Přístup",
|
"Access": "Přístup",
|
||||||
"Access Control": "Řízení přístupu",
|
"Access Control": "Řízení přístupu",
|
||||||
"Accessible to all users": "Přístupné pro všechny uživatele",
|
"Accessible to all users": "Přístupné pro všechny uživatele",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "Přidat obsah",
|
"Add Content": "Přidat obsah",
|
||||||
"Add content here": "Zde přidejte obsah",
|
"Add content here": "Zde přidejte obsah",
|
||||||
"Add Custom Parameter": "Přidat vlastní parametr",
|
"Add Custom Parameter": "Přidat vlastní parametr",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "Přidat podrobnosti",
|
"Add Details": "Přidat podrobnosti",
|
||||||
"Add Files": "Přidat soubory",
|
"Add Files": "Přidat soubory",
|
||||||
"Add Group": "Přidat skupinu",
|
"Add Group": "Přidat skupinu",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "Zeptat se",
|
"Ask": "Zeptat se",
|
||||||
"Ask a question": "Položit otázku",
|
"Ask a question": "Položit otázku",
|
||||||
"Assistant": "Asistent",
|
"Assistant": "Asistent",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "Připojit znalosti",
|
"Attach Knowledge": "Připojit znalosti",
|
||||||
"Attach Notes": "Přiojit poznámky",
|
"Attach Notes": "Přiojit poznámky",
|
||||||
"Attach Webpage": "Připojit web",
|
"Attach Webpage": "Připojit web",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "Zavřít upozornění",
|
"Close Banner": "Zavřít upozornění",
|
||||||
"Close Configure Connection Modal": "Zavřít modální okno konfigurace připojení",
|
"Close Configure Connection Modal": "Zavřít modální okno konfigurace připojení",
|
||||||
"Close modal": "Zavřít modální okno",
|
"Close modal": "Zavřít modální okno",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "Zavřít modální okno nastavení",
|
"Close settings modal": "Zavřít modální okno nastavení",
|
||||||
"Close Sidebar": "Zavřít postranní panel",
|
"Close Sidebar": "Zavřít postranní panel",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "Zkopírováno do schránky",
|
"Copied to clipboard": "Zkopírováno do schránky",
|
||||||
"Copy": "Kopírovat",
|
"Copy": "Kopírovat",
|
||||||
"Copy Formatted Text": "Kopírovat formátovaný text",
|
"Copy Formatted Text": "Kopírovat formátovaný text",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "Kopírovat odkaz",
|
"Copy link": "Kopírovat odkaz",
|
||||||
"Copy Link": "Kopírovat odkaz",
|
"Copy Link": "Kopírovat odkaz",
|
||||||
"Copy to clipboard": "Kopírovat do schránky",
|
"Copy to clipboard": "Kopírovat do schránky",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "Upravit výchozí oprávnění",
|
"Edit Default Permissions": "Upravit výchozí oprávnění",
|
||||||
"Edit Folder": "Upravit složku",
|
"Edit Folder": "Upravit složku",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "Upravit vzpomínku",
|
"Edit Memory": "Upravit vzpomínku",
|
||||||
"Edit User": "Upravit uživatele",
|
"Edit User": "Upravit uživatele",
|
||||||
"Edit User Group": "Upravit skupinu uživatelů",
|
"Edit User Group": "Upravit skupinu uživatelů",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "Základní URL API pro Firecrawl",
|
"Firecrawl API Base URL": "Základní URL API pro Firecrawl",
|
||||||
"Firecrawl API Key": "API klíč pro Firecrawl",
|
"Firecrawl API Key": "API klíč pro Firecrawl",
|
||||||
"Floating Quick Actions": "Plovoucí rychlé akce",
|
"Floating Quick Actions": "Plovoucí rychlé akce",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "Složka",
|
"Folder": "Složka",
|
||||||
"Folder Background Image": "Obrázek na pozadí složky",
|
"Folder Background Image": "Obrázek na pozadí složky",
|
||||||
"Folder deleted successfully": "Složka byla úspěšně smazána",
|
"Folder deleted successfully": "Složka byla úspěšně smazána",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "Generovat",
|
"Generate": "Generovat",
|
||||||
"Generate an image": "Generovat obrázek",
|
"Generate an image": "Generovat obrázek",
|
||||||
"Generate Image": "Generovat obrázek",
|
"Generate Image": "Generovat obrázek",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "",
|
"Generated Image": "",
|
||||||
"Generating search query": "Generuji vyhledávací dotaz",
|
"Generating search query": "Generuji vyhledávací dotaz",
|
||||||
"Generating...": "Generuji...",
|
"Generating...": "Generuji...",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "Vzpomínka byla úspěšně aktualizována",
|
"Memory updated successfully": "Vzpomínka byla úspěšně aktualizována",
|
||||||
"Merge Responses": "Sloučit odpovědi",
|
"Merge Responses": "Sloučit odpovědi",
|
||||||
"Merged Response": "Sloučená odpověď",
|
"Merged Response": "Sloučená odpověď",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "Pro použití této funkce musí být povoleno hodnocení zpráv.",
|
"Message rating should be enabled to use this feature": "Pro použití této funkce musí být povoleno hodnocení zpráv.",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Zprávy, které odešlete po vytvoření odkazu, nebudou sdíleny. Uživatelé s URL adresou budou moci zobrazit sdílenou konverzaci.",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Zprávy, které odešlete po vytvoření odkazu, nebudou sdíleny. Uživatelé s URL adresou budou moci zobrazit sdílenou konverzaci.",
|
||||||
"Microsoft OneDrive": "Microsoft OneDrive",
|
"Microsoft OneDrive": "Microsoft OneDrive",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "Nová poznámka",
|
"New Note": "Nová poznámka",
|
||||||
"New Password": "Nové heslo",
|
"New Password": "Nové heslo",
|
||||||
"New Prompt": "Nová instrukce",
|
"New Prompt": "Nová instrukce",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "Nový nástroj",
|
"New Tool": "Nový nástroj",
|
||||||
"new-channel": "novy-kanal",
|
"new-channel": "novy-kanal",
|
||||||
"Next message": "Další zpráva",
|
"Next message": "Další zpráva",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Verze Ollama",
|
"Ollama Version": "Verze Ollama",
|
||||||
"On": "Zapnuto",
|
"On": "Zapnuto",
|
||||||
"OneDrive": "OneDrive",
|
"OneDrive": "OneDrive",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "Jsou povoleny pouze alfanumerické znaky a pomlčky",
|
"Only alphanumeric characters and hyphens are allowed": "Jsou povoleny pouze alfanumerické znaky a pomlčky",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "V řetězci příkazu jsou povoleny pouze alfanumerické znaky a pomlčky.",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "V řetězci příkazu jsou povoleny pouze alfanumerické znaky a pomlčky.",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Lze upravovat pouze kolekce, pro úpravu/přidání dokumentů vytvořte novou znalostní bázi.",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Lze upravovat pouze kolekce, pro úpravu/přidání dokumentů vytvořte novou znalostní bázi.",
|
||||||
"Only markdown files are allowed": "Jsou povoleny pouze soubory markdown",
|
"Only markdown files are allowed": "Jsou povoleny pouze soubory markdown",
|
||||||
"Only select users and groups with permission can access": "Přístup mají pouze vybraní uživatelé a skupiny s oprávněním",
|
"Only select users and groups with permission can access": "Přístup mají pouze vybraní uživatelé a skupiny s oprávněním",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "Otevřít modální okno pro konfiguraci připojení",
|
"Open modal to configure connection": "Otevřít modální okno pro konfiguraci připojení",
|
||||||
"Open Modal To Manage Floating Quick Actions": "Otevřít modální okno pro správu plovoucích rychlých akcí",
|
"Open Modal To Manage Floating Quick Actions": "Otevřít modální okno pro správu plovoucích rychlých akcí",
|
||||||
"Open Modal To Manage Image Compression": "",
|
"Open Modal To Manage Image Compression": "",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "Otevřít postranní panel",
|
"Open Sidebar": "Otevřít postranní panel",
|
||||||
"Open User Profile Menu": "Otevřít nabídku profilu uživatele",
|
"Open User Profile Menu": "Otevřít nabídku profilu uživatele",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI může používat nástroje poskytované jakýmkoli serverem OpenAPI.",
|
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI může používat nástroje poskytované jakýmkoli serverem OpenAPI.",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "Raději nevyberu",
|
"Prefer not to say": "Raději nevyberu",
|
||||||
"Prefix ID": "Prefix ID",
|
"Prefix ID": "Prefix ID",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefix ID se používá k zamezení konfliktů s jinými připojeními přidáním prefixu k ID modelů - pro vypnutí ponechte prázdné",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefix ID se používá k zamezení konfliktů s jinými připojeními přidáním prefixu k ID modelů - pro vypnutí ponechte prázdné",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "Náhled",
|
"Preview": "Náhled",
|
||||||
"Previous 30 days": "Posledních 30 dní",
|
"Previous 30 days": "Posledních 30 dní",
|
||||||
"Previous 7 days": "Posledních 7 dní",
|
"Previous 7 days": "Posledních 7 dní",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "Odmítnuto, i když nemělo být",
|
"Refused when it shouldn't have": "Odmítnuto, i když nemělo být",
|
||||||
"Regenerate": "Znovu generovat",
|
"Regenerate": "Znovu generovat",
|
||||||
"Regenerate Menu": "Nabídka Znovu generovat",
|
"Regenerate Menu": "Nabídka Znovu generovat",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "",
|
"Register Again": "",
|
||||||
"Register Client": "",
|
"Register Client": "",
|
||||||
"Registered": "",
|
"Registered": "",
|
||||||
|
|
@ -1441,6 +1459,7 @@
|
||||||
"Show Formatting Toolbar": "Zobrazit panel nástrojů pro formátování",
|
"Show Formatting Toolbar": "Zobrazit panel nástrojů pro formátování",
|
||||||
"Show image preview": "Zobrazit náhled obrázku",
|
"Show image preview": "Zobrazit náhled obrázku",
|
||||||
"Show Model": "Zobrazit model",
|
"Show Model": "Zobrazit model",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "Vyjádřete svou podporu!",
|
"Show your support!": "Vyjádřete svou podporu!",
|
||||||
"Showcased creativity": "Předvedená kreativita",
|
"Showcased creativity": "Předvedená kreativita",
|
||||||
"Sign in": "Přihlásit se",
|
"Sign in": "Přihlásit se",
|
||||||
|
|
@ -1476,6 +1495,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "Zastavit",
|
"Stop": "Zastavit",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "stop sequence",
|
"Stop Sequence": "stop sequence",
|
||||||
"Stream Chat Response": "stream chat response",
|
"Stream Chat Response": "stream chat response",
|
||||||
"Stream Delta Chunk Size": "stream delta chunk size",
|
"Stream Delta Chunk Size": "stream delta chunk size",
|
||||||
|
|
@ -1505,6 +1525,7 @@
|
||||||
"Tags Generation": "Generování štítků",
|
"Tags Generation": "Generování štítků",
|
||||||
"Tags Generation Prompt": "Instrukce pro generování štítků",
|
"Tags Generation Prompt": "Instrukce pro generování štítků",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Vzorkování bez konce (tail free sampling) se používá ke snížení vlivu méně pravděpodobných tokenů na výstup. Vyšší hodnota (např. 2.0) sníží vliv více, zatímco hodnota 1.0 toto nastavení vypne.",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Vzorkování bez konce (tail free sampling) se používá ke snížení vlivu méně pravděpodobných tokenů na výstup. Vyšší hodnota (např. 2.0) sníží vliv více, zatímco hodnota 1.0 toto nastavení vypne.",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "Klepnutím přerušíte",
|
"Tap to interrupt": "Klepnutím přerušíte",
|
||||||
"Task List": "Seznam úkolů",
|
"Task List": "Seznam úkolů",
|
||||||
"Task Model": "Model pro úkoly",
|
"Task Model": "Model pro úkoly",
|
||||||
|
|
@ -1586,6 +1607,7 @@
|
||||||
"Toast notifications for new updates": "Vyskakovací oznámení o nových aktualizacích",
|
"Toast notifications for new updates": "Vyskakovací oznámení o nových aktualizacích",
|
||||||
"Today": "Dnes",
|
"Today": "Dnes",
|
||||||
"Today at {{LOCALIZED_TIME}}": "",
|
"Today at {{LOCALIZED_TIME}}": "",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "Přepnout, zda je aktuální připojení aktivní.",
|
"Toggle whether current connection is active.": "Přepnout, zda je aktuální připojení aktivní.",
|
||||||
"Token": "Token",
|
"Token": "Token",
|
||||||
"Too verbose": "Příliš rozvláčné",
|
"Too verbose": "Příliš rozvláčné",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "En 'task model' bliver brugt til at opgaver såsom at generere overskrifter til chats eller internetsøgninger",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "En 'task model' bliver brugt til at opgaver såsom at generere overskrifter til chats eller internetsøgninger",
|
||||||
"a user": "en bruger",
|
"a user": "en bruger",
|
||||||
"About": "Information",
|
"About": "Information",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "Adgang",
|
"Access": "Adgang",
|
||||||
"Access Control": "Adgangskontrol",
|
"Access Control": "Adgangskontrol",
|
||||||
"Accessible to all users": "Tilgængelig for alle brugere",
|
"Accessible to all users": "Tilgængelig for alle brugere",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "Tilføj indhold",
|
"Add Content": "Tilføj indhold",
|
||||||
"Add content here": "Tilføj indhold her",
|
"Add content here": "Tilføj indhold her",
|
||||||
"Add Custom Parameter": "Tilføj brugerdefineret parameter",
|
"Add Custom Parameter": "Tilføj brugerdefineret parameter",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "",
|
"Add Details": "",
|
||||||
"Add Files": "Tilføj filer",
|
"Add Files": "Tilføj filer",
|
||||||
"Add Group": "Tilføj gruppe",
|
"Add Group": "Tilføj gruppe",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "Spørg",
|
"Ask": "Spørg",
|
||||||
"Ask a question": "Stil et spørgsmål",
|
"Ask a question": "Stil et spørgsmål",
|
||||||
"Assistant": "Assistent",
|
"Assistant": "Assistent",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "",
|
"Attach Knowledge": "",
|
||||||
"Attach Notes": "",
|
"Attach Notes": "",
|
||||||
"Attach Webpage": "",
|
"Attach Webpage": "",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "",
|
"Close Banner": "",
|
||||||
"Close Configure Connection Modal": "Luk Configure Forbindelse dialogboks",
|
"Close Configure Connection Modal": "Luk Configure Forbindelse dialogboks",
|
||||||
"Close modal": "Luk dialogboks",
|
"Close modal": "Luk dialogboks",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "Luk dialogboks med indstillinger",
|
"Close settings modal": "Luk dialogboks med indstillinger",
|
||||||
"Close Sidebar": "",
|
"Close Sidebar": "",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "Kopieret til udklipsholder",
|
"Copied to clipboard": "Kopieret til udklipsholder",
|
||||||
"Copy": "Kopier",
|
"Copy": "Kopier",
|
||||||
"Copy Formatted Text": "Kopier formateret tekst",
|
"Copy Formatted Text": "Kopier formateret tekst",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "Kopier link",
|
"Copy link": "Kopier link",
|
||||||
"Copy Link": "Kopier link",
|
"Copy Link": "Kopier link",
|
||||||
"Copy to clipboard": "Kopier til udklipsholder",
|
"Copy to clipboard": "Kopier til udklipsholder",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "Rediger standard tilladelser",
|
"Edit Default Permissions": "Rediger standard tilladelser",
|
||||||
"Edit Folder": "Rediger mappe",
|
"Edit Folder": "Rediger mappe",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "Rediger hukommelse",
|
"Edit Memory": "Rediger hukommelse",
|
||||||
"Edit User": "Rediger bruger",
|
"Edit User": "Rediger bruger",
|
||||||
"Edit User Group": "Rediger brugergruppe",
|
"Edit User Group": "Rediger brugergruppe",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "Firecrawl API Base URL",
|
"Firecrawl API Base URL": "Firecrawl API Base URL",
|
||||||
"Firecrawl API Key": "Firecrawl API nøgle",
|
"Firecrawl API Key": "Firecrawl API nøgle",
|
||||||
"Floating Quick Actions": "",
|
"Floating Quick Actions": "",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "",
|
"Folder": "",
|
||||||
"Folder Background Image": "",
|
"Folder Background Image": "",
|
||||||
"Folder deleted successfully": "Mappe fjernet.",
|
"Folder deleted successfully": "Mappe fjernet.",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "Generer",
|
"Generate": "Generer",
|
||||||
"Generate an image": "Generer et billede",
|
"Generate an image": "Generer et billede",
|
||||||
"Generate Image": "Generer billede",
|
"Generate Image": "Generer billede",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "",
|
"Generated Image": "",
|
||||||
"Generating search query": "Genererer søgeforespørgsel",
|
"Generating search query": "Genererer søgeforespørgsel",
|
||||||
"Generating...": "Genererer...",
|
"Generating...": "Genererer...",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "Hukommelse opdateret.",
|
"Memory updated successfully": "Hukommelse opdateret.",
|
||||||
"Merge Responses": "Flet svar",
|
"Merge Responses": "Flet svar",
|
||||||
"Merged Response": "Sammensat svar",
|
"Merged Response": "Sammensat svar",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "Besked rating skal være aktiveret for at bruge denne funktion",
|
"Message rating should be enabled to use this feature": "Besked rating skal være aktiveret for at bruge denne funktion",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Beskeder, du sender efter at have oprettet dit link, deles ikke. Brugere med URL'en vil kunne se den delte chat.",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Beskeder, du sender efter at have oprettet dit link, deles ikke. Brugere med URL'en vil kunne se den delte chat.",
|
||||||
"Microsoft OneDrive": "Microsoft OneDrive",
|
"Microsoft OneDrive": "Microsoft OneDrive",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "Ny note",
|
"New Note": "Ny note",
|
||||||
"New Password": "Ny adgangskode",
|
"New Password": "Ny adgangskode",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "Nyt værktøj",
|
"New Tool": "Nyt værktøj",
|
||||||
"new-channel": "ny-kanal",
|
"new-channel": "ny-kanal",
|
||||||
"Next message": "Næste besked",
|
"Next message": "Næste besked",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Ollama-version",
|
"Ollama Version": "Ollama-version",
|
||||||
"On": "Til",
|
"On": "Til",
|
||||||
"OneDrive": "OneDrive",
|
"OneDrive": "OneDrive",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "Kun alfanumeriske tegn og bindestreger er tilladt",
|
"Only alphanumeric characters and hyphens are allowed": "Kun alfanumeriske tegn og bindestreger er tilladt",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "Kun alfanumeriske tegn og bindestreger er tilladt i kommandostrengen.",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "Kun alfanumeriske tegn og bindestreger er tilladt i kommandostrengen.",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Kun samlinger kan redigeres, opret en ny vidensbase for at redigere/tilføje dokumenter.",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Kun samlinger kan redigeres, opret en ny vidensbase for at redigere/tilføje dokumenter.",
|
||||||
"Only markdown files are allowed": "Kun markdown-filer er tilladt",
|
"Only markdown files are allowed": "Kun markdown-filer er tilladt",
|
||||||
"Only select users and groups with permission can access": "Kun valgte brugere og grupper med tilladelse kan tilgå",
|
"Only select users and groups with permission can access": "Kun valgte brugere og grupper med tilladelse kan tilgå",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "Åbn modal for at konfigurere forbindelse",
|
"Open modal to configure connection": "Åbn modal for at konfigurere forbindelse",
|
||||||
"Open Modal To Manage Floating Quick Actions": "",
|
"Open Modal To Manage Floating Quick Actions": "",
|
||||||
"Open Modal To Manage Image Compression": "",
|
"Open Modal To Manage Image Compression": "",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "",
|
"Open Sidebar": "",
|
||||||
"Open User Profile Menu": "",
|
"Open User Profile Menu": "",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI kan bruge værktøjer leveret af enhver OpenAPI server.",
|
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI kan bruge værktøjer leveret af enhver OpenAPI server.",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "",
|
"Prefer not to say": "",
|
||||||
"Prefix ID": "Prefix ID",
|
"Prefix ID": "Prefix ID",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefix ID bruges til at undgå konflikter med andre forbindelser ved at tilføje et prefix til model-ID'erne - lad være tom for at deaktivere",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefix ID bruges til at undgå konflikter med andre forbindelser ved at tilføje et prefix til model-ID'erne - lad være tom for at deaktivere",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "Forhåndsvisning",
|
"Preview": "Forhåndsvisning",
|
||||||
"Previous 30 days": "Seneste 30 dage",
|
"Previous 30 days": "Seneste 30 dage",
|
||||||
"Previous 7 days": "Seneste 7 dage",
|
"Previous 7 days": "Seneste 7 dage",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "Afvist, når den ikke burde have været det",
|
"Refused when it shouldn't have": "Afvist, når den ikke burde have været det",
|
||||||
"Regenerate": "Regenerer",
|
"Regenerate": "Regenerer",
|
||||||
"Regenerate Menu": "",
|
"Regenerate Menu": "",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "",
|
"Register Again": "",
|
||||||
"Register Client": "",
|
"Register Client": "",
|
||||||
"Registered": "",
|
"Registered": "",
|
||||||
|
|
@ -1439,6 +1457,7 @@
|
||||||
"Show Formatting Toolbar": "",
|
"Show Formatting Toolbar": "",
|
||||||
"Show image preview": "Vis billedforhåndsvisning",
|
"Show image preview": "Vis billedforhåndsvisning",
|
||||||
"Show Model": "Vis model",
|
"Show Model": "Vis model",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "Vis din støtte!",
|
"Show your support!": "Vis din støtte!",
|
||||||
"Showcased creativity": "Udstillet kreativitet",
|
"Showcased creativity": "Udstillet kreativitet",
|
||||||
"Sign in": "Log ind",
|
"Sign in": "Log ind",
|
||||||
|
|
@ -1474,6 +1493,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "Stop",
|
"Stop": "Stop",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "Stopsekvens",
|
"Stop Sequence": "Stopsekvens",
|
||||||
"Stream Chat Response": "Stream chatsvar",
|
"Stream Chat Response": "Stream chatsvar",
|
||||||
"Stream Delta Chunk Size": "",
|
"Stream Delta Chunk Size": "",
|
||||||
|
|
@ -1503,6 +1523,7 @@
|
||||||
"Tags Generation": "Tag generering",
|
"Tags Generation": "Tag generering",
|
||||||
"Tags Generation Prompt": "Tag genererings prompt",
|
"Tags Generation Prompt": "Tag genererings prompt",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Tail free sampling bruges til at reducere påvirkningen af mindre sandsynlige tokens fra outputtet. En højere værdi (f.eks. 2,0) vil reducere påvirkningen mere, mens en værdi på 1,0 deaktiverer denne indstilling.",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Tail free sampling bruges til at reducere påvirkningen af mindre sandsynlige tokens fra outputtet. En højere værdi (f.eks. 2,0) vil reducere påvirkningen mere, mens en værdi på 1,0 deaktiverer denne indstilling.",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "Tryk for at afbryde",
|
"Tap to interrupt": "Tryk for at afbryde",
|
||||||
"Task List": "Opgaveliste",
|
"Task List": "Opgaveliste",
|
||||||
"Task Model": "Opgavemodel",
|
"Task Model": "Opgavemodel",
|
||||||
|
|
@ -1584,6 +1605,7 @@
|
||||||
"Toast notifications for new updates": "Toast-notifikationer for nye opdateringer",
|
"Toast notifications for new updates": "Toast-notifikationer for nye opdateringer",
|
||||||
"Today": "I dag",
|
"Today": "I dag",
|
||||||
"Today at {{LOCALIZED_TIME}}": "I dag {{LOCALIZED_TIME}}",
|
"Today at {{LOCALIZED_TIME}}": "I dag {{LOCALIZED_TIME}}",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "Skift om nuværende forbindelse er aktiv.",
|
"Toggle whether current connection is active.": "Skift om nuværende forbindelse er aktiv.",
|
||||||
"Token": "Token",
|
"Token": "Token",
|
||||||
"Too verbose": "For ordrigt",
|
"Too verbose": "For ordrigt",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Aufgabenmodelle werden beispielsweise zur Generierung von Chat-Titeln oder Websuchanfragen verwendet",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Aufgabenmodelle werden beispielsweise zur Generierung von Chat-Titeln oder Websuchanfragen verwendet",
|
||||||
"a user": "ein Benutzer",
|
"a user": "ein Benutzer",
|
||||||
"About": "Über",
|
"About": "Über",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "Zugang",
|
"Access": "Zugang",
|
||||||
"Access Control": "Zugangskontrolle",
|
"Access Control": "Zugangskontrolle",
|
||||||
"Accessible to all users": "Für alle Benutzer zugänglich",
|
"Accessible to all users": "Für alle Benutzer zugänglich",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "Inhalt hinzufügen",
|
"Add Content": "Inhalt hinzufügen",
|
||||||
"Add content here": "Inhalt hier hinzufügen",
|
"Add content here": "Inhalt hier hinzufügen",
|
||||||
"Add Custom Parameter": "Benutzerdefinierten Parameter hinzufügen",
|
"Add Custom Parameter": "Benutzerdefinierten Parameter hinzufügen",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "Details hinzufügen",
|
"Add Details": "Details hinzufügen",
|
||||||
"Add Files": "Dateien hinzufügen",
|
"Add Files": "Dateien hinzufügen",
|
||||||
"Add Group": "Gruppe hinzufügen",
|
"Add Group": "Gruppe hinzufügen",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "Fragen",
|
"Ask": "Fragen",
|
||||||
"Ask a question": "Stellen Sie eine Frage",
|
"Ask a question": "Stellen Sie eine Frage",
|
||||||
"Assistant": "Assistent",
|
"Assistant": "Assistent",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "Wissensspeicher anhängen",
|
"Attach Knowledge": "Wissensspeicher anhängen",
|
||||||
"Attach Notes": "Notizen anhängen",
|
"Attach Notes": "Notizen anhängen",
|
||||||
"Attach Webpage": "Webseite anhängen",
|
"Attach Webpage": "Webseite anhängen",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "Banner schließen",
|
"Close Banner": "Banner schließen",
|
||||||
"Close Configure Connection Modal": "Konfigurationsfenster für Verbindung schließen",
|
"Close Configure Connection Modal": "Konfigurationsfenster für Verbindung schließen",
|
||||||
"Close modal": "Modal schließen",
|
"Close modal": "Modal schließen",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "Einstellungsfenster schließen",
|
"Close settings modal": "Einstellungsfenster schließen",
|
||||||
"Close Sidebar": "Seitenleiste schließen",
|
"Close Sidebar": "Seitenleiste schließen",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "In die Zwischenablage kopiert",
|
"Copied to clipboard": "In die Zwischenablage kopiert",
|
||||||
"Copy": "Kopieren",
|
"Copy": "Kopieren",
|
||||||
"Copy Formatted Text": "Formatierten Text kopieren",
|
"Copy Formatted Text": "Formatierten Text kopieren",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "Link kopieren",
|
"Copy link": "Link kopieren",
|
||||||
"Copy Link": "Link kopieren",
|
"Copy Link": "Link kopieren",
|
||||||
"Copy to clipboard": "In die Zwischenablage kopieren",
|
"Copy to clipboard": "In die Zwischenablage kopieren",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "Standardberechtigungen bearbeiten",
|
"Edit Default Permissions": "Standardberechtigungen bearbeiten",
|
||||||
"Edit Folder": "Ordner bearbeiten",
|
"Edit Folder": "Ordner bearbeiten",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "Erinnerungen bearbeiten",
|
"Edit Memory": "Erinnerungen bearbeiten",
|
||||||
"Edit User": "Benutzer bearbeiten",
|
"Edit User": "Benutzer bearbeiten",
|
||||||
"Edit User Group": "Benutzergruppe bearbeiten",
|
"Edit User Group": "Benutzergruppe bearbeiten",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "Firecrawl API Basis-URL",
|
"Firecrawl API Base URL": "Firecrawl API Basis-URL",
|
||||||
"Firecrawl API Key": "Firecrawl API-Schlüssel",
|
"Firecrawl API Key": "Firecrawl API-Schlüssel",
|
||||||
"Floating Quick Actions": "Schnellaktionen",
|
"Floating Quick Actions": "Schnellaktionen",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "Ordner",
|
"Folder": "Ordner",
|
||||||
"Folder Background Image": "Ordner Hintergrundbild",
|
"Folder Background Image": "Ordner Hintergrundbild",
|
||||||
"Folder deleted successfully": "Ordner erfolgreich gelöscht",
|
"Folder deleted successfully": "Ordner erfolgreich gelöscht",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "Generieren",
|
"Generate": "Generieren",
|
||||||
"Generate an image": "Bild erzeugen",
|
"Generate an image": "Bild erzeugen",
|
||||||
"Generate Image": "Bild erzeugen",
|
"Generate Image": "Bild erzeugen",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "Generiertes Bild",
|
"Generated Image": "Generiertes Bild",
|
||||||
"Generating search query": "Suchanfrage wird erstellt",
|
"Generating search query": "Suchanfrage wird erstellt",
|
||||||
"Generating...": "Generiere...",
|
"Generating...": "Generiere...",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "Erinnerung erfolgreich aktualisiert",
|
"Memory updated successfully": "Erinnerung erfolgreich aktualisiert",
|
||||||
"Merge Responses": "Antworten zusammenführen",
|
"Merge Responses": "Antworten zusammenführen",
|
||||||
"Merged Response": "Zusammengeführte Antwort",
|
"Merged Response": "Zusammengeführte Antwort",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "Antwortbewertung muss aktiviert sein, um diese Funktion zu verwenden",
|
"Message rating should be enabled to use this feature": "Antwortbewertung muss aktiviert sein, um diese Funktion zu verwenden",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Nachrichten, die Sie nach der Erstellung Ihres Links senden, werden nicht geteilt. Nutzer mit der URL können den freigegebenen Chat einsehen.",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Nachrichten, die Sie nach der Erstellung Ihres Links senden, werden nicht geteilt. Nutzer mit der URL können den freigegebenen Chat einsehen.",
|
||||||
"Microsoft OneDrive": "Microsoft OneDrive",
|
"Microsoft OneDrive": "Microsoft OneDrive",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "Neue Notiz",
|
"New Note": "Neue Notiz",
|
||||||
"New Password": "Neues Passwort",
|
"New Password": "Neues Passwort",
|
||||||
"New Prompt": "Neuer Prompt",
|
"New Prompt": "Neuer Prompt",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "Neues Werkzeug",
|
"New Tool": "Neues Werkzeug",
|
||||||
"new-channel": "neuer-kanal",
|
"new-channel": "neuer-kanal",
|
||||||
"Next message": "Nächste Nachricht",
|
"Next message": "Nächste Nachricht",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Ollama-Version",
|
"Ollama Version": "Ollama-Version",
|
||||||
"On": "Ein",
|
"On": "Ein",
|
||||||
"OneDrive": "OneDrive",
|
"OneDrive": "OneDrive",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "Nur alphanumerische Zeichen und Bindestriche sind erlaubt",
|
"Only alphanumeric characters and hyphens are allowed": "Nur alphanumerische Zeichen und Bindestriche sind erlaubt",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "In der Befehlszeichenfolge sind nur alphanumerische Zeichen und Bindestriche erlaubt.",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "In der Befehlszeichenfolge sind nur alphanumerische Zeichen und Bindestriche erlaubt.",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Nur Sammlungen können bearbeitet werden. Erstellen Sie eine neue Wissensbasis, um Dokumente zu bearbeiten/hinzuzufügen.",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Nur Sammlungen können bearbeitet werden. Erstellen Sie eine neue Wissensbasis, um Dokumente zu bearbeiten/hinzuzufügen.",
|
||||||
"Only markdown files are allowed": "Nur Markdown-Dateien sind erlaubt",
|
"Only markdown files are allowed": "Nur Markdown-Dateien sind erlaubt",
|
||||||
"Only select users and groups with permission can access": "Nur ausgewählte Benutzer und Gruppen mit Berechtigung können darauf zugreifen",
|
"Only select users and groups with permission can access": "Nur ausgewählte Benutzer und Gruppen mit Berechtigung können darauf zugreifen",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "Modal öffnen, um die Verbindung zu konfigurieren",
|
"Open modal to configure connection": "Modal öffnen, um die Verbindung zu konfigurieren",
|
||||||
"Open Modal To Manage Floating Quick Actions": "Modal öffnen, um Schnellaktionen zu verwalten",
|
"Open Modal To Manage Floating Quick Actions": "Modal öffnen, um Schnellaktionen zu verwalten",
|
||||||
"Open Modal To Manage Image Compression": "Modal öffnen, um die Bildkompression zu verwalten",
|
"Open Modal To Manage Image Compression": "Modal öffnen, um die Bildkompression zu verwalten",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "Seitenleiste öffnen",
|
"Open Sidebar": "Seitenleiste öffnen",
|
||||||
"Open User Profile Menu": "Benutzerprofilmenü öffnen",
|
"Open User Profile Menu": "Benutzerprofilmenü öffnen",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI kann Werkzeuge verwenden, die von irgendeinem OpenAPI-Server bereitgestellt werden.",
|
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI kann Werkzeuge verwenden, die von irgendeinem OpenAPI-Server bereitgestellt werden.",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "Keine Angabe",
|
"Prefer not to say": "Keine Angabe",
|
||||||
"Prefix ID": "Präfix-ID",
|
"Prefix ID": "Präfix-ID",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefix-ID wird verwendet, um Konflikte mit anderen Verbindungen zu vermeiden, indem ein Präfix zu den Modell-IDs hinzugefügt wird - leer lassen, um zu deaktivieren",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefix-ID wird verwendet, um Konflikte mit anderen Verbindungen zu vermeiden, indem ein Präfix zu den Modell-IDs hinzugefügt wird - leer lassen, um zu deaktivieren",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "Vorschau",
|
"Preview": "Vorschau",
|
||||||
"Previous 30 days": "Vorherige 30 Tage",
|
"Previous 30 days": "Vorherige 30 Tage",
|
||||||
"Previous 7 days": "Vorherige 7 Tage",
|
"Previous 7 days": "Vorherige 7 Tage",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "Abgelehnt, obwohl es nicht hätte abgelehnt werden sollen",
|
"Refused when it shouldn't have": "Abgelehnt, obwohl es nicht hätte abgelehnt werden sollen",
|
||||||
"Regenerate": "Neu generieren",
|
"Regenerate": "Neu generieren",
|
||||||
"Regenerate Menu": "Menü neu generieren",
|
"Regenerate Menu": "Menü neu generieren",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "Erneut registrieren",
|
"Register Again": "Erneut registrieren",
|
||||||
"Register Client": "Client registrieren",
|
"Register Client": "Client registrieren",
|
||||||
"Registered": "Angemeldet",
|
"Registered": "Angemeldet",
|
||||||
|
|
@ -1439,6 +1457,7 @@
|
||||||
"Show Formatting Toolbar": "Formatierungsleiste anzeigen",
|
"Show Formatting Toolbar": "Formatierungsleiste anzeigen",
|
||||||
"Show image preview": "Bildvorschau anzeigen",
|
"Show image preview": "Bildvorschau anzeigen",
|
||||||
"Show Model": "Modell anzeigen",
|
"Show Model": "Modell anzeigen",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "Zeigen Sie Ihre Unterstützung!",
|
"Show your support!": "Zeigen Sie Ihre Unterstützung!",
|
||||||
"Showcased creativity": "Kreativität gezeigt",
|
"Showcased creativity": "Kreativität gezeigt",
|
||||||
"Sign in": "Anmelden",
|
"Sign in": "Anmelden",
|
||||||
|
|
@ -1474,6 +1493,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "Stop",
|
"Stop": "Stop",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "Stop-Sequenz",
|
"Stop Sequence": "Stop-Sequenz",
|
||||||
"Stream Chat Response": "Chat-Antwort streamen",
|
"Stream Chat Response": "Chat-Antwort streamen",
|
||||||
"Stream Delta Chunk Size": "Stream-Delta-Chunk-Größe",
|
"Stream Delta Chunk Size": "Stream-Delta-Chunk-Größe",
|
||||||
|
|
@ -1503,6 +1523,7 @@
|
||||||
"Tags Generation": "Tag-Generierung",
|
"Tags Generation": "Tag-Generierung",
|
||||||
"Tags Generation Prompt": "Prompt für Tag-Generierung",
|
"Tags Generation Prompt": "Prompt für Tag-Generierung",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Tail-Free Sampling wird verwendet, um den Einfluss weniger wahrscheinlicher Token auf die Ausgabe zu reduzieren. Ein höherer Wert (z. B. 2.0) reduziert den Einfluss stärker, während ein Wert von 1.0 diese Einstellung deaktiviert. (Standard: 1)",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Tail-Free Sampling wird verwendet, um den Einfluss weniger wahrscheinlicher Token auf die Ausgabe zu reduzieren. Ein höherer Wert (z. B. 2.0) reduziert den Einfluss stärker, während ein Wert von 1.0 diese Einstellung deaktiviert. (Standard: 1)",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "Zum Unterbrechen tippen",
|
"Tap to interrupt": "Zum Unterbrechen tippen",
|
||||||
"Task List": "Aufgabenliste",
|
"Task List": "Aufgabenliste",
|
||||||
"Task Model": "Aufgabenmodell",
|
"Task Model": "Aufgabenmodell",
|
||||||
|
|
@ -1584,6 +1605,7 @@
|
||||||
"Toast notifications for new updates": "Toast-Benachrichtigungen für neue Updates",
|
"Toast notifications for new updates": "Toast-Benachrichtigungen für neue Updates",
|
||||||
"Today": "Heute",
|
"Today": "Heute",
|
||||||
"Today at {{LOCALIZED_TIME}}": "Heute um {{LOCALIZED_TIME}}",
|
"Today at {{LOCALIZED_TIME}}": "Heute um {{LOCALIZED_TIME}}",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "Aktuelle Verbindung umschalten.",
|
"Toggle whether current connection is active.": "Aktuelle Verbindung umschalten.",
|
||||||
"Token": "Token",
|
"Token": "Token",
|
||||||
"Too verbose": "Zu ausführlich",
|
"Too verbose": "Zu ausführlich",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "",
|
||||||
"a user": "such user",
|
"a user": "such user",
|
||||||
"About": "Much About",
|
"About": "Much About",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "",
|
"Access": "",
|
||||||
"Access Control": "",
|
"Access Control": "",
|
||||||
"Accessible to all users": "",
|
"Accessible to all users": "",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "",
|
"Add Content": "",
|
||||||
"Add content here": "",
|
"Add content here": "",
|
||||||
"Add Custom Parameter": "",
|
"Add Custom Parameter": "",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "",
|
"Add Details": "",
|
||||||
"Add Files": "Add Files",
|
"Add Files": "Add Files",
|
||||||
"Add Group": "",
|
"Add Group": "",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "",
|
"Ask": "",
|
||||||
"Ask a question": "",
|
"Ask a question": "",
|
||||||
"Assistant": "",
|
"Assistant": "",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "",
|
"Attach Knowledge": "",
|
||||||
"Attach Notes": "",
|
"Attach Notes": "",
|
||||||
"Attach Webpage": "",
|
"Attach Webpage": "",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "",
|
"Close Banner": "",
|
||||||
"Close Configure Connection Modal": "",
|
"Close Configure Connection Modal": "",
|
||||||
"Close modal": "",
|
"Close modal": "",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "",
|
"Close settings modal": "",
|
||||||
"Close Sidebar": "",
|
"Close Sidebar": "",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "",
|
"Copied to clipboard": "",
|
||||||
"Copy": "",
|
"Copy": "",
|
||||||
"Copy Formatted Text": "",
|
"Copy Formatted Text": "",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "",
|
"Copy link": "",
|
||||||
"Copy Link": "",
|
"Copy Link": "",
|
||||||
"Copy to clipboard": "",
|
"Copy to clipboard": "",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "",
|
"Edit Default Permissions": "",
|
||||||
"Edit Folder": "",
|
"Edit Folder": "",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "",
|
"Edit Memory": "",
|
||||||
"Edit User": "Edit Wowser",
|
"Edit User": "Edit Wowser",
|
||||||
"Edit User Group": "",
|
"Edit User Group": "",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "",
|
"Firecrawl API Base URL": "",
|
||||||
"Firecrawl API Key": "",
|
"Firecrawl API Key": "",
|
||||||
"Floating Quick Actions": "",
|
"Floating Quick Actions": "",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "",
|
"Folder": "",
|
||||||
"Folder Background Image": "",
|
"Folder Background Image": "",
|
||||||
"Folder deleted successfully": "",
|
"Folder deleted successfully": "",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "",
|
"Generate": "",
|
||||||
"Generate an image": "",
|
"Generate an image": "",
|
||||||
"Generate Image": "",
|
"Generate Image": "",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "",
|
"Generated Image": "",
|
||||||
"Generating search query": "",
|
"Generating search query": "",
|
||||||
"Generating...": "",
|
"Generating...": "",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "",
|
"Memory updated successfully": "",
|
||||||
"Merge Responses": "",
|
"Merge Responses": "",
|
||||||
"Merged Response": "",
|
"Merged Response": "",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "",
|
"Message rating should be enabled to use this feature": "",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "",
|
||||||
"Microsoft OneDrive": "",
|
"Microsoft OneDrive": "",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "",
|
"New Note": "",
|
||||||
"New Password": "New Barkword",
|
"New Password": "New Barkword",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "",
|
"New Tool": "",
|
||||||
"new-channel": "",
|
"new-channel": "",
|
||||||
"Next message": "",
|
"Next message": "",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Ollama Version",
|
"Ollama Version": "Ollama Version",
|
||||||
"On": "On",
|
"On": "On",
|
||||||
"OneDrive": "",
|
"OneDrive": "",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "",
|
"Only alphanumeric characters and hyphens are allowed": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "Only wow characters and hyphens are allowed in the bork string.",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "Only wow characters and hyphens are allowed in the bork string.",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
|
||||||
"Only markdown files are allowed": "",
|
"Only markdown files are allowed": "",
|
||||||
"Only select users and groups with permission can access": "",
|
"Only select users and groups with permission can access": "",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "",
|
"Open modal to configure connection": "",
|
||||||
"Open Modal To Manage Floating Quick Actions": "",
|
"Open Modal To Manage Floating Quick Actions": "",
|
||||||
"Open Modal To Manage Image Compression": "",
|
"Open Modal To Manage Image Compression": "",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "",
|
"Open Sidebar": "",
|
||||||
"Open User Profile Menu": "",
|
"Open User Profile Menu": "",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "",
|
"Prefer not to say": "",
|
||||||
"Prefix ID": "",
|
"Prefix ID": "",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "",
|
"Preview": "",
|
||||||
"Previous 30 days": "",
|
"Previous 30 days": "",
|
||||||
"Previous 7 days": "",
|
"Previous 7 days": "",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "",
|
"Refused when it shouldn't have": "",
|
||||||
"Regenerate": "",
|
"Regenerate": "",
|
||||||
"Regenerate Menu": "",
|
"Regenerate Menu": "",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "",
|
"Register Again": "",
|
||||||
"Register Client": "",
|
"Register Client": "",
|
||||||
"Registered": "",
|
"Registered": "",
|
||||||
|
|
@ -1439,6 +1457,7 @@
|
||||||
"Show Formatting Toolbar": "",
|
"Show Formatting Toolbar": "",
|
||||||
"Show image preview": "",
|
"Show image preview": "",
|
||||||
"Show Model": "",
|
"Show Model": "",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "",
|
"Show your support!": "",
|
||||||
"Showcased creativity": "",
|
"Showcased creativity": "",
|
||||||
"Sign in": "Sign in very sign",
|
"Sign in": "Sign in very sign",
|
||||||
|
|
@ -1474,6 +1493,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "",
|
"Stop": "",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "Stop Sequence much stop",
|
"Stop Sequence": "Stop Sequence much stop",
|
||||||
"Stream Chat Response": "",
|
"Stream Chat Response": "",
|
||||||
"Stream Delta Chunk Size": "",
|
"Stream Delta Chunk Size": "",
|
||||||
|
|
@ -1503,6 +1523,7 @@
|
||||||
"Tags Generation": "",
|
"Tags Generation": "",
|
||||||
"Tags Generation Prompt": "",
|
"Tags Generation Prompt": "",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "",
|
"Tap to interrupt": "",
|
||||||
"Task List": "",
|
"Task List": "",
|
||||||
"Task Model": "",
|
"Task Model": "",
|
||||||
|
|
@ -1584,6 +1605,7 @@
|
||||||
"Toast notifications for new updates": "",
|
"Toast notifications for new updates": "",
|
||||||
"Today": "",
|
"Today": "",
|
||||||
"Today at {{LOCALIZED_TIME}}": "",
|
"Today at {{LOCALIZED_TIME}}": "",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "",
|
"Toggle whether current connection is active.": "",
|
||||||
"Token": "",
|
"Token": "",
|
||||||
"Too verbose": "",
|
"Too verbose": "",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Ένα μοντέλο εργασίας χρησιμοποιείται κατά την εκτέλεση εργασιών όπως η δημιουργία τίτλων για συνομιλίες και αναζητήσεις στο διαδίκτυο",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Ένα μοντέλο εργασίας χρησιμοποιείται κατά την εκτέλεση εργασιών όπως η δημιουργία τίτλων για συνομιλίες και αναζητήσεις στο διαδίκτυο",
|
||||||
"a user": "ένας χρήστης",
|
"a user": "ένας χρήστης",
|
||||||
"About": "Σχετικά",
|
"About": "Σχετικά",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "Πρόσβαση",
|
"Access": "Πρόσβαση",
|
||||||
"Access Control": "Έλεγχος Πρόσβασης",
|
"Access Control": "Έλεγχος Πρόσβασης",
|
||||||
"Accessible to all users": "Προσβάσιμο σε όλους τους χρήστες",
|
"Accessible to all users": "Προσβάσιμο σε όλους τους χρήστες",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "Προσθήκη Περιεχομένου",
|
"Add Content": "Προσθήκη Περιεχομένου",
|
||||||
"Add content here": "Προσθέστε περιεχόμενο εδώ",
|
"Add content here": "Προσθέστε περιεχόμενο εδώ",
|
||||||
"Add Custom Parameter": "",
|
"Add Custom Parameter": "",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "",
|
"Add Details": "",
|
||||||
"Add Files": "Προσθήκη Αρχείων",
|
"Add Files": "Προσθήκη Αρχείων",
|
||||||
"Add Group": "Προσθήκη Ομάδας",
|
"Add Group": "Προσθήκη Ομάδας",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "",
|
"Ask": "",
|
||||||
"Ask a question": "Ρωτήστε μια ερώτηση",
|
"Ask a question": "Ρωτήστε μια ερώτηση",
|
||||||
"Assistant": "Βοηθός",
|
"Assistant": "Βοηθός",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "Προσθήκη Knowledge",
|
"Attach Knowledge": "Προσθήκη Knowledge",
|
||||||
"Attach Notes": "Προσθήκη Σημειώσεων",
|
"Attach Notes": "Προσθήκη Σημειώσεων",
|
||||||
"Attach Webpage": "Προσθήκη ιστότοπου",
|
"Attach Webpage": "Προσθήκη ιστότοπου",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "Κλείσιμο Ανακοίνωσης",
|
"Close Banner": "Κλείσιμο Ανακοίνωσης",
|
||||||
"Close Configure Connection Modal": "Κλείσιμο παραθύρου διαμόρφωσης σύνδεσης",
|
"Close Configure Connection Modal": "Κλείσιμο παραθύρου διαμόρφωσης σύνδεσης",
|
||||||
"Close modal": "Κλείσιμο παραθύρου διαλόγου",
|
"Close modal": "Κλείσιμο παραθύρου διαλόγου",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "Κλείσιμο παραθύρου διαμόρφωσης ρυθμίσεων",
|
"Close settings modal": "Κλείσιμο παραθύρου διαμόρφωσης ρυθμίσεων",
|
||||||
"Close Sidebar": "Κλείσιμο πλευρικής μπάρας",
|
"Close Sidebar": "Κλείσιμο πλευρικής μπάρας",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "Αντιγράφηκε στο πρόχειρο",
|
"Copied to clipboard": "Αντιγράφηκε στο πρόχειρο",
|
||||||
"Copy": "Αντιγραφή",
|
"Copy": "Αντιγραφή",
|
||||||
"Copy Formatted Text": "Αντιγραφή μορφοποιημένου κειμένου",
|
"Copy Formatted Text": "Αντιγραφή μορφοποιημένου κειμένου",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "Αντιγραφή συνδέσμου",
|
"Copy link": "Αντιγραφή συνδέσμου",
|
||||||
"Copy Link": "Αντιγραφή Συνδέσμου",
|
"Copy Link": "Αντιγραφή Συνδέσμου",
|
||||||
"Copy to clipboard": "Αντιγραφή στο πρόχειρο",
|
"Copy to clipboard": "Αντιγραφή στο πρόχειρο",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "Επεξεργασία Προεπιλεγμένων Δικαιωμάτων",
|
"Edit Default Permissions": "Επεξεργασία Προεπιλεγμένων Δικαιωμάτων",
|
||||||
"Edit Folder": "",
|
"Edit Folder": "",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "Επεξεργασία Μνήμης",
|
"Edit Memory": "Επεξεργασία Μνήμης",
|
||||||
"Edit User": "Επεξεργασία Χρήστη",
|
"Edit User": "Επεξεργασία Χρήστη",
|
||||||
"Edit User Group": "Επεξεργασία Ομάδας Χρηστών",
|
"Edit User Group": "Επεξεργασία Ομάδας Χρηστών",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "URL του API του Firecrawl",
|
"Firecrawl API Base URL": "URL του API του Firecrawl",
|
||||||
"Firecrawl API Key": "API κλειδί του Firecrawl",
|
"Firecrawl API Key": "API κλειδί του Firecrawl",
|
||||||
"Floating Quick Actions": "",
|
"Floating Quick Actions": "",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "Φάκελος",
|
"Folder": "Φάκελος",
|
||||||
"Folder Background Image": "Εικόνα Φόντου Φακέλου",
|
"Folder Background Image": "Εικόνα Φόντου Φακέλου",
|
||||||
"Folder deleted successfully": "Ο φάκελος διαγράφηκε με επιτυχία",
|
"Folder deleted successfully": "Ο φάκελος διαγράφηκε με επιτυχία",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "Δημιουργία",
|
"Generate": "Δημιουργία",
|
||||||
"Generate an image": "Δημιουργία εικόνας",
|
"Generate an image": "Δημιουργία εικόνας",
|
||||||
"Generate Image": "Δημιουργία Εικόνας",
|
"Generate Image": "Δημιουργία Εικόνας",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "Δημιουργημένη Εικόνα",
|
"Generated Image": "Δημιουργημένη Εικόνα",
|
||||||
"Generating search query": "Γενιά αναζήτησης ερώτησης",
|
"Generating search query": "Γενιά αναζήτησης ερώτησης",
|
||||||
"Generating...": "Δημιουργία...",
|
"Generating...": "Δημιουργία...",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "Η μνήμη ενημερώθηκε με επιτυχία",
|
"Memory updated successfully": "Η μνήμη ενημερώθηκε με επιτυχία",
|
||||||
"Merge Responses": "Συγχώνευση Απαντήσεων",
|
"Merge Responses": "Συγχώνευση Απαντήσεων",
|
||||||
"Merged Response": "Συγχωνευμένη απάντηση",
|
"Merged Response": "Συγχωνευμένη απάντηση",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "Η αξιολόγηση μηνυμάτων πρέπει να είναι ενεργοποιημένη για να χρησιμοποιήσετε αυτή τη λειτουργία",
|
"Message rating should be enabled to use this feature": "Η αξιολόγηση μηνυμάτων πρέπει να είναι ενεργοποιημένη για να χρησιμοποιήσετε αυτή τη λειτουργία",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Τα μηνύματα που στέλνετε μετά τη δημιουργία του συνδέσμου σας δεν θα κοινοποιηθούν. Οι χρήστες με το URL θα μπορούν να δουν τη συνομιλία που μοιραστήκατε.",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Τα μηνύματα που στέλνετε μετά τη δημιουργία του συνδέσμου σας δεν θα κοινοποιηθούν. Οι χρήστες με το URL θα μπορούν να δουν τη συνομιλία που μοιραστήκατε.",
|
||||||
"Microsoft OneDrive": "",
|
"Microsoft OneDrive": "",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "Νέα Σημείωση",
|
"New Note": "Νέα Σημείωση",
|
||||||
"New Password": "Νέος Κωδικός",
|
"New Password": "Νέος Κωδικός",
|
||||||
"New Prompt": "Νέα Προτροπή",
|
"New Prompt": "Νέα Προτροπή",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "Νέο Εργαλείο",
|
"New Tool": "Νέο Εργαλείο",
|
||||||
"new-channel": "",
|
"new-channel": "",
|
||||||
"Next message": "Επόμενο μήνυμα",
|
"Next message": "Επόμενο μήνυμα",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Έκδοση Ollama",
|
"Ollama Version": "Έκδοση Ollama",
|
||||||
"On": "Ενεργό",
|
"On": "Ενεργό",
|
||||||
"OneDrive": "",
|
"OneDrive": "",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "Επιτρέπονται μόνο αλφαριθμητικοί χαρακτήρες και παύλες",
|
"Only alphanumeric characters and hyphens are allowed": "Επιτρέπονται μόνο αλφαριθμητικοί χαρακτήρες και παύλες",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "Επιτρέπονται μόνο αλφαριθμητικοί χαρακτήρες και παύλες στο string της εντολής.",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "Επιτρέπονται μόνο αλφαριθμητικοί χαρακτήρες και παύλες στο string της εντολής.",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Μόνο συλλογές μπορούν να επεξεργαστούν, δημιουργήστε μια νέα βάση γνώσης για επεξεργασία/προσθήκη εγγράφων.",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Μόνο συλλογές μπορούν να επεξεργαστούν, δημιουργήστε μια νέα βάση γνώσης για επεξεργασία/προσθήκη εγγράφων.",
|
||||||
"Only markdown files are allowed": "",
|
"Only markdown files are allowed": "",
|
||||||
"Only select users and groups with permission can access": "Μόνο επιλεγμένοι χρήστες και ομάδες με άδεια μπορούν να έχουν πρόσβαση",
|
"Only select users and groups with permission can access": "Μόνο επιλεγμένοι χρήστες και ομάδες με άδεια μπορούν να έχουν πρόσβαση",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "Άνοιγμα παραθύρου διαλόγου για διαχείριση σύνδεσης",
|
"Open modal to configure connection": "Άνοιγμα παραθύρου διαλόγου για διαχείριση σύνδεσης",
|
||||||
"Open Modal To Manage Floating Quick Actions": "",
|
"Open Modal To Manage Floating Quick Actions": "",
|
||||||
"Open Modal To Manage Image Compression": "Άνοιγμα παραθύρου διαλόγου για διαχείριση συμπίεσης εικόνων",
|
"Open Modal To Manage Image Compression": "Άνοιγμα παραθύρου διαλόγου για διαχείριση συμπίεσης εικόνων",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "Άνοιγμα πλευρικής μπάρας",
|
"Open Sidebar": "Άνοιγμα πλευρικής μπάρας",
|
||||||
"Open User Profile Menu": "Άνοιγμα μενού προφίλ χρήστη",
|
"Open User Profile Menu": "Άνοιγμα μενού προφίλ χρήστη",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "",
|
"Prefer not to say": "",
|
||||||
"Prefix ID": "ID Προθέματος",
|
"Prefix ID": "ID Προθέματος",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Το ID Προθέματος χρησιμοποιείται για να αποφεύγονται συγκρούσεις με άλλες συνδέσεις προσθέτοντας ένα πρόθεμα στα IDs των μοντέλων - αφήστε κενό για απενεργοποίηση",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Το ID Προθέματος χρησιμοποιείται για να αποφεύγονται συγκρούσεις με άλλες συνδέσεις προσθέτοντας ένα πρόθεμα στα IDs των μοντέλων - αφήστε κενό για απενεργοποίηση",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "Προεπισκόπηση",
|
"Preview": "Προεπισκόπηση",
|
||||||
"Previous 30 days": "Προηγούμενες 30 ημέρες",
|
"Previous 30 days": "Προηγούμενες 30 ημέρες",
|
||||||
"Previous 7 days": "Προηγούμενες 7 ημέρες",
|
"Previous 7 days": "Προηγούμενες 7 ημέρες",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "Αρνήθηκε όταν δεν έπρεπε",
|
"Refused when it shouldn't have": "Αρνήθηκε όταν δεν έπρεπε",
|
||||||
"Regenerate": "Επαναδημιουργία",
|
"Regenerate": "Επαναδημιουργία",
|
||||||
"Regenerate Menu": "Επαναδημιουργία Μενού",
|
"Regenerate Menu": "Επαναδημιουργία Μενού",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "",
|
"Register Again": "",
|
||||||
"Register Client": "",
|
"Register Client": "",
|
||||||
"Registered": "",
|
"Registered": "",
|
||||||
|
|
@ -1439,6 +1457,7 @@
|
||||||
"Show Formatting Toolbar": "",
|
"Show Formatting Toolbar": "",
|
||||||
"Show image preview": "",
|
"Show image preview": "",
|
||||||
"Show Model": "",
|
"Show Model": "",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "Δείξτε την υποστήριξή σας!",
|
"Show your support!": "Δείξτε την υποστήριξή σας!",
|
||||||
"Showcased creativity": "Εμφανιζόμενη δημιουργικότητα",
|
"Showcased creativity": "Εμφανιζόμενη δημιουργικότητα",
|
||||||
"Sign in": "Σύνδεση",
|
"Sign in": "Σύνδεση",
|
||||||
|
|
@ -1474,6 +1493,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "Σταμάτημα",
|
"Stop": "Σταμάτημα",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "Σειρά Παύσης",
|
"Stop Sequence": "Σειρά Παύσης",
|
||||||
"Stream Chat Response": "Ροή Δεδομένων Απαντήσεων",
|
"Stream Chat Response": "Ροή Δεδομένων Απαντήσεων",
|
||||||
"Stream Delta Chunk Size": "Δέλτα Μεγέθους Τμήματος Ροής",
|
"Stream Delta Chunk Size": "Δέλτα Μεγέθους Τμήματος Ροής",
|
||||||
|
|
@ -1503,6 +1523,7 @@
|
||||||
"Tags Generation": "Δημιουργία Ετικετών",
|
"Tags Generation": "Δημιουργία Ετικετών",
|
||||||
"Tags Generation Prompt": "Προτροπή Δημιουργίας Ετικετών",
|
"Tags Generation Prompt": "Προτροπή Δημιουργίας Ετικετών",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "Πατήστε για παύση",
|
"Tap to interrupt": "Πατήστε για παύση",
|
||||||
"Task List": "Λίστα Εργασιών",
|
"Task List": "Λίστα Εργασιών",
|
||||||
"Task Model": "Μοντέλο Εργασίας",
|
"Task Model": "Μοντέλο Εργασίας",
|
||||||
|
|
@ -1584,6 +1605,7 @@
|
||||||
"Toast notifications for new updates": "Ειδοποιήσεις Toast για νέες ενημερώσεις",
|
"Toast notifications for new updates": "Ειδοποιήσεις Toast για νέες ενημερώσεις",
|
||||||
"Today": "Σήμερα",
|
"Today": "Σήμερα",
|
||||||
"Today at {{LOCALIZED_TIME}}": "Σήμερα στις {{LOCALIZED_TIME}}",
|
"Today at {{LOCALIZED_TIME}}": "Σήμερα στις {{LOCALIZED_TIME}}",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "",
|
"Toggle whether current connection is active.": "",
|
||||||
"Token": "",
|
"Token": "",
|
||||||
"Too verbose": "Πολύ λεπτομερές",
|
"Too verbose": "Πολύ λεπτομερές",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "",
|
||||||
"a user": "",
|
"a user": "",
|
||||||
"About": "",
|
"About": "",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "",
|
"Access": "",
|
||||||
"Access Control": "",
|
"Access Control": "",
|
||||||
"Accessible to all users": "",
|
"Accessible to all users": "",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "",
|
"Add Content": "",
|
||||||
"Add content here": "",
|
"Add content here": "",
|
||||||
"Add Custom Parameter": "",
|
"Add Custom Parameter": "",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "",
|
"Add Details": "",
|
||||||
"Add Files": "",
|
"Add Files": "",
|
||||||
"Add Group": "",
|
"Add Group": "",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "",
|
"Ask": "",
|
||||||
"Ask a question": "",
|
"Ask a question": "",
|
||||||
"Assistant": "",
|
"Assistant": "",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "",
|
"Attach Knowledge": "",
|
||||||
"Attach Notes": "",
|
"Attach Notes": "",
|
||||||
"Attach Webpage": "",
|
"Attach Webpage": "",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "",
|
"Close Banner": "",
|
||||||
"Close Configure Connection Modal": "",
|
"Close Configure Connection Modal": "",
|
||||||
"Close modal": "",
|
"Close modal": "",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "",
|
"Close settings modal": "",
|
||||||
"Close Sidebar": "",
|
"Close Sidebar": "",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "",
|
"Copied to clipboard": "",
|
||||||
"Copy": "",
|
"Copy": "",
|
||||||
"Copy Formatted Text": "",
|
"Copy Formatted Text": "",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "",
|
"Copy link": "",
|
||||||
"Copy Link": "",
|
"Copy Link": "",
|
||||||
"Copy to clipboard": "",
|
"Copy to clipboard": "",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "",
|
"Edit Default Permissions": "",
|
||||||
"Edit Folder": "",
|
"Edit Folder": "",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "",
|
"Edit Memory": "",
|
||||||
"Edit User": "",
|
"Edit User": "",
|
||||||
"Edit User Group": "",
|
"Edit User Group": "",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "",
|
"Firecrawl API Base URL": "",
|
||||||
"Firecrawl API Key": "",
|
"Firecrawl API Key": "",
|
||||||
"Floating Quick Actions": "",
|
"Floating Quick Actions": "",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "",
|
"Folder": "",
|
||||||
"Folder Background Image": "",
|
"Folder Background Image": "",
|
||||||
"Folder deleted successfully": "",
|
"Folder deleted successfully": "",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "",
|
"Generate": "",
|
||||||
"Generate an image": "",
|
"Generate an image": "",
|
||||||
"Generate Image": "",
|
"Generate Image": "",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "",
|
"Generated Image": "",
|
||||||
"Generating search query": "",
|
"Generating search query": "",
|
||||||
"Generating...": "",
|
"Generating...": "",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "",
|
"Memory updated successfully": "",
|
||||||
"Merge Responses": "",
|
"Merge Responses": "",
|
||||||
"Merged Response": "",
|
"Merged Response": "",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "",
|
"Message rating should be enabled to use this feature": "",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "",
|
||||||
"Microsoft OneDrive": "",
|
"Microsoft OneDrive": "",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "",
|
"New Note": "",
|
||||||
"New Password": "",
|
"New Password": "",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "",
|
"New Tool": "",
|
||||||
"new-channel": "",
|
"new-channel": "",
|
||||||
"Next message": "",
|
"Next message": "",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "",
|
"Ollama Version": "",
|
||||||
"On": "",
|
"On": "",
|
||||||
"OneDrive": "",
|
"OneDrive": "",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "",
|
"Only alphanumeric characters and hyphens are allowed": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
|
||||||
"Only markdown files are allowed": "",
|
"Only markdown files are allowed": "",
|
||||||
"Only select users and groups with permission can access": "",
|
"Only select users and groups with permission can access": "",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "",
|
"Open modal to configure connection": "",
|
||||||
"Open Modal To Manage Floating Quick Actions": "",
|
"Open Modal To Manage Floating Quick Actions": "",
|
||||||
"Open Modal To Manage Image Compression": "",
|
"Open Modal To Manage Image Compression": "",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "",
|
"Open Sidebar": "",
|
||||||
"Open User Profile Menu": "",
|
"Open User Profile Menu": "",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "",
|
"Prefer not to say": "",
|
||||||
"Prefix ID": "",
|
"Prefix ID": "",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "",
|
"Preview": "",
|
||||||
"Previous 30 days": "",
|
"Previous 30 days": "",
|
||||||
"Previous 7 days": "",
|
"Previous 7 days": "",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "",
|
"Refused when it shouldn't have": "",
|
||||||
"Regenerate": "",
|
"Regenerate": "",
|
||||||
"Regenerate Menu": "",
|
"Regenerate Menu": "",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "",
|
"Register Again": "",
|
||||||
"Register Client": "",
|
"Register Client": "",
|
||||||
"Registered": "",
|
"Registered": "",
|
||||||
|
|
@ -1439,6 +1457,7 @@
|
||||||
"Show Formatting Toolbar": "",
|
"Show Formatting Toolbar": "",
|
||||||
"Show image preview": "",
|
"Show image preview": "",
|
||||||
"Show Model": "",
|
"Show Model": "",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "",
|
"Show your support!": "",
|
||||||
"Showcased creativity": "",
|
"Showcased creativity": "",
|
||||||
"Sign in": "",
|
"Sign in": "",
|
||||||
|
|
@ -1474,6 +1493,7 @@
|
||||||
"STDOUT/STDERR": "",
|
"STDOUT/STDERR": "",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "",
|
"Stop": "",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "",
|
"Stop Sequence": "",
|
||||||
"Stream Chat Response": "",
|
"Stream Chat Response": "",
|
||||||
"Stream Delta Chunk Size": "",
|
"Stream Delta Chunk Size": "",
|
||||||
|
|
@ -1503,6 +1523,7 @@
|
||||||
"Tags Generation": "",
|
"Tags Generation": "",
|
||||||
"Tags Generation Prompt": "",
|
"Tags Generation Prompt": "",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "",
|
"Tap to interrupt": "",
|
||||||
"Task List": "",
|
"Task List": "",
|
||||||
"Task Model": "",
|
"Task Model": "",
|
||||||
|
|
@ -1584,6 +1605,7 @@
|
||||||
"Toast notifications for new updates": "",
|
"Toast notifications for new updates": "",
|
||||||
"Today": "",
|
"Today": "",
|
||||||
"Today at {{LOCALIZED_TIME}}": "",
|
"Today at {{LOCALIZED_TIME}}": "",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "",
|
"Toggle whether current connection is active.": "",
|
||||||
"Token": "",
|
"Token": "",
|
||||||
"Too verbose": "",
|
"Too verbose": "",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "",
|
||||||
"a user": "",
|
"a user": "",
|
||||||
"About": "",
|
"About": "",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "",
|
"Access": "",
|
||||||
"Access Control": "",
|
"Access Control": "",
|
||||||
"Accessible to all users": "",
|
"Accessible to all users": "",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "",
|
"Add Content": "",
|
||||||
"Add content here": "",
|
"Add content here": "",
|
||||||
"Add Custom Parameter": "",
|
"Add Custom Parameter": "",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "",
|
"Add Details": "",
|
||||||
"Add Files": "",
|
"Add Files": "",
|
||||||
"Add Group": "",
|
"Add Group": "",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "",
|
"Ask": "",
|
||||||
"Ask a question": "",
|
"Ask a question": "",
|
||||||
"Assistant": "",
|
"Assistant": "",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "",
|
"Attach Knowledge": "",
|
||||||
"Attach Notes": "",
|
"Attach Notes": "",
|
||||||
"Attach Webpage": "",
|
"Attach Webpage": "",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "",
|
"Close Banner": "",
|
||||||
"Close Configure Connection Modal": "",
|
"Close Configure Connection Modal": "",
|
||||||
"Close modal": "",
|
"Close modal": "",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "",
|
"Close settings modal": "",
|
||||||
"Close Sidebar": "",
|
"Close Sidebar": "",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "",
|
"Copied to clipboard": "",
|
||||||
"Copy": "",
|
"Copy": "",
|
||||||
"Copy Formatted Text": "",
|
"Copy Formatted Text": "",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "",
|
"Copy link": "",
|
||||||
"Copy Link": "",
|
"Copy Link": "",
|
||||||
"Copy to clipboard": "",
|
"Copy to clipboard": "",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "",
|
"Edit Default Permissions": "",
|
||||||
"Edit Folder": "",
|
"Edit Folder": "",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "",
|
"Edit Memory": "",
|
||||||
"Edit User": "",
|
"Edit User": "",
|
||||||
"Edit User Group": "",
|
"Edit User Group": "",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "",
|
"Firecrawl API Base URL": "",
|
||||||
"Firecrawl API Key": "",
|
"Firecrawl API Key": "",
|
||||||
"Floating Quick Actions": "",
|
"Floating Quick Actions": "",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "",
|
"Folder": "",
|
||||||
"Folder Background Image": "",
|
"Folder Background Image": "",
|
||||||
"Folder deleted successfully": "",
|
"Folder deleted successfully": "",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "",
|
"Generate": "",
|
||||||
"Generate an image": "",
|
"Generate an image": "",
|
||||||
"Generate Image": "",
|
"Generate Image": "",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "Generated Image",
|
"Generated Image": "Generated Image",
|
||||||
"Generating search query": "",
|
"Generating search query": "",
|
||||||
"Generating...": "",
|
"Generating...": "",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "",
|
"Memory updated successfully": "",
|
||||||
"Merge Responses": "",
|
"Merge Responses": "",
|
||||||
"Merged Response": "",
|
"Merged Response": "",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "",
|
"Message rating should be enabled to use this feature": "",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "",
|
||||||
"Microsoft OneDrive": "",
|
"Microsoft OneDrive": "",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "",
|
"New Note": "",
|
||||||
"New Password": "",
|
"New Password": "",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "",
|
"New Tool": "",
|
||||||
"new-channel": "",
|
"new-channel": "",
|
||||||
"Next message": "Next message",
|
"Next message": "Next message",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "",
|
"Ollama Version": "",
|
||||||
"On": "",
|
"On": "",
|
||||||
"OneDrive": "",
|
"OneDrive": "",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "",
|
"Only alphanumeric characters and hyphens are allowed": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
|
||||||
"Only markdown files are allowed": "",
|
"Only markdown files are allowed": "",
|
||||||
"Only select users and groups with permission can access": "",
|
"Only select users and groups with permission can access": "",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "",
|
"Open modal to configure connection": "",
|
||||||
"Open Modal To Manage Floating Quick Actions": "",
|
"Open Modal To Manage Floating Quick Actions": "",
|
||||||
"Open Modal To Manage Image Compression": "",
|
"Open Modal To Manage Image Compression": "",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "",
|
"Open Sidebar": "",
|
||||||
"Open User Profile Menu": "",
|
"Open User Profile Menu": "",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "",
|
"Prefer not to say": "",
|
||||||
"Prefix ID": "",
|
"Prefix ID": "",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "",
|
"Preview": "",
|
||||||
"Previous 30 days": "",
|
"Previous 30 days": "",
|
||||||
"Previous 7 days": "",
|
"Previous 7 days": "",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "",
|
"Refused when it shouldn't have": "",
|
||||||
"Regenerate": "",
|
"Regenerate": "",
|
||||||
"Regenerate Menu": "",
|
"Regenerate Menu": "",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "",
|
"Register Again": "",
|
||||||
"Register Client": "",
|
"Register Client": "",
|
||||||
"Registered": "",
|
"Registered": "",
|
||||||
|
|
@ -1439,6 +1457,7 @@
|
||||||
"Show Formatting Toolbar": "",
|
"Show Formatting Toolbar": "",
|
||||||
"Show image preview": "",
|
"Show image preview": "",
|
||||||
"Show Model": "",
|
"Show Model": "",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "",
|
"Show your support!": "",
|
||||||
"Showcased creativity": "",
|
"Showcased creativity": "",
|
||||||
"Sign in": "",
|
"Sign in": "",
|
||||||
|
|
@ -1474,6 +1493,7 @@
|
||||||
"STDOUT/STDERR": "",
|
"STDOUT/STDERR": "",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "",
|
"Stop": "",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "",
|
"Stop Sequence": "",
|
||||||
"Stream Chat Response": "",
|
"Stream Chat Response": "",
|
||||||
"Stream Delta Chunk Size": "",
|
"Stream Delta Chunk Size": "",
|
||||||
|
|
@ -1503,6 +1523,7 @@
|
||||||
"Tags Generation": "",
|
"Tags Generation": "",
|
||||||
"Tags Generation Prompt": "",
|
"Tags Generation Prompt": "",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "",
|
"Tap to interrupt": "",
|
||||||
"Task List": "",
|
"Task List": "",
|
||||||
"Task Model": "",
|
"Task Model": "",
|
||||||
|
|
@ -1584,6 +1605,7 @@
|
||||||
"Toast notifications for new updates": "",
|
"Toast notifications for new updates": "",
|
||||||
"Today": "",
|
"Today": "",
|
||||||
"Today at {{LOCALIZED_TIME}}": "",
|
"Today at {{LOCALIZED_TIME}}": "",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "",
|
"Toggle whether current connection is active.": "",
|
||||||
"Token": "",
|
"Token": "",
|
||||||
"Too verbose": "",
|
"Too verbose": "",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "El modelo de tareas realiza tareas como la generación de títulos para chats y consultas de búsqueda web",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "El modelo de tareas realiza tareas como la generación de títulos para chats y consultas de búsqueda web",
|
||||||
"a user": "un usuario",
|
"a user": "un usuario",
|
||||||
"About": "Acerca de",
|
"About": "Acerca de",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "Acceso",
|
"Access": "Acceso",
|
||||||
"Access Control": "Control de Acceso",
|
"Access Control": "Control de Acceso",
|
||||||
"Accessible to all users": "Accesible para todos los usuarios",
|
"Accessible to all users": "Accesible para todos los usuarios",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "Añadir Contenido",
|
"Add Content": "Añadir Contenido",
|
||||||
"Add content here": "Añadir contenido aquí",
|
"Add content here": "Añadir contenido aquí",
|
||||||
"Add Custom Parameter": "Añadir parámetro personalizado",
|
"Add Custom Parameter": "Añadir parámetro personalizado",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "Añadir Detalles",
|
"Add Details": "Añadir Detalles",
|
||||||
"Add Files": "Añadir Archivos",
|
"Add Files": "Añadir Archivos",
|
||||||
"Add Group": "Añadir Grupo",
|
"Add Group": "Añadir Grupo",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "Preguntar",
|
"Ask": "Preguntar",
|
||||||
"Ask a question": "Haz una pregunta",
|
"Ask a question": "Haz una pregunta",
|
||||||
"Assistant": "Asistente",
|
"Assistant": "Asistente",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "Adjuntar Conocimiento",
|
"Attach Knowledge": "Adjuntar Conocimiento",
|
||||||
"Attach Notes": "Adjuntar Notas",
|
"Attach Notes": "Adjuntar Notas",
|
||||||
"Attach Webpage": "Adjuntar Página Web",
|
"Attach Webpage": "Adjuntar Página Web",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "Cerrar Banner",
|
"Close Banner": "Cerrar Banner",
|
||||||
"Close Configure Connection Modal": "Cerrar modal Configurar la Conexión",
|
"Close Configure Connection Modal": "Cerrar modal Configurar la Conexión",
|
||||||
"Close modal": "Cerrar modal",
|
"Close modal": "Cerrar modal",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "Cerrar modal configuraciones",
|
"Close settings modal": "Cerrar modal configuraciones",
|
||||||
"Close Sidebar": "Cerrar Barra Lateral",
|
"Close Sidebar": "Cerrar Barra Lateral",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "Copiado al portapapeles",
|
"Copied to clipboard": "Copiado al portapapeles",
|
||||||
"Copy": "Copiar",
|
"Copy": "Copiar",
|
||||||
"Copy Formatted Text": "Copiar Texto Formateado",
|
"Copy Formatted Text": "Copiar Texto Formateado",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "Copiar Enlace",
|
"Copy link": "Copiar Enlace",
|
||||||
"Copy Link": "Copiar enlace",
|
"Copy Link": "Copiar enlace",
|
||||||
"Copy to clipboard": "Copia a portapapeles",
|
"Copy to clipboard": "Copia a portapapeles",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "Editar Permisos Predeterminados",
|
"Edit Default Permissions": "Editar Permisos Predeterminados",
|
||||||
"Edit Folder": "Editar Carpeta",
|
"Edit Folder": "Editar Carpeta",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "Editar Memoria",
|
"Edit Memory": "Editar Memoria",
|
||||||
"Edit User": "Editar Usuario",
|
"Edit User": "Editar Usuario",
|
||||||
"Edit User Group": "Editar Grupo de Usuarios",
|
"Edit User Group": "Editar Grupo de Usuarios",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "URL Base de API de Firecrawl",
|
"Firecrawl API Base URL": "URL Base de API de Firecrawl",
|
||||||
"Firecrawl API Key": "Clave de API de Firecrawl",
|
"Firecrawl API Key": "Clave de API de Firecrawl",
|
||||||
"Floating Quick Actions": "Acciones Rápidas Flotantes",
|
"Floating Quick Actions": "Acciones Rápidas Flotantes",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "Carpeta",
|
"Folder": "Carpeta",
|
||||||
"Folder Background Image": "Imagen de Fondo de la Carpeta",
|
"Folder Background Image": "Imagen de Fondo de la Carpeta",
|
||||||
"Folder deleted successfully": "Carpeta eliminada correctamente",
|
"Folder deleted successfully": "Carpeta eliminada correctamente",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "Generar",
|
"Generate": "Generar",
|
||||||
"Generate an image": "Generar una imagen",
|
"Generate an image": "Generar una imagen",
|
||||||
"Generate Image": "Generar imagen",
|
"Generate Image": "Generar imagen",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "Imagen Generada",
|
"Generated Image": "Imagen Generada",
|
||||||
"Generating search query": "Generando consulta de búsqueda",
|
"Generating search query": "Generando consulta de búsqueda",
|
||||||
"Generating...": "Generando",
|
"Generating...": "Generando",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "Memoria actualizada correctamente",
|
"Memory updated successfully": "Memoria actualizada correctamente",
|
||||||
"Merge Responses": "Fusionar Respuestas",
|
"Merge Responses": "Fusionar Respuestas",
|
||||||
"Merged Response": "Respuesta combinada",
|
"Merged Response": "Respuesta combinada",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "Para usar esta función debe estar habilitada la calificación de mensajes",
|
"Message rating should be enabled to use this feature": "Para usar esta función debe estar habilitada la calificación de mensajes",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Los mensajes que envíe después de la creación del enlace no se compartirán. Los usuarios con la URL del enlace podrán ver el chat compartido.",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Los mensajes que envíe después de la creación del enlace no se compartirán. Los usuarios con la URL del enlace podrán ver el chat compartido.",
|
||||||
"Microsoft OneDrive": "Microsoft OneDrive",
|
"Microsoft OneDrive": "Microsoft OneDrive",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "Nueva Nota",
|
"New Note": "Nueva Nota",
|
||||||
"New Password": "Nueva Contraseña",
|
"New Password": "Nueva Contraseña",
|
||||||
"New Prompt": "Nuevo Indicador",
|
"New Prompt": "Nuevo Indicador",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "Nueva Herramienta",
|
"New Tool": "Nueva Herramienta",
|
||||||
"new-channel": "nuevo-canal",
|
"new-channel": "nuevo-canal",
|
||||||
"Next message": "Siguiente mensaje",
|
"Next message": "Siguiente mensaje",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Versión de Ollama",
|
"Ollama Version": "Versión de Ollama",
|
||||||
"On": "Activado",
|
"On": "Activado",
|
||||||
"OneDrive": "OneDrive",
|
"OneDrive": "OneDrive",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "Sólo están permitidos caracteres alfanuméricos y guiones",
|
"Only alphanumeric characters and hyphens are allowed": "Sólo están permitidos caracteres alfanuméricos y guiones",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "Sólo están permitidos en la cadena de comandos caracteres alfanuméricos y guiones.",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "Sólo están permitidos en la cadena de comandos caracteres alfanuméricos y guiones.",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Solo se pueden editar las colecciones, para añadir/editar documentos hay que crear una nueva base de conocimientos",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Solo se pueden editar las colecciones, para añadir/editar documentos hay que crear una nueva base de conocimientos",
|
||||||
"Only markdown files are allowed": "Solo están permitidos archivos markdown",
|
"Only markdown files are allowed": "Solo están permitidos archivos markdown",
|
||||||
"Only select users and groups with permission can access": "Solo pueden acceder los usuarios y grupos con permiso",
|
"Only select users and groups with permission can access": "Solo pueden acceder los usuarios y grupos con permiso",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "Abrir modal para configurar la conexión",
|
"Open modal to configure connection": "Abrir modal para configurar la conexión",
|
||||||
"Open Modal To Manage Floating Quick Actions": "Abrir Modal para Gestionar Acciones Rápidas Flotantes",
|
"Open Modal To Manage Floating Quick Actions": "Abrir Modal para Gestionar Acciones Rápidas Flotantes",
|
||||||
"Open Modal To Manage Image Compression": "Abrir Modal para Gestionar Compresión de Imagen",
|
"Open Modal To Manage Image Compression": "Abrir Modal para Gestionar Compresión de Imagen",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "Abrir Barra Lateral",
|
"Open Sidebar": "Abrir Barra Lateral",
|
||||||
"Open User Profile Menu": "Abrir Menu de Perfiles de Usuario",
|
"Open User Profile Menu": "Abrir Menu de Perfiles de Usuario",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "Open-WebUI puede usar herramientas proporcionadas por cualquier servidor OpenAPI",
|
"Open WebUI can use tools provided by any OpenAPI server.": "Open-WebUI puede usar herramientas proporcionadas por cualquier servidor OpenAPI",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "Prefiero no decirlo",
|
"Prefer not to say": "Prefiero no decirlo",
|
||||||
"Prefix ID": "prefijo ID",
|
"Prefix ID": "prefijo ID",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "El prefijo ID se utiliza para evitar conflictos con otras conexiones al añadir un prefijo a los IDs de modelo, dejar vacío para deshabilitarlo",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "El prefijo ID se utiliza para evitar conflictos con otras conexiones al añadir un prefijo a los IDs de modelo, dejar vacío para deshabilitarlo",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "Previsualización",
|
"Preview": "Previsualización",
|
||||||
"Previous 30 days": "30 días previos",
|
"Previous 30 days": "30 días previos",
|
||||||
"Previous 7 days": "7 días previos",
|
"Previous 7 days": "7 días previos",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "Rechazado cuando no debería haberlo hecho",
|
"Refused when it shouldn't have": "Rechazado cuando no debería haberlo hecho",
|
||||||
"Regenerate": "Regenerar",
|
"Regenerate": "Regenerar",
|
||||||
"Regenerate Menu": "Regenerar Menú",
|
"Regenerate Menu": "Regenerar Menú",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "Volver a Registrar",
|
"Register Again": "Volver a Registrar",
|
||||||
"Register Client": "Registrar Cliente",
|
"Register Client": "Registrar Cliente",
|
||||||
"Registered": "Registrado",
|
"Registered": "Registrado",
|
||||||
|
|
@ -1440,6 +1458,7 @@
|
||||||
"Show Formatting Toolbar": "Mostrar barra de herramientas de Formateo",
|
"Show Formatting Toolbar": "Mostrar barra de herramientas de Formateo",
|
||||||
"Show image preview": "Mostrar previsualización de imagen",
|
"Show image preview": "Mostrar previsualización de imagen",
|
||||||
"Show Model": "Mostrar Modelo",
|
"Show Model": "Mostrar Modelo",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "¡Muestra tu apoyo!",
|
"Show your support!": "¡Muestra tu apoyo!",
|
||||||
"Showcased creativity": "Creatividad exhibida",
|
"Showcased creativity": "Creatividad exhibida",
|
||||||
"Sign in": "Iniciar Sesión",
|
"Sign in": "Iniciar Sesión",
|
||||||
|
|
@ -1475,6 +1494,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "Detener",
|
"Stop": "Detener",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "Secuencia de Parada",
|
"Stop Sequence": "Secuencia de Parada",
|
||||||
"Stream Chat Response": "Transmisión Directa de la Respuesta del Chat",
|
"Stream Chat Response": "Transmisión Directa de la Respuesta del Chat",
|
||||||
"Stream Delta Chunk Size": "Tamaño del Fragmentado Incremental para la Transmisión Directa",
|
"Stream Delta Chunk Size": "Tamaño del Fragmentado Incremental para la Transmisión Directa",
|
||||||
|
|
@ -1504,6 +1524,7 @@
|
||||||
"Tags Generation": "Generación de Etiquetas",
|
"Tags Generation": "Generación de Etiquetas",
|
||||||
"Tags Generation Prompt": "Indicador para la Generación de Etiquetas",
|
"Tags Generation Prompt": "Indicador para la Generación de Etiquetas",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "El Muestreo de cola libre(TFS_Z) es usado para reducir el impacto de los tokens menos probables en la salida. Un valor más alto (p.ej. 2.0) reduce más fuertemente el impacto, mientras que un valor de 1.0 deshabilita este ajuste.",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "El Muestreo de cola libre(TFS_Z) es usado para reducir el impacto de los tokens menos probables en la salida. Un valor más alto (p.ej. 2.0) reduce más fuertemente el impacto, mientras que un valor de 1.0 deshabilita este ajuste.",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "Toca para interrumpir",
|
"Tap to interrupt": "Toca para interrumpir",
|
||||||
"Task List": "Lista de Tareas",
|
"Task List": "Lista de Tareas",
|
||||||
"Task Model": "Modelo de Tarea",
|
"Task Model": "Modelo de Tarea",
|
||||||
|
|
@ -1585,6 +1606,7 @@
|
||||||
"Toast notifications for new updates": "Notificaciones emergentes para nuevas actualizaciones",
|
"Toast notifications for new updates": "Notificaciones emergentes para nuevas actualizaciones",
|
||||||
"Today": "Hoy",
|
"Today": "Hoy",
|
||||||
"Today at {{LOCALIZED_TIME}}": "Hoy a las {{LOCALIZED_TIME}}",
|
"Today at {{LOCALIZED_TIME}}": "Hoy a las {{LOCALIZED_TIME}}",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "Alternar si la conexión actual está activa",
|
"Toggle whether current connection is active.": "Alternar si la conexión actual está activa",
|
||||||
"Token": "Token",
|
"Token": "Token",
|
||||||
"Too verbose": "Demasiado detallado",
|
"Too verbose": "Demasiado detallado",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Ülesande mudelit kasutatakse selliste toimingute jaoks nagu vestluste pealkirjade ja veebiotsingu päringute genereerimine",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Ülesande mudelit kasutatakse selliste toimingute jaoks nagu vestluste pealkirjade ja veebiotsingu päringute genereerimine",
|
||||||
"a user": "kasutaja",
|
"a user": "kasutaja",
|
||||||
"About": "Teave",
|
"About": "Teave",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "Juurdepääs",
|
"Access": "Juurdepääs",
|
||||||
"Access Control": "Juurdepääsu kontroll",
|
"Access Control": "Juurdepääsu kontroll",
|
||||||
"Accessible to all users": "Kättesaadav kõigile kasutajatele",
|
"Accessible to all users": "Kättesaadav kõigile kasutajatele",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "Lisa sisu",
|
"Add Content": "Lisa sisu",
|
||||||
"Add content here": "Lisa siia sisu",
|
"Add content here": "Lisa siia sisu",
|
||||||
"Add Custom Parameter": "Lisa kohandatud parameeter",
|
"Add Custom Parameter": "Lisa kohandatud parameeter",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "Lisa üksikasjad",
|
"Add Details": "Lisa üksikasjad",
|
||||||
"Add Files": "Lisa faile",
|
"Add Files": "Lisa faile",
|
||||||
"Add Group": "Lisa grupp",
|
"Add Group": "Lisa grupp",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "Küsi",
|
"Ask": "Küsi",
|
||||||
"Ask a question": "Esita küsimus",
|
"Ask a question": "Esita küsimus",
|
||||||
"Assistant": "Assistent",
|
"Assistant": "Assistent",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "Lisa teadmised",
|
"Attach Knowledge": "Lisa teadmised",
|
||||||
"Attach Notes": "Lisa märkmed",
|
"Attach Notes": "Lisa märkmed",
|
||||||
"Attach Webpage": "Lisa veebileht",
|
"Attach Webpage": "Lisa veebileht",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "Sulge bänner",
|
"Close Banner": "Sulge bänner",
|
||||||
"Close Configure Connection Modal": "Sulge ühenduse seadistamise aken",
|
"Close Configure Connection Modal": "Sulge ühenduse seadistamise aken",
|
||||||
"Close modal": "Sulge aken",
|
"Close modal": "Sulge aken",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "Sulge seadete aken",
|
"Close settings modal": "Sulge seadete aken",
|
||||||
"Close Sidebar": "Sulge külgriba",
|
"Close Sidebar": "Sulge külgriba",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "Kopeeritud lõikelauale",
|
"Copied to clipboard": "Kopeeritud lõikelauale",
|
||||||
"Copy": "Kopeeri",
|
"Copy": "Kopeeri",
|
||||||
"Copy Formatted Text": "Kopeeri vormindatud tekst",
|
"Copy Formatted Text": "Kopeeri vormindatud tekst",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "Kopeeri link",
|
"Copy link": "Kopeeri link",
|
||||||
"Copy Link": "Kopeeri link",
|
"Copy Link": "Kopeeri link",
|
||||||
"Copy to clipboard": "Kopeeri lõikelauale",
|
"Copy to clipboard": "Kopeeri lõikelauale",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "Muuda vaikimisi õigusi",
|
"Edit Default Permissions": "Muuda vaikimisi õigusi",
|
||||||
"Edit Folder": "Muuda kausta",
|
"Edit Folder": "Muuda kausta",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "Muuda mälu",
|
"Edit Memory": "Muuda mälu",
|
||||||
"Edit User": "Muuda kasutajat",
|
"Edit User": "Muuda kasutajat",
|
||||||
"Edit User Group": "Muuda kasutajagruppi",
|
"Edit User Group": "Muuda kasutajagruppi",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "Firecrawl API Base URL",
|
"Firecrawl API Base URL": "Firecrawl API Base URL",
|
||||||
"Firecrawl API Key": "Firecrawl API Võti",
|
"Firecrawl API Key": "Firecrawl API Võti",
|
||||||
"Floating Quick Actions": "Floating Quick Actions",
|
"Floating Quick Actions": "Floating Quick Actions",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "Kaust",
|
"Folder": "Kaust",
|
||||||
"Folder Background Image": "Kausta taustpilt",
|
"Folder Background Image": "Kausta taustpilt",
|
||||||
"Folder deleted successfully": "Kaust edukalt kustutatud",
|
"Folder deleted successfully": "Kaust edukalt kustutatud",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "Generate",
|
"Generate": "Generate",
|
||||||
"Generate an image": "Genereeri pilt",
|
"Generate an image": "Genereeri pilt",
|
||||||
"Generate Image": "Genereeri pilt",
|
"Generate Image": "Genereeri pilt",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "Genereeritud pilt",
|
"Generated Image": "Genereeritud pilt",
|
||||||
"Generating search query": "Otsinguküsimuse genereerimine",
|
"Generating search query": "Otsinguküsimuse genereerimine",
|
||||||
"Generating...": "Genereerimine...",
|
"Generating...": "Genereerimine...",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "Mälu edukalt uuendatud",
|
"Memory updated successfully": "Mälu edukalt uuendatud",
|
||||||
"Merge Responses": "Ühenda vastused",
|
"Merge Responses": "Ühenda vastused",
|
||||||
"Merged Response": "Kombineeritud vastus",
|
"Merged Response": "Kombineeritud vastus",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "Selle funktsiooni kasutamiseks peaks sõnumite hindamine olema lubatud",
|
"Message rating should be enabled to use this feature": "Selle funktsiooni kasutamiseks peaks sõnumite hindamine olema lubatud",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Teie saadetud sõnumeid pärast lingi loomist ei jagata. Kasutajad, kellel on URL, saavad vaadata jagatud vestlust.",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Teie saadetud sõnumeid pärast lingi loomist ei jagata. Kasutajad, kellel on URL, saavad vaadata jagatud vestlust.",
|
||||||
"Microsoft OneDrive": "Microsoft OneDrive",
|
"Microsoft OneDrive": "Microsoft OneDrive",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "Uus märge",
|
"New Note": "Uus märge",
|
||||||
"New Password": "Uus parool",
|
"New Password": "Uus parool",
|
||||||
"New Prompt": "Uus vihje",
|
"New Prompt": "Uus vihje",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "Uus tööriist",
|
"New Tool": "Uus tööriist",
|
||||||
"new-channel": "uus-kanal",
|
"new-channel": "uus-kanal",
|
||||||
"Next message": "Järgmine sõnum",
|
"Next message": "Järgmine sõnum",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Ollama versioon",
|
"Ollama Version": "Ollama versioon",
|
||||||
"On": "Sees",
|
"On": "Sees",
|
||||||
"OneDrive": "OneDrive",
|
"OneDrive": "OneDrive",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "Lubatud on ainult tähtede-numbrite kombinatsioonid ja sidekriipsud",
|
"Only alphanumeric characters and hyphens are allowed": "Lubatud on ainult tähtede-numbrite kombinatsioonid ja sidekriipsud",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "Käsustringis on lubatud ainult tähtede-numbrite kombinatsioonid ja sidekriipsud.",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "Käsustringis on lubatud ainult tähtede-numbrite kombinatsioonid ja sidekriipsud.",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Muuta saab ainult kogusid, dokumentide muutmiseks/lisamiseks looge uus teadmiste baas.",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Muuta saab ainult kogusid, dokumentide muutmiseks/lisamiseks looge uus teadmiste baas.",
|
||||||
"Only markdown files are allowed": "Only markdown failid are allowed",
|
"Only markdown files are allowed": "Only markdown failid are allowed",
|
||||||
"Only select users and groups with permission can access": "Juurdepääs on ainult valitud õigustega kasutajatel ja gruppidel",
|
"Only select users and groups with permission can access": "Juurdepääs on ainult valitud õigustega kasutajatel ja gruppidel",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "Ava modal kuni configure connection",
|
"Open modal to configure connection": "Ava modal kuni configure connection",
|
||||||
"Open Modal To Manage Floating Quick Actions": "Ava Modal Kuni Manage Floating Quick Actions",
|
"Open Modal To Manage Floating Quick Actions": "Ava Modal Kuni Manage Floating Quick Actions",
|
||||||
"Open Modal To Manage Image Compression": "Ava Modal Kuni Manage Pilt Compression",
|
"Open Modal To Manage Image Compression": "Ava Modal Kuni Manage Pilt Compression",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "Ava Sidebar",
|
"Open Sidebar": "Ava Sidebar",
|
||||||
"Open User Profile Menu": "Ava Kasutaja Profile Menu",
|
"Open User Profile Menu": "Ava Kasutaja Profile Menu",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "Ava WebUI can use tööriista provided autor any OpenAPI server.",
|
"Open WebUI can use tools provided by any OpenAPI server.": "Ava WebUI can use tööriista provided autor any OpenAPI server.",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "Prefer not kuni say",
|
"Prefer not to say": "Prefer not kuni say",
|
||||||
"Prefix ID": "Prefiksi ID",
|
"Prefix ID": "Prefiksi ID",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefiksi ID-d kasutatakse teiste ühendustega konfliktide vältimiseks, lisades mudeli ID-dele prefiksi - jätke tühjaks keelamiseks",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefiksi ID-d kasutatakse teiste ühendustega konfliktide vältimiseks, lisades mudeli ID-dele prefiksi - jätke tühjaks keelamiseks",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "Preview",
|
"Preview": "Preview",
|
||||||
"Previous 30 days": "Eelmised 30 päeva",
|
"Previous 30 days": "Eelmised 30 päeva",
|
||||||
"Previous 7 days": "Eelmised 7 päeva",
|
"Previous 7 days": "Eelmised 7 päeva",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "Keeldus, kui ei oleks pidanud",
|
"Refused when it shouldn't have": "Keeldus, kui ei oleks pidanud",
|
||||||
"Regenerate": "Regenereeri",
|
"Regenerate": "Regenereeri",
|
||||||
"Regenerate Menu": "Regenerate Menu",
|
"Regenerate Menu": "Regenerate Menu",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "Registreeru Again",
|
"Register Again": "Registreeru Again",
|
||||||
"Register Client": "Registreeru Client",
|
"Register Client": "Registreeru Client",
|
||||||
"Registered": "Registered",
|
"Registered": "Registered",
|
||||||
|
|
@ -1439,6 +1457,7 @@
|
||||||
"Show Formatting Toolbar": "Kuva Formatting Toolbar",
|
"Show Formatting Toolbar": "Kuva Formatting Toolbar",
|
||||||
"Show image preview": "Kuva pilt preview",
|
"Show image preview": "Kuva pilt preview",
|
||||||
"Show Model": "Kuva Mudel",
|
"Show Model": "Kuva Mudel",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "Näita oma toetust!",
|
"Show your support!": "Näita oma toetust!",
|
||||||
"Showcased creativity": "Näitas loovust",
|
"Showcased creativity": "Näitas loovust",
|
||||||
"Sign in": "Logi sisse",
|
"Sign in": "Logi sisse",
|
||||||
|
|
@ -1474,6 +1493,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "Peata",
|
"Stop": "Peata",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "Lõpetamise järjestus",
|
"Stop Sequence": "Lõpetamise järjestus",
|
||||||
"Stream Chat Response": "Voogedasta vestluse vastust",
|
"Stream Chat Response": "Voogedasta vestluse vastust",
|
||||||
"Stream Delta Chunk Size": "Stream Delta Chunk Size",
|
"Stream Delta Chunk Size": "Stream Delta Chunk Size",
|
||||||
|
|
@ -1503,6 +1523,7 @@
|
||||||
"Tags Generation": "Siltide genereerimine",
|
"Tags Generation": "Siltide genereerimine",
|
||||||
"Tags Generation Prompt": "Siltide genereerimise vihje",
|
"Tags Generation Prompt": "Siltide genereerimise vihje",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Saba vaba valimit kasutatakse väljundis vähem tõenäoliste tokenite mõju vähendamiseks. Kõrgem väärtus (nt 2,0) vähendab mõju rohkem, samas kui väärtus 1,0 keelab selle seade.",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Saba vaba valimit kasutatakse väljundis vähem tõenäoliste tokenite mõju vähendamiseks. Kõrgem väärtus (nt 2,0) vähendab mõju rohkem, samas kui väärtus 1,0 keelab selle seade.",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "Puuduta katkestamiseks",
|
"Tap to interrupt": "Puuduta katkestamiseks",
|
||||||
"Task List": "Task List",
|
"Task List": "Task List",
|
||||||
"Task Model": "Task Mudel",
|
"Task Model": "Task Mudel",
|
||||||
|
|
@ -1584,6 +1605,7 @@
|
||||||
"Toast notifications for new updates": "Hüpikmärguanded uuenduste kohta",
|
"Toast notifications for new updates": "Hüpikmärguanded uuenduste kohta",
|
||||||
"Today": "Täna",
|
"Today": "Täna",
|
||||||
"Today at {{LOCALIZED_TIME}}": "Täna kell {{LOCALIZED_TIME}}",
|
"Today at {{LOCALIZED_TIME}}": "Täna kell {{LOCALIZED_TIME}}",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "Toggle whether current connection is aktiivne.",
|
"Toggle whether current connection is active.": "Toggle whether current connection is aktiivne.",
|
||||||
"Token": "Token",
|
"Token": "Token",
|
||||||
"Too verbose": "Liiga paljusõnaline",
|
"Too verbose": "Liiga paljusõnaline",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Ataza eredua erabiltzen da txatentzako izenburuak eta web bilaketa kontsultak sortzeko bezalako atazak egitean",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Ataza eredua erabiltzen da txatentzako izenburuak eta web bilaketa kontsultak sortzeko bezalako atazak egitean",
|
||||||
"a user": "erabiltzaile bat",
|
"a user": "erabiltzaile bat",
|
||||||
"About": "Honi buruz",
|
"About": "Honi buruz",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "Sarbidea",
|
"Access": "Sarbidea",
|
||||||
"Access Control": "Sarbide Kontrola",
|
"Access Control": "Sarbide Kontrola",
|
||||||
"Accessible to all users": "Erabiltzaile guztientzat eskuragarri",
|
"Accessible to all users": "Erabiltzaile guztientzat eskuragarri",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "Gehitu Edukia",
|
"Add Content": "Gehitu Edukia",
|
||||||
"Add content here": "Gehitu edukia hemen",
|
"Add content here": "Gehitu edukia hemen",
|
||||||
"Add Custom Parameter": "",
|
"Add Custom Parameter": "",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "",
|
"Add Details": "",
|
||||||
"Add Files": "Gehitu Fitxategiak",
|
"Add Files": "Gehitu Fitxategiak",
|
||||||
"Add Group": "Gehitu Taldea",
|
"Add Group": "Gehitu Taldea",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "",
|
"Ask": "",
|
||||||
"Ask a question": "Egin galdera bat",
|
"Ask a question": "Egin galdera bat",
|
||||||
"Assistant": "Laguntzailea",
|
"Assistant": "Laguntzailea",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "",
|
"Attach Knowledge": "",
|
||||||
"Attach Notes": "",
|
"Attach Notes": "",
|
||||||
"Attach Webpage": "",
|
"Attach Webpage": "",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "",
|
"Close Banner": "",
|
||||||
"Close Configure Connection Modal": "",
|
"Close Configure Connection Modal": "",
|
||||||
"Close modal": "",
|
"Close modal": "",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "",
|
"Close settings modal": "",
|
||||||
"Close Sidebar": "",
|
"Close Sidebar": "",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "Arbelera kopiatuta",
|
"Copied to clipboard": "Arbelera kopiatuta",
|
||||||
"Copy": "Kopiatu",
|
"Copy": "Kopiatu",
|
||||||
"Copy Formatted Text": "",
|
"Copy Formatted Text": "",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "",
|
"Copy link": "",
|
||||||
"Copy Link": "Kopiatu Esteka",
|
"Copy Link": "Kopiatu Esteka",
|
||||||
"Copy to clipboard": "Kopiatu arbelera",
|
"Copy to clipboard": "Kopiatu arbelera",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "Editatu Baimen Lehenetsiak",
|
"Edit Default Permissions": "Editatu Baimen Lehenetsiak",
|
||||||
"Edit Folder": "",
|
"Edit Folder": "",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "Editatu Memoria",
|
"Edit Memory": "Editatu Memoria",
|
||||||
"Edit User": "Editatu Erabiltzailea",
|
"Edit User": "Editatu Erabiltzailea",
|
||||||
"Edit User Group": "Editatu Erabiltzaile Taldea",
|
"Edit User Group": "Editatu Erabiltzaile Taldea",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "",
|
"Firecrawl API Base URL": "",
|
||||||
"Firecrawl API Key": "",
|
"Firecrawl API Key": "",
|
||||||
"Floating Quick Actions": "",
|
"Floating Quick Actions": "",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "",
|
"Folder": "",
|
||||||
"Folder Background Image": "",
|
"Folder Background Image": "",
|
||||||
"Folder deleted successfully": "Karpeta ongi ezabatu da",
|
"Folder deleted successfully": "Karpeta ongi ezabatu da",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "",
|
"Generate": "",
|
||||||
"Generate an image": "",
|
"Generate an image": "",
|
||||||
"Generate Image": "Sortu Irudia",
|
"Generate Image": "Sortu Irudia",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "",
|
"Generated Image": "",
|
||||||
"Generating search query": "Bilaketa kontsulta sortzen",
|
"Generating search query": "Bilaketa kontsulta sortzen",
|
||||||
"Generating...": "",
|
"Generating...": "",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "Memoria ongi eguneratu da",
|
"Memory updated successfully": "Memoria ongi eguneratu da",
|
||||||
"Merge Responses": "Batu erantzunak",
|
"Merge Responses": "Batu erantzunak",
|
||||||
"Merged Response": "Erantzun bateratua",
|
"Merged Response": "Erantzun bateratua",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "Mezuen balorazioa gaitu behar da funtzionalitate hau erabiltzeko",
|
"Message rating should be enabled to use this feature": "Mezuen balorazioa gaitu behar da funtzionalitate hau erabiltzeko",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Esteka sortu ondoren bidaltzen dituzun mezuak ez dira partekatuko. URLa duten erabiltzaileek partekatutako txata ikusi ahal izango dute.",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Esteka sortu ondoren bidaltzen dituzun mezuak ez dira partekatuko. URLa duten erabiltzaileek partekatutako txata ikusi ahal izango dute.",
|
||||||
"Microsoft OneDrive": "",
|
"Microsoft OneDrive": "",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "",
|
"New Note": "",
|
||||||
"New Password": "Pasahitz berria",
|
"New Password": "Pasahitz berria",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "",
|
"New Tool": "",
|
||||||
"new-channel": "",
|
"new-channel": "",
|
||||||
"Next message": "",
|
"Next message": "",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Ollama bertsioa",
|
"Ollama Version": "Ollama bertsioa",
|
||||||
"On": "Piztuta",
|
"On": "Piztuta",
|
||||||
"OneDrive": "",
|
"OneDrive": "",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "Karaktere alfanumerikoak eta marratxoak soilik onartzen dira",
|
"Only alphanumeric characters and hyphens are allowed": "Karaktere alfanumerikoak eta marratxoak soilik onartzen dira",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "Karaktere alfanumerikoak eta marratxoak soilik onartzen dira komando katean.",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "Karaktere alfanumerikoak eta marratxoak soilik onartzen dira komando katean.",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Bildumak soilik edita daitezke, sortu ezagutza-base berri bat dokumentuak editatzeko/gehitzeko.",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Bildumak soilik edita daitezke, sortu ezagutza-base berri bat dokumentuak editatzeko/gehitzeko.",
|
||||||
"Only markdown files are allowed": "",
|
"Only markdown files are allowed": "",
|
||||||
"Only select users and groups with permission can access": "Baimena duten erabiltzaile eta talde hautatuek soilik sar daitezke",
|
"Only select users and groups with permission can access": "Baimena duten erabiltzaile eta talde hautatuek soilik sar daitezke",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "",
|
"Open modal to configure connection": "",
|
||||||
"Open Modal To Manage Floating Quick Actions": "",
|
"Open Modal To Manage Floating Quick Actions": "",
|
||||||
"Open Modal To Manage Image Compression": "",
|
"Open Modal To Manage Image Compression": "",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "",
|
"Open Sidebar": "",
|
||||||
"Open User Profile Menu": "",
|
"Open User Profile Menu": "",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "",
|
"Prefer not to say": "",
|
||||||
"Prefix ID": "Aurrizki ID",
|
"Prefix ID": "Aurrizki ID",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Aurrizki IDa erabiltzen da beste konexioekin gatazkak saihesteko modelo IDei aurrizki bat gehituz - utzi hutsik desgaitzeko",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Aurrizki IDa erabiltzen da beste konexioekin gatazkak saihesteko modelo IDei aurrizki bat gehituz - utzi hutsik desgaitzeko",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "",
|
"Preview": "",
|
||||||
"Previous 30 days": "Aurreko 30 egunak",
|
"Previous 30 days": "Aurreko 30 egunak",
|
||||||
"Previous 7 days": "Aurreko 7 egunak",
|
"Previous 7 days": "Aurreko 7 egunak",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "Ukatu duenean ukatu behar ez zuenean",
|
"Refused when it shouldn't have": "Ukatu duenean ukatu behar ez zuenean",
|
||||||
"Regenerate": "Bersortu",
|
"Regenerate": "Bersortu",
|
||||||
"Regenerate Menu": "",
|
"Regenerate Menu": "",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "",
|
"Register Again": "",
|
||||||
"Register Client": "",
|
"Register Client": "",
|
||||||
"Registered": "",
|
"Registered": "",
|
||||||
|
|
@ -1439,6 +1457,7 @@
|
||||||
"Show Formatting Toolbar": "",
|
"Show Formatting Toolbar": "",
|
||||||
"Show image preview": "",
|
"Show image preview": "",
|
||||||
"Show Model": "",
|
"Show Model": "",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "Erakutsi zure babesa!",
|
"Show your support!": "Erakutsi zure babesa!",
|
||||||
"Showcased creativity": "Erakutsitako sormena",
|
"Showcased creativity": "Erakutsitako sormena",
|
||||||
"Sign in": "Hasi saioa",
|
"Sign in": "Hasi saioa",
|
||||||
|
|
@ -1474,6 +1493,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "Gelditu",
|
"Stop": "Gelditu",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "Gelditzeko sekuentzia",
|
"Stop Sequence": "Gelditzeko sekuentzia",
|
||||||
"Stream Chat Response": "Transmititu txat erantzuna",
|
"Stream Chat Response": "Transmititu txat erantzuna",
|
||||||
"Stream Delta Chunk Size": "",
|
"Stream Delta Chunk Size": "",
|
||||||
|
|
@ -1503,6 +1523,7 @@
|
||||||
"Tags Generation": "",
|
"Tags Generation": "",
|
||||||
"Tags Generation Prompt": "Etiketa sortzeko prompta",
|
"Tags Generation Prompt": "Etiketa sortzeko prompta",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "Ukitu eteteko",
|
"Tap to interrupt": "Ukitu eteteko",
|
||||||
"Task List": "",
|
"Task List": "",
|
||||||
"Task Model": "",
|
"Task Model": "",
|
||||||
|
|
@ -1584,6 +1605,7 @@
|
||||||
"Toast notifications for new updates": "Toast jakinarazpenak eguneraketa berrientzat",
|
"Toast notifications for new updates": "Toast jakinarazpenak eguneraketa berrientzat",
|
||||||
"Today": "Gaur",
|
"Today": "Gaur",
|
||||||
"Today at {{LOCALIZED_TIME}}": "",
|
"Today at {{LOCALIZED_TIME}}": "",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "",
|
"Toggle whether current connection is active.": "",
|
||||||
"Token": "Tokena",
|
"Token": "Tokena",
|
||||||
"Too verbose": "Luzeegia",
|
"Too verbose": "Luzeegia",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "یک مدل وظیفه هنگام انجام وظایف مانند تولید عناوین برای چت ها و نمایش های جستجوی وب استفاده می شود.",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "یک مدل وظیفه هنگام انجام وظایف مانند تولید عناوین برای چت ها و نمایش های جستجوی وب استفاده می شود.",
|
||||||
"a user": "یک کاربر",
|
"a user": "یک کاربر",
|
||||||
"About": "درباره",
|
"About": "درباره",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "دسترسی",
|
"Access": "دسترسی",
|
||||||
"Access Control": "کنترل دسترسی",
|
"Access Control": "کنترل دسترسی",
|
||||||
"Accessible to all users": "قابل دسترسی برای همه کاربران",
|
"Accessible to all users": "قابل دسترسی برای همه کاربران",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "افزودن محتوا",
|
"Add Content": "افزودن محتوا",
|
||||||
"Add content here": "محتوا را اینجا اضافه کنید",
|
"Add content here": "محتوا را اینجا اضافه کنید",
|
||||||
"Add Custom Parameter": "",
|
"Add Custom Parameter": "",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "",
|
"Add Details": "",
|
||||||
"Add Files": "افزودن فایل\u200cها",
|
"Add Files": "افزودن فایل\u200cها",
|
||||||
"Add Group": "افزودن گروه",
|
"Add Group": "افزودن گروه",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "بپرس",
|
"Ask": "بپرس",
|
||||||
"Ask a question": "سوالی بپرسید",
|
"Ask a question": "سوالی بپرسید",
|
||||||
"Assistant": "دستیار",
|
"Assistant": "دستیار",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "",
|
"Attach Knowledge": "",
|
||||||
"Attach Notes": "",
|
"Attach Notes": "",
|
||||||
"Attach Webpage": "",
|
"Attach Webpage": "",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "",
|
"Close Banner": "",
|
||||||
"Close Configure Connection Modal": "",
|
"Close Configure Connection Modal": "",
|
||||||
"Close modal": "",
|
"Close modal": "",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "",
|
"Close settings modal": "",
|
||||||
"Close Sidebar": "",
|
"Close Sidebar": "",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "به بریده\u200cدان کپی\u200cشد",
|
"Copied to clipboard": "به بریده\u200cدان کپی\u200cشد",
|
||||||
"Copy": "کپی",
|
"Copy": "کپی",
|
||||||
"Copy Formatted Text": "",
|
"Copy Formatted Text": "",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "",
|
"Copy link": "",
|
||||||
"Copy Link": "کپی لینک",
|
"Copy Link": "کپی لینک",
|
||||||
"Copy to clipboard": "کپی به کلیپ\u200cبورد",
|
"Copy to clipboard": "کپی به کلیپ\u200cبورد",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "ویرایش مجوزهای پیش\u200cفرض",
|
"Edit Default Permissions": "ویرایش مجوزهای پیش\u200cفرض",
|
||||||
"Edit Folder": "",
|
"Edit Folder": "",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "ویرایش حافظه",
|
"Edit Memory": "ویرایش حافظه",
|
||||||
"Edit User": "ویرایش کاربر",
|
"Edit User": "ویرایش کاربر",
|
||||||
"Edit User Group": "ویرایش گروه کاربری",
|
"Edit User Group": "ویرایش گروه کاربری",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "آدرس پایه API فایرکراول",
|
"Firecrawl API Base URL": "آدرس پایه API فایرکراول",
|
||||||
"Firecrawl API Key": "کلید API فایرکراول",
|
"Firecrawl API Key": "کلید API فایرکراول",
|
||||||
"Floating Quick Actions": "",
|
"Floating Quick Actions": "",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "",
|
"Folder": "",
|
||||||
"Folder Background Image": "",
|
"Folder Background Image": "",
|
||||||
"Folder deleted successfully": "پوشه با موفقیت حذف شد",
|
"Folder deleted successfully": "پوشه با موفقیت حذف شد",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "",
|
"Generate": "",
|
||||||
"Generate an image": "تولید یک تصویر",
|
"Generate an image": "تولید یک تصویر",
|
||||||
"Generate Image": "تولید تصویر",
|
"Generate Image": "تولید تصویر",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "",
|
"Generated Image": "",
|
||||||
"Generating search query": "در حال تولید پرسوجوی جستجو",
|
"Generating search query": "در حال تولید پرسوجوی جستجو",
|
||||||
"Generating...": "",
|
"Generating...": "",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "حافظه با موفقیت به\u200cروز شد",
|
"Memory updated successfully": "حافظه با موفقیت به\u200cروز شد",
|
||||||
"Merge Responses": "ادغام پاسخ\u200cها",
|
"Merge Responses": "ادغام پاسخ\u200cها",
|
||||||
"Merged Response": "پاسخ ادغام شده",
|
"Merged Response": "پاسخ ادغام شده",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "برای استفاده از این ویژگی باید امتیازدهی پیام\u200cها فعال باشد",
|
"Message rating should be enabled to use this feature": "برای استفاده از این ویژگی باید امتیازدهی پیام\u200cها فعال باشد",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "پیام های شما بعد از ایجاد لینک شما به اشتراک نمی گردد. کاربران با لینک URL می توانند چت اشتراک را مشاهده کنند.",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "پیام های شما بعد از ایجاد لینک شما به اشتراک نمی گردد. کاربران با لینک URL می توانند چت اشتراک را مشاهده کنند.",
|
||||||
"Microsoft OneDrive": "",
|
"Microsoft OneDrive": "",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "",
|
"New Note": "",
|
||||||
"New Password": "رمز عبور جدید",
|
"New Password": "رمز عبور جدید",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "",
|
"New Tool": "",
|
||||||
"new-channel": "کانال-جدید",
|
"new-channel": "کانال-جدید",
|
||||||
"Next message": "",
|
"Next message": "",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "نسخه ollama",
|
"Ollama Version": "نسخه ollama",
|
||||||
"On": "روشن",
|
"On": "روشن",
|
||||||
"OneDrive": "وان\u200cدرایو",
|
"OneDrive": "وان\u200cدرایو",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "فقط حروف الفبا، اعداد و خط تیره مجاز هستند",
|
"Only alphanumeric characters and hyphens are allowed": "فقط حروف الفبا، اعداد و خط تیره مجاز هستند",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "فقط کاراکترهای الفبایی و خط فاصله در رشته فرمان مجاز هستند.",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "فقط کاراکترهای الفبایی و خط فاصله در رشته فرمان مجاز هستند.",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "فقط مجموعه\u200cها قابل ویرایش هستند، برای ویرایش/افزودن اسناد یک پایگاه دانش جدید ایجاد کنید.",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "فقط مجموعه\u200cها قابل ویرایش هستند، برای ویرایش/افزودن اسناد یک پایگاه دانش جدید ایجاد کنید.",
|
||||||
"Only markdown files are allowed": "",
|
"Only markdown files are allowed": "",
|
||||||
"Only select users and groups with permission can access": "فقط کاربران و گروه\u200cهای دارای مجوز می\u200cتوانند دسترسی داشته باشند",
|
"Only select users and groups with permission can access": "فقط کاربران و گروه\u200cهای دارای مجوز می\u200cتوانند دسترسی داشته باشند",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "",
|
"Open modal to configure connection": "",
|
||||||
"Open Modal To Manage Floating Quick Actions": "",
|
"Open Modal To Manage Floating Quick Actions": "",
|
||||||
"Open Modal To Manage Image Compression": "",
|
"Open Modal To Manage Image Compression": "",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "",
|
"Open Sidebar": "",
|
||||||
"Open User Profile Menu": "",
|
"Open User Profile Menu": "",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI می\u200cتواند از ابزارهای ارائه شده توسط هر سرور OpenAPI استفاده کند.",
|
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI می\u200cتواند از ابزارهای ارائه شده توسط هر سرور OpenAPI استفاده کند.",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "",
|
"Prefer not to say": "",
|
||||||
"Prefix ID": "شناسه پیشوند",
|
"Prefix ID": "شناسه پیشوند",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "شناسه پیشوند برای جلوگیری از تداخل با سایر اتصالات با افزودن پیشوند به شناسه\u200cهای مدل استفاده می\u200cشود - برای غیرفعال کردن خالی بگذارید",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "شناسه پیشوند برای جلوگیری از تداخل با سایر اتصالات با افزودن پیشوند به شناسه\u200cهای مدل استفاده می\u200cشود - برای غیرفعال کردن خالی بگذارید",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "",
|
"Preview": "",
|
||||||
"Previous 30 days": "30 روز قبل",
|
"Previous 30 days": "30 روز قبل",
|
||||||
"Previous 7 days": "7 روز قبل",
|
"Previous 7 days": "7 روز قبل",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "رد شده زمانی که باید نباشد",
|
"Refused when it shouldn't have": "رد شده زمانی که باید نباشد",
|
||||||
"Regenerate": "تولید مجدد",
|
"Regenerate": "تولید مجدد",
|
||||||
"Regenerate Menu": "",
|
"Regenerate Menu": "",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "",
|
"Register Again": "",
|
||||||
"Register Client": "",
|
"Register Client": "",
|
||||||
"Registered": "",
|
"Registered": "",
|
||||||
|
|
@ -1439,6 +1457,7 @@
|
||||||
"Show Formatting Toolbar": "",
|
"Show Formatting Toolbar": "",
|
||||||
"Show image preview": "",
|
"Show image preview": "",
|
||||||
"Show Model": "نمایش مدل",
|
"Show Model": "نمایش مدل",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "حمایت خود را نشان دهید!",
|
"Show your support!": "حمایت خود را نشان دهید!",
|
||||||
"Showcased creativity": "ایده\u200cآفرینی",
|
"Showcased creativity": "ایده\u200cآفرینی",
|
||||||
"Sign in": "ورود",
|
"Sign in": "ورود",
|
||||||
|
|
@ -1474,6 +1493,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "توقف",
|
"Stop": "توقف",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "توقف توالی",
|
"Stop Sequence": "توقف توالی",
|
||||||
"Stream Chat Response": "پاسخ چت جریانی",
|
"Stream Chat Response": "پاسخ چت جریانی",
|
||||||
"Stream Delta Chunk Size": "",
|
"Stream Delta Chunk Size": "",
|
||||||
|
|
@ -1503,6 +1523,7 @@
|
||||||
"Tags Generation": "تولید برچسب\u200cها",
|
"Tags Generation": "تولید برچسب\u200cها",
|
||||||
"Tags Generation Prompt": "پرامپت تولید برچسب\u200cها",
|
"Tags Generation Prompt": "پرامپت تولید برچسب\u200cها",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "نمونه\u200cبرداری دنباله آزاد برای کاهش تأثیر توکن\u200cهای کم احتمال\u200cتر از خروجی استفاده می\u200cشود. مقدار بالاتر (مثلاً 2.0) تأثیر را بیشتر کاهش می\u200cدهد، در حالی که مقدار 1.0 این تنظیم را غیرفعال می\u200cکند.",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "نمونه\u200cبرداری دنباله آزاد برای کاهش تأثیر توکن\u200cهای کم احتمال\u200cتر از خروجی استفاده می\u200cشود. مقدار بالاتر (مثلاً 2.0) تأثیر را بیشتر کاهش می\u200cدهد، در حالی که مقدار 1.0 این تنظیم را غیرفعال می\u200cکند.",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "برای وقفه ضربه بزنید",
|
"Tap to interrupt": "برای وقفه ضربه بزنید",
|
||||||
"Task List": "",
|
"Task List": "",
|
||||||
"Task Model": "",
|
"Task Model": "",
|
||||||
|
|
@ -1584,6 +1605,7 @@
|
||||||
"Toast notifications for new updates": "اعلان\u200cهای پاپ\u200cآپ برای به\u200cروزرسانی\u200cهای جدید",
|
"Toast notifications for new updates": "اعلان\u200cهای پاپ\u200cآپ برای به\u200cروزرسانی\u200cهای جدید",
|
||||||
"Today": "امروز",
|
"Today": "امروز",
|
||||||
"Today at {{LOCALIZED_TIME}}": "",
|
"Today at {{LOCALIZED_TIME}}": "",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "",
|
"Toggle whether current connection is active.": "",
|
||||||
"Token": "توکن",
|
"Token": "توکن",
|
||||||
"Too verbose": "خیلی طولانی",
|
"Too verbose": "خیلی طولانی",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Tehtävämallia käytetään tehtävien suorittamiseen, kuten otsikoiden luomiseen keskusteluille ja verkkohakukyselyille",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Tehtävämallia käytetään tehtävien suorittamiseen, kuten otsikoiden luomiseen keskusteluille ja verkkohakukyselyille",
|
||||||
"a user": "käyttäjä",
|
"a user": "käyttäjä",
|
||||||
"About": "Tietoja",
|
"About": "Tietoja",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "Pääsy",
|
"Access": "Pääsy",
|
||||||
"Access Control": "Käyttöoikeuksien hallinta",
|
"Access Control": "Käyttöoikeuksien hallinta",
|
||||||
"Accessible to all users": "Käytettävissä kaikille käyttäjille",
|
"Accessible to all users": "Käytettävissä kaikille käyttäjille",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "Lisää sisältöä",
|
"Add Content": "Lisää sisältöä",
|
||||||
"Add content here": "Lisää sisältöä tähän",
|
"Add content here": "Lisää sisältöä tähän",
|
||||||
"Add Custom Parameter": "Lisää mukautettu parametri",
|
"Add Custom Parameter": "Lisää mukautettu parametri",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "Lisää yksityiskohtia",
|
"Add Details": "Lisää yksityiskohtia",
|
||||||
"Add Files": "Lisää tiedostoja",
|
"Add Files": "Lisää tiedostoja",
|
||||||
"Add Group": "Lisää ryhmä",
|
"Add Group": "Lisää ryhmä",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "Kysy",
|
"Ask": "Kysy",
|
||||||
"Ask a question": "Kysy kysymys",
|
"Ask a question": "Kysy kysymys",
|
||||||
"Assistant": "Avustaja",
|
"Assistant": "Avustaja",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "Liitä tietoa",
|
"Attach Knowledge": "Liitä tietoa",
|
||||||
"Attach Notes": "Liitä muistiinpanoja",
|
"Attach Notes": "Liitä muistiinpanoja",
|
||||||
"Attach Webpage": "Liitä verkkosivu",
|
"Attach Webpage": "Liitä verkkosivu",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "Sulje banneri",
|
"Close Banner": "Sulje banneri",
|
||||||
"Close Configure Connection Modal": "Sulje yhteyksien modaali",
|
"Close Configure Connection Modal": "Sulje yhteyksien modaali",
|
||||||
"Close modal": "Sulje modaali",
|
"Close modal": "Sulje modaali",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "Sulje asetus modaali",
|
"Close settings modal": "Sulje asetus modaali",
|
||||||
"Close Sidebar": "Sulje sivupalkki",
|
"Close Sidebar": "Sulje sivupalkki",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "Kopioitu leikepöydälle",
|
"Copied to clipboard": "Kopioitu leikepöydälle",
|
||||||
"Copy": "Kopioi",
|
"Copy": "Kopioi",
|
||||||
"Copy Formatted Text": "Kopioi muotoiltu teksti",
|
"Copy Formatted Text": "Kopioi muotoiltu teksti",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "Kopioi linkki",
|
"Copy link": "Kopioi linkki",
|
||||||
"Copy Link": "Kopioi linkki",
|
"Copy Link": "Kopioi linkki",
|
||||||
"Copy to clipboard": "Kopioi leikepöydälle",
|
"Copy to clipboard": "Kopioi leikepöydälle",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "Muokkaa oletuskäyttöoikeuksia",
|
"Edit Default Permissions": "Muokkaa oletuskäyttöoikeuksia",
|
||||||
"Edit Folder": "Muokkaa kansiota",
|
"Edit Folder": "Muokkaa kansiota",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "Muokkaa muistia",
|
"Edit Memory": "Muokkaa muistia",
|
||||||
"Edit User": "Muokkaa käyttäjää",
|
"Edit User": "Muokkaa käyttäjää",
|
||||||
"Edit User Group": "Muokkaa käyttäjäryhmää",
|
"Edit User Group": "Muokkaa käyttäjäryhmää",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "Firecrawl API -verkko-osoite",
|
"Firecrawl API Base URL": "Firecrawl API -verkko-osoite",
|
||||||
"Firecrawl API Key": "Firecrawl API-avain",
|
"Firecrawl API Key": "Firecrawl API-avain",
|
||||||
"Floating Quick Actions": "Kelluvat pikakomennot",
|
"Floating Quick Actions": "Kelluvat pikakomennot",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "Kansio",
|
"Folder": "Kansio",
|
||||||
"Folder Background Image": "Kansion taustakuva",
|
"Folder Background Image": "Kansion taustakuva",
|
||||||
"Folder deleted successfully": "Kansio poistettu onnistuneesti",
|
"Folder deleted successfully": "Kansio poistettu onnistuneesti",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "Luo",
|
"Generate": "Luo",
|
||||||
"Generate an image": "Luo kuva",
|
"Generate an image": "Luo kuva",
|
||||||
"Generate Image": "Luo kuva",
|
"Generate Image": "Luo kuva",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "Luo kuva",
|
"Generated Image": "Luo kuva",
|
||||||
"Generating search query": "Luodaan hakukyselyä",
|
"Generating search query": "Luodaan hakukyselyä",
|
||||||
"Generating...": "Luodaan...",
|
"Generating...": "Luodaan...",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "Muisti päivitetty onnistuneesti",
|
"Memory updated successfully": "Muisti päivitetty onnistuneesti",
|
||||||
"Merge Responses": "Yhdistä vastaukset",
|
"Merge Responses": "Yhdistä vastaukset",
|
||||||
"Merged Response": "Yhdistetty vastaus",
|
"Merged Response": "Yhdistetty vastaus",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "Tämän toiminnon käyttämiseksi viestiarviointi on otettava käyttöön",
|
"Message rating should be enabled to use this feature": "Tämän toiminnon käyttämiseksi viestiarviointi on otettava käyttöön",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Linkin luomisen jälkeen lähettämäsi viestit eivät ole jaettuja. Käyttäjät, joilla on verkko-osoite, voivat tarkastella jaettua keskustelua.",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Linkin luomisen jälkeen lähettämäsi viestit eivät ole jaettuja. Käyttäjät, joilla on verkko-osoite, voivat tarkastella jaettua keskustelua.",
|
||||||
"Microsoft OneDrive": "",
|
"Microsoft OneDrive": "",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "Uusi muistiinpano",
|
"New Note": "Uusi muistiinpano",
|
||||||
"New Password": "Uusi salasana",
|
"New Password": "Uusi salasana",
|
||||||
"New Prompt": "Uusi kehoite",
|
"New Prompt": "Uusi kehoite",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "Uusi työkalu",
|
"New Tool": "Uusi työkalu",
|
||||||
"new-channel": "uusi-kanava",
|
"new-channel": "uusi-kanava",
|
||||||
"Next message": "Seuraava viesti",
|
"Next message": "Seuraava viesti",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Ollama-versio",
|
"Ollama Version": "Ollama-versio",
|
||||||
"On": "Päällä",
|
"On": "Päällä",
|
||||||
"OneDrive": "OneDrive",
|
"OneDrive": "OneDrive",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "Vain kirjaimet, numerot ja väliviivat ovat sallittuja",
|
"Only alphanumeric characters and hyphens are allowed": "Vain kirjaimet, numerot ja väliviivat ovat sallittuja",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "Vain kirjaimet, numerot ja väliviivat ovat sallittuja komentosarjassa.",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "Vain kirjaimet, numerot ja väliviivat ovat sallittuja komentosarjassa.",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Vain kokoelmia voi muokata, luo uusi tietokanta muokataksesi/lisätäksesi asiakirjoja.",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Vain kokoelmia voi muokata, luo uusi tietokanta muokataksesi/lisätäksesi asiakirjoja.",
|
||||||
"Only markdown files are allowed": "Vain markdown tiedostot ovat sallittuja",
|
"Only markdown files are allowed": "Vain markdown tiedostot ovat sallittuja",
|
||||||
"Only select users and groups with permission can access": "Vain valitut käyttäjät ja ryhmät, joilla on käyttöoikeus, pääsevät käyttämään",
|
"Only select users and groups with permission can access": "Vain valitut käyttäjät ja ryhmät, joilla on käyttöoikeus, pääsevät käyttämään",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "Avaa modaali yhteyden määrittämiseksi",
|
"Open modal to configure connection": "Avaa modaali yhteyden määrittämiseksi",
|
||||||
"Open Modal To Manage Floating Quick Actions": "Avaa modaali kelluvien pikatoimintojen hallitsemiseksi",
|
"Open Modal To Manage Floating Quick Actions": "Avaa modaali kelluvien pikatoimintojen hallitsemiseksi",
|
||||||
"Open Modal To Manage Image Compression": "Avaa kuvien pakkaus hallinta modaali",
|
"Open Modal To Manage Image Compression": "Avaa kuvien pakkaus hallinta modaali",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "Avaa sivupalkki",
|
"Open Sidebar": "Avaa sivupalkki",
|
||||||
"Open User Profile Menu": "Avaa käyttäjäprofiili ikkuna",
|
"Open User Profile Menu": "Avaa käyttäjäprofiili ikkuna",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI voi käyttää minkä tahansa OpenAPI-palvelimen tarjoamia työkaluja.",
|
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI voi käyttää minkä tahansa OpenAPI-palvelimen tarjoamia työkaluja.",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "En halua sanoa",
|
"Prefer not to say": "En halua sanoa",
|
||||||
"Prefix ID": "Etuliite-ID",
|
"Prefix ID": "Etuliite-ID",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Etuliite-ID:tä käytetään välttämään ristiriidat muiden yhteyksien kanssa lisäämällä etuliite mallitunnuksiin - jätä tyhjäksi, jos haluat ottaa sen pois käytöstä",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Etuliite-ID:tä käytetään välttämään ristiriidat muiden yhteyksien kanssa lisäämällä etuliite mallitunnuksiin - jätä tyhjäksi, jos haluat ottaa sen pois käytöstä",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "Esikatselu",
|
"Preview": "Esikatselu",
|
||||||
"Previous 30 days": "Edelliset 30 päivää",
|
"Previous 30 days": "Edelliset 30 päivää",
|
||||||
"Previous 7 days": "Edelliset 7 päivää",
|
"Previous 7 days": "Edelliset 7 päivää",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "Kieltäytyi, vaikka ei olisi pitänyt",
|
"Refused when it shouldn't have": "Kieltäytyi, vaikka ei olisi pitänyt",
|
||||||
"Regenerate": "Regeneroi",
|
"Regenerate": "Regeneroi",
|
||||||
"Regenerate Menu": "Regenerointi ikkuna",
|
"Regenerate Menu": "Regenerointi ikkuna",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "Rekisteröi uudelleen",
|
"Register Again": "Rekisteröi uudelleen",
|
||||||
"Register Client": "Rekiströi asiakasohjelma",
|
"Register Client": "Rekiströi asiakasohjelma",
|
||||||
"Registered": "Rekisteröity",
|
"Registered": "Rekisteröity",
|
||||||
|
|
@ -1439,6 +1457,7 @@
|
||||||
"Show Formatting Toolbar": "Näytä muotoilupalkki",
|
"Show Formatting Toolbar": "Näytä muotoilupalkki",
|
||||||
"Show image preview": "Näytä kuvan esikatselu",
|
"Show image preview": "Näytä kuvan esikatselu",
|
||||||
"Show Model": "Näytä malli",
|
"Show Model": "Näytä malli",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "Osoita tukesi!",
|
"Show your support!": "Osoita tukesi!",
|
||||||
"Showcased creativity": "Osoitti luovuutta",
|
"Showcased creativity": "Osoitti luovuutta",
|
||||||
"Sign in": "Kirjaudu sisään",
|
"Sign in": "Kirjaudu sisään",
|
||||||
|
|
@ -1474,6 +1493,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "Pysäytä",
|
"Stop": "Pysäytä",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "Lopetussekvenssi",
|
"Stop Sequence": "Lopetussekvenssi",
|
||||||
"Stream Chat Response": "Streamaa keskusteluvastaus",
|
"Stream Chat Response": "Streamaa keskusteluvastaus",
|
||||||
"Stream Delta Chunk Size": "Striimin delta-lohkon koko",
|
"Stream Delta Chunk Size": "Striimin delta-lohkon koko",
|
||||||
|
|
@ -1503,6 +1523,7 @@
|
||||||
"Tags Generation": "Tagien luonti",
|
"Tags Generation": "Tagien luonti",
|
||||||
"Tags Generation Prompt": "Tagien luontikehote",
|
"Tags Generation Prompt": "Tagien luontikehote",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "Napauta keskeyttääksesi",
|
"Tap to interrupt": "Napauta keskeyttääksesi",
|
||||||
"Task List": "Tehtävälista",
|
"Task List": "Tehtävälista",
|
||||||
"Task Model": "Työmalli",
|
"Task Model": "Työmalli",
|
||||||
|
|
@ -1584,6 +1605,7 @@
|
||||||
"Toast notifications for new updates": "Ilmoituspopuppien näyttäminen uusista päivityksistä",
|
"Toast notifications for new updates": "Ilmoituspopuppien näyttäminen uusista päivityksistä",
|
||||||
"Today": "Tänään",
|
"Today": "Tänään",
|
||||||
"Today at {{LOCALIZED_TIME}}": "Tänään {{LOCALIZED_TIME}}",
|
"Today at {{LOCALIZED_TIME}}": "Tänään {{LOCALIZED_TIME}}",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "Vaihda, onko nykyinen yhteys aktiivinen",
|
"Toggle whether current connection is active.": "Vaihda, onko nykyinen yhteys aktiivinen",
|
||||||
"Token": "Token",
|
"Token": "Token",
|
||||||
"Too verbose": "Liian puhelias",
|
"Too verbose": "Liian puhelias",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Un modèle de tâche est utilisé lors de l'exécution de tâches telles que la génération de titres pour les conversations et les requêtes de recherche sur le web.",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Un modèle de tâche est utilisé lors de l'exécution de tâches telles que la génération de titres pour les conversations et les requêtes de recherche sur le web.",
|
||||||
"a user": "un utilisateur",
|
"a user": "un utilisateur",
|
||||||
"About": "À propos",
|
"About": "À propos",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "Accès",
|
"Access": "Accès",
|
||||||
"Access Control": "Contrôle d'accès",
|
"Access Control": "Contrôle d'accès",
|
||||||
"Accessible to all users": "Accessible à tous les utilisateurs",
|
"Accessible to all users": "Accessible à tous les utilisateurs",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "Ajouter du contenu",
|
"Add Content": "Ajouter du contenu",
|
||||||
"Add content here": "Ajoutez du contenu ici",
|
"Add content here": "Ajoutez du contenu ici",
|
||||||
"Add Custom Parameter": "Ajoutez votre réglage personnalisé",
|
"Add Custom Parameter": "Ajoutez votre réglage personnalisé",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "",
|
"Add Details": "",
|
||||||
"Add Files": "Ajouter des fichiers",
|
"Add Files": "Ajouter des fichiers",
|
||||||
"Add Group": "Ajouter un groupe",
|
"Add Group": "Ajouter un groupe",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "Demander",
|
"Ask": "Demander",
|
||||||
"Ask a question": "Posez votre question",
|
"Ask a question": "Posez votre question",
|
||||||
"Assistant": "Assistant",
|
"Assistant": "Assistant",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "",
|
"Attach Knowledge": "",
|
||||||
"Attach Notes": "",
|
"Attach Notes": "",
|
||||||
"Attach Webpage": "",
|
"Attach Webpage": "",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "",
|
"Close Banner": "",
|
||||||
"Close Configure Connection Modal": "Fermer la fenêtre de configuration de la connexion",
|
"Close Configure Connection Modal": "Fermer la fenêtre de configuration de la connexion",
|
||||||
"Close modal": "Fermer la fenêtre",
|
"Close modal": "Fermer la fenêtre",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "Fermer la fenêtre des réglages",
|
"Close settings modal": "Fermer la fenêtre des réglages",
|
||||||
"Close Sidebar": "",
|
"Close Sidebar": "",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "Copié dans le presse-papiers",
|
"Copied to clipboard": "Copié dans le presse-papiers",
|
||||||
"Copy": "Copier",
|
"Copy": "Copier",
|
||||||
"Copy Formatted Text": "Copier le texte en gardant le format",
|
"Copy Formatted Text": "Copier le texte en gardant le format",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "",
|
"Copy link": "",
|
||||||
"Copy Link": "Copier le lien",
|
"Copy Link": "Copier le lien",
|
||||||
"Copy to clipboard": "Copier dans le presse-papiers",
|
"Copy to clipboard": "Copier dans le presse-papiers",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "Modifier les autorisations par défaut",
|
"Edit Default Permissions": "Modifier les autorisations par défaut",
|
||||||
"Edit Folder": "",
|
"Edit Folder": "",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "Modifier la mémoire",
|
"Edit Memory": "Modifier la mémoire",
|
||||||
"Edit User": "Modifier l'utilisateur",
|
"Edit User": "Modifier l'utilisateur",
|
||||||
"Edit User Group": "Modifier le groupe d'utilisateurs",
|
"Edit User Group": "Modifier le groupe d'utilisateurs",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "Url de l'API Base Firecrawl",
|
"Firecrawl API Base URL": "Url de l'API Base Firecrawl",
|
||||||
"Firecrawl API Key": "Clé de l'API Firecrawl",
|
"Firecrawl API Key": "Clé de l'API Firecrawl",
|
||||||
"Floating Quick Actions": "",
|
"Floating Quick Actions": "",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "",
|
"Folder": "",
|
||||||
"Folder Background Image": "",
|
"Folder Background Image": "",
|
||||||
"Folder deleted successfully": "Dossier supprimé avec succès",
|
"Folder deleted successfully": "Dossier supprimé avec succès",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "Génére",
|
"Generate": "Génére",
|
||||||
"Generate an image": "Génère une image",
|
"Generate an image": "Génère une image",
|
||||||
"Generate Image": "Générer une image",
|
"Generate Image": "Générer une image",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "",
|
"Generated Image": "",
|
||||||
"Generating search query": "Génération d'une requête de recherche",
|
"Generating search query": "Génération d'une requête de recherche",
|
||||||
"Generating...": "Génération en cours...",
|
"Generating...": "Génération en cours...",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "Le souvenir a été mis à jour avec succès",
|
"Memory updated successfully": "Le souvenir a été mis à jour avec succès",
|
||||||
"Merge Responses": "Fusionner les réponses",
|
"Merge Responses": "Fusionner les réponses",
|
||||||
"Merged Response": "Réponse fusionnée",
|
"Merged Response": "Réponse fusionnée",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "L'évaluation des messages doit être activée pour pouvoir utiliser cette fonctionnalité",
|
"Message rating should be enabled to use this feature": "L'évaluation des messages doit être activée pour pouvoir utiliser cette fonctionnalité",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Les messages que vous envoyez après avoir créé votre lien ne seront pas partagés. Les utilisateurs disposant de l'URL pourront voir la conversation partagée.",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Les messages que vous envoyez après avoir créé votre lien ne seront pas partagés. Les utilisateurs disposant de l'URL pourront voir la conversation partagée.",
|
||||||
"Microsoft OneDrive": "Microsoft OneDrive",
|
"Microsoft OneDrive": "Microsoft OneDrive",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "Nouvelle note",
|
"New Note": "Nouvelle note",
|
||||||
"New Password": "Nouveau mot de passe",
|
"New Password": "Nouveau mot de passe",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "Nouvel outil",
|
"New Tool": "Nouvel outil",
|
||||||
"new-channel": "nouveau-canal",
|
"new-channel": "nouveau-canal",
|
||||||
"Next message": "Message suivant",
|
"Next message": "Message suivant",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Version d'Ollama",
|
"Ollama Version": "Version d'Ollama",
|
||||||
"On": "Activé",
|
"On": "Activé",
|
||||||
"OneDrive": "OneDrive",
|
"OneDrive": "OneDrive",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "Seuls les caractères alphanumériques et les tirets sont autorisés",
|
"Only alphanumeric characters and hyphens are allowed": "Seuls les caractères alphanumériques et les tirets sont autorisés",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "Seuls les caractères alphanumériques et les tirets sont autorisés dans la chaîne de commande.",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "Seuls les caractères alphanumériques et les tirets sont autorisés dans la chaîne de commande.",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Seules les collections peuvent être modifiées, créez une nouvelle base de connaissance pour modifier/ajouter des documents.",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Seules les collections peuvent être modifiées, créez une nouvelle base de connaissance pour modifier/ajouter des documents.",
|
||||||
"Only markdown files are allowed": "Seul les fichiers markdown sont autorisés",
|
"Only markdown files are allowed": "Seul les fichiers markdown sont autorisés",
|
||||||
"Only select users and groups with permission can access": "Seuls les utilisateurs et groupes autorisés peuvent accéder",
|
"Only select users and groups with permission can access": "Seuls les utilisateurs et groupes autorisés peuvent accéder",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "Ouvrir la fenêtre modale pour configurer la connexion",
|
"Open modal to configure connection": "Ouvrir la fenêtre modale pour configurer la connexion",
|
||||||
"Open Modal To Manage Floating Quick Actions": "",
|
"Open Modal To Manage Floating Quick Actions": "",
|
||||||
"Open Modal To Manage Image Compression": "",
|
"Open Modal To Manage Image Compression": "",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "",
|
"Open Sidebar": "",
|
||||||
"Open User Profile Menu": "",
|
"Open User Profile Menu": "",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI peut utiliser les outils fournis par n'importe quel serveur OpenAPI.",
|
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI peut utiliser les outils fournis par n'importe quel serveur OpenAPI.",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "",
|
"Prefer not to say": "",
|
||||||
"Prefix ID": "ID de préfixe",
|
"Prefix ID": "ID de préfixe",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Le préfixe ID est utilisé pour éviter les conflits avec d'autres connexions en ajoutant un préfixe aux ID de modèle - laissez vide pour désactiver",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Le préfixe ID est utilisé pour éviter les conflits avec d'autres connexions en ajoutant un préfixe aux ID de modèle - laissez vide pour désactiver",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "Aperçu",
|
"Preview": "Aperçu",
|
||||||
"Previous 30 days": "30 derniers jours",
|
"Previous 30 days": "30 derniers jours",
|
||||||
"Previous 7 days": "7 derniers jours",
|
"Previous 7 days": "7 derniers jours",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "Refusé alors qu'il n'aurait pas dû l'être",
|
"Refused when it shouldn't have": "Refusé alors qu'il n'aurait pas dû l'être",
|
||||||
"Regenerate": "Regénérer",
|
"Regenerate": "Regénérer",
|
||||||
"Regenerate Menu": "",
|
"Regenerate Menu": "",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "",
|
"Register Again": "",
|
||||||
"Register Client": "",
|
"Register Client": "",
|
||||||
"Registered": "",
|
"Registered": "",
|
||||||
|
|
@ -1440,6 +1458,7 @@
|
||||||
"Show Formatting Toolbar": "",
|
"Show Formatting Toolbar": "",
|
||||||
"Show image preview": "Afficher l'aperçu de l'image",
|
"Show image preview": "Afficher l'aperçu de l'image",
|
||||||
"Show Model": "Afficher le model",
|
"Show Model": "Afficher le model",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "Montrez votre soutien !",
|
"Show your support!": "Montrez votre soutien !",
|
||||||
"Showcased creativity": "Créativité mise en avant",
|
"Showcased creativity": "Créativité mise en avant",
|
||||||
"Sign in": "Connexion",
|
"Sign in": "Connexion",
|
||||||
|
|
@ -1475,6 +1494,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "Stop",
|
"Stop": "Stop",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "Séquence d'arrêt",
|
"Stop Sequence": "Séquence d'arrêt",
|
||||||
"Stream Chat Response": "Streamer la réponse de la conversation",
|
"Stream Chat Response": "Streamer la réponse de la conversation",
|
||||||
"Stream Delta Chunk Size": "",
|
"Stream Delta Chunk Size": "",
|
||||||
|
|
@ -1504,6 +1524,7 @@
|
||||||
"Tags Generation": "Génération de tags",
|
"Tags Generation": "Génération de tags",
|
||||||
"Tags Generation Prompt": "Prompt de génération de tags",
|
"Tags Generation Prompt": "Prompt de génération de tags",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Le sampling sans queue est utilisé pour réduire l'impact des tokens moins probables dans la sortie. Une valeur plus élevée (par exemple, 2.0) réduira davantage l'impact, tandis qu'une valeur de 1.0 désactive ce réglage.",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Le sampling sans queue est utilisé pour réduire l'impact des tokens moins probables dans la sortie. Une valeur plus élevée (par exemple, 2.0) réduira davantage l'impact, tandis qu'une valeur de 1.0 désactive ce réglage.",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "Appuyez pour interrompre",
|
"Tap to interrupt": "Appuyez pour interrompre",
|
||||||
"Task List": "",
|
"Task List": "",
|
||||||
"Task Model": "Modèle pour les tâches",
|
"Task Model": "Modèle pour les tâches",
|
||||||
|
|
@ -1585,6 +1606,7 @@
|
||||||
"Toast notifications for new updates": "Notifications toast pour les nouvelles mises à jour",
|
"Toast notifications for new updates": "Notifications toast pour les nouvelles mises à jour",
|
||||||
"Today": "Aujourd'hui",
|
"Today": "Aujourd'hui",
|
||||||
"Today at {{LOCALIZED_TIME}}": "",
|
"Today at {{LOCALIZED_TIME}}": "",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "Afficher/masquer si la connection courante est active",
|
"Toggle whether current connection is active.": "Afficher/masquer si la connection courante est active",
|
||||||
"Token": "Token",
|
"Token": "Token",
|
||||||
"Too verbose": "Trop détaillé",
|
"Too verbose": "Trop détaillé",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Un modèle de tâche est utilisé lors de l'exécution de tâches telles que la génération de titres pour les conversations et les requêtes de recherche sur le web.",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Un modèle de tâche est utilisé lors de l'exécution de tâches telles que la génération de titres pour les conversations et les requêtes de recherche sur le web.",
|
||||||
"a user": "un utilisateur",
|
"a user": "un utilisateur",
|
||||||
"About": "À propos",
|
"About": "À propos",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "Accès",
|
"Access": "Accès",
|
||||||
"Access Control": "Contrôle d'accès",
|
"Access Control": "Contrôle d'accès",
|
||||||
"Accessible to all users": "Accessible à tous les utilisateurs",
|
"Accessible to all users": "Accessible à tous les utilisateurs",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "Ajouter du contenu",
|
"Add Content": "Ajouter du contenu",
|
||||||
"Add content here": "Ajoutez du contenu ici",
|
"Add content here": "Ajoutez du contenu ici",
|
||||||
"Add Custom Parameter": "Ajoutez votre réglage personnalisé",
|
"Add Custom Parameter": "Ajoutez votre réglage personnalisé",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "Ajouter des détails",
|
"Add Details": "Ajouter des détails",
|
||||||
"Add Files": "Ajouter des fichiers",
|
"Add Files": "Ajouter des fichiers",
|
||||||
"Add Group": "Ajouter un groupe",
|
"Add Group": "Ajouter un groupe",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "Demander",
|
"Ask": "Demander",
|
||||||
"Ask a question": "Posez votre question",
|
"Ask a question": "Posez votre question",
|
||||||
"Assistant": "Assistant",
|
"Assistant": "Assistant",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "Joindre une connaissance",
|
"Attach Knowledge": "Joindre une connaissance",
|
||||||
"Attach Notes": "Joindre une note",
|
"Attach Notes": "Joindre une note",
|
||||||
"Attach Webpage": "",
|
"Attach Webpage": "",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "Fermer la bannière",
|
"Close Banner": "Fermer la bannière",
|
||||||
"Close Configure Connection Modal": "Fermer la fenêtre de configuration de la connexion",
|
"Close Configure Connection Modal": "Fermer la fenêtre de configuration de la connexion",
|
||||||
"Close modal": "Fermer la fenêtre",
|
"Close modal": "Fermer la fenêtre",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "Fermer la fenêtre des réglages",
|
"Close settings modal": "Fermer la fenêtre des réglages",
|
||||||
"Close Sidebar": "Fermer la barre latérale",
|
"Close Sidebar": "Fermer la barre latérale",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "Copié dans le presse-papiers",
|
"Copied to clipboard": "Copié dans le presse-papiers",
|
||||||
"Copy": "Copier",
|
"Copy": "Copier",
|
||||||
"Copy Formatted Text": "Copier le texte en gardant le format",
|
"Copy Formatted Text": "Copier le texte en gardant le format",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "Copier le lien",
|
"Copy link": "Copier le lien",
|
||||||
"Copy Link": "Copier le lien",
|
"Copy Link": "Copier le lien",
|
||||||
"Copy to clipboard": "Copier dans le presse-papiers",
|
"Copy to clipboard": "Copier dans le presse-papiers",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "Modifier les autorisations par défaut",
|
"Edit Default Permissions": "Modifier les autorisations par défaut",
|
||||||
"Edit Folder": "Modifier le dossier",
|
"Edit Folder": "Modifier le dossier",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "Modifier la mémoire",
|
"Edit Memory": "Modifier la mémoire",
|
||||||
"Edit User": "Modifier l'utilisateur",
|
"Edit User": "Modifier l'utilisateur",
|
||||||
"Edit User Group": "Modifier le groupe d'utilisateurs",
|
"Edit User Group": "Modifier le groupe d'utilisateurs",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "Url de l'API Base Firecrawl",
|
"Firecrawl API Base URL": "Url de l'API Base Firecrawl",
|
||||||
"Firecrawl API Key": "Clé de l'API Firecrawl",
|
"Firecrawl API Key": "Clé de l'API Firecrawl",
|
||||||
"Floating Quick Actions": "Actions rapides flottantes",
|
"Floating Quick Actions": "Actions rapides flottantes",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "",
|
"Folder": "",
|
||||||
"Folder Background Image": "Image d'arrière-plan du dossier",
|
"Folder Background Image": "Image d'arrière-plan du dossier",
|
||||||
"Folder deleted successfully": "Dossier supprimé avec succès",
|
"Folder deleted successfully": "Dossier supprimé avec succès",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "Génére",
|
"Generate": "Génére",
|
||||||
"Generate an image": "Génère une image",
|
"Generate an image": "Génère une image",
|
||||||
"Generate Image": "Générer une image",
|
"Generate Image": "Générer une image",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "",
|
"Generated Image": "",
|
||||||
"Generating search query": "Génération d'une requête de recherche",
|
"Generating search query": "Génération d'une requête de recherche",
|
||||||
"Generating...": "Génération en cours...",
|
"Generating...": "Génération en cours...",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "Le souvenir a été mis à jour avec succès",
|
"Memory updated successfully": "Le souvenir a été mis à jour avec succès",
|
||||||
"Merge Responses": "Fusionner les réponses",
|
"Merge Responses": "Fusionner les réponses",
|
||||||
"Merged Response": "Réponse fusionnée",
|
"Merged Response": "Réponse fusionnée",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "L'évaluation des messages doit être activée pour pouvoir utiliser cette fonctionnalité",
|
"Message rating should be enabled to use this feature": "L'évaluation des messages doit être activée pour pouvoir utiliser cette fonctionnalité",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Les messages que vous envoyez après avoir créé votre lien ne seront pas partagés. Les utilisateurs disposant de l'URL pourront voir la conversation partagée.",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Les messages que vous envoyez après avoir créé votre lien ne seront pas partagés. Les utilisateurs disposant de l'URL pourront voir la conversation partagée.",
|
||||||
"Microsoft OneDrive": "Microsoft OneDrive",
|
"Microsoft OneDrive": "Microsoft OneDrive",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "Nouvelle note",
|
"New Note": "Nouvelle note",
|
||||||
"New Password": "Nouveau mot de passe",
|
"New Password": "Nouveau mot de passe",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "Nouvel outil",
|
"New Tool": "Nouvel outil",
|
||||||
"new-channel": "nouveau-canal",
|
"new-channel": "nouveau-canal",
|
||||||
"Next message": "Message suivant",
|
"Next message": "Message suivant",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Version d'Ollama",
|
"Ollama Version": "Version d'Ollama",
|
||||||
"On": "Activé",
|
"On": "Activé",
|
||||||
"OneDrive": "OneDrive",
|
"OneDrive": "OneDrive",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "Seuls les caractères alphanumériques et les tirets sont autorisés",
|
"Only alphanumeric characters and hyphens are allowed": "Seuls les caractères alphanumériques et les tirets sont autorisés",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "Seuls les caractères alphanumériques et les tirets sont autorisés dans la chaîne de commande.",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "Seuls les caractères alphanumériques et les tirets sont autorisés dans la chaîne de commande.",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Seules les collections peuvent être modifiées, créez une nouvelle base de connaissance pour modifier/ajouter des documents.",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Seules les collections peuvent être modifiées, créez une nouvelle base de connaissance pour modifier/ajouter des documents.",
|
||||||
"Only markdown files are allowed": "Seul les fichiers markdown sont autorisés",
|
"Only markdown files are allowed": "Seul les fichiers markdown sont autorisés",
|
||||||
"Only select users and groups with permission can access": "Seuls les utilisateurs et groupes autorisés peuvent accéder",
|
"Only select users and groups with permission can access": "Seuls les utilisateurs et groupes autorisés peuvent accéder",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "Ouvrir la fenêtre modale pour configurer la connexion",
|
"Open modal to configure connection": "Ouvrir la fenêtre modale pour configurer la connexion",
|
||||||
"Open Modal To Manage Floating Quick Actions": "",
|
"Open Modal To Manage Floating Quick Actions": "",
|
||||||
"Open Modal To Manage Image Compression": "",
|
"Open Modal To Manage Image Compression": "",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "Ouvrir la barre latérale",
|
"Open Sidebar": "Ouvrir la barre latérale",
|
||||||
"Open User Profile Menu": "Ouvrir le menu du profil utilisateur",
|
"Open User Profile Menu": "Ouvrir le menu du profil utilisateur",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI peut utiliser les outils fournis par n'importe quel serveur OpenAPI.",
|
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI peut utiliser les outils fournis par n'importe quel serveur OpenAPI.",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "Je préfère ne pas répondre",
|
"Prefer not to say": "Je préfère ne pas répondre",
|
||||||
"Prefix ID": "ID de préfixe",
|
"Prefix ID": "ID de préfixe",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Le préfixe ID est utilisé pour éviter les conflits avec d'autres connexions en ajoutant un préfixe aux ID de modèle - laissez vide pour désactiver",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Le préfixe ID est utilisé pour éviter les conflits avec d'autres connexions en ajoutant un préfixe aux ID de modèle - laissez vide pour désactiver",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "Aperçu",
|
"Preview": "Aperçu",
|
||||||
"Previous 30 days": "30 derniers jours",
|
"Previous 30 days": "30 derniers jours",
|
||||||
"Previous 7 days": "7 derniers jours",
|
"Previous 7 days": "7 derniers jours",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "Refusé alors qu'il n'aurait pas dû l'être",
|
"Refused when it shouldn't have": "Refusé alors qu'il n'aurait pas dû l'être",
|
||||||
"Regenerate": "Regénérer",
|
"Regenerate": "Regénérer",
|
||||||
"Regenerate Menu": "Régénérer le menu",
|
"Regenerate Menu": "Régénérer le menu",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "",
|
"Register Again": "",
|
||||||
"Register Client": "",
|
"Register Client": "",
|
||||||
"Registered": "",
|
"Registered": "",
|
||||||
|
|
@ -1440,6 +1458,7 @@
|
||||||
"Show Formatting Toolbar": "Afficher la barre d'outils de formatage",
|
"Show Formatting Toolbar": "Afficher la barre d'outils de formatage",
|
||||||
"Show image preview": "Afficher l'aperçu de l'image",
|
"Show image preview": "Afficher l'aperçu de l'image",
|
||||||
"Show Model": "Afficher le model",
|
"Show Model": "Afficher le model",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "Montrez votre soutien !",
|
"Show your support!": "Montrez votre soutien !",
|
||||||
"Showcased creativity": "Créativité mise en avant",
|
"Showcased creativity": "Créativité mise en avant",
|
||||||
"Sign in": "Connexion",
|
"Sign in": "Connexion",
|
||||||
|
|
@ -1475,6 +1494,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "Stop",
|
"Stop": "Stop",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "Séquence d'arrêt",
|
"Stop Sequence": "Séquence d'arrêt",
|
||||||
"Stream Chat Response": "Streamer la réponse de la conversation",
|
"Stream Chat Response": "Streamer la réponse de la conversation",
|
||||||
"Stream Delta Chunk Size": "",
|
"Stream Delta Chunk Size": "",
|
||||||
|
|
@ -1504,6 +1524,7 @@
|
||||||
"Tags Generation": "Génération de tags",
|
"Tags Generation": "Génération de tags",
|
||||||
"Tags Generation Prompt": "Prompt de génération de tags",
|
"Tags Generation Prompt": "Prompt de génération de tags",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Le sampling sans queue est utilisé pour réduire l'impact des tokens moins probables dans la sortie. Une valeur plus élevée (par exemple, 2.0) réduira davantage l'impact, tandis qu'une valeur de 1.0 désactive ce réglage.",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Le sampling sans queue est utilisé pour réduire l'impact des tokens moins probables dans la sortie. Une valeur plus élevée (par exemple, 2.0) réduira davantage l'impact, tandis qu'une valeur de 1.0 désactive ce réglage.",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "Appuyez pour interrompre",
|
"Tap to interrupt": "Appuyez pour interrompre",
|
||||||
"Task List": "Liste pour les tâches",
|
"Task List": "Liste pour les tâches",
|
||||||
"Task Model": "Modèle pour les tâches",
|
"Task Model": "Modèle pour les tâches",
|
||||||
|
|
@ -1585,6 +1606,7 @@
|
||||||
"Toast notifications for new updates": "Notifications toast pour les nouvelles mises à jour",
|
"Toast notifications for new updates": "Notifications toast pour les nouvelles mises à jour",
|
||||||
"Today": "Aujourd'hui",
|
"Today": "Aujourd'hui",
|
||||||
"Today at {{LOCALIZED_TIME}}": "Aujourd'hui à {{LOCALIZED_TIME}}",
|
"Today at {{LOCALIZED_TIME}}": "Aujourd'hui à {{LOCALIZED_TIME}}",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "Afficher/masquer si la connection courante est active",
|
"Toggle whether current connection is active.": "Afficher/masquer si la connection courante est active",
|
||||||
"Token": "Token",
|
"Token": "Token",
|
||||||
"Too verbose": "Trop détaillé",
|
"Too verbose": "Trop détaillé",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "o modelo de tarefas utilizase realizando tarefas como a xeneración de títulos para chats e consultas da búsqueda web",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "o modelo de tarefas utilizase realizando tarefas como a xeneración de títulos para chats e consultas da búsqueda web",
|
||||||
"a user": "un usuario",
|
"a user": "un usuario",
|
||||||
"About": "Sobre nos",
|
"About": "Sobre nos",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "Acceso",
|
"Access": "Acceso",
|
||||||
"Access Control": "Control de Acceso",
|
"Access Control": "Control de Acceso",
|
||||||
"Accessible to all users": "Accesible para todos os usuarios",
|
"Accessible to all users": "Accesible para todos os usuarios",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "Agregar contido",
|
"Add Content": "Agregar contido",
|
||||||
"Add content here": "Agrege contido aquí",
|
"Add content here": "Agrege contido aquí",
|
||||||
"Add Custom Parameter": "",
|
"Add Custom Parameter": "",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "",
|
"Add Details": "",
|
||||||
"Add Files": "Agregar Arquivos",
|
"Add Files": "Agregar Arquivos",
|
||||||
"Add Group": "Agregar Grupo",
|
"Add Group": "Agregar Grupo",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "",
|
"Ask": "",
|
||||||
"Ask a question": "Fai unha pregunta",
|
"Ask a question": "Fai unha pregunta",
|
||||||
"Assistant": "Asistente",
|
"Assistant": "Asistente",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "",
|
"Attach Knowledge": "",
|
||||||
"Attach Notes": "",
|
"Attach Notes": "",
|
||||||
"Attach Webpage": "",
|
"Attach Webpage": "",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "",
|
"Close Banner": "",
|
||||||
"Close Configure Connection Modal": "",
|
"Close Configure Connection Modal": "",
|
||||||
"Close modal": "",
|
"Close modal": "",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "",
|
"Close settings modal": "",
|
||||||
"Close Sidebar": "",
|
"Close Sidebar": "",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "Copiado o portapapeis",
|
"Copied to clipboard": "Copiado o portapapeis",
|
||||||
"Copy": "Copiar",
|
"Copy": "Copiar",
|
||||||
"Copy Formatted Text": "",
|
"Copy Formatted Text": "",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "",
|
"Copy link": "",
|
||||||
"Copy Link": "Copiar enlace",
|
"Copy Link": "Copiar enlace",
|
||||||
"Copy to clipboard": "Copiado o portapapeis",
|
"Copy to clipboard": "Copiado o portapapeis",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "Editar permisos predeterminados",
|
"Edit Default Permissions": "Editar permisos predeterminados",
|
||||||
"Edit Folder": "",
|
"Edit Folder": "",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "Editar Memoria",
|
"Edit Memory": "Editar Memoria",
|
||||||
"Edit User": "Editar Usuario",
|
"Edit User": "Editar Usuario",
|
||||||
"Edit User Group": "Editar grupo de usuarios",
|
"Edit User Group": "Editar grupo de usuarios",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "",
|
"Firecrawl API Base URL": "",
|
||||||
"Firecrawl API Key": "",
|
"Firecrawl API Key": "",
|
||||||
"Floating Quick Actions": "",
|
"Floating Quick Actions": "",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "",
|
"Folder": "",
|
||||||
"Folder Background Image": "",
|
"Folder Background Image": "",
|
||||||
"Folder deleted successfully": "Carpeta eliminada correctamente",
|
"Folder deleted successfully": "Carpeta eliminada correctamente",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "",
|
"Generate": "",
|
||||||
"Generate an image": "Generar unha imaxen",
|
"Generate an image": "Generar unha imaxen",
|
||||||
"Generate Image": "Generar imaxen",
|
"Generate Image": "Generar imaxen",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "",
|
"Generated Image": "",
|
||||||
"Generating search query": "xeneración de consultas de búsqueda",
|
"Generating search query": "xeneración de consultas de búsqueda",
|
||||||
"Generating...": "",
|
"Generating...": "",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "Memoria actualizada correctamente",
|
"Memory updated successfully": "Memoria actualizada correctamente",
|
||||||
"Merge Responses": "Fusionar Respuestas",
|
"Merge Responses": "Fusionar Respuestas",
|
||||||
"Merged Response": "Resposta combinada",
|
"Merged Response": "Resposta combinada",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "a calificación de mensaxes debe estar habilitada para usar esta función",
|
"Message rating should be enabled to use this feature": "a calificación de mensaxes debe estar habilitada para usar esta función",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Os mensaxes que envíe despois de xerar su enlace no compartiránse. os usuarios co enlace podrán ver o chat compartido.",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Os mensaxes que envíe despois de xerar su enlace no compartiránse. os usuarios co enlace podrán ver o chat compartido.",
|
||||||
"Microsoft OneDrive": "",
|
"Microsoft OneDrive": "",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "",
|
"New Note": "",
|
||||||
"New Password": "Novo contrasinal ",
|
"New Password": "Novo contrasinal ",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "",
|
"New Tool": "",
|
||||||
"new-channel": "novo-canal",
|
"new-channel": "novo-canal",
|
||||||
"Next message": "",
|
"Next message": "",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Versión de Ollama",
|
"Ollama Version": "Versión de Ollama",
|
||||||
"On": "Activado",
|
"On": "Activado",
|
||||||
"OneDrive": "OneDrive",
|
"OneDrive": "OneDrive",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "Sólo se permiten caracteres alfanuméricos y guiones",
|
"Only alphanumeric characters and hyphens are allowed": "Sólo se permiten caracteres alfanuméricos y guiones",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "Sólo se permiten caracteres alfanuméricos y guiones en a cadena de comando.",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "Sólo se permiten caracteres alfanuméricos y guiones en a cadena de comando.",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Solo se pueden editar as coleccions, xerar unha nova base de coñecementos para editar / añadir documentos",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Solo se pueden editar as coleccions, xerar unha nova base de coñecementos para editar / añadir documentos",
|
||||||
"Only markdown files are allowed": "",
|
"Only markdown files are allowed": "",
|
||||||
"Only select users and groups with permission can access": "Solo os usuarios y grupos con permiso pueden acceder",
|
"Only select users and groups with permission can access": "Solo os usuarios y grupos con permiso pueden acceder",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "",
|
"Open modal to configure connection": "",
|
||||||
"Open Modal To Manage Floating Quick Actions": "",
|
"Open Modal To Manage Floating Quick Actions": "",
|
||||||
"Open Modal To Manage Image Compression": "",
|
"Open Modal To Manage Image Compression": "",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "",
|
"Open Sidebar": "",
|
||||||
"Open User Profile Menu": "",
|
"Open User Profile Menu": "",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "",
|
"Prefer not to say": "",
|
||||||
"Prefix ID": "ID de prefijo",
|
"Prefix ID": "ID de prefijo",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "O ID de prefixo se utiliza para evitar conflictos con outras conexiones añadiendo un prefijo a os IDs de os modelos - deje vacío para deshabilitar",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "O ID de prefixo se utiliza para evitar conflictos con outras conexiones añadiendo un prefijo a os IDs de os modelos - deje vacío para deshabilitar",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "",
|
"Preview": "",
|
||||||
"Previous 30 days": "Últimos 30 días",
|
"Previous 30 days": "Últimos 30 días",
|
||||||
"Previous 7 days": "Últimos 7 días",
|
"Previous 7 days": "Últimos 7 días",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "Rechazado cuando no debería",
|
"Refused when it shouldn't have": "Rechazado cuando no debería",
|
||||||
"Regenerate": "Regenerar",
|
"Regenerate": "Regenerar",
|
||||||
"Regenerate Menu": "",
|
"Regenerate Menu": "",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "",
|
"Register Again": "",
|
||||||
"Register Client": "",
|
"Register Client": "",
|
||||||
"Registered": "",
|
"Registered": "",
|
||||||
|
|
@ -1439,6 +1457,7 @@
|
||||||
"Show Formatting Toolbar": "",
|
"Show Formatting Toolbar": "",
|
||||||
"Show image preview": "",
|
"Show image preview": "",
|
||||||
"Show Model": "",
|
"Show Model": "",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "¡Motra o teu apoio!",
|
"Show your support!": "¡Motra o teu apoio!",
|
||||||
"Showcased creativity": "Creatividade mostrada",
|
"Showcased creativity": "Creatividade mostrada",
|
||||||
"Sign in": "Iniciar sesión",
|
"Sign in": "Iniciar sesión",
|
||||||
|
|
@ -1474,6 +1493,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "Detener",
|
"Stop": "Detener",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "Detener secuencia",
|
"Stop Sequence": "Detener secuencia",
|
||||||
"Stream Chat Response": "Transmitir resposta de chat",
|
"Stream Chat Response": "Transmitir resposta de chat",
|
||||||
"Stream Delta Chunk Size": "",
|
"Stream Delta Chunk Size": "",
|
||||||
|
|
@ -1503,6 +1523,7 @@
|
||||||
"Tags Generation": "xeneración de etiquetas",
|
"Tags Generation": "xeneración de etiquetas",
|
||||||
"Tags Generation Prompt": "Prompt de xeneración de etiquetas",
|
"Tags Generation Prompt": "Prompt de xeneración de etiquetas",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "Toca para interrumpir",
|
"Tap to interrupt": "Toca para interrumpir",
|
||||||
"Task List": "",
|
"Task List": "",
|
||||||
"Task Model": "",
|
"Task Model": "",
|
||||||
|
|
@ -1584,6 +1605,7 @@
|
||||||
"Toast notifications for new updates": "Notificacions emergentes para novas actualizacions",
|
"Toast notifications for new updates": "Notificacions emergentes para novas actualizacions",
|
||||||
"Today": "Hoxe",
|
"Today": "Hoxe",
|
||||||
"Today at {{LOCALIZED_TIME}}": "",
|
"Today at {{LOCALIZED_TIME}}": "",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "",
|
"Toggle whether current connection is active.": "",
|
||||||
"Token": "Token",
|
"Token": "Token",
|
||||||
"Too verbose": "Demasiado detalliado",
|
"Too verbose": "Demasiado detalliado",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "מודל משימה משמש בעת ביצוע משימות כגון יצירת כותרות עבור צ'אטים ושאילתות חיפוש באינטרנט",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "מודל משימה משמש בעת ביצוע משימות כגון יצירת כותרות עבור צ'אטים ושאילתות חיפוש באינטרנט",
|
||||||
"a user": "משתמש",
|
"a user": "משתמש",
|
||||||
"About": "אודות",
|
"About": "אודות",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "גישה",
|
"Access": "גישה",
|
||||||
"Access Control": "בקרת גישה",
|
"Access Control": "בקרת גישה",
|
||||||
"Accessible to all users": "",
|
"Accessible to all users": "",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "הוסף תוכן",
|
"Add Content": "הוסף תוכן",
|
||||||
"Add content here": "הוסף תוכן כאן",
|
"Add content here": "הוסף תוכן כאן",
|
||||||
"Add Custom Parameter": "",
|
"Add Custom Parameter": "",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "",
|
"Add Details": "",
|
||||||
"Add Files": "הוסף קבצים",
|
"Add Files": "הוסף קבצים",
|
||||||
"Add Group": "הוסף קבוצה",
|
"Add Group": "הוסף קבוצה",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "",
|
"Ask": "",
|
||||||
"Ask a question": "",
|
"Ask a question": "",
|
||||||
"Assistant": "",
|
"Assistant": "",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "",
|
"Attach Knowledge": "",
|
||||||
"Attach Notes": "",
|
"Attach Notes": "",
|
||||||
"Attach Webpage": "",
|
"Attach Webpage": "",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "",
|
"Close Banner": "",
|
||||||
"Close Configure Connection Modal": "",
|
"Close Configure Connection Modal": "",
|
||||||
"Close modal": "",
|
"Close modal": "",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "",
|
"Close settings modal": "",
|
||||||
"Close Sidebar": "",
|
"Close Sidebar": "",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "הועתק ללוח",
|
"Copied to clipboard": "הועתק ללוח",
|
||||||
"Copy": "העתק",
|
"Copy": "העתק",
|
||||||
"Copy Formatted Text": "",
|
"Copy Formatted Text": "",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "",
|
"Copy link": "",
|
||||||
"Copy Link": "העתק קישור",
|
"Copy Link": "העתק קישור",
|
||||||
"Copy to clipboard": "",
|
"Copy to clipboard": "",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "",
|
"Edit Default Permissions": "",
|
||||||
"Edit Folder": "",
|
"Edit Folder": "",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "",
|
"Edit Memory": "",
|
||||||
"Edit User": "ערוך משתמש",
|
"Edit User": "ערוך משתמש",
|
||||||
"Edit User Group": "",
|
"Edit User Group": "",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "",
|
"Firecrawl API Base URL": "",
|
||||||
"Firecrawl API Key": "",
|
"Firecrawl API Key": "",
|
||||||
"Floating Quick Actions": "",
|
"Floating Quick Actions": "",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "",
|
"Folder": "",
|
||||||
"Folder Background Image": "",
|
"Folder Background Image": "",
|
||||||
"Folder deleted successfully": "",
|
"Folder deleted successfully": "",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "",
|
"Generate": "",
|
||||||
"Generate an image": "",
|
"Generate an image": "",
|
||||||
"Generate Image": "",
|
"Generate Image": "",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "",
|
"Generated Image": "",
|
||||||
"Generating search query": "יצירת שאילתת חיפוש",
|
"Generating search query": "יצירת שאילתת חיפוש",
|
||||||
"Generating...": "מג'נרט...",
|
"Generating...": "מג'נרט...",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "",
|
"Memory updated successfully": "",
|
||||||
"Merge Responses": "",
|
"Merge Responses": "",
|
||||||
"Merged Response": "תגובה ממוזגת",
|
"Merged Response": "תגובה ממוזגת",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "דירוג הודעות צריך להיות מאופשר כדי להשתמש בפיצ'ר הזה",
|
"Message rating should be enabled to use this feature": "דירוג הודעות צריך להיות מאופשר כדי להשתמש בפיצ'ר הזה",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "הודעות שתשלח לאחר יצירת הקישור לא ישותפו. משתמשים עם כתובת האתר יוכלו לצפות בצ'אט המשותף.",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "הודעות שתשלח לאחר יצירת הקישור לא ישותפו. משתמשים עם כתובת האתר יוכלו לצפות בצ'אט המשותף.",
|
||||||
"Microsoft OneDrive": "",
|
"Microsoft OneDrive": "",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "פתק חדש",
|
"New Note": "פתק חדש",
|
||||||
"New Password": "סיסמה חדשה",
|
"New Password": "סיסמה חדשה",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "כלי חדש",
|
"New Tool": "כלי חדש",
|
||||||
"new-channel": "",
|
"new-channel": "",
|
||||||
"Next message": "",
|
"Next message": "",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "גרסת Ollama",
|
"Ollama Version": "גרסת Ollama",
|
||||||
"On": "פועל",
|
"On": "פועל",
|
||||||
"OneDrive": "",
|
"OneDrive": "",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "",
|
"Only alphanumeric characters and hyphens are allowed": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "רק תווים אלפאנומריים ומקפים מותרים במחרוזת הפקודה.",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "רק תווים אלפאנומריים ומקפים מותרים במחרוזת הפקודה.",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
|
||||||
"Only markdown files are allowed": "",
|
"Only markdown files are allowed": "",
|
||||||
"Only select users and groups with permission can access": "",
|
"Only select users and groups with permission can access": "",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "",
|
"Open modal to configure connection": "",
|
||||||
"Open Modal To Manage Floating Quick Actions": "",
|
"Open Modal To Manage Floating Quick Actions": "",
|
||||||
"Open Modal To Manage Image Compression": "",
|
"Open Modal To Manage Image Compression": "",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "",
|
"Open Sidebar": "",
|
||||||
"Open User Profile Menu": "",
|
"Open User Profile Menu": "",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "",
|
"Prefer not to say": "",
|
||||||
"Prefix ID": "",
|
"Prefix ID": "",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "",
|
"Preview": "",
|
||||||
"Previous 30 days": "30 הימים הקודמים",
|
"Previous 30 days": "30 הימים הקודמים",
|
||||||
"Previous 7 days": "7 הימים הקודמים",
|
"Previous 7 days": "7 הימים הקודמים",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "נדחה כאשר לא היה צריך",
|
"Refused when it shouldn't have": "נדחה כאשר לא היה צריך",
|
||||||
"Regenerate": "הפק מחדש",
|
"Regenerate": "הפק מחדש",
|
||||||
"Regenerate Menu": "",
|
"Regenerate Menu": "",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "",
|
"Register Again": "",
|
||||||
"Register Client": "",
|
"Register Client": "",
|
||||||
"Registered": "",
|
"Registered": "",
|
||||||
|
|
@ -1440,6 +1458,7 @@
|
||||||
"Show Formatting Toolbar": "",
|
"Show Formatting Toolbar": "",
|
||||||
"Show image preview": "",
|
"Show image preview": "",
|
||||||
"Show Model": "",
|
"Show Model": "",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "",
|
"Show your support!": "",
|
||||||
"Showcased creativity": "הצגת יצירתיות",
|
"Showcased creativity": "הצגת יצירתיות",
|
||||||
"Sign in": "הירשם",
|
"Sign in": "הירשם",
|
||||||
|
|
@ -1475,6 +1494,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "",
|
"Stop": "",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "סידור עצירה",
|
"Stop Sequence": "סידור עצירה",
|
||||||
"Stream Chat Response": "",
|
"Stream Chat Response": "",
|
||||||
"Stream Delta Chunk Size": "",
|
"Stream Delta Chunk Size": "",
|
||||||
|
|
@ -1504,6 +1524,7 @@
|
||||||
"Tags Generation": "",
|
"Tags Generation": "",
|
||||||
"Tags Generation Prompt": "",
|
"Tags Generation Prompt": "",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "",
|
"Tap to interrupt": "",
|
||||||
"Task List": "",
|
"Task List": "",
|
||||||
"Task Model": "",
|
"Task Model": "",
|
||||||
|
|
@ -1585,6 +1606,7 @@
|
||||||
"Toast notifications for new updates": "",
|
"Toast notifications for new updates": "",
|
||||||
"Today": "היום",
|
"Today": "היום",
|
||||||
"Today at {{LOCALIZED_TIME}}": "",
|
"Today at {{LOCALIZED_TIME}}": "",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "",
|
"Toggle whether current connection is active.": "",
|
||||||
"Token": "",
|
"Token": "",
|
||||||
"Too verbose": "",
|
"Too verbose": "",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "चैट और वेब खोज क्वेरी के लिए शीर्षक उत्पन्न करने जैसे कार्य करते समय कार्य मॉडल का उपयोग किया जाता है",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "चैट और वेब खोज क्वेरी के लिए शीर्षक उत्पन्न करने जैसे कार्य करते समय कार्य मॉडल का उपयोग किया जाता है",
|
||||||
"a user": "एक उपयोगकर्ता",
|
"a user": "एक उपयोगकर्ता",
|
||||||
"About": "हमारे बारे में",
|
"About": "हमारे बारे में",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "",
|
"Access": "",
|
||||||
"Access Control": "",
|
"Access Control": "",
|
||||||
"Accessible to all users": "",
|
"Accessible to all users": "",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "",
|
"Add Content": "",
|
||||||
"Add content here": "",
|
"Add content here": "",
|
||||||
"Add Custom Parameter": "",
|
"Add Custom Parameter": "",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "",
|
"Add Details": "",
|
||||||
"Add Files": "फाइलें जोड़ें",
|
"Add Files": "फाइलें जोड़ें",
|
||||||
"Add Group": "",
|
"Add Group": "",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "",
|
"Ask": "",
|
||||||
"Ask a question": "",
|
"Ask a question": "",
|
||||||
"Assistant": "",
|
"Assistant": "",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "",
|
"Attach Knowledge": "",
|
||||||
"Attach Notes": "",
|
"Attach Notes": "",
|
||||||
"Attach Webpage": "",
|
"Attach Webpage": "",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "",
|
"Close Banner": "",
|
||||||
"Close Configure Connection Modal": "",
|
"Close Configure Connection Modal": "",
|
||||||
"Close modal": "",
|
"Close modal": "",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "",
|
"Close settings modal": "",
|
||||||
"Close Sidebar": "",
|
"Close Sidebar": "",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "",
|
"Copied to clipboard": "",
|
||||||
"Copy": "कॉपी",
|
"Copy": "कॉपी",
|
||||||
"Copy Formatted Text": "",
|
"Copy Formatted Text": "",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "",
|
"Copy link": "",
|
||||||
"Copy Link": "लिंक को कॉपी करें",
|
"Copy Link": "लिंक को कॉपी करें",
|
||||||
"Copy to clipboard": "",
|
"Copy to clipboard": "",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "",
|
"Edit Default Permissions": "",
|
||||||
"Edit Folder": "",
|
"Edit Folder": "",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "",
|
"Edit Memory": "",
|
||||||
"Edit User": "यूजर को संपादित करो",
|
"Edit User": "यूजर को संपादित करो",
|
||||||
"Edit User Group": "",
|
"Edit User Group": "",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "",
|
"Firecrawl API Base URL": "",
|
||||||
"Firecrawl API Key": "",
|
"Firecrawl API Key": "",
|
||||||
"Floating Quick Actions": "",
|
"Floating Quick Actions": "",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "",
|
"Folder": "",
|
||||||
"Folder Background Image": "",
|
"Folder Background Image": "",
|
||||||
"Folder deleted successfully": "",
|
"Folder deleted successfully": "",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "",
|
"Generate": "",
|
||||||
"Generate an image": "",
|
"Generate an image": "",
|
||||||
"Generate Image": "",
|
"Generate Image": "",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "",
|
"Generated Image": "",
|
||||||
"Generating search query": "खोज क्वेरी जनरेट करना",
|
"Generating search query": "खोज क्वेरी जनरेट करना",
|
||||||
"Generating...": "",
|
"Generating...": "",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "",
|
"Memory updated successfully": "",
|
||||||
"Merge Responses": "",
|
"Merge Responses": "",
|
||||||
"Merged Response": "मिली-जुली प्रतिक्रिया",
|
"Merged Response": "मिली-जुली प्रतिक्रिया",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "",
|
"Message rating should be enabled to use this feature": "",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "अपना लिंक बनाने के बाद आपके द्वारा भेजे गए संदेश साझा नहीं किए जाएंगे। यूआरएल वाले यूजर्स शेयर की गई चैट देख पाएंगे।",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "अपना लिंक बनाने के बाद आपके द्वारा भेजे गए संदेश साझा नहीं किए जाएंगे। यूआरएल वाले यूजर्स शेयर की गई चैट देख पाएंगे।",
|
||||||
"Microsoft OneDrive": "",
|
"Microsoft OneDrive": "",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "",
|
"New Note": "",
|
||||||
"New Password": "नया पासवर्ड",
|
"New Password": "नया पासवर्ड",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "",
|
"New Tool": "",
|
||||||
"new-channel": "",
|
"new-channel": "",
|
||||||
"Next message": "",
|
"Next message": "",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Ollama Version",
|
"Ollama Version": "Ollama Version",
|
||||||
"On": "चालू",
|
"On": "चालू",
|
||||||
"OneDrive": "",
|
"OneDrive": "",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "",
|
"Only alphanumeric characters and hyphens are allowed": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "कमांड स्ट्रिंग में केवल अल्फ़ान्यूमेरिक वर्ण और हाइफ़न की अनुमति है।",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "कमांड स्ट्रिंग में केवल अल्फ़ान्यूमेरिक वर्ण और हाइफ़न की अनुमति है।",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
|
||||||
"Only markdown files are allowed": "",
|
"Only markdown files are allowed": "",
|
||||||
"Only select users and groups with permission can access": "",
|
"Only select users and groups with permission can access": "",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "",
|
"Open modal to configure connection": "",
|
||||||
"Open Modal To Manage Floating Quick Actions": "",
|
"Open Modal To Manage Floating Quick Actions": "",
|
||||||
"Open Modal To Manage Image Compression": "",
|
"Open Modal To Manage Image Compression": "",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "",
|
"Open Sidebar": "",
|
||||||
"Open User Profile Menu": "",
|
"Open User Profile Menu": "",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "",
|
"Prefer not to say": "",
|
||||||
"Prefix ID": "",
|
"Prefix ID": "",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "",
|
"Preview": "",
|
||||||
"Previous 30 days": "पिछले 30 दिन",
|
"Previous 30 days": "पिछले 30 दिन",
|
||||||
"Previous 7 days": "पिछले 7 दिन",
|
"Previous 7 days": "पिछले 7 दिन",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "जब ऐसा नहीं होना चाहिए था तो मना कर दिया",
|
"Refused when it shouldn't have": "जब ऐसा नहीं होना चाहिए था तो मना कर दिया",
|
||||||
"Regenerate": "पुनः जेनरेट",
|
"Regenerate": "पुनः जेनरेट",
|
||||||
"Regenerate Menu": "",
|
"Regenerate Menu": "",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "",
|
"Register Again": "",
|
||||||
"Register Client": "",
|
"Register Client": "",
|
||||||
"Registered": "",
|
"Registered": "",
|
||||||
|
|
@ -1439,6 +1457,7 @@
|
||||||
"Show Formatting Toolbar": "",
|
"Show Formatting Toolbar": "",
|
||||||
"Show image preview": "",
|
"Show image preview": "",
|
||||||
"Show Model": "",
|
"Show Model": "",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "",
|
"Show your support!": "",
|
||||||
"Showcased creativity": "रचनात्मकता का प्रदर्शन किया",
|
"Showcased creativity": "रचनात्मकता का प्रदर्शन किया",
|
||||||
"Sign in": "साइन इन",
|
"Sign in": "साइन इन",
|
||||||
|
|
@ -1474,6 +1493,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "",
|
"Stop": "",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "अनुक्रम रोकें",
|
"Stop Sequence": "अनुक्रम रोकें",
|
||||||
"Stream Chat Response": "",
|
"Stream Chat Response": "",
|
||||||
"Stream Delta Chunk Size": "",
|
"Stream Delta Chunk Size": "",
|
||||||
|
|
@ -1503,6 +1523,7 @@
|
||||||
"Tags Generation": "",
|
"Tags Generation": "",
|
||||||
"Tags Generation Prompt": "",
|
"Tags Generation Prompt": "",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "",
|
"Tap to interrupt": "",
|
||||||
"Task List": "",
|
"Task List": "",
|
||||||
"Task Model": "",
|
"Task Model": "",
|
||||||
|
|
@ -1584,6 +1605,7 @@
|
||||||
"Toast notifications for new updates": "",
|
"Toast notifications for new updates": "",
|
||||||
"Today": "आज",
|
"Today": "आज",
|
||||||
"Today at {{LOCALIZED_TIME}}": "",
|
"Today at {{LOCALIZED_TIME}}": "",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "",
|
"Toggle whether current connection is active.": "",
|
||||||
"Token": "",
|
"Token": "",
|
||||||
"Too verbose": "",
|
"Too verbose": "",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Model zadatka koristi se pri izvođenju zadataka kao što su generiranje naslova za razgovore i upite za pretraživanje weba",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Model zadatka koristi se pri izvođenju zadataka kao što su generiranje naslova za razgovore i upite za pretraživanje weba",
|
||||||
"a user": "korisnik",
|
"a user": "korisnik",
|
||||||
"About": "O aplikaciji",
|
"About": "O aplikaciji",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "",
|
"Access": "",
|
||||||
"Access Control": "",
|
"Access Control": "",
|
||||||
"Accessible to all users": "",
|
"Accessible to all users": "",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "",
|
"Add Content": "",
|
||||||
"Add content here": "",
|
"Add content here": "",
|
||||||
"Add Custom Parameter": "",
|
"Add Custom Parameter": "",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "",
|
"Add Details": "",
|
||||||
"Add Files": "Dodaj datoteke",
|
"Add Files": "Dodaj datoteke",
|
||||||
"Add Group": "",
|
"Add Group": "",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "",
|
"Ask": "",
|
||||||
"Ask a question": "",
|
"Ask a question": "",
|
||||||
"Assistant": "",
|
"Assistant": "",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "",
|
"Attach Knowledge": "",
|
||||||
"Attach Notes": "",
|
"Attach Notes": "",
|
||||||
"Attach Webpage": "",
|
"Attach Webpage": "",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "",
|
"Close Banner": "",
|
||||||
"Close Configure Connection Modal": "",
|
"Close Configure Connection Modal": "",
|
||||||
"Close modal": "",
|
"Close modal": "",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "",
|
"Close settings modal": "",
|
||||||
"Close Sidebar": "",
|
"Close Sidebar": "",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "",
|
"Copied to clipboard": "",
|
||||||
"Copy": "Kopiraj",
|
"Copy": "Kopiraj",
|
||||||
"Copy Formatted Text": "",
|
"Copy Formatted Text": "",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "",
|
"Copy link": "",
|
||||||
"Copy Link": "Kopiraj vezu",
|
"Copy Link": "Kopiraj vezu",
|
||||||
"Copy to clipboard": "",
|
"Copy to clipboard": "",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "",
|
"Edit Default Permissions": "",
|
||||||
"Edit Folder": "",
|
"Edit Folder": "",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "",
|
"Edit Memory": "",
|
||||||
"Edit User": "Uredi korisnika",
|
"Edit User": "Uredi korisnika",
|
||||||
"Edit User Group": "",
|
"Edit User Group": "",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "",
|
"Firecrawl API Base URL": "",
|
||||||
"Firecrawl API Key": "",
|
"Firecrawl API Key": "",
|
||||||
"Floating Quick Actions": "",
|
"Floating Quick Actions": "",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "",
|
"Folder": "",
|
||||||
"Folder Background Image": "",
|
"Folder Background Image": "",
|
||||||
"Folder deleted successfully": "",
|
"Folder deleted successfully": "",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "",
|
"Generate": "",
|
||||||
"Generate an image": "",
|
"Generate an image": "",
|
||||||
"Generate Image": "Gneriraj sliku",
|
"Generate Image": "Gneriraj sliku",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "",
|
"Generated Image": "",
|
||||||
"Generating search query": "Generiranje upita za pretraživanje",
|
"Generating search query": "Generiranje upita za pretraživanje",
|
||||||
"Generating...": "",
|
"Generating...": "",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "",
|
"Memory updated successfully": "",
|
||||||
"Merge Responses": "",
|
"Merge Responses": "",
|
||||||
"Merged Response": "Spojeni odgovor",
|
"Merged Response": "Spojeni odgovor",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "",
|
"Message rating should be enabled to use this feature": "",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Poruke koje pošaljete nakon stvaranja veze neće se dijeliti. Korisnici s URL-om moći će vidjeti zajednički chat.",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Poruke koje pošaljete nakon stvaranja veze neće se dijeliti. Korisnici s URL-om moći će vidjeti zajednički chat.",
|
||||||
"Microsoft OneDrive": "",
|
"Microsoft OneDrive": "",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "",
|
"New Note": "",
|
||||||
"New Password": "Nova lozinka",
|
"New Password": "Nova lozinka",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "",
|
"New Tool": "",
|
||||||
"new-channel": "",
|
"new-channel": "",
|
||||||
"Next message": "",
|
"Next message": "",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Ollama verzija",
|
"Ollama Version": "Ollama verzija",
|
||||||
"On": "Uključeno",
|
"On": "Uključeno",
|
||||||
"OneDrive": "",
|
"OneDrive": "",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "",
|
"Only alphanumeric characters and hyphens are allowed": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "Samo alfanumerički znakovi i crtice su dopušteni u naredbenom nizu.",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "Samo alfanumerički znakovi i crtice su dopušteni u naredbenom nizu.",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
|
||||||
"Only markdown files are allowed": "",
|
"Only markdown files are allowed": "",
|
||||||
"Only select users and groups with permission can access": "",
|
"Only select users and groups with permission can access": "",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "",
|
"Open modal to configure connection": "",
|
||||||
"Open Modal To Manage Floating Quick Actions": "",
|
"Open Modal To Manage Floating Quick Actions": "",
|
||||||
"Open Modal To Manage Image Compression": "",
|
"Open Modal To Manage Image Compression": "",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "",
|
"Open Sidebar": "",
|
||||||
"Open User Profile Menu": "",
|
"Open User Profile Menu": "",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "",
|
"Prefer not to say": "",
|
||||||
"Prefix ID": "",
|
"Prefix ID": "",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "",
|
"Preview": "",
|
||||||
"Previous 30 days": "Prethodnih 30 dana",
|
"Previous 30 days": "Prethodnih 30 dana",
|
||||||
"Previous 7 days": "Prethodnih 7 dana",
|
"Previous 7 days": "Prethodnih 7 dana",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "Odbijen kada nije trebao biti",
|
"Refused when it shouldn't have": "Odbijen kada nije trebao biti",
|
||||||
"Regenerate": "Regeneriraj",
|
"Regenerate": "Regeneriraj",
|
||||||
"Regenerate Menu": "",
|
"Regenerate Menu": "",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "",
|
"Register Again": "",
|
||||||
"Register Client": "",
|
"Register Client": "",
|
||||||
"Registered": "",
|
"Registered": "",
|
||||||
|
|
@ -1440,6 +1458,7 @@
|
||||||
"Show Formatting Toolbar": "",
|
"Show Formatting Toolbar": "",
|
||||||
"Show image preview": "",
|
"Show image preview": "",
|
||||||
"Show Model": "",
|
"Show Model": "",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "",
|
"Show your support!": "",
|
||||||
"Showcased creativity": "Prikazana kreativnost",
|
"Showcased creativity": "Prikazana kreativnost",
|
||||||
"Sign in": "Prijava",
|
"Sign in": "Prijava",
|
||||||
|
|
@ -1475,6 +1494,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "",
|
"Stop": "",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "Zaustavi sekvencu",
|
"Stop Sequence": "Zaustavi sekvencu",
|
||||||
"Stream Chat Response": "",
|
"Stream Chat Response": "",
|
||||||
"Stream Delta Chunk Size": "",
|
"Stream Delta Chunk Size": "",
|
||||||
|
|
@ -1504,6 +1524,7 @@
|
||||||
"Tags Generation": "",
|
"Tags Generation": "",
|
||||||
"Tags Generation Prompt": "",
|
"Tags Generation Prompt": "",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "",
|
"Tap to interrupt": "",
|
||||||
"Task List": "",
|
"Task List": "",
|
||||||
"Task Model": "",
|
"Task Model": "",
|
||||||
|
|
@ -1585,6 +1606,7 @@
|
||||||
"Toast notifications for new updates": "",
|
"Toast notifications for new updates": "",
|
||||||
"Today": "Danas",
|
"Today": "Danas",
|
||||||
"Today at {{LOCALIZED_TIME}}": "",
|
"Today at {{LOCALIZED_TIME}}": "",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "",
|
"Toggle whether current connection is active.": "",
|
||||||
"Token": "",
|
"Token": "",
|
||||||
"Too verbose": "",
|
"Too verbose": "",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "A feladat modell olyan feladatokhoz használatos, mint a beszélgetések címeinek generálása és webes keresési lekérdezések",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "A feladat modell olyan feladatokhoz használatos, mint a beszélgetések címeinek generálása és webes keresési lekérdezések",
|
||||||
"a user": "egy felhasználó",
|
"a user": "egy felhasználó",
|
||||||
"About": "Névjegy",
|
"About": "Névjegy",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "Hozzáférés",
|
"Access": "Hozzáférés",
|
||||||
"Access Control": "Hozzáférés-vezérlés",
|
"Access Control": "Hozzáférés-vezérlés",
|
||||||
"Accessible to all users": "Minden felhasználó számára elérhető",
|
"Accessible to all users": "Minden felhasználó számára elérhető",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "Tartalom hozzáadása",
|
"Add Content": "Tartalom hozzáadása",
|
||||||
"Add content here": "Tartalom hozzáadása ide",
|
"Add content here": "Tartalom hozzáadása ide",
|
||||||
"Add Custom Parameter": "",
|
"Add Custom Parameter": "",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "",
|
"Add Details": "",
|
||||||
"Add Files": "Fájlok hozzáadása",
|
"Add Files": "Fájlok hozzáadása",
|
||||||
"Add Group": "Csoport hozzáadása",
|
"Add Group": "Csoport hozzáadása",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "Kérdezz",
|
"Ask": "Kérdezz",
|
||||||
"Ask a question": "Kérdezz valamit",
|
"Ask a question": "Kérdezz valamit",
|
||||||
"Assistant": "Asszisztens",
|
"Assistant": "Asszisztens",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "",
|
"Attach Knowledge": "",
|
||||||
"Attach Notes": "",
|
"Attach Notes": "",
|
||||||
"Attach Webpage": "",
|
"Attach Webpage": "",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "",
|
"Close Banner": "",
|
||||||
"Close Configure Connection Modal": "",
|
"Close Configure Connection Modal": "",
|
||||||
"Close modal": "",
|
"Close modal": "",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "",
|
"Close settings modal": "",
|
||||||
"Close Sidebar": "",
|
"Close Sidebar": "",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "Vágólapra másolva",
|
"Copied to clipboard": "Vágólapra másolva",
|
||||||
"Copy": "Másolás",
|
"Copy": "Másolás",
|
||||||
"Copy Formatted Text": "",
|
"Copy Formatted Text": "",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "",
|
"Copy link": "",
|
||||||
"Copy Link": "Link másolása",
|
"Copy Link": "Link másolása",
|
||||||
"Copy to clipboard": "Másolás a vágólapra",
|
"Copy to clipboard": "Másolás a vágólapra",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "Alapértelmezett engedélyek szerkesztése",
|
"Edit Default Permissions": "Alapértelmezett engedélyek szerkesztése",
|
||||||
"Edit Folder": "",
|
"Edit Folder": "",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "Memória szerkesztése",
|
"Edit Memory": "Memória szerkesztése",
|
||||||
"Edit User": "Felhasználó szerkesztése",
|
"Edit User": "Felhasználó szerkesztése",
|
||||||
"Edit User Group": "Felhasználói csoport szerkesztése",
|
"Edit User Group": "Felhasználói csoport szerkesztése",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "",
|
"Firecrawl API Base URL": "",
|
||||||
"Firecrawl API Key": "",
|
"Firecrawl API Key": "",
|
||||||
"Floating Quick Actions": "",
|
"Floating Quick Actions": "",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "",
|
"Folder": "",
|
||||||
"Folder Background Image": "",
|
"Folder Background Image": "",
|
||||||
"Folder deleted successfully": "Mappa sikeresen törölve",
|
"Folder deleted successfully": "Mappa sikeresen törölve",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "",
|
"Generate": "",
|
||||||
"Generate an image": "Kép generálása",
|
"Generate an image": "Kép generálása",
|
||||||
"Generate Image": "Kép generálása",
|
"Generate Image": "Kép generálása",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "",
|
"Generated Image": "",
|
||||||
"Generating search query": "Keresési lekérdezés generálása",
|
"Generating search query": "Keresési lekérdezés generálása",
|
||||||
"Generating...": "",
|
"Generating...": "",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "Memória sikeresen frissítve",
|
"Memory updated successfully": "Memória sikeresen frissítve",
|
||||||
"Merge Responses": "Válaszok egyesítése",
|
"Merge Responses": "Válaszok egyesítése",
|
||||||
"Merged Response": "Összevont válasz",
|
"Merged Response": "Összevont válasz",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "Az üzenetértékelésnek engedélyezve kell lennie ehhez a funkcióhoz",
|
"Message rating should be enabled to use this feature": "Az üzenetértékelésnek engedélyezve kell lennie ehhez a funkcióhoz",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "A link létrehozása után küldött üzenetei nem lesznek megosztva. A URL-lel rendelkező felhasználók megtekinthetik a megosztott beszélgetést.",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "A link létrehozása után küldött üzenetei nem lesznek megosztva. A URL-lel rendelkező felhasználók megtekinthetik a megosztott beszélgetést.",
|
||||||
"Microsoft OneDrive": "",
|
"Microsoft OneDrive": "",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "",
|
"New Note": "",
|
||||||
"New Password": "Új jelszó",
|
"New Password": "Új jelszó",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "",
|
"New Tool": "",
|
||||||
"new-channel": "új csatorna",
|
"new-channel": "új csatorna",
|
||||||
"Next message": "",
|
"Next message": "",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Ollama verzió",
|
"Ollama Version": "Ollama verzió",
|
||||||
"On": "Be",
|
"On": "Be",
|
||||||
"OneDrive": "OneDrive",
|
"OneDrive": "OneDrive",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "Csak alfanumerikus karakterek és kötőjelek engedélyezettek",
|
"Only alphanumeric characters and hyphens are allowed": "Csak alfanumerikus karakterek és kötőjelek engedélyezettek",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "Csak alfanumerikus karakterek és kötőjelek engedélyezettek a parancssorban.",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "Csak alfanumerikus karakterek és kötőjelek engedélyezettek a parancssorban.",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Csak gyűjtemények szerkeszthetők, hozzon létre új tudásbázist dokumentumok szerkesztéséhez/hozzáadásához.",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Csak gyűjtemények szerkeszthetők, hozzon létre új tudásbázist dokumentumok szerkesztéséhez/hozzáadásához.",
|
||||||
"Only markdown files are allowed": "",
|
"Only markdown files are allowed": "",
|
||||||
"Only select users and groups with permission can access": "Csak a kiválasztott, engedéllyel rendelkező felhasználók és csoportok férhetnek hozzá",
|
"Only select users and groups with permission can access": "Csak a kiválasztott, engedéllyel rendelkező felhasználók és csoportok férhetnek hozzá",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "",
|
"Open modal to configure connection": "",
|
||||||
"Open Modal To Manage Floating Quick Actions": "",
|
"Open Modal To Manage Floating Quick Actions": "",
|
||||||
"Open Modal To Manage Image Compression": "",
|
"Open Modal To Manage Image Compression": "",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "",
|
"Open Sidebar": "",
|
||||||
"Open User Profile Menu": "",
|
"Open User Profile Menu": "",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "Az Open WebUI bármely OpenAPI szerver által biztosított eszközöket használhat.",
|
"Open WebUI can use tools provided by any OpenAPI server.": "Az Open WebUI bármely OpenAPI szerver által biztosított eszközöket használhat.",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "",
|
"Prefer not to say": "",
|
||||||
"Prefix ID": "Előtag azonosító",
|
"Prefix ID": "Előtag azonosító",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Az előtag azonosító a modell azonosítókhoz hozzáadott előtag segítségével elkerüli az egyéb kapcsolatokkal való ütközéseket - hagyja üresen a letiltáshoz",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Az előtag azonosító a modell azonosítókhoz hozzáadott előtag segítségével elkerüli az egyéb kapcsolatokkal való ütközéseket - hagyja üresen a letiltáshoz",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "",
|
"Preview": "",
|
||||||
"Previous 30 days": "Előző 30 nap",
|
"Previous 30 days": "Előző 30 nap",
|
||||||
"Previous 7 days": "Előző 7 nap",
|
"Previous 7 days": "Előző 7 nap",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "Elutasítva, amikor nem kellett volna",
|
"Refused when it shouldn't have": "Elutasítva, amikor nem kellett volna",
|
||||||
"Regenerate": "Újragenerálás",
|
"Regenerate": "Újragenerálás",
|
||||||
"Regenerate Menu": "",
|
"Regenerate Menu": "",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "",
|
"Register Again": "",
|
||||||
"Register Client": "",
|
"Register Client": "",
|
||||||
"Registered": "",
|
"Registered": "",
|
||||||
|
|
@ -1439,6 +1457,7 @@
|
||||||
"Show Formatting Toolbar": "",
|
"Show Formatting Toolbar": "",
|
||||||
"Show image preview": "",
|
"Show image preview": "",
|
||||||
"Show Model": "Modell megjelenítése",
|
"Show Model": "Modell megjelenítése",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "Mutassa meg támogatását!",
|
"Show your support!": "Mutassa meg támogatását!",
|
||||||
"Showcased creativity": "Kreativitás bemutatva",
|
"Showcased creativity": "Kreativitás bemutatva",
|
||||||
"Sign in": "Bejelentkezés",
|
"Sign in": "Bejelentkezés",
|
||||||
|
|
@ -1474,6 +1493,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "Leállítás",
|
"Stop": "Leállítás",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "Leállítási szekvencia",
|
"Stop Sequence": "Leállítási szekvencia",
|
||||||
"Stream Chat Response": "Chat válasz streamelése",
|
"Stream Chat Response": "Chat válasz streamelése",
|
||||||
"Stream Delta Chunk Size": "",
|
"Stream Delta Chunk Size": "",
|
||||||
|
|
@ -1503,6 +1523,7 @@
|
||||||
"Tags Generation": "Címke generálás",
|
"Tags Generation": "Címke generálás",
|
||||||
"Tags Generation Prompt": "Címke generálási prompt",
|
"Tags Generation Prompt": "Címke generálási prompt",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "A farok nélküli mintavétel csökkenti a kevésbé valószínű tokenek hatását a kimeneten. Magasabb érték (pl. 2,0) jobban csökkenti a hatást, míg az 1,0 érték kikapcsolja ezt a beállítást.",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "A farok nélküli mintavétel csökkenti a kevésbé valószínű tokenek hatását a kimeneten. Magasabb érték (pl. 2,0) jobban csökkenti a hatást, míg az 1,0 érték kikapcsolja ezt a beállítást.",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "Koppintson a megszakításhoz",
|
"Tap to interrupt": "Koppintson a megszakításhoz",
|
||||||
"Task List": "",
|
"Task List": "",
|
||||||
"Task Model": "",
|
"Task Model": "",
|
||||||
|
|
@ -1584,6 +1605,7 @@
|
||||||
"Toast notifications for new updates": "Felugró értesítések az új frissítésekről",
|
"Toast notifications for new updates": "Felugró értesítések az új frissítésekről",
|
||||||
"Today": "Ma",
|
"Today": "Ma",
|
||||||
"Today at {{LOCALIZED_TIME}}": "",
|
"Today at {{LOCALIZED_TIME}}": "",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "",
|
"Toggle whether current connection is active.": "",
|
||||||
"Token": "Token",
|
"Token": "Token",
|
||||||
"Too verbose": "Túl bőbeszédű",
|
"Too verbose": "Túl bőbeszédű",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Model tugas digunakan saat melakukan tugas seperti membuat judul untuk obrolan dan kueri penelusuran web",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Model tugas digunakan saat melakukan tugas seperti membuat judul untuk obrolan dan kueri penelusuran web",
|
||||||
"a user": "seorang pengguna",
|
"a user": "seorang pengguna",
|
||||||
"About": "Tentang",
|
"About": "Tentang",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "",
|
"Access": "",
|
||||||
"Access Control": "",
|
"Access Control": "",
|
||||||
"Accessible to all users": "",
|
"Accessible to all users": "",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "",
|
"Add Content": "",
|
||||||
"Add content here": "",
|
"Add content here": "",
|
||||||
"Add Custom Parameter": "",
|
"Add Custom Parameter": "",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "",
|
"Add Details": "",
|
||||||
"Add Files": "Menambahkan File",
|
"Add Files": "Menambahkan File",
|
||||||
"Add Group": "",
|
"Add Group": "",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "",
|
"Ask": "",
|
||||||
"Ask a question": "",
|
"Ask a question": "",
|
||||||
"Assistant": "",
|
"Assistant": "",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "",
|
"Attach Knowledge": "",
|
||||||
"Attach Notes": "",
|
"Attach Notes": "",
|
||||||
"Attach Webpage": "",
|
"Attach Webpage": "",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "",
|
"Close Banner": "",
|
||||||
"Close Configure Connection Modal": "",
|
"Close Configure Connection Modal": "",
|
||||||
"Close modal": "",
|
"Close modal": "",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "",
|
"Close settings modal": "",
|
||||||
"Close Sidebar": "",
|
"Close Sidebar": "",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "",
|
"Copied to clipboard": "",
|
||||||
"Copy": "Menyalin",
|
"Copy": "Menyalin",
|
||||||
"Copy Formatted Text": "",
|
"Copy Formatted Text": "",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "",
|
"Copy link": "",
|
||||||
"Copy Link": "Salin Tautan",
|
"Copy Link": "Salin Tautan",
|
||||||
"Copy to clipboard": "",
|
"Copy to clipboard": "",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "",
|
"Edit Default Permissions": "",
|
||||||
"Edit Folder": "",
|
"Edit Folder": "",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "Edit Memori",
|
"Edit Memory": "Edit Memori",
|
||||||
"Edit User": "Edit Pengguna",
|
"Edit User": "Edit Pengguna",
|
||||||
"Edit User Group": "",
|
"Edit User Group": "",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "",
|
"Firecrawl API Base URL": "",
|
||||||
"Firecrawl API Key": "",
|
"Firecrawl API Key": "",
|
||||||
"Floating Quick Actions": "",
|
"Floating Quick Actions": "",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "",
|
"Folder": "",
|
||||||
"Folder Background Image": "",
|
"Folder Background Image": "",
|
||||||
"Folder deleted successfully": "",
|
"Folder deleted successfully": "",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "",
|
"Generate": "",
|
||||||
"Generate an image": "",
|
"Generate an image": "",
|
||||||
"Generate Image": "Menghasilkan Gambar",
|
"Generate Image": "Menghasilkan Gambar",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "",
|
"Generated Image": "",
|
||||||
"Generating search query": "Membuat kueri penelusuran",
|
"Generating search query": "Membuat kueri penelusuran",
|
||||||
"Generating...": "",
|
"Generating...": "",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "Memori berhasil diperbarui",
|
"Memory updated successfully": "Memori berhasil diperbarui",
|
||||||
"Merge Responses": "",
|
"Merge Responses": "",
|
||||||
"Merged Response": "Tanggapan yang Digabungkan",
|
"Merged Response": "Tanggapan yang Digabungkan",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "",
|
"Message rating should be enabled to use this feature": "",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Pesan yang Anda kirim setelah membuat tautan tidak akan dibagikan. Pengguna yang memiliki URL tersebut akan dapat melihat obrolan yang dibagikan.",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Pesan yang Anda kirim setelah membuat tautan tidak akan dibagikan. Pengguna yang memiliki URL tersebut akan dapat melihat obrolan yang dibagikan.",
|
||||||
"Microsoft OneDrive": "",
|
"Microsoft OneDrive": "",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "",
|
"New Note": "",
|
||||||
"New Password": "Kata Sandi Baru",
|
"New Password": "Kata Sandi Baru",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "",
|
"New Tool": "",
|
||||||
"new-channel": "",
|
"new-channel": "",
|
||||||
"Next message": "",
|
"Next message": "",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Versi Ollama",
|
"Ollama Version": "Versi Ollama",
|
||||||
"On": "Aktif",
|
"On": "Aktif",
|
||||||
"OneDrive": "",
|
"OneDrive": "",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "",
|
"Only alphanumeric characters and hyphens are allowed": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "Hanya karakter alfanumerik dan tanda hubung yang diizinkan dalam string perintah.",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "Hanya karakter alfanumerik dan tanda hubung yang diizinkan dalam string perintah.",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
|
||||||
"Only markdown files are allowed": "",
|
"Only markdown files are allowed": "",
|
||||||
"Only select users and groups with permission can access": "",
|
"Only select users and groups with permission can access": "",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "",
|
"Open modal to configure connection": "",
|
||||||
"Open Modal To Manage Floating Quick Actions": "",
|
"Open Modal To Manage Floating Quick Actions": "",
|
||||||
"Open Modal To Manage Image Compression": "",
|
"Open Modal To Manage Image Compression": "",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "",
|
"Open Sidebar": "",
|
||||||
"Open User Profile Menu": "",
|
"Open User Profile Menu": "",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "",
|
"Prefer not to say": "",
|
||||||
"Prefix ID": "",
|
"Prefix ID": "",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "",
|
"Preview": "",
|
||||||
"Previous 30 days": "30 hari sebelumnya",
|
"Previous 30 days": "30 hari sebelumnya",
|
||||||
"Previous 7 days": "7 hari sebelumnya",
|
"Previous 7 days": "7 hari sebelumnya",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "Menolak ketika seharusnya tidak",
|
"Refused when it shouldn't have": "Menolak ketika seharusnya tidak",
|
||||||
"Regenerate": "Regenerasi",
|
"Regenerate": "Regenerasi",
|
||||||
"Regenerate Menu": "",
|
"Regenerate Menu": "",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "",
|
"Register Again": "",
|
||||||
"Register Client": "",
|
"Register Client": "",
|
||||||
"Registered": "",
|
"Registered": "",
|
||||||
|
|
@ -1438,6 +1456,7 @@
|
||||||
"Show Formatting Toolbar": "",
|
"Show Formatting Toolbar": "",
|
||||||
"Show image preview": "",
|
"Show image preview": "",
|
||||||
"Show Model": "",
|
"Show Model": "",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "Tunjukkan dukungan Anda!",
|
"Show your support!": "Tunjukkan dukungan Anda!",
|
||||||
"Showcased creativity": "Menampilkan kreativitas",
|
"Showcased creativity": "Menampilkan kreativitas",
|
||||||
"Sign in": "Masuk",
|
"Sign in": "Masuk",
|
||||||
|
|
@ -1473,6 +1492,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "",
|
"Stop": "",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "Hentikan Urutan",
|
"Stop Sequence": "Hentikan Urutan",
|
||||||
"Stream Chat Response": "",
|
"Stream Chat Response": "",
|
||||||
"Stream Delta Chunk Size": "",
|
"Stream Delta Chunk Size": "",
|
||||||
|
|
@ -1502,6 +1522,7 @@
|
||||||
"Tags Generation": "",
|
"Tags Generation": "",
|
||||||
"Tags Generation Prompt": "",
|
"Tags Generation Prompt": "",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "Ketuk untuk menyela",
|
"Tap to interrupt": "Ketuk untuk menyela",
|
||||||
"Task List": "",
|
"Task List": "",
|
||||||
"Task Model": "",
|
"Task Model": "",
|
||||||
|
|
@ -1583,6 +1604,7 @@
|
||||||
"Toast notifications for new updates": "",
|
"Toast notifications for new updates": "",
|
||||||
"Today": "Hari ini",
|
"Today": "Hari ini",
|
||||||
"Today at {{LOCALIZED_TIME}}": "",
|
"Today at {{LOCALIZED_TIME}}": "",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "",
|
"Toggle whether current connection is active.": "",
|
||||||
"Token": "",
|
"Token": "",
|
||||||
"Too verbose": "",
|
"Too verbose": "",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Úsáidtear samhail tascanna agus tascanna á ndéanamh amhail teidil a ghiniúint le haghaidh comhráite agus fiosrúcháin chuardaigh ghréasáin",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Úsáidtear samhail tascanna agus tascanna á ndéanamh amhail teidil a ghiniúint le haghaidh comhráite agus fiosrúcháin chuardaigh ghréasáin",
|
||||||
"a user": "úsáideoir",
|
"a user": "úsáideoir",
|
||||||
"About": "Maidir",
|
"About": "Maidir",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "Rochtain",
|
"Access": "Rochtain",
|
||||||
"Access Control": "Rialaithe Rochtana",
|
"Access Control": "Rialaithe Rochtana",
|
||||||
"Accessible to all users": "Inrochtana do gach úsáideoir",
|
"Accessible to all users": "Inrochtana do gach úsáideoir",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "Cuir Ábhar leis",
|
"Add Content": "Cuir Ábhar leis",
|
||||||
"Add content here": "Cuir ábhar anseo",
|
"Add content here": "Cuir ábhar anseo",
|
||||||
"Add Custom Parameter": "Cuir Paraiméadar Saincheaptha leis",
|
"Add Custom Parameter": "Cuir Paraiméadar Saincheaptha leis",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "Cuir Sonraí leis",
|
"Add Details": "Cuir Sonraí leis",
|
||||||
"Add Files": "Cuir Comhaid",
|
"Add Files": "Cuir Comhaid",
|
||||||
"Add Group": "Cuir Grúpa leis",
|
"Add Group": "Cuir Grúpa leis",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "Fiafraigh",
|
"Ask": "Fiafraigh",
|
||||||
"Ask a question": "Cuir ceist",
|
"Ask a question": "Cuir ceist",
|
||||||
"Assistant": "Cúntóir",
|
"Assistant": "Cúntóir",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "Ceangail Eolas",
|
"Attach Knowledge": "Ceangail Eolas",
|
||||||
"Attach Notes": "Ceangail Nótaí",
|
"Attach Notes": "Ceangail Nótaí",
|
||||||
"Attach Webpage": "",
|
"Attach Webpage": "",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "Dún an Meirge",
|
"Close Banner": "Dún an Meirge",
|
||||||
"Close Configure Connection Modal": "Dún Cumraigh Módúil Nasc",
|
"Close Configure Connection Modal": "Dún Cumraigh Módúil Nasc",
|
||||||
"Close modal": "Dún modúl",
|
"Close modal": "Dún modúl",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "Dún modúl na socruithe",
|
"Close settings modal": "Dún modúl na socruithe",
|
||||||
"Close Sidebar": "Dún an Barra Taobh",
|
"Close Sidebar": "Dún an Barra Taobh",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "Cóipeáilte go gear",
|
"Copied to clipboard": "Cóipeáilte go gear",
|
||||||
"Copy": "Cóipeáil",
|
"Copy": "Cóipeáil",
|
||||||
"Copy Formatted Text": "Cóipeáil Téacs Formáidithe",
|
"Copy Formatted Text": "Cóipeáil Téacs Formáidithe",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "Cóipeáil nasc",
|
"Copy link": "Cóipeáil nasc",
|
||||||
"Copy Link": "Cóipeáil Nasc",
|
"Copy Link": "Cóipeáil Nasc",
|
||||||
"Copy to clipboard": "Cóipeáil chuig an ngearrthaisce",
|
"Copy to clipboard": "Cóipeáil chuig an ngearrthaisce",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "Cuir Ceadanna Réamhshocraithe in Eagar",
|
"Edit Default Permissions": "Cuir Ceadanna Réamhshocraithe in Eagar",
|
||||||
"Edit Folder": "Cuir Fillteán in Eagar",
|
"Edit Folder": "Cuir Fillteán in Eagar",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "Cuir Cuimhne in eagar",
|
"Edit Memory": "Cuir Cuimhne in eagar",
|
||||||
"Edit User": "Cuir Úsáideoir in eagar",
|
"Edit User": "Cuir Úsáideoir in eagar",
|
||||||
"Edit User Group": "Cuir Grúpa Úsáideoirí in Eagar",
|
"Edit User Group": "Cuir Grúpa Úsáideoirí in Eagar",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "URL Bunús API Firecrawl",
|
"Firecrawl API Base URL": "URL Bunús API Firecrawl",
|
||||||
"Firecrawl API Key": "Eochair API Firecrawl",
|
"Firecrawl API Key": "Eochair API Firecrawl",
|
||||||
"Floating Quick Actions": "Gníomhartha Tapa Snámha",
|
"Floating Quick Actions": "Gníomhartha Tapa Snámha",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "",
|
"Folder": "",
|
||||||
"Folder Background Image": "Íomhá Chúlra Fillteáin",
|
"Folder Background Image": "Íomhá Chúlra Fillteáin",
|
||||||
"Folder deleted successfully": "Scriosadh an fillteán go rathúil",
|
"Folder deleted successfully": "Scriosadh an fillteán go rathúil",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "Gin",
|
"Generate": "Gin",
|
||||||
"Generate an image": "Gin íomhá",
|
"Generate an image": "Gin íomhá",
|
||||||
"Generate Image": "Gin Íomhá",
|
"Generate Image": "Gin Íomhá",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "",
|
"Generated Image": "",
|
||||||
"Generating search query": "Giniúint ceist cuardaigh",
|
"Generating search query": "Giniúint ceist cuardaigh",
|
||||||
"Generating...": "Ag giniúint...",
|
"Generating...": "Ag giniúint...",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "Cuimhne nuashonraithe",
|
"Memory updated successfully": "Cuimhne nuashonraithe",
|
||||||
"Merge Responses": "Cumaisc Freagraí",
|
"Merge Responses": "Cumaisc Freagraí",
|
||||||
"Merged Response": "Freagra Cumaiscthe",
|
"Merged Response": "Freagra Cumaiscthe",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "Ba cheart rátáil teachtaireachta a chumasú chun an ghné seo a úsáid",
|
"Message rating should be enabled to use this feature": "Ba cheart rátáil teachtaireachta a chumasú chun an ghné seo a úsáid",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Ní roinnfear teachtaireachtaí a sheolann tú tar éis do nasc a chruthú. Beidh úsáideoirí leis an URL in ann féachaint ar an gcomhrá roinnte.",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Ní roinnfear teachtaireachtaí a sheolann tú tar éis do nasc a chruthú. Beidh úsáideoirí leis an URL in ann féachaint ar an gcomhrá roinnte.",
|
||||||
"Microsoft OneDrive": "Microsoft OneDrive",
|
"Microsoft OneDrive": "Microsoft OneDrive",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "Nóta Nua",
|
"New Note": "Nóta Nua",
|
||||||
"New Password": "Pasfhocal Nua",
|
"New Password": "Pasfhocal Nua",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "Uirlis Nua",
|
"New Tool": "Uirlis Nua",
|
||||||
"new-channel": "nua-chainéil",
|
"new-channel": "nua-chainéil",
|
||||||
"Next message": "An chéad teachtaireacht eile",
|
"Next message": "An chéad teachtaireacht eile",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Leagan Ollama",
|
"Ollama Version": "Leagan Ollama",
|
||||||
"On": "Ar",
|
"On": "Ar",
|
||||||
"OneDrive": "OneDrive",
|
"OneDrive": "OneDrive",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "Ní cheadaítear ach carachtair alfa-uimhriúla agus fleiscíní",
|
"Only alphanumeric characters and hyphens are allowed": "Ní cheadaítear ach carachtair alfa-uimhriúla agus fleiscíní",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "Ní cheadaítear ach carachtair alfauméireacha agus braithíní sa sreangán ordaithe.",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "Ní cheadaítear ach carachtair alfauméireacha agus braithíní sa sreangán ordaithe.",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Ní féidir ach bailiúcháin a chur in eagar, bonn eolais nua a chruthú chun doiciméid a chur in eagar/a chur leis.",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Ní féidir ach bailiúcháin a chur in eagar, bonn eolais nua a chruthú chun doiciméid a chur in eagar/a chur leis.",
|
||||||
"Only markdown files are allowed": "Ní cheadaítear ach comhaid marcála síos",
|
"Only markdown files are allowed": "Ní cheadaítear ach comhaid marcála síos",
|
||||||
"Only select users and groups with permission can access": "Ní féidir ach le húsáideoirí roghnaithe agus le grúpaí a bhfuil cead acu rochtain a fháil",
|
"Only select users and groups with permission can access": "Ní féidir ach le húsáideoirí roghnaithe agus le grúpaí a bhfuil cead acu rochtain a fháil",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "Oscail an modal chun an nasc a chumrú",
|
"Open modal to configure connection": "Oscail an modal chun an nasc a chumrú",
|
||||||
"Open Modal To Manage Floating Quick Actions": "Oscail Modúl Chun Gníomhartha Tapa Snámhacha a Bhainistiú",
|
"Open Modal To Manage Floating Quick Actions": "Oscail Modúl Chun Gníomhartha Tapa Snámhacha a Bhainistiú",
|
||||||
"Open Modal To Manage Image Compression": "Oscail Modúl Chun Comhbhrú Íomhá a Bhainistiú",
|
"Open Modal To Manage Image Compression": "Oscail Modúl Chun Comhbhrú Íomhá a Bhainistiú",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "Oscail an Barra Taoibh",
|
"Open Sidebar": "Oscail an Barra Taoibh",
|
||||||
"Open User Profile Menu": "Oscail Roghchlár Próifíl Úsáideora",
|
"Open User Profile Menu": "Oscail Roghchlár Próifíl Úsáideora",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "Is féidir le WebUI Oscailte uirlisí a úsáid a sholáthraíonn aon fhreastalaí OpenAPI.",
|
"Open WebUI can use tools provided by any OpenAPI server.": "Is féidir le WebUI Oscailte uirlisí a úsáid a sholáthraíonn aon fhreastalaí OpenAPI.",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "Is fearr liom gan a rá",
|
"Prefer not to say": "Is fearr liom gan a rá",
|
||||||
"Prefix ID": "Aitheantas Réimír",
|
"Prefix ID": "Aitheantas Réimír",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Úsáidtear Aitheantas Réimír chun coinbhleachtaí le naisc eile a sheachaint trí réimír a chur le haitheantas na samhla - fág folamh le díchumasú",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Úsáidtear Aitheantas Réimír chun coinbhleachtaí le naisc eile a sheachaint trí réimír a chur le haitheantas na samhla - fág folamh le díchumasú",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "Réamhamharc",
|
"Preview": "Réamhamharc",
|
||||||
"Previous 30 days": "30 lá roimhe seo",
|
"Previous 30 days": "30 lá roimhe seo",
|
||||||
"Previous 7 days": "7 lá roimhe seo",
|
"Previous 7 days": "7 lá roimhe seo",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "Diúltaíodh nuair nár chóir dó",
|
"Refused when it shouldn't have": "Diúltaíodh nuair nár chóir dó",
|
||||||
"Regenerate": "Athghiniúint",
|
"Regenerate": "Athghiniúint",
|
||||||
"Regenerate Menu": "Athghin an Roghchlár",
|
"Regenerate Menu": "Athghin an Roghchlár",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "",
|
"Register Again": "",
|
||||||
"Register Client": "",
|
"Register Client": "",
|
||||||
"Registered": "",
|
"Registered": "",
|
||||||
|
|
@ -1439,6 +1457,7 @@
|
||||||
"Show Formatting Toolbar": "Taispeáin Barra Uirlisí Formáidithe",
|
"Show Formatting Toolbar": "Taispeáin Barra Uirlisí Formáidithe",
|
||||||
"Show image preview": "Taispeáin réamhamharc íomhá",
|
"Show image preview": "Taispeáin réamhamharc íomhá",
|
||||||
"Show Model": "Taispeáin Samhail",
|
"Show Model": "Taispeáin Samhail",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "Taispeáin do thacaíocht!",
|
"Show your support!": "Taispeáin do thacaíocht!",
|
||||||
"Showcased creativity": "Cruthaitheacht léirithe",
|
"Showcased creativity": "Cruthaitheacht léirithe",
|
||||||
"Sign in": "Sínigh isteach",
|
"Sign in": "Sínigh isteach",
|
||||||
|
|
@ -1474,6 +1493,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "Stad",
|
"Stop": "Stad",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "Stop Seicheamh",
|
"Stop Sequence": "Stop Seicheamh",
|
||||||
"Stream Chat Response": "Freagra Comhrá Sruth",
|
"Stream Chat Response": "Freagra Comhrá Sruth",
|
||||||
"Stream Delta Chunk Size": "Sruth Méid Leadhb Delta",
|
"Stream Delta Chunk Size": "Sruth Méid Leadhb Delta",
|
||||||
|
|
@ -1503,6 +1523,7 @@
|
||||||
"Tags Generation": "Giniúint Clibeanna",
|
"Tags Generation": "Giniúint Clibeanna",
|
||||||
"Tags Generation Prompt": "Clibeanna Giniúint Leid",
|
"Tags Generation Prompt": "Clibeanna Giniúint Leid",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Úsáidtear sampláil saor ó eireabaill chun tionchar na n-chomharthaí ón aschur nach bhfuil chomh dóchúil céanna a laghdú. Laghdóidh luach níos airde (m.sh., 2.0) an tionchar níos mó, agus díchumasaíonn luach 1.0 an socrú seo. (réamhshocraithe: 1)",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Úsáidtear sampláil saor ó eireabaill chun tionchar na n-chomharthaí ón aschur nach bhfuil chomh dóchúil céanna a laghdú. Laghdóidh luach níos airde (m.sh., 2.0) an tionchar níos mó, agus díchumasaíonn luach 1.0 an socrú seo. (réamhshocraithe: 1)",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "Tapáil chun cur isteach",
|
"Tap to interrupt": "Tapáil chun cur isteach",
|
||||||
"Task List": "Liosta Tascanna",
|
"Task List": "Liosta Tascanna",
|
||||||
"Task Model": "Samhail Thasc",
|
"Task Model": "Samhail Thasc",
|
||||||
|
|
@ -1584,6 +1605,7 @@
|
||||||
"Toast notifications for new updates": "Fógraí tósta le haghaidh nuashonruithe nua",
|
"Toast notifications for new updates": "Fógraí tósta le haghaidh nuashonruithe nua",
|
||||||
"Today": "Inniu",
|
"Today": "Inniu",
|
||||||
"Today at {{LOCALIZED_TIME}}": "Inniu ag {{LOCALIZED_TIME}}",
|
"Today at {{LOCALIZED_TIME}}": "Inniu ag {{LOCALIZED_TIME}}",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "Athraigh an bhfuil an nasc reatha gníomhach.",
|
"Toggle whether current connection is active.": "Athraigh an bhfuil an nasc reatha gníomhach.",
|
||||||
"Token": "Comhartha",
|
"Token": "Comhartha",
|
||||||
"Too verbose": "Ró-fhocal",
|
"Too verbose": "Ró-fhocal",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Un task model viene utilizzato durante l'esecuzione di attività come la generazione di titoli per chat e query di ricerca Web",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Un task model viene utilizzato durante l'esecuzione di attività come la generazione di titoli per chat e query di ricerca Web",
|
||||||
"a user": "un utente",
|
"a user": "un utente",
|
||||||
"About": "Informazioni",
|
"About": "Informazioni",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "Accesso",
|
"Access": "Accesso",
|
||||||
"Access Control": "Controllo accessi",
|
"Access Control": "Controllo accessi",
|
||||||
"Accessible to all users": "Accessibile a tutti gli utenti",
|
"Accessible to all users": "Accessibile a tutti gli utenti",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "Aggiungi contenuto",
|
"Add Content": "Aggiungi contenuto",
|
||||||
"Add content here": "Aggiungi un contenuto qui",
|
"Add content here": "Aggiungi un contenuto qui",
|
||||||
"Add Custom Parameter": "Aggiungi Parametri Personalizzati",
|
"Add Custom Parameter": "Aggiungi Parametri Personalizzati",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "",
|
"Add Details": "",
|
||||||
"Add Files": "Aggiungi dei file",
|
"Add Files": "Aggiungi dei file",
|
||||||
"Add Group": "Aggiungi un gruppo",
|
"Add Group": "Aggiungi un gruppo",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "Chiedi",
|
"Ask": "Chiedi",
|
||||||
"Ask a question": "Fai una domanda",
|
"Ask a question": "Fai una domanda",
|
||||||
"Assistant": "Assistente",
|
"Assistant": "Assistente",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "",
|
"Attach Knowledge": "",
|
||||||
"Attach Notes": "",
|
"Attach Notes": "",
|
||||||
"Attach Webpage": "",
|
"Attach Webpage": "",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "",
|
"Close Banner": "",
|
||||||
"Close Configure Connection Modal": "",
|
"Close Configure Connection Modal": "",
|
||||||
"Close modal": "Chiudi modale",
|
"Close modal": "Chiudi modale",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "",
|
"Close settings modal": "",
|
||||||
"Close Sidebar": "",
|
"Close Sidebar": "",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "Copiato negli appunti",
|
"Copied to clipboard": "Copiato negli appunti",
|
||||||
"Copy": "Copia",
|
"Copy": "Copia",
|
||||||
"Copy Formatted Text": "Copia testo formattato",
|
"Copy Formatted Text": "Copia testo formattato",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "",
|
"Copy link": "",
|
||||||
"Copy Link": "Copia link",
|
"Copy Link": "Copia link",
|
||||||
"Copy to clipboard": "Copia negli appunti",
|
"Copy to clipboard": "Copia negli appunti",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "Modifica Permessi Predefiniti",
|
"Edit Default Permissions": "Modifica Permessi Predefiniti",
|
||||||
"Edit Folder": "",
|
"Edit Folder": "",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "Modifica Memoria",
|
"Edit Memory": "Modifica Memoria",
|
||||||
"Edit User": "Modifica Utente",
|
"Edit User": "Modifica Utente",
|
||||||
"Edit User Group": "Modifica Gruppo Utente",
|
"Edit User Group": "Modifica Gruppo Utente",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "URL base dell'API Firecrawl",
|
"Firecrawl API Base URL": "URL base dell'API Firecrawl",
|
||||||
"Firecrawl API Key": "Chiave API Firecrawl",
|
"Firecrawl API Key": "Chiave API Firecrawl",
|
||||||
"Floating Quick Actions": "",
|
"Floating Quick Actions": "",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "",
|
"Folder": "",
|
||||||
"Folder Background Image": "",
|
"Folder Background Image": "",
|
||||||
"Folder deleted successfully": "Cartella rimossa con successo",
|
"Folder deleted successfully": "Cartella rimossa con successo",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "Genera",
|
"Generate": "Genera",
|
||||||
"Generate an image": "Genera un'immagine",
|
"Generate an image": "Genera un'immagine",
|
||||||
"Generate Image": "Genera Immagine",
|
"Generate Image": "Genera Immagine",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "",
|
"Generated Image": "",
|
||||||
"Generating search query": "Generazione query di ricerca",
|
"Generating search query": "Generazione query di ricerca",
|
||||||
"Generating...": "Generazione in corso...",
|
"Generating...": "Generazione in corso...",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "Memoria aggiornata con successo",
|
"Memory updated successfully": "Memoria aggiornata con successo",
|
||||||
"Merge Responses": "Unisci Risposte",
|
"Merge Responses": "Unisci Risposte",
|
||||||
"Merged Response": "Risposta Unita",
|
"Merged Response": "Risposta Unita",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "La valutazione dei messaggi deve essere abilitata per utilizzare questa funzionalità",
|
"Message rating should be enabled to use this feature": "La valutazione dei messaggi deve essere abilitata per utilizzare questa funzionalità",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "I messaggi inviati dopo la creazione del link non verranno condivisi. Gli utenti con l'URL saranno in grado di visualizzare la chat condivisa.",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "I messaggi inviati dopo la creazione del link non verranno condivisi. Gli utenti con l'URL saranno in grado di visualizzare la chat condivisa.",
|
||||||
"Microsoft OneDrive": "Microsoft OneDrive",
|
"Microsoft OneDrive": "Microsoft OneDrive",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "Nuova nota",
|
"New Note": "Nuova nota",
|
||||||
"New Password": "Nuova password",
|
"New Password": "Nuova password",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "Nuovo strumento",
|
"New Tool": "Nuovo strumento",
|
||||||
"new-channel": "nuovo-canale",
|
"new-channel": "nuovo-canale",
|
||||||
"Next message": "Messaggio successivo",
|
"Next message": "Messaggio successivo",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Versione Ollama",
|
"Ollama Version": "Versione Ollama",
|
||||||
"On": "Attivato",
|
"On": "Attivato",
|
||||||
"OneDrive": "OneDrive",
|
"OneDrive": "OneDrive",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "Nella stringa di comando sono consentiti solo caratteri alfanumerici e trattini",
|
"Only alphanumeric characters and hyphens are allowed": "Nella stringa di comando sono consentiti solo caratteri alfanumerici e trattini",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "Nella stringa di comando sono consentiti solo caratteri alfanumerici e trattini.",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "Nella stringa di comando sono consentiti solo caratteri alfanumerici e trattini.",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Solo le collezioni possono essere modificate, crea una nuova base di conoscenza per modificare/aggiungere documenti.",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Solo le collezioni possono essere modificate, crea una nuova base di conoscenza per modificare/aggiungere documenti.",
|
||||||
"Only markdown files are allowed": "Sono consentiti solo file markdown",
|
"Only markdown files are allowed": "Sono consentiti solo file markdown",
|
||||||
"Only select users and groups with permission can access": "Solo gli utenti e i gruppi selezionati con autorizzazione possono accedere",
|
"Only select users and groups with permission can access": "Solo gli utenti e i gruppi selezionati con autorizzazione possono accedere",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "",
|
"Open modal to configure connection": "",
|
||||||
"Open Modal To Manage Floating Quick Actions": "",
|
"Open Modal To Manage Floating Quick Actions": "",
|
||||||
"Open Modal To Manage Image Compression": "",
|
"Open Modal To Manage Image Compression": "",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "",
|
"Open Sidebar": "",
|
||||||
"Open User Profile Menu": "",
|
"Open User Profile Menu": "",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI può utilizzare tool forniti da qualsiasi server OpenAPI.",
|
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI può utilizzare tool forniti da qualsiasi server OpenAPI.",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "",
|
"Prefer not to say": "",
|
||||||
"Prefix ID": "ID prefisso",
|
"Prefix ID": "ID prefisso",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "L'ID prefisso viene utilizzato per evitare conflitti con altre connessioni aggiungendo un prefisso agli ID dei modelli - lasciare vuoto per disabilitare",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "L'ID prefisso viene utilizzato per evitare conflitti con altre connessioni aggiungendo un prefisso agli ID dei modelli - lasciare vuoto per disabilitare",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "Anteprima",
|
"Preview": "Anteprima",
|
||||||
"Previous 30 days": "Ultimi 30 giorni",
|
"Previous 30 days": "Ultimi 30 giorni",
|
||||||
"Previous 7 days": "Ultimi 7 giorni",
|
"Previous 7 days": "Ultimi 7 giorni",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "Rifiutato quando non avrebbe dovuto",
|
"Refused when it shouldn't have": "Rifiutato quando non avrebbe dovuto",
|
||||||
"Regenerate": "Rigenera",
|
"Regenerate": "Rigenera",
|
||||||
"Regenerate Menu": "",
|
"Regenerate Menu": "",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "",
|
"Register Again": "",
|
||||||
"Register Client": "",
|
"Register Client": "",
|
||||||
"Registered": "",
|
"Registered": "",
|
||||||
|
|
@ -1440,6 +1458,7 @@
|
||||||
"Show Formatting Toolbar": "",
|
"Show Formatting Toolbar": "",
|
||||||
"Show image preview": "",
|
"Show image preview": "",
|
||||||
"Show Model": "Mostra Modello",
|
"Show Model": "Mostra Modello",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "Mostra il tuo supporto!",
|
"Show your support!": "Mostra il tuo supporto!",
|
||||||
"Showcased creativity": "Creatività messa in mostra",
|
"Showcased creativity": "Creatività messa in mostra",
|
||||||
"Sign in": "Accedi",
|
"Sign in": "Accedi",
|
||||||
|
|
@ -1475,6 +1494,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "Arresta",
|
"Stop": "Arresta",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "Sequenza di arresto",
|
"Stop Sequence": "Sequenza di arresto",
|
||||||
"Stream Chat Response": "Stream risposta chat",
|
"Stream Chat Response": "Stream risposta chat",
|
||||||
"Stream Delta Chunk Size": "",
|
"Stream Delta Chunk Size": "",
|
||||||
|
|
@ -1504,6 +1524,7 @@
|
||||||
"Tags Generation": "Generazione tag",
|
"Tags Generation": "Generazione tag",
|
||||||
"Tags Generation Prompt": "Prompt di generazione dei tag",
|
"Tags Generation Prompt": "Prompt di generazione dei tag",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Il campionamento tail free viene utilizzato per ridurre l'impatto di token meno probabili dall'output. Un valore più alto (ad esempio, 2.0) ridurrà maggiormente l'impatto, mentre un valore di 1.0 disabilita questa impostazione.",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Il campionamento tail free viene utilizzato per ridurre l'impatto di token meno probabili dall'output. Un valore più alto (ad esempio, 2.0) ridurrà maggiormente l'impatto, mentre un valore di 1.0 disabilita questa impostazione.",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "Tocca per interrompere",
|
"Tap to interrupt": "Tocca per interrompere",
|
||||||
"Task List": "",
|
"Task List": "",
|
||||||
"Task Model": "Modello Task",
|
"Task Model": "Modello Task",
|
||||||
|
|
@ -1585,6 +1606,7 @@
|
||||||
"Toast notifications for new updates": "Notifiche toast per nuovi aggiornamenti",
|
"Toast notifications for new updates": "Notifiche toast per nuovi aggiornamenti",
|
||||||
"Today": "Oggi",
|
"Today": "Oggi",
|
||||||
"Today at {{LOCALIZED_TIME}}": "",
|
"Today at {{LOCALIZED_TIME}}": "",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "Attiva/disattiva la connessione attuale quando è attiva",
|
"Toggle whether current connection is active.": "Attiva/disattiva la connessione attuale quando è attiva",
|
||||||
"Token": "Token",
|
"Token": "Token",
|
||||||
"Too verbose": "Troppo prolisso",
|
"Too verbose": "Troppo prolisso",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "タスクモデルは、チャットやウェブ検索クエリのタイトルの生成などのタスクを実行するときに使用されます",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "タスクモデルは、チャットやウェブ検索クエリのタイトルの生成などのタスクを実行するときに使用されます",
|
||||||
"a user": "ユーザー",
|
"a user": "ユーザー",
|
||||||
"About": "概要",
|
"About": "概要",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "アクセス",
|
"Access": "アクセス",
|
||||||
"Access Control": "アクセス制御",
|
"Access Control": "アクセス制御",
|
||||||
"Accessible to all users": "すべてのユーザーにアクセス可能",
|
"Accessible to all users": "すべてのユーザーにアクセス可能",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "コンテンツを追加",
|
"Add Content": "コンテンツを追加",
|
||||||
"Add content here": "ここへコンテンツを追加",
|
"Add content here": "ここへコンテンツを追加",
|
||||||
"Add Custom Parameter": "カスタムパラメータを追加",
|
"Add Custom Parameter": "カスタムパラメータを追加",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "より詳しく",
|
"Add Details": "より詳しく",
|
||||||
"Add Files": "ファイルを追加",
|
"Add Files": "ファイルを追加",
|
||||||
"Add Group": "グループを追加",
|
"Add Group": "グループを追加",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "質問する",
|
"Ask": "質問する",
|
||||||
"Ask a question": "質問する",
|
"Ask a question": "質問する",
|
||||||
"Assistant": "アシスタント",
|
"Assistant": "アシスタント",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "",
|
"Attach Knowledge": "",
|
||||||
"Attach Notes": "",
|
"Attach Notes": "",
|
||||||
"Attach Webpage": "",
|
"Attach Webpage": "",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "バナーを閉じる",
|
"Close Banner": "バナーを閉じる",
|
||||||
"Close Configure Connection Modal": "接続設定モーダルを閉じる",
|
"Close Configure Connection Modal": "接続設定モーダルを閉じる",
|
||||||
"Close modal": "モーダルを閉じる",
|
"Close modal": "モーダルを閉じる",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "設定モーダルを閉じる",
|
"Close settings modal": "設定モーダルを閉じる",
|
||||||
"Close Sidebar": "サイドバーを閉じる",
|
"Close Sidebar": "サイドバーを閉じる",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "クリップボードにコピーしました。",
|
"Copied to clipboard": "クリップボードにコピーしました。",
|
||||||
"Copy": "コピー",
|
"Copy": "コピー",
|
||||||
"Copy Formatted Text": "フォーマットされたテキストをコピー",
|
"Copy Formatted Text": "フォーマットされたテキストをコピー",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "リンクをコピー",
|
"Copy link": "リンクをコピー",
|
||||||
"Copy Link": "リンクをコピー",
|
"Copy Link": "リンクをコピー",
|
||||||
"Copy to clipboard": "クリップボードにコピー",
|
"Copy to clipboard": "クリップボードにコピー",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "デフォルトの許可を編集",
|
"Edit Default Permissions": "デフォルトの許可を編集",
|
||||||
"Edit Folder": "フォルダを編集",
|
"Edit Folder": "フォルダを編集",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "メモリを編集",
|
"Edit Memory": "メモリを編集",
|
||||||
"Edit User": "ユーザーを編集",
|
"Edit User": "ユーザーを編集",
|
||||||
"Edit User Group": "ユーザーグループを編集",
|
"Edit User Group": "ユーザーグループを編集",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "Firecrawl API ベースURL",
|
"Firecrawl API Base URL": "Firecrawl API ベースURL",
|
||||||
"Firecrawl API Key": "Firecrawl APIキー",
|
"Firecrawl API Key": "Firecrawl APIキー",
|
||||||
"Floating Quick Actions": "フローティング クイックアクション",
|
"Floating Quick Actions": "フローティング クイックアクション",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "",
|
"Folder": "",
|
||||||
"Folder Background Image": "",
|
"Folder Background Image": "",
|
||||||
"Folder deleted successfully": "フォルダー削除が成功しました。",
|
"Folder deleted successfully": "フォルダー削除が成功しました。",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "生成",
|
"Generate": "生成",
|
||||||
"Generate an image": "画像を生成",
|
"Generate an image": "画像を生成",
|
||||||
"Generate Image": "画像生成",
|
"Generate Image": "画像生成",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "",
|
"Generated Image": "",
|
||||||
"Generating search query": "検索クエリの生成",
|
"Generating search query": "検索クエリの生成",
|
||||||
"Generating...": "生成中...",
|
"Generating...": "生成中...",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "メモリアップデート成功",
|
"Memory updated successfully": "メモリアップデート成功",
|
||||||
"Merge Responses": "応答を統合",
|
"Merge Responses": "応答を統合",
|
||||||
"Merged Response": "統合された応答",
|
"Merged Response": "統合された応答",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "この機能を使用するには、メッセージ評価を有効にする必要があります。",
|
"Message rating should be enabled to use this feature": "この機能を使用するには、メッセージ評価を有効にする必要があります。",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "リンクを作成した後で送信したメッセージは共有されません。URL を持つユーザーは共有チャットを閲覧できます。",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "リンクを作成した後で送信したメッセージは共有されません。URL を持つユーザーは共有チャットを閲覧できます。",
|
||||||
"Microsoft OneDrive": "Microsoft OneDrive",
|
"Microsoft OneDrive": "Microsoft OneDrive",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "新しいノート",
|
"New Note": "新しいノート",
|
||||||
"New Password": "新しいパスワード",
|
"New Password": "新しいパスワード",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "新しいツール",
|
"New Tool": "新しいツール",
|
||||||
"new-channel": "新しいチャンネル",
|
"new-channel": "新しいチャンネル",
|
||||||
"Next message": "次のメッセージ",
|
"Next message": "次のメッセージ",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Ollama バージョン",
|
"Ollama Version": "Ollama バージョン",
|
||||||
"On": "オン",
|
"On": "オン",
|
||||||
"OneDrive": "",
|
"OneDrive": "",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "英数字とハイフンのみが使用できます",
|
"Only alphanumeric characters and hyphens are allowed": "英数字とハイフンのみが使用できます",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "コマンド文字列には英数字とハイフンのみが使用できます。",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "コマンド文字列には英数字とハイフンのみが使用できます。",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "コレクションのみ編集できます。新しいナレッジベースを作成してドキュメントを編集/追加してください。",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "コレクションのみ編集できます。新しいナレッジベースを作成してドキュメントを編集/追加してください。",
|
||||||
"Only markdown files are allowed": "マークダウンファイルのみが許可されています",
|
"Only markdown files are allowed": "マークダウンファイルのみが許可されています",
|
||||||
"Only select users and groups with permission can access": "許可されたユーザーとグループのみがアクセスできます",
|
"Only select users and groups with permission can access": "許可されたユーザーとグループのみがアクセスできます",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "接続設定のモーダルを開く",
|
"Open modal to configure connection": "接続設定のモーダルを開く",
|
||||||
"Open Modal To Manage Floating Quick Actions": "フローティング クイックアクションを管理するモーダルを開く",
|
"Open Modal To Manage Floating Quick Actions": "フローティング クイックアクションを管理するモーダルを開く",
|
||||||
"Open Modal To Manage Image Compression": "",
|
"Open Modal To Manage Image Compression": "",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "サイドバーを開く",
|
"Open Sidebar": "サイドバーを開く",
|
||||||
"Open User Profile Menu": "ユーザープロフィールメニューを開く",
|
"Open User Profile Menu": "ユーザープロフィールメニューを開く",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "OpenWebUI は任意のOpenAPI サーバーが提供するツールを使用できます。",
|
"Open WebUI can use tools provided by any OpenAPI server.": "OpenWebUI は任意のOpenAPI サーバーが提供するツールを使用できます。",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "回答しない",
|
"Prefer not to say": "回答しない",
|
||||||
"Prefix ID": "Prefix ID",
|
"Prefix ID": "Prefix ID",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefix ID はモデル ID に接頭辞を追加することで、他の接続との競合を避けるために使用されます - 空の場合は無効にします",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefix ID はモデル ID に接頭辞を追加することで、他の接続との競合を避けるために使用されます - 空の場合は無効にします",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "プレビュー",
|
"Preview": "プレビュー",
|
||||||
"Previous 30 days": "過去30日間",
|
"Previous 30 days": "過去30日間",
|
||||||
"Previous 7 days": "過去7日間",
|
"Previous 7 days": "過去7日間",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "拒否すべきでないのに拒否した",
|
"Refused when it shouldn't have": "拒否すべきでないのに拒否した",
|
||||||
"Regenerate": "再生成",
|
"Regenerate": "再生成",
|
||||||
"Regenerate Menu": "再生成メニュー",
|
"Regenerate Menu": "再生成メニュー",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "",
|
"Register Again": "",
|
||||||
"Register Client": "",
|
"Register Client": "",
|
||||||
"Registered": "",
|
"Registered": "",
|
||||||
|
|
@ -1438,6 +1456,7 @@
|
||||||
"Show Formatting Toolbar": "フォーマットツールバーを表示",
|
"Show Formatting Toolbar": "フォーマットツールバーを表示",
|
||||||
"Show image preview": "画像のプレビューを表示",
|
"Show image preview": "画像のプレビューを表示",
|
||||||
"Show Model": "モデルを表示",
|
"Show Model": "モデルを表示",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "サポートを表示",
|
"Show your support!": "サポートを表示",
|
||||||
"Showcased creativity": "創造性を披露",
|
"Showcased creativity": "創造性を披露",
|
||||||
"Sign in": "サインイン",
|
"Sign in": "サインイン",
|
||||||
|
|
@ -1473,6 +1492,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "停止",
|
"Stop": "停止",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "ストップシーケンス",
|
"Stop Sequence": "ストップシーケンス",
|
||||||
"Stream Chat Response": "チャットレスポンスのストリーム",
|
"Stream Chat Response": "チャットレスポンスのストリーム",
|
||||||
"Stream Delta Chunk Size": "ストリームの差分チャンクサイズ",
|
"Stream Delta Chunk Size": "ストリームの差分チャンクサイズ",
|
||||||
|
|
@ -1502,6 +1522,7 @@
|
||||||
"Tags Generation": "タグ生成",
|
"Tags Generation": "タグ生成",
|
||||||
"Tags Generation Prompt": "タグ生成プロンプト",
|
"Tags Generation Prompt": "タグ生成プロンプト",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Tail Free Samplingは、出力中の確率の低いトークンの影響を抑えるための手法です。値が高い(例:2.0)ほど影響を減らし、1.0の場合は無効となります。",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Tail Free Samplingは、出力中の確率の低いトークンの影響を抑えるための手法です。値が高い(例:2.0)ほど影響を減らし、1.0の場合は無効となります。",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "タップして中断",
|
"Tap to interrupt": "タップして中断",
|
||||||
"Task List": "タスクリスト",
|
"Task List": "タスクリスト",
|
||||||
"Task Model": "タスクモデル",
|
"Task Model": "タスクモデル",
|
||||||
|
|
@ -1583,6 +1604,7 @@
|
||||||
"Toast notifications for new updates": "新しい更新のトースト通知",
|
"Toast notifications for new updates": "新しい更新のトースト通知",
|
||||||
"Today": "今日",
|
"Today": "今日",
|
||||||
"Today at {{LOCALIZED_TIME}}": "",
|
"Today at {{LOCALIZED_TIME}}": "",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "この接続の有効性を切り替える",
|
"Toggle whether current connection is active.": "この接続の有効性を切り替える",
|
||||||
"Token": "トークン",
|
"Token": "トークン",
|
||||||
"Too verbose": "冗長すぎる",
|
"Too verbose": "冗長すぎる",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "დავალების მოდელი გამოიყენება ისეთი ამოცანების შესრულებისას, როგორიცაა ჩეთების სათაურების გენერირება და ვებ – ძიების მოთხოვნები",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "დავალების მოდელი გამოიყენება ისეთი ამოცანების შესრულებისას, როგორიცაა ჩეთების სათაურების გენერირება და ვებ – ძიების მოთხოვნები",
|
||||||
"a user": "მომხმარებელი",
|
"a user": "მომხმარებელი",
|
||||||
"About": "შესახებ",
|
"About": "შესახებ",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "წვდომა",
|
"Access": "წვდომა",
|
||||||
"Access Control": "წვდომის კონტროლი",
|
"Access Control": "წვდომის კონტროლი",
|
||||||
"Accessible to all users": "ხელმისაწვდომია ყველა მომხმარებლისთვის",
|
"Accessible to all users": "ხელმისაწვდომია ყველა მომხმარებლისთვის",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "შემცველობის დამატება",
|
"Add Content": "შემცველობის დამატება",
|
||||||
"Add content here": "შემცველობის აქ დამატება",
|
"Add content here": "შემცველობის აქ დამატება",
|
||||||
"Add Custom Parameter": "მორგებული პარამეტრის დამატება",
|
"Add Custom Parameter": "მორგებული პარამეტრის დამატება",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "დეტალების დამატება",
|
"Add Details": "დეტალების დამატება",
|
||||||
"Add Files": "ფაილების დამატება",
|
"Add Files": "ფაილების დამატება",
|
||||||
"Add Group": "ჯგუფის დამატება",
|
"Add Group": "ჯგუფის დამატება",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "კითხვა",
|
"Ask": "კითხვა",
|
||||||
"Ask a question": "კითხვის დასმა",
|
"Ask a question": "კითხვის დასმა",
|
||||||
"Assistant": "დამხმარე",
|
"Assistant": "დამხმარე",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "ცოდნის მიმაგრება",
|
"Attach Knowledge": "ცოდნის მიმაგრება",
|
||||||
"Attach Notes": "შენიშვნების მიმაგრება",
|
"Attach Notes": "შენიშვნების მიმაგრება",
|
||||||
"Attach Webpage": "ვებგვერდის მიმაგრება",
|
"Attach Webpage": "ვებგვერდის მიმაგრება",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "ბანერის დახურვა",
|
"Close Banner": "ბანერის დახურვა",
|
||||||
"Close Configure Connection Modal": "",
|
"Close Configure Connection Modal": "",
|
||||||
"Close modal": "ფანჯრის დახურვა",
|
"Close modal": "ფანჯრის დახურვა",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "მორგების დიალოგის დახურვა",
|
"Close settings modal": "მორგების დიალოგის დახურვა",
|
||||||
"Close Sidebar": "გვერდითი ზოლის დახურვა",
|
"Close Sidebar": "გვერდითი ზოლის დახურვა",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "დაკოპირდა გაცვლის ბაფერში",
|
"Copied to clipboard": "დაკოპირდა გაცვლის ბაფერში",
|
||||||
"Copy": "კოპირება",
|
"Copy": "კოპირება",
|
||||||
"Copy Formatted Text": "დაფორმატებული ტექსტის კოპირება",
|
"Copy Formatted Text": "დაფორმატებული ტექსტის კოპირება",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "ბმულის კოპირება",
|
"Copy link": "ბმულის კოპირება",
|
||||||
"Copy Link": "ბმულის კოპირება",
|
"Copy Link": "ბმულის კოპირება",
|
||||||
"Copy to clipboard": "ბუფერში კოპირება",
|
"Copy to clipboard": "ბუფერში კოპირება",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "ნაგულისხმევი წვდომების ჩასწორება",
|
"Edit Default Permissions": "ნაგულისხმევი წვდომების ჩასწორება",
|
||||||
"Edit Folder": "საქაღალდის ჩასწორება",
|
"Edit Folder": "საქაღალდის ჩასწორება",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "მეხსიერების ჩასწორება",
|
"Edit Memory": "მეხსიერების ჩასწორება",
|
||||||
"Edit User": "მომხმარებლის ჩასწორება",
|
"Edit User": "მომხმარებლის ჩასწორება",
|
||||||
"Edit User Group": "მომხმარებლის ჯგუფის ჩასწორება",
|
"Edit User Group": "მომხმარებლის ჯგუფის ჩასწორება",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "Firecrawl API-ის საბაზისო URL",
|
"Firecrawl API Base URL": "Firecrawl API-ის საბაზისო URL",
|
||||||
"Firecrawl API Key": "Firecrawl API-ის გასაღები",
|
"Firecrawl API Key": "Firecrawl API-ის გასაღები",
|
||||||
"Floating Quick Actions": "",
|
"Floating Quick Actions": "",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "საქაღალდე",
|
"Folder": "საქაღალდე",
|
||||||
"Folder Background Image": "საქაღალდის ფონის სურათი",
|
"Folder Background Image": "საქაღალდის ფონის სურათი",
|
||||||
"Folder deleted successfully": "საქაღალდე წარმატებით წაიშალა",
|
"Folder deleted successfully": "საქაღალდე წარმატებით წაიშალა",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "გენერაცია",
|
"Generate": "გენერაცია",
|
||||||
"Generate an image": "გამოსახულების გენერაცია",
|
"Generate an image": "გამოსახულების გენერაცია",
|
||||||
"Generate Image": "სურათის განერაცია",
|
"Generate Image": "სურათის განერაცია",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "გენერირებული გამოსახულება",
|
"Generated Image": "გენერირებული გამოსახულება",
|
||||||
"Generating search query": "ძებნის მოთხოვნის გენერაცია",
|
"Generating search query": "ძებნის მოთხოვნის გენერაცია",
|
||||||
"Generating...": "გენერაცია...",
|
"Generating...": "გენერაცია...",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "მოგონება წარმატებით განახლდა",
|
"Memory updated successfully": "მოგონება წარმატებით განახლდა",
|
||||||
"Merge Responses": "პასუხების შერწყმა",
|
"Merge Responses": "პასუხების შერწყმა",
|
||||||
"Merged Response": "შერწყმული პასუხი",
|
"Merged Response": "შერწყმული პასუხი",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "",
|
"Message rating should be enabled to use this feature": "",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "შეტყობინებები, რომელსაც თქვენ აგზავნით თქვენი ბმულის შექმნის შემდეგ, არ იქნება გაზიარებული. URL– ის მქონე მომხმარებლებს შეეძლებათ ნახონ საერთო ჩატი.",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "შეტყობინებები, რომელსაც თქვენ აგზავნით თქვენი ბმულის შექმნის შემდეგ, არ იქნება გაზიარებული. URL– ის მქონე მომხმარებლებს შეეძლებათ ნახონ საერთო ჩატი.",
|
||||||
"Microsoft OneDrive": "Microsoft OneDrive",
|
"Microsoft OneDrive": "Microsoft OneDrive",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "ახალი ჩანაწერი",
|
"New Note": "ახალი ჩანაწერი",
|
||||||
"New Password": "ახალი პაროლი",
|
"New Password": "ახალი პაროლი",
|
||||||
"New Prompt": "ახალი შეყვანა",
|
"New Prompt": "ახალი შეყვანა",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "ახალი ხელსაწყო",
|
"New Tool": "ახალი ხელსაწყო",
|
||||||
"new-channel": "new-channel",
|
"new-channel": "new-channel",
|
||||||
"Next message": "შემდეგი შეტყობინება",
|
"Next message": "შემდეგი შეტყობინება",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Ollama ვერსია",
|
"Ollama Version": "Ollama ვერსია",
|
||||||
"On": "ჩართული",
|
"On": "ჩართული",
|
||||||
"OneDrive": "OneDrive",
|
"OneDrive": "OneDrive",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "",
|
"Only alphanumeric characters and hyphens are allowed": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "ბრძანების სტრიქონში დაშვებულია, მხოლოდ, ალფარიცხვითი სიმბოლოები და ტირეები.",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "ბრძანების სტრიქონში დაშვებულია, მხოლოდ, ალფარიცხვითი სიმბოლოები და ტირეები.",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
|
||||||
"Only markdown files are allowed": "",
|
"Only markdown files are allowed": "",
|
||||||
"Only select users and groups with permission can access": "",
|
"Only select users and groups with permission can access": "",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "",
|
"Open modal to configure connection": "",
|
||||||
"Open Modal To Manage Floating Quick Actions": "",
|
"Open Modal To Manage Floating Quick Actions": "",
|
||||||
"Open Modal To Manage Image Compression": "",
|
"Open Modal To Manage Image Compression": "",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "გვერდითი ზოლის გახსნა",
|
"Open Sidebar": "გვერდითი ზოლის გახსნა",
|
||||||
"Open User Profile Menu": "",
|
"Open User Profile Menu": "",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "მირჩევნია, არ ვთქვა",
|
"Prefer not to say": "მირჩევნია, არ ვთქვა",
|
||||||
"Prefix ID": "პრეფიქსის ID",
|
"Prefix ID": "პრეფიქსის ID",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "მინიატურა",
|
"Preview": "მინიატურა",
|
||||||
"Previous 30 days": "წინა 30 დღე",
|
"Previous 30 days": "წინა 30 დღე",
|
||||||
"Previous 7 days": "წინა 7 დღე",
|
"Previous 7 days": "წინა 7 დღე",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "უარა, როგორც უნდა იყოს",
|
"Refused when it shouldn't have": "უარა, როგორც უნდა იყოს",
|
||||||
"Regenerate": "თავიდან გენერაცია",
|
"Regenerate": "თავიდან გენერაცია",
|
||||||
"Regenerate Menu": "მენიუს რეგენერაცია",
|
"Regenerate Menu": "მენიუს რეგენერაცია",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "თავიდან რეგისტრაცია",
|
"Register Again": "თავიდან რეგისტრაცია",
|
||||||
"Register Client": "კლიენტის რეგისტრაცია",
|
"Register Client": "კლიენტის რეგისტრაცია",
|
||||||
"Registered": "რეგისტრირებულია",
|
"Registered": "რეგისტრირებულია",
|
||||||
|
|
@ -1439,6 +1457,7 @@
|
||||||
"Show Formatting Toolbar": "დაფორმატების პანელის ჩვენება",
|
"Show Formatting Toolbar": "დაფორმატების პანელის ჩვენება",
|
||||||
"Show image preview": "გამოსახულების გადახედვის ჩვენება",
|
"Show image preview": "გამოსახულების გადახედვის ჩვენება",
|
||||||
"Show Model": "მოდელის ჩვენება",
|
"Show Model": "მოდელის ჩვენება",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "გვაჩვენეთ მხარდაჭერა!",
|
"Show your support!": "გვაჩვენეთ მხარდაჭერა!",
|
||||||
"Showcased creativity": "გამოკვეთილი კრეატიულობა",
|
"Showcased creativity": "გამოკვეთილი კრეატიულობა",
|
||||||
"Sign in": "შესვლა",
|
"Sign in": "შესვლა",
|
||||||
|
|
@ -1474,6 +1493,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "გაჩერება",
|
"Stop": "გაჩერება",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "შეჩერების მიმდევრობა",
|
"Stop Sequence": "შეჩერების მიმდევრობა",
|
||||||
"Stream Chat Response": "",
|
"Stream Chat Response": "",
|
||||||
"Stream Delta Chunk Size": "",
|
"Stream Delta Chunk Size": "",
|
||||||
|
|
@ -1503,6 +1523,7 @@
|
||||||
"Tags Generation": "ჭდეების გენერაცია",
|
"Tags Generation": "ჭდეების გენერაცია",
|
||||||
"Tags Generation Prompt": "",
|
"Tags Generation Prompt": "",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "დაატყაპუნეთ შესაწყვეტად",
|
"Tap to interrupt": "დაატყაპუნეთ შესაწყვეტად",
|
||||||
"Task List": "ამოცანების სია",
|
"Task List": "ამოცანების სია",
|
||||||
"Task Model": "დავალების მოდელი",
|
"Task Model": "დავალების მოდელი",
|
||||||
|
|
@ -1584,6 +1605,7 @@
|
||||||
"Toast notifications for new updates": "",
|
"Toast notifications for new updates": "",
|
||||||
"Today": "დღეს",
|
"Today": "დღეს",
|
||||||
"Today at {{LOCALIZED_TIME}}": "დღეს, {{LOCALIZED_TIME}}",
|
"Today at {{LOCALIZED_TIME}}": "დღეს, {{LOCALIZED_TIME}}",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "გადართვა, აქტიურია, თუ არა მიმდინარე კავშირი.",
|
"Toggle whether current connection is active.": "გადართვა, აქტიურია, თუ არა მიმდინარე კავშირი.",
|
||||||
"Token": "კოდი",
|
"Token": "კოდი",
|
||||||
"Too verbose": "მეტისმეტად ბევრი სეტყობინება",
|
"Too verbose": "მეტისმეტად ბევრი სეტყობინება",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Tamudemt n temsekra tettuseqdec mi ara tgeḍ timsekra am usirew n yizwal i yidiwenniyen akked tuttriwin n unadi deg web",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Tamudemt n temsekra tettuseqdec mi ara tgeḍ timsekra am usirew n yizwal i yidiwenniyen akked tuttriwin n unadi deg web",
|
||||||
"a user": "aseqdac",
|
"a user": "aseqdac",
|
||||||
"About": "Awal ɣef",
|
"About": "Awal ɣef",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "Addaf",
|
"Access": "Addaf",
|
||||||
"Access Control": "Asenqed n unekcum",
|
"Access Control": "Asenqed n unekcum",
|
||||||
"Accessible to all users": "Yella i yiseqdacen i meṛṛa",
|
"Accessible to all users": "Yella i yiseqdacen i meṛṛa",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "Rnu agbur",
|
"Add Content": "Rnu agbur",
|
||||||
"Add content here": "Rnu agbur da",
|
"Add content here": "Rnu agbur da",
|
||||||
"Add Custom Parameter": "Rnu aɣewwar udmawan",
|
"Add Custom Parameter": "Rnu aɣewwar udmawan",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "Rnu talqayt",
|
"Add Details": "Rnu talqayt",
|
||||||
"Add Files": "Rnu ifuyla",
|
"Add Files": "Rnu ifuyla",
|
||||||
"Add Group": "Rnu agraw",
|
"Add Group": "Rnu agraw",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "Suter",
|
"Ask": "Suter",
|
||||||
"Ask a question": "Efk-d asteqsi",
|
"Ask a question": "Efk-d asteqsi",
|
||||||
"Assistant": "Amallal",
|
"Assistant": "Amallal",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "Qqen-as tamessunt",
|
"Attach Knowledge": "Qqen-as tamessunt",
|
||||||
"Attach Notes": "Qqen-as tizmilin",
|
"Attach Notes": "Qqen-as tizmilin",
|
||||||
"Attach Webpage": "Qqen-as asebter web",
|
"Attach Webpage": "Qqen-as asebter web",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "",
|
"Close Banner": "",
|
||||||
"Close Configure Connection Modal": "Mdel asfaylu n tawila n tuqqna",
|
"Close Configure Connection Modal": "Mdel asfaylu n tawila n tuqqna",
|
||||||
"Close modal": "Mdel asfaylu",
|
"Close modal": "Mdel asfaylu",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "Mdel asfaylu n iɣewwaṛen",
|
"Close settings modal": "Mdel asfaylu n iɣewwaṛen",
|
||||||
"Close Sidebar": "Mdel agalis adisan",
|
"Close Sidebar": "Mdel agalis adisan",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "Yettwanɣel ɣer ufus",
|
"Copied to clipboard": "Yettwanɣel ɣer ufus",
|
||||||
"Copy": "Nɣel",
|
"Copy": "Nɣel",
|
||||||
"Copy Formatted Text": "Nɣel aḍris akken yella",
|
"Copy Formatted Text": "Nɣel aḍris akken yella",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "Nɣel aseɣwen",
|
"Copy link": "Nɣel aseɣwen",
|
||||||
"Copy Link": "Nɣel aseɣwen",
|
"Copy Link": "Nɣel aseɣwen",
|
||||||
"Copy to clipboard": "Nɣel ɣef afus",
|
"Copy to clipboard": "Nɣel ɣef afus",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "Senfel tisirag timezwar",
|
"Edit Default Permissions": "Senfel tisirag timezwar",
|
||||||
"Edit Folder": "Ẓreg akaram",
|
"Edit Folder": "Ẓreg akaram",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "Ẓreg takatut",
|
"Edit Memory": "Ẓreg takatut",
|
||||||
"Edit User": "Ẓreg aseqdac",
|
"Edit User": "Ẓreg aseqdac",
|
||||||
"Edit User Group": "Ẓreg agraw n iseqdacen",
|
"Edit User Group": "Ẓreg agraw n iseqdacen",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "Tansa URL n taffa n isefka",
|
"Firecrawl API Base URL": "Tansa URL n taffa n isefka",
|
||||||
"Firecrawl API Key": "Tasarut API n Firecrawl",
|
"Firecrawl API Key": "Tasarut API n Firecrawl",
|
||||||
"Floating Quick Actions": "Tigawin tiruradin yettifliwen",
|
"Floating Quick Actions": "Tigawin tiruradin yettifliwen",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "Akaram",
|
"Folder": "Akaram",
|
||||||
"Folder Background Image": "Tugna n ugilal n ukaram",
|
"Folder Background Image": "Tugna n ugilal n ukaram",
|
||||||
"Folder deleted successfully": "Akaram-nni yettwakkes akken iwata",
|
"Folder deleted successfully": "Akaram-nni yettwakkes akken iwata",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "Sirew",
|
"Generate": "Sirew",
|
||||||
"Generate an image": "Sarew tugna",
|
"Generate an image": "Sarew tugna",
|
||||||
"Generate Image": "Sirew-d tugna",
|
"Generate Image": "Sirew-d tugna",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "",
|
"Generated Image": "",
|
||||||
"Generating search query": "Asirew n tuttra n unadi",
|
"Generating search query": "Asirew n tuttra n unadi",
|
||||||
"Generating...": "Asirew…",
|
"Generating...": "Asirew…",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "Takatut tettwaleqqem akken iwata",
|
"Memory updated successfully": "Takatut tettwaleqqem akken iwata",
|
||||||
"Merge Responses": "Smezdi tiririyin",
|
"Merge Responses": "Smezdi tiririyin",
|
||||||
"Merged Response": "Tiririyin mmezdint",
|
"Merged Response": "Tiririyin mmezdint",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "A win yufan, tazmilt n yizen ad tettwasireg i useqdec n tmahilt-a",
|
"Message rating should be enabled to use this feature": "A win yufan, tazmilt n yizen ad tettwasireg i useqdec n tmahilt-a",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Izen ara d-tazneḍ mi ara d-tesnulfuḍ aseɣwen-ik ur yettwabḍu ara. Iseqdacen yesɛan tansa URL ad izmiren ad walin adiwenni-nni yettwabḍan.",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Izen ara d-tazneḍ mi ara d-tesnulfuḍ aseɣwen-ik ur yettwabḍu ara. Iseqdacen yesɛan tansa URL ad izmiren ad walin adiwenni-nni yettwabḍan.",
|
||||||
"Microsoft OneDrive": "Microsoft OneDrive",
|
"Microsoft OneDrive": "Microsoft OneDrive",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "Tazmilt tamaynut",
|
"New Note": "Tazmilt tamaynut",
|
||||||
"New Password": "Awal n uɛeddi amaynut",
|
"New Password": "Awal n uɛeddi amaynut",
|
||||||
"New Prompt": "Aneftaɣ amaynut",
|
"New Prompt": "Aneftaɣ amaynut",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "Afecku amaynut",
|
"New Tool": "Afecku amaynut",
|
||||||
"new-channel": "abadu amaynut",
|
"new-channel": "abadu amaynut",
|
||||||
"Next message": "Izen uḍfir",
|
"Next message": "Izen uḍfir",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Lqem n Ollama",
|
"Ollama Version": "Lqem n Ollama",
|
||||||
"On": "Irmed",
|
"On": "Irmed",
|
||||||
"OneDrive": "OneDrive",
|
"OneDrive": "OneDrive",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "Ala iwudam ifenyanen d tfenṭazit i yettusirgen",
|
"Only alphanumeric characters and hyphens are allowed": "Ala iwudam ifenyanen d tfenṭazit i yettusirgen",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "Ala iwudam ifenyanen d tfendiwin i yettusirgen deg uzrar n ukman.",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "Ala iwudam ifenyanen d tfendiwin i yettusirgen deg uzrar n ukman.",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Ala tigrummiwin i izemren ad ttwabeddlent, ad d-snulfunt azadur amaynut n tmussni i ubeddel/ad arraten.",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Ala tigrummiwin i izemren ad ttwabeddlent, ad d-snulfunt azadur amaynut n tmussni i ubeddel/ad arraten.",
|
||||||
"Only markdown files are allowed": "Ala ifuyla n tuccar i yettusirgen",
|
"Only markdown files are allowed": "Ala ifuyla n tuccar i yettusirgen",
|
||||||
"Only select users and groups with permission can access": "Ala iseqdacen akked yegrawen yesɛan tisirag i izemren ad kecmen",
|
"Only select users and groups with permission can access": "Ala iseqdacen akked yegrawen yesɛan tisirag i izemren ad kecmen",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "Ldi asfaylu akken ad teswel tuqqna",
|
"Open modal to configure connection": "Ldi asfaylu akken ad teswel tuqqna",
|
||||||
"Open Modal To Manage Floating Quick Actions": "",
|
"Open Modal To Manage Floating Quick Actions": "",
|
||||||
"Open Modal To Manage Image Compression": "",
|
"Open Modal To Manage Image Compression": "",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "Ldi agalis adisan",
|
"Open Sidebar": "Ldi agalis adisan",
|
||||||
"Open User Profile Menu": "Ldi umuɣ n umaɣnu n useqdac",
|
"Open User Profile Menu": "Ldi umuɣ n umaɣnu n useqdac",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI yezmer ad yesseqdec ifecka i d-yettak yal aqeddac OpenAPI.",
|
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI yezmer ad yesseqdec ifecka i d-yettak yal aqeddac OpenAPI.",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "Smenyafeɣ ur d-qqareɣ ara",
|
"Prefer not to say": "Smenyafeɣ ur d-qqareɣ ara",
|
||||||
"Prefix ID": "Asulay ID n uzwir",
|
"Prefix ID": "Asulay ID n uzwir",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Asulay n uzwir yettusexdem i wakken ur d-yettili ara umennuɣ akked tuqqna-nniḍen s tmerna n usewgelhen i yimuhal n tmudemt - eǧǧ-iten d ilmawen i tukksa n tuqqna",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Asulay n uzwir yettusexdem i wakken ur d-yettili ara umennuɣ akked tuqqna-nniḍen s tmerna n usewgelhen i yimuhal n tmudemt - eǧǧ-iten d ilmawen i tukksa n tuqqna",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "Taskant",
|
"Preview": "Taskant",
|
||||||
"Previous 30 days": "30 n wussan yezrin",
|
"Previous 30 days": "30 n wussan yezrin",
|
||||||
"Previous 7 days": "7 n wussan yezrin",
|
"Previous 7 days": "7 n wussan yezrin",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "",
|
"Refused when it shouldn't have": "",
|
||||||
"Regenerate": "Asirew",
|
"Regenerate": "Asirew",
|
||||||
"Regenerate Menu": "Sarew-d umuɣ",
|
"Regenerate Menu": "Sarew-d umuɣ",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "",
|
"Register Again": "",
|
||||||
"Register Client": "",
|
"Register Client": "",
|
||||||
"Registered": "",
|
"Registered": "",
|
||||||
|
|
@ -1439,6 +1457,7 @@
|
||||||
"Show Formatting Toolbar": "Skan amsal n ufeggag n yifecka",
|
"Show Formatting Toolbar": "Skan amsal n ufeggag n yifecka",
|
||||||
"Show image preview": "Sken taskant n tugna",
|
"Show image preview": "Sken taskant n tugna",
|
||||||
"Show Model": "Sken-d tamudemt",
|
"Show Model": "Sken-d tamudemt",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "Sken tallalt-ik⋅im!",
|
"Show your support!": "Sken tallalt-ik⋅im!",
|
||||||
"Showcased creativity": "",
|
"Showcased creativity": "",
|
||||||
"Sign in": "Qqen",
|
"Sign in": "Qqen",
|
||||||
|
|
@ -1474,6 +1493,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "Seḥbes",
|
"Stop": "Seḥbes",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "Tagzemt n uḥbas",
|
"Stop Sequence": "Tagzemt n uḥbas",
|
||||||
"Stream Chat Response": "Suddem tiririt n udiwenni",
|
"Stream Chat Response": "Suddem tiririt n udiwenni",
|
||||||
"Stream Delta Chunk Size": "",
|
"Stream Delta Chunk Size": "",
|
||||||
|
|
@ -1503,6 +1523,7 @@
|
||||||
"Tags Generation": "Asirew n tebzimin",
|
"Tags Generation": "Asirew n tebzimin",
|
||||||
"Tags Generation Prompt": "Aneftaɣ n usirew n tebzimin",
|
"Tags Generation Prompt": "Aneftaɣ n usirew n tebzimin",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "Sit i unegzum",
|
"Tap to interrupt": "Sit i unegzum",
|
||||||
"Task List": "Tabdart n temsekra",
|
"Task List": "Tabdart n temsekra",
|
||||||
"Task Model": "Tamudemt n temsekra",
|
"Task Model": "Tamudemt n temsekra",
|
||||||
|
|
@ -1584,6 +1605,7 @@
|
||||||
"Toast notifications for new updates": "Ssurfet ilɣa i yileqman imaynuten",
|
"Toast notifications for new updates": "Ssurfet ilɣa i yileqman imaynuten",
|
||||||
"Today": "Ass-a",
|
"Today": "Ass-a",
|
||||||
"Today at {{LOCALIZED_TIME}}": "Ass-a, ɣef {{LOCALIZED_TIME}}",
|
"Today at {{LOCALIZED_TIME}}": "Ass-a, ɣef {{LOCALIZED_TIME}}",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "Sken ma yella tuqqna tamirant d turmidt.",
|
"Toggle whether current connection is active.": "Sken ma yella tuqqna tamirant d turmidt.",
|
||||||
"Token": "Ajiṭun",
|
"Token": "Ajiṭun",
|
||||||
"Too verbose": "",
|
"Too verbose": "",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "작업 모델은 채팅 및 웹 검색 쿼리에 대한 제목 생성 등의 작업 수행 시 사용됩니다.",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "작업 모델은 채팅 및 웹 검색 쿼리에 대한 제목 생성 등의 작업 수행 시 사용됩니다.",
|
||||||
"a user": "사용자",
|
"a user": "사용자",
|
||||||
"About": "정보",
|
"About": "정보",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "접근",
|
"Access": "접근",
|
||||||
"Access Control": "접근 제어",
|
"Access Control": "접근 제어",
|
||||||
"Accessible to all users": "모든 사용자가 이용할 수 있음",
|
"Accessible to all users": "모든 사용자가 이용할 수 있음",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "내용 추가",
|
"Add Content": "내용 추가",
|
||||||
"Add content here": "여기에 내용을 추가하세요",
|
"Add content here": "여기에 내용을 추가하세요",
|
||||||
"Add Custom Parameter": "사용자 정의 매개변수 추가",
|
"Add Custom Parameter": "사용자 정의 매개변수 추가",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "디테일 추가",
|
"Add Details": "디테일 추가",
|
||||||
"Add Files": "파일 추가",
|
"Add Files": "파일 추가",
|
||||||
"Add Group": "그룹 추가",
|
"Add Group": "그룹 추가",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "질문",
|
"Ask": "질문",
|
||||||
"Ask a question": "질문하기",
|
"Ask a question": "질문하기",
|
||||||
"Assistant": "어시스턴트",
|
"Assistant": "어시스턴트",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "지식 기반 첨부",
|
"Attach Knowledge": "지식 기반 첨부",
|
||||||
"Attach Notes": "노트 첨부",
|
"Attach Notes": "노트 첨부",
|
||||||
"Attach Webpage": "웹페이지 첨부",
|
"Attach Webpage": "웹페이지 첨부",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "배너 닫기",
|
"Close Banner": "배너 닫기",
|
||||||
"Close Configure Connection Modal": "연결 설정 닫기",
|
"Close Configure Connection Modal": "연결 설정 닫기",
|
||||||
"Close modal": "닫기",
|
"Close modal": "닫기",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "설정 닫기",
|
"Close settings modal": "설정 닫기",
|
||||||
"Close Sidebar": "사이드바 닫기",
|
"Close Sidebar": "사이드바 닫기",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "클립보드에 복사되었습니다",
|
"Copied to clipboard": "클립보드에 복사되었습니다",
|
||||||
"Copy": "복사",
|
"Copy": "복사",
|
||||||
"Copy Formatted Text": "서식 있는 텍스트 복사",
|
"Copy Formatted Text": "서식 있는 텍스트 복사",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "링크 복사",
|
"Copy link": "링크 복사",
|
||||||
"Copy Link": "링크 복사",
|
"Copy Link": "링크 복사",
|
||||||
"Copy to clipboard": "클립보드에 복사",
|
"Copy to clipboard": "클립보드에 복사",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "기본 권한 편집",
|
"Edit Default Permissions": "기본 권한 편집",
|
||||||
"Edit Folder": "폴더 편집",
|
"Edit Folder": "폴더 편집",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "메모리 편집",
|
"Edit Memory": "메모리 편집",
|
||||||
"Edit User": "사용자 편집",
|
"Edit User": "사용자 편집",
|
||||||
"Edit User Group": "사용자 그룹 편집",
|
"Edit User Group": "사용자 그룹 편집",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "Firecrawl API 기본 URL",
|
"Firecrawl API Base URL": "Firecrawl API 기본 URL",
|
||||||
"Firecrawl API Key": "Firecrawl API 키",
|
"Firecrawl API Key": "Firecrawl API 키",
|
||||||
"Floating Quick Actions": "",
|
"Floating Quick Actions": "",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "폴더",
|
"Folder": "폴더",
|
||||||
"Folder Background Image": "폴더 배경 이미지",
|
"Folder Background Image": "폴더 배경 이미지",
|
||||||
"Folder deleted successfully": "성공적으로 폴더가 삭제되었습니다",
|
"Folder deleted successfully": "성공적으로 폴더가 삭제되었습니다",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "생성",
|
"Generate": "생성",
|
||||||
"Generate an image": "이미지 생성",
|
"Generate an image": "이미지 생성",
|
||||||
"Generate Image": "이미지 생성",
|
"Generate Image": "이미지 생성",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "",
|
"Generated Image": "",
|
||||||
"Generating search query": "검색 쿼리 생성",
|
"Generating search query": "검색 쿼리 생성",
|
||||||
"Generating...": "생성 중...",
|
"Generating...": "생성 중...",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "성공적으로 메모리가 업데이트되었습니다",
|
"Memory updated successfully": "성공적으로 메모리가 업데이트되었습니다",
|
||||||
"Merge Responses": "응답들 결합하기",
|
"Merge Responses": "응답들 결합하기",
|
||||||
"Merged Response": "결합된 응답",
|
"Merged Response": "결합된 응답",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "이 기능을 사용하려면 메시지 평가가 활성화되어야합니다",
|
"Message rating should be enabled to use this feature": "이 기능을 사용하려면 메시지 평가가 활성화되어야합니다",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "링크 생성 후에 보낸 메시지는 공유되지 않습니다. URL이 있는 사용자는 공유된 채팅을 볼 수 있습니다.",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "링크 생성 후에 보낸 메시지는 공유되지 않습니다. URL이 있는 사용자는 공유된 채팅을 볼 수 있습니다.",
|
||||||
"Microsoft OneDrive": "",
|
"Microsoft OneDrive": "",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "새 노트",
|
"New Note": "새 노트",
|
||||||
"New Password": "새 비밀번호",
|
"New Password": "새 비밀번호",
|
||||||
"New Prompt": "새 프롬프트",
|
"New Prompt": "새 프롬프트",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "새 도구",
|
"New Tool": "새 도구",
|
||||||
"new-channel": "새 채널",
|
"new-channel": "새 채널",
|
||||||
"Next message": "다음 메시지",
|
"Next message": "다음 메시지",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Ollama 버전",
|
"Ollama Version": "Ollama 버전",
|
||||||
"On": "켜기",
|
"On": "켜기",
|
||||||
"OneDrive": "OneDrive",
|
"OneDrive": "OneDrive",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "영문자, 숫자 및 하이픈(-)만 허용됩니다.",
|
"Only alphanumeric characters and hyphens are allowed": "영문자, 숫자 및 하이픈(-)만 허용됩니다.",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "명령어 문자열에는 영문자, 숫자 및 하이픈(-)만 허용됩니다.",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "명령어 문자열에는 영문자, 숫자 및 하이픈(-)만 허용됩니다.",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "가지고 있는 컬렉션만 수정 가능합니다, 새 지식 기반을 생성하여 문서를 수정 혹은 추가하십시오.",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "가지고 있는 컬렉션만 수정 가능합니다, 새 지식 기반을 생성하여 문서를 수정 혹은 추가하십시오.",
|
||||||
"Only markdown files are allowed": "마크다운 파일만 허용됩니다",
|
"Only markdown files are allowed": "마크다운 파일만 허용됩니다",
|
||||||
"Only select users and groups with permission can access": "권한이 있는 사용자와 그룹만 접근 가능합니다.",
|
"Only select users and groups with permission can access": "권한이 있는 사용자와 그룹만 접근 가능합니다.",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "연결 설정 열기",
|
"Open modal to configure connection": "연결 설정 열기",
|
||||||
"Open Modal To Manage Floating Quick Actions": "",
|
"Open Modal To Manage Floating Quick Actions": "",
|
||||||
"Open Modal To Manage Image Compression": "",
|
"Open Modal To Manage Image Compression": "",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "사이드바 열기",
|
"Open Sidebar": "사이드바 열기",
|
||||||
"Open User Profile Menu": "사용자 프로필 메뉴 열기",
|
"Open User Profile Menu": "사용자 프로필 메뉴 열기",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI는 모든 OpenAPI 서버에서 제공하는 도구를 사용할 수 있습니다.",
|
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI는 모든 OpenAPI 서버에서 제공하는 도구를 사용할 수 있습니다.",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "언급하고 싶지 않습니다.",
|
"Prefer not to say": "언급하고 싶지 않습니다.",
|
||||||
"Prefix ID": "Prefix ID",
|
"Prefix ID": "Prefix ID",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefix ID는 모델 ID에 접두사를 추가하여 다른 연결과의 충돌을 방지하는 데 사용됩니다. - 비활성화하려면 비워 둡니다.",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefix ID는 모델 ID에 접두사를 추가하여 다른 연결과의 충돌을 방지하는 데 사용됩니다. - 비활성화하려면 비워 둡니다.",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "미리보기",
|
"Preview": "미리보기",
|
||||||
"Previous 30 days": "이전 30일",
|
"Previous 30 days": "이전 30일",
|
||||||
"Previous 7 days": "이전 7일",
|
"Previous 7 days": "이전 7일",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "허용되지 않았지만 허용되어야 합니다.",
|
"Refused when it shouldn't have": "허용되지 않았지만 허용되어야 합니다.",
|
||||||
"Regenerate": "재생성",
|
"Regenerate": "재생성",
|
||||||
"Regenerate Menu": "메뉴 재생성",
|
"Regenerate Menu": "메뉴 재생성",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "재등록",
|
"Register Again": "재등록",
|
||||||
"Register Client": "클라이언트 등록",
|
"Register Client": "클라이언트 등록",
|
||||||
"Registered": "등록됨",
|
"Registered": "등록됨",
|
||||||
|
|
@ -1438,6 +1456,7 @@
|
||||||
"Show Formatting Toolbar": "서식 툴바 표시",
|
"Show Formatting Toolbar": "서식 툴바 표시",
|
||||||
"Show image preview": "이미지 미리보기",
|
"Show image preview": "이미지 미리보기",
|
||||||
"Show Model": "모델 보기",
|
"Show Model": "모델 보기",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "당신의 응원을 보내주세요!",
|
"Show your support!": "당신의 응원을 보내주세요!",
|
||||||
"Showcased creativity": "창의성 발휘",
|
"Showcased creativity": "창의성 발휘",
|
||||||
"Sign in": "로그인",
|
"Sign in": "로그인",
|
||||||
|
|
@ -1473,6 +1492,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "정지",
|
"Stop": "정지",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "중지 시퀀스",
|
"Stop Sequence": "중지 시퀀스",
|
||||||
"Stream Chat Response": "스트림 채팅 응답",
|
"Stream Chat Response": "스트림 채팅 응답",
|
||||||
"Stream Delta Chunk Size": "스트림 델타 청크 크기",
|
"Stream Delta Chunk Size": "스트림 델타 청크 크기",
|
||||||
|
|
@ -1502,6 +1522,7 @@
|
||||||
"Tags Generation": "태그 생성",
|
"Tags Generation": "태그 생성",
|
||||||
"Tags Generation Prompt": "태그 생성 프롬프트",
|
"Tags Generation Prompt": "태그 생성 프롬프트",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "꼬리 자유 샘플링은 출력에서 확률이 낮은 토큰의 영향을 줄이기 위해 사용됩니다. 값이 클수록(예: 2.0) 이러한 토큰의 영향이 더 줄어들며, 1.0으로 설정하면 이 기능은 비활성화됩니다.",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "꼬리 자유 샘플링은 출력에서 확률이 낮은 토큰의 영향을 줄이기 위해 사용됩니다. 값이 클수록(예: 2.0) 이러한 토큰의 영향이 더 줄어들며, 1.0으로 설정하면 이 기능은 비활성화됩니다.",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "탭하여 중단",
|
"Tap to interrupt": "탭하여 중단",
|
||||||
"Task List": "작업 목록",
|
"Task List": "작업 목록",
|
||||||
"Task Model": "작업 모델",
|
"Task Model": "작업 모델",
|
||||||
|
|
@ -1583,6 +1604,7 @@
|
||||||
"Toast notifications for new updates": "새 업데이트 알림",
|
"Toast notifications for new updates": "새 업데이트 알림",
|
||||||
"Today": "오늘",
|
"Today": "오늘",
|
||||||
"Today at {{LOCALIZED_TIME}}": "오늘 {{LOCALIZED_TIME}}",
|
"Today at {{LOCALIZED_TIME}}": "오늘 {{LOCALIZED_TIME}}",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "현재 연결 활성화 여부 설정",
|
"Toggle whether current connection is active.": "현재 연결 활성화 여부 설정",
|
||||||
"Token": "토큰",
|
"Token": "토큰",
|
||||||
"Too verbose": "너무 장황합니다",
|
"Too verbose": "너무 장황합니다",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Užduočių modelis naudojamas pokalbių pavadinimų ir paieškos užklausų generavimui.",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Užduočių modelis naudojamas pokalbių pavadinimų ir paieškos užklausų generavimui.",
|
||||||
"a user": "naudotojas",
|
"a user": "naudotojas",
|
||||||
"About": "Apie",
|
"About": "Apie",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "",
|
"Access": "",
|
||||||
"Access Control": "",
|
"Access Control": "",
|
||||||
"Accessible to all users": "",
|
"Accessible to all users": "",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "",
|
"Add Content": "",
|
||||||
"Add content here": "",
|
"Add content here": "",
|
||||||
"Add Custom Parameter": "",
|
"Add Custom Parameter": "",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "",
|
"Add Details": "",
|
||||||
"Add Files": "Pridėti failus",
|
"Add Files": "Pridėti failus",
|
||||||
"Add Group": "",
|
"Add Group": "",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "",
|
"Ask": "",
|
||||||
"Ask a question": "",
|
"Ask a question": "",
|
||||||
"Assistant": "",
|
"Assistant": "",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "",
|
"Attach Knowledge": "",
|
||||||
"Attach Notes": "",
|
"Attach Notes": "",
|
||||||
"Attach Webpage": "",
|
"Attach Webpage": "",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "",
|
"Close Banner": "",
|
||||||
"Close Configure Connection Modal": "",
|
"Close Configure Connection Modal": "",
|
||||||
"Close modal": "",
|
"Close modal": "",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "",
|
"Close settings modal": "",
|
||||||
"Close Sidebar": "",
|
"Close Sidebar": "",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "",
|
"Copied to clipboard": "",
|
||||||
"Copy": "Kopijuoti",
|
"Copy": "Kopijuoti",
|
||||||
"Copy Formatted Text": "",
|
"Copy Formatted Text": "",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "",
|
"Copy link": "",
|
||||||
"Copy Link": "Kopijuoti nuorodą",
|
"Copy Link": "Kopijuoti nuorodą",
|
||||||
"Copy to clipboard": "",
|
"Copy to clipboard": "",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "",
|
"Edit Default Permissions": "",
|
||||||
"Edit Folder": "",
|
"Edit Folder": "",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "Koreguoti atminį",
|
"Edit Memory": "Koreguoti atminį",
|
||||||
"Edit User": "Redaguoti naudotoją",
|
"Edit User": "Redaguoti naudotoją",
|
||||||
"Edit User Group": "",
|
"Edit User Group": "",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "",
|
"Firecrawl API Base URL": "",
|
||||||
"Firecrawl API Key": "",
|
"Firecrawl API Key": "",
|
||||||
"Floating Quick Actions": "",
|
"Floating Quick Actions": "",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "",
|
"Folder": "",
|
||||||
"Folder Background Image": "",
|
"Folder Background Image": "",
|
||||||
"Folder deleted successfully": "",
|
"Folder deleted successfully": "",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "",
|
"Generate": "",
|
||||||
"Generate an image": "",
|
"Generate an image": "",
|
||||||
"Generate Image": "Generuoti paveikslėlį",
|
"Generate Image": "Generuoti paveikslėlį",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "",
|
"Generated Image": "",
|
||||||
"Generating search query": "Generuoti paieškos užklausą",
|
"Generating search query": "Generuoti paieškos užklausą",
|
||||||
"Generating...": "",
|
"Generating...": "",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "Atmintis atnaujinta sėkmingai",
|
"Memory updated successfully": "Atmintis atnaujinta sėkmingai",
|
||||||
"Merge Responses": "",
|
"Merge Responses": "",
|
||||||
"Merged Response": "Sujungtas atsakymas",
|
"Merged Response": "Sujungtas atsakymas",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "",
|
"Message rating should be enabled to use this feature": "",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Žinutės, kurias siunčiate po nuorodos sukūrimo nebus matomos nuorodos turėtojams. Naudotojai su nuoroda matys žinutes iki nuorodos sukūrimo.",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Žinutės, kurias siunčiate po nuorodos sukūrimo nebus matomos nuorodos turėtojams. Naudotojai su nuoroda matys žinutes iki nuorodos sukūrimo.",
|
||||||
"Microsoft OneDrive": "",
|
"Microsoft OneDrive": "",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "",
|
"New Note": "",
|
||||||
"New Password": "Naujas slaptažodis",
|
"New Password": "Naujas slaptažodis",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "",
|
"New Tool": "",
|
||||||
"new-channel": "",
|
"new-channel": "",
|
||||||
"Next message": "",
|
"Next message": "",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Ollama versija",
|
"Ollama Version": "Ollama versija",
|
||||||
"On": "Aktyvuota",
|
"On": "Aktyvuota",
|
||||||
"OneDrive": "",
|
"OneDrive": "",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "",
|
"Only alphanumeric characters and hyphens are allowed": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "Leistinos tik raidės, skaičiai ir brūkšneliai.",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "Leistinos tik raidės, skaičiai ir brūkšneliai.",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
|
||||||
"Only markdown files are allowed": "",
|
"Only markdown files are allowed": "",
|
||||||
"Only select users and groups with permission can access": "",
|
"Only select users and groups with permission can access": "",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "",
|
"Open modal to configure connection": "",
|
||||||
"Open Modal To Manage Floating Quick Actions": "",
|
"Open Modal To Manage Floating Quick Actions": "",
|
||||||
"Open Modal To Manage Image Compression": "",
|
"Open Modal To Manage Image Compression": "",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "",
|
"Open Sidebar": "",
|
||||||
"Open User Profile Menu": "",
|
"Open User Profile Menu": "",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "",
|
"Prefer not to say": "",
|
||||||
"Prefix ID": "",
|
"Prefix ID": "",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "",
|
"Preview": "",
|
||||||
"Previous 30 days": "Paskutinės 30 dienų",
|
"Previous 30 days": "Paskutinės 30 dienų",
|
||||||
"Previous 7 days": "Paskutinės 7 dienos",
|
"Previous 7 days": "Paskutinės 7 dienos",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "Atmesta kai neturėtų būti atmesta",
|
"Refused when it shouldn't have": "Atmesta kai neturėtų būti atmesta",
|
||||||
"Regenerate": "Generuoti iš naujo",
|
"Regenerate": "Generuoti iš naujo",
|
||||||
"Regenerate Menu": "",
|
"Regenerate Menu": "",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "",
|
"Register Again": "",
|
||||||
"Register Client": "",
|
"Register Client": "",
|
||||||
"Registered": "",
|
"Registered": "",
|
||||||
|
|
@ -1441,6 +1459,7 @@
|
||||||
"Show Formatting Toolbar": "",
|
"Show Formatting Toolbar": "",
|
||||||
"Show image preview": "",
|
"Show image preview": "",
|
||||||
"Show Model": "",
|
"Show Model": "",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "Palaikykite",
|
"Show your support!": "Palaikykite",
|
||||||
"Showcased creativity": "Kūrybingų užklausų paroda",
|
"Showcased creativity": "Kūrybingų užklausų paroda",
|
||||||
"Sign in": "Prisijungti",
|
"Sign in": "Prisijungti",
|
||||||
|
|
@ -1476,6 +1495,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "",
|
"Stop": "",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "Baigt sekvenciją",
|
"Stop Sequence": "Baigt sekvenciją",
|
||||||
"Stream Chat Response": "",
|
"Stream Chat Response": "",
|
||||||
"Stream Delta Chunk Size": "",
|
"Stream Delta Chunk Size": "",
|
||||||
|
|
@ -1505,6 +1525,7 @@
|
||||||
"Tags Generation": "",
|
"Tags Generation": "",
|
||||||
"Tags Generation Prompt": "",
|
"Tags Generation Prompt": "",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "Paspauskite norėdami pertraukti",
|
"Tap to interrupt": "Paspauskite norėdami pertraukti",
|
||||||
"Task List": "",
|
"Task List": "",
|
||||||
"Task Model": "",
|
"Task Model": "",
|
||||||
|
|
@ -1586,6 +1607,7 @@
|
||||||
"Toast notifications for new updates": "",
|
"Toast notifications for new updates": "",
|
||||||
"Today": "Šiandien",
|
"Today": "Šiandien",
|
||||||
"Today at {{LOCALIZED_TIME}}": "",
|
"Today at {{LOCALIZED_TIME}}": "",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "",
|
"Toggle whether current connection is active.": "",
|
||||||
"Token": "",
|
"Token": "",
|
||||||
"Too verbose": "",
|
"Too verbose": "",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Model tugas digunakan semasa melaksanakan tugas seperti menjana tajuk untuk perbualan dan pertanyaan carian web.",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Model tugas digunakan semasa melaksanakan tugas seperti menjana tajuk untuk perbualan dan pertanyaan carian web.",
|
||||||
"a user": "seorang pengguna",
|
"a user": "seorang pengguna",
|
||||||
"About": "Mengenai",
|
"About": "Mengenai",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "",
|
"Access": "",
|
||||||
"Access Control": "",
|
"Access Control": "",
|
||||||
"Accessible to all users": "",
|
"Accessible to all users": "",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "",
|
"Add Content": "",
|
||||||
"Add content here": "",
|
"Add content here": "",
|
||||||
"Add Custom Parameter": "",
|
"Add Custom Parameter": "",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "",
|
"Add Details": "",
|
||||||
"Add Files": "Tambah Fail",
|
"Add Files": "Tambah Fail",
|
||||||
"Add Group": "",
|
"Add Group": "",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "",
|
"Ask": "",
|
||||||
"Ask a question": "",
|
"Ask a question": "",
|
||||||
"Assistant": "",
|
"Assistant": "",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "",
|
"Attach Knowledge": "",
|
||||||
"Attach Notes": "",
|
"Attach Notes": "",
|
||||||
"Attach Webpage": "",
|
"Attach Webpage": "",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "",
|
"Close Banner": "",
|
||||||
"Close Configure Connection Modal": "",
|
"Close Configure Connection Modal": "",
|
||||||
"Close modal": "",
|
"Close modal": "",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "",
|
"Close settings modal": "",
|
||||||
"Close Sidebar": "",
|
"Close Sidebar": "",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "",
|
"Copied to clipboard": "",
|
||||||
"Copy": "Salin",
|
"Copy": "Salin",
|
||||||
"Copy Formatted Text": "",
|
"Copy Formatted Text": "",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "",
|
"Copy link": "",
|
||||||
"Copy Link": "Salin Pautan",
|
"Copy Link": "Salin Pautan",
|
||||||
"Copy to clipboard": "",
|
"Copy to clipboard": "",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "",
|
"Edit Default Permissions": "",
|
||||||
"Edit Folder": "",
|
"Edit Folder": "",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "Edit Memori",
|
"Edit Memory": "Edit Memori",
|
||||||
"Edit User": "Edit Penggunal",
|
"Edit User": "Edit Penggunal",
|
||||||
"Edit User Group": "",
|
"Edit User Group": "",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "",
|
"Firecrawl API Base URL": "",
|
||||||
"Firecrawl API Key": "",
|
"Firecrawl API Key": "",
|
||||||
"Floating Quick Actions": "",
|
"Floating Quick Actions": "",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "",
|
"Folder": "",
|
||||||
"Folder Background Image": "",
|
"Folder Background Image": "",
|
||||||
"Folder deleted successfully": "",
|
"Folder deleted successfully": "",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "",
|
"Generate": "",
|
||||||
"Generate an image": "",
|
"Generate an image": "",
|
||||||
"Generate Image": "Jana Imej",
|
"Generate Image": "Jana Imej",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "",
|
"Generated Image": "",
|
||||||
"Generating search query": "Jana pertanyaan carian",
|
"Generating search query": "Jana pertanyaan carian",
|
||||||
"Generating...": "",
|
"Generating...": "",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "Memori berjaya dikemaskini",
|
"Memory updated successfully": "Memori berjaya dikemaskini",
|
||||||
"Merge Responses": "",
|
"Merge Responses": "",
|
||||||
"Merged Response": "Respons Digabungkan",
|
"Merged Response": "Respons Digabungkan",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "",
|
"Message rating should be enabled to use this feature": "",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Mesej yang anda hantar selepas membuat pautan anda tidak akan dikongsi. Pengguna dengan URL akan dapat melihat perbualan yang dikongsi.",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Mesej yang anda hantar selepas membuat pautan anda tidak akan dikongsi. Pengguna dengan URL akan dapat melihat perbualan yang dikongsi.",
|
||||||
"Microsoft OneDrive": "",
|
"Microsoft OneDrive": "",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "",
|
"New Note": "",
|
||||||
"New Password": "Kata Laluan Baru",
|
"New Password": "Kata Laluan Baru",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "",
|
"New Tool": "",
|
||||||
"new-channel": "",
|
"new-channel": "",
|
||||||
"Next message": "",
|
"Next message": "",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Versi Ollama",
|
"Ollama Version": "Versi Ollama",
|
||||||
"On": "Hidup",
|
"On": "Hidup",
|
||||||
"OneDrive": "",
|
"OneDrive": "",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "",
|
"Only alphanumeric characters and hyphens are allowed": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "Hanya aksara alfanumerik dan sempang dibenarkan dalam rentetan arahan.",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "Hanya aksara alfanumerik dan sempang dibenarkan dalam rentetan arahan.",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
|
||||||
"Only markdown files are allowed": "",
|
"Only markdown files are allowed": "",
|
||||||
"Only select users and groups with permission can access": "",
|
"Only select users and groups with permission can access": "",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "",
|
"Open modal to configure connection": "",
|
||||||
"Open Modal To Manage Floating Quick Actions": "",
|
"Open Modal To Manage Floating Quick Actions": "",
|
||||||
"Open Modal To Manage Image Compression": "",
|
"Open Modal To Manage Image Compression": "",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "",
|
"Open Sidebar": "",
|
||||||
"Open User Profile Menu": "",
|
"Open User Profile Menu": "",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "",
|
"Prefer not to say": "",
|
||||||
"Prefix ID": "",
|
"Prefix ID": "",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "",
|
"Preview": "",
|
||||||
"Previous 30 days": "30 hari sebelumnya",
|
"Previous 30 days": "30 hari sebelumnya",
|
||||||
"Previous 7 days": "7 hari sebelumnya",
|
"Previous 7 days": "7 hari sebelumnya",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "Menolak dimana ia tidak sepatutnya",
|
"Refused when it shouldn't have": "Menolak dimana ia tidak sepatutnya",
|
||||||
"Regenerate": "Jana semula",
|
"Regenerate": "Jana semula",
|
||||||
"Regenerate Menu": "",
|
"Regenerate Menu": "",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "",
|
"Register Again": "",
|
||||||
"Register Client": "",
|
"Register Client": "",
|
||||||
"Registered": "",
|
"Registered": "",
|
||||||
|
|
@ -1438,6 +1456,7 @@
|
||||||
"Show Formatting Toolbar": "",
|
"Show Formatting Toolbar": "",
|
||||||
"Show image preview": "",
|
"Show image preview": "",
|
||||||
"Show Model": "",
|
"Show Model": "",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "Tunjukkan sokongan anda!",
|
"Show your support!": "Tunjukkan sokongan anda!",
|
||||||
"Showcased creativity": "eativiti yang dipamerkan",
|
"Showcased creativity": "eativiti yang dipamerkan",
|
||||||
"Sign in": "Daftar masuk",
|
"Sign in": "Daftar masuk",
|
||||||
|
|
@ -1473,6 +1492,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "",
|
"Stop": "",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "Jujukan Henti",
|
"Stop Sequence": "Jujukan Henti",
|
||||||
"Stream Chat Response": "",
|
"Stream Chat Response": "",
|
||||||
"Stream Delta Chunk Size": "",
|
"Stream Delta Chunk Size": "",
|
||||||
|
|
@ -1502,6 +1522,7 @@
|
||||||
"Tags Generation": "",
|
"Tags Generation": "",
|
||||||
"Tags Generation Prompt": "",
|
"Tags Generation Prompt": "",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "Sentuh untuk mengganggu",
|
"Tap to interrupt": "Sentuh untuk mengganggu",
|
||||||
"Task List": "",
|
"Task List": "",
|
||||||
"Task Model": "",
|
"Task Model": "",
|
||||||
|
|
@ -1583,6 +1604,7 @@
|
||||||
"Toast notifications for new updates": "",
|
"Toast notifications for new updates": "",
|
||||||
"Today": "Hari Ini",
|
"Today": "Hari Ini",
|
||||||
"Today at {{LOCALIZED_TIME}}": "",
|
"Today at {{LOCALIZED_TIME}}": "",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "",
|
"Toggle whether current connection is active.": "",
|
||||||
"Token": "",
|
"Token": "",
|
||||||
"Too verbose": "",
|
"Too verbose": "",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "En oppgavemodell brukes når du utfører oppgaver som å generere titler for samtaler eller utfører søkeforespørsler på nettet",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "En oppgavemodell brukes når du utfører oppgaver som å generere titler for samtaler eller utfører søkeforespørsler på nettet",
|
||||||
"a user": "en bruker",
|
"a user": "en bruker",
|
||||||
"About": "Om",
|
"About": "Om",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "Tilgang",
|
"Access": "Tilgang",
|
||||||
"Access Control": "Tilgangskontroll",
|
"Access Control": "Tilgangskontroll",
|
||||||
"Accessible to all users": "Tilgjengelig for alle brukere",
|
"Accessible to all users": "Tilgjengelig for alle brukere",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "Legg til innhold",
|
"Add Content": "Legg til innhold",
|
||||||
"Add content here": "Legg til innhold her",
|
"Add content here": "Legg til innhold her",
|
||||||
"Add Custom Parameter": "",
|
"Add Custom Parameter": "",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "",
|
"Add Details": "",
|
||||||
"Add Files": "Legg til filer",
|
"Add Files": "Legg til filer",
|
||||||
"Add Group": "Legg til gruppe",
|
"Add Group": "Legg til gruppe",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "",
|
"Ask": "",
|
||||||
"Ask a question": "Still et spørsmål",
|
"Ask a question": "Still et spørsmål",
|
||||||
"Assistant": "Assistent",
|
"Assistant": "Assistent",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "",
|
"Attach Knowledge": "",
|
||||||
"Attach Notes": "",
|
"Attach Notes": "",
|
||||||
"Attach Webpage": "",
|
"Attach Webpage": "",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "",
|
"Close Banner": "",
|
||||||
"Close Configure Connection Modal": "",
|
"Close Configure Connection Modal": "",
|
||||||
"Close modal": "",
|
"Close modal": "",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "",
|
"Close settings modal": "",
|
||||||
"Close Sidebar": "",
|
"Close Sidebar": "",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "Kopier til utklippstaveln",
|
"Copied to clipboard": "Kopier til utklippstaveln",
|
||||||
"Copy": "Kopier",
|
"Copy": "Kopier",
|
||||||
"Copy Formatted Text": "",
|
"Copy Formatted Text": "",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "",
|
"Copy link": "",
|
||||||
"Copy Link": "Kopier lenke",
|
"Copy Link": "Kopier lenke",
|
||||||
"Copy to clipboard": "Kopier til utklippstavle",
|
"Copy to clipboard": "Kopier til utklippstavle",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "Rediger standard tillatelser",
|
"Edit Default Permissions": "Rediger standard tillatelser",
|
||||||
"Edit Folder": "",
|
"Edit Folder": "",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "Rediger minne",
|
"Edit Memory": "Rediger minne",
|
||||||
"Edit User": "Rediger bruker",
|
"Edit User": "Rediger bruker",
|
||||||
"Edit User Group": "Rediger brukergruppe",
|
"Edit User Group": "Rediger brukergruppe",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "",
|
"Firecrawl API Base URL": "",
|
||||||
"Firecrawl API Key": "",
|
"Firecrawl API Key": "",
|
||||||
"Floating Quick Actions": "",
|
"Floating Quick Actions": "",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "",
|
"Folder": "",
|
||||||
"Folder Background Image": "",
|
"Folder Background Image": "",
|
||||||
"Folder deleted successfully": "Mappe slettet",
|
"Folder deleted successfully": "Mappe slettet",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "",
|
"Generate": "",
|
||||||
"Generate an image": "Genrer et bilde",
|
"Generate an image": "Genrer et bilde",
|
||||||
"Generate Image": "Generer bilde",
|
"Generate Image": "Generer bilde",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "",
|
"Generated Image": "",
|
||||||
"Generating search query": "Genererer søkespørring",
|
"Generating search query": "Genererer søkespørring",
|
||||||
"Generating...": "",
|
"Generating...": "",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "Minne oppdatert",
|
"Memory updated successfully": "Minne oppdatert",
|
||||||
"Merge Responses": "Flette svar",
|
"Merge Responses": "Flette svar",
|
||||||
"Merged Response": "Sammenslått svar",
|
"Merged Response": "Sammenslått svar",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "Vurdering av meldinger må være aktivert for å ta i bruk denne funksjonen",
|
"Message rating should be enabled to use this feature": "Vurdering av meldinger må være aktivert for å ta i bruk denne funksjonen",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Meldinger du sender etter at du har opprettet lenken, blir ikke delt. Brukere med URL-en vil kunne se den delte chatten.",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Meldinger du sender etter at du har opprettet lenken, blir ikke delt. Brukere med URL-en vil kunne se den delte chatten.",
|
||||||
"Microsoft OneDrive": "",
|
"Microsoft OneDrive": "",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "",
|
"New Note": "",
|
||||||
"New Password": "Nytt passord",
|
"New Password": "Nytt passord",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "",
|
"New Tool": "",
|
||||||
"new-channel": "ny-kanal",
|
"new-channel": "ny-kanal",
|
||||||
"Next message": "",
|
"Next message": "",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Ollama-versjon",
|
"Ollama Version": "Ollama-versjon",
|
||||||
"On": "Aktivert",
|
"On": "Aktivert",
|
||||||
"OneDrive": "OneDrive",
|
"OneDrive": "OneDrive",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "Bare alfanumeriske tegn og bindestreker er tillatt",
|
"Only alphanumeric characters and hyphens are allowed": "Bare alfanumeriske tegn og bindestreker er tillatt",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "Bare alfanumeriske tegn og bindestreker er tillatt i kommandostrengen.",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "Bare alfanumeriske tegn og bindestreker er tillatt i kommandostrengen.",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Bare samlinger kan redigeres, eller lag en ny kunnskapsbase for å kunne redigere / legge til dokumenter.",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Bare samlinger kan redigeres, eller lag en ny kunnskapsbase for å kunne redigere / legge til dokumenter.",
|
||||||
"Only markdown files are allowed": "",
|
"Only markdown files are allowed": "",
|
||||||
"Only select users and groups with permission can access": "Bare utvalgte brukere og grupper med tillatelse kan få tilgang",
|
"Only select users and groups with permission can access": "Bare utvalgte brukere og grupper med tillatelse kan få tilgang",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "",
|
"Open modal to configure connection": "",
|
||||||
"Open Modal To Manage Floating Quick Actions": "",
|
"Open Modal To Manage Floating Quick Actions": "",
|
||||||
"Open Modal To Manage Image Compression": "",
|
"Open Modal To Manage Image Compression": "",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "",
|
"Open Sidebar": "",
|
||||||
"Open User Profile Menu": "",
|
"Open User Profile Menu": "",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "",
|
"Prefer not to say": "",
|
||||||
"Prefix ID": "Prefiks-ID",
|
"Prefix ID": "Prefiks-ID",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefiks-ID brukes for å unngå konflikter med andre tilkoblinger ved å legge til et prefiks til modell-ID-ene. La det stå tomt for å deaktivere",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefiks-ID brukes for å unngå konflikter med andre tilkoblinger ved å legge til et prefiks til modell-ID-ene. La det stå tomt for å deaktivere",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "",
|
"Preview": "",
|
||||||
"Previous 30 days": "Siste 30 dager",
|
"Previous 30 days": "Siste 30 dager",
|
||||||
"Previous 7 days": "Siste 7 dager",
|
"Previous 7 days": "Siste 7 dager",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "Avvist når det ikke burde ha blitt det",
|
"Refused when it shouldn't have": "Avvist når det ikke burde ha blitt det",
|
||||||
"Regenerate": "Generer på nytt",
|
"Regenerate": "Generer på nytt",
|
||||||
"Regenerate Menu": "",
|
"Regenerate Menu": "",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "",
|
"Register Again": "",
|
||||||
"Register Client": "",
|
"Register Client": "",
|
||||||
"Registered": "",
|
"Registered": "",
|
||||||
|
|
@ -1439,6 +1457,7 @@
|
||||||
"Show Formatting Toolbar": "",
|
"Show Formatting Toolbar": "",
|
||||||
"Show image preview": "",
|
"Show image preview": "",
|
||||||
"Show Model": "",
|
"Show Model": "",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "Vis din støtte!",
|
"Show your support!": "Vis din støtte!",
|
||||||
"Showcased creativity": "Fremhevet kreativitet",
|
"Showcased creativity": "Fremhevet kreativitet",
|
||||||
"Sign in": "Logg inn",
|
"Sign in": "Logg inn",
|
||||||
|
|
@ -1474,6 +1493,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "Stopp",
|
"Stop": "Stopp",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "Stoppsekvens",
|
"Stop Sequence": "Stoppsekvens",
|
||||||
"Stream Chat Response": "Strømme chat-svar",
|
"Stream Chat Response": "Strømme chat-svar",
|
||||||
"Stream Delta Chunk Size": "",
|
"Stream Delta Chunk Size": "",
|
||||||
|
|
@ -1503,6 +1523,7 @@
|
||||||
"Tags Generation": "Genering av etiketter",
|
"Tags Generation": "Genering av etiketter",
|
||||||
"Tags Generation Prompt": "Ledetekst for genering av etikett",
|
"Tags Generation Prompt": "Ledetekst for genering av etikett",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "Trykk for å avbryte",
|
"Tap to interrupt": "Trykk for å avbryte",
|
||||||
"Task List": "",
|
"Task List": "",
|
||||||
"Task Model": "",
|
"Task Model": "",
|
||||||
|
|
@ -1584,6 +1605,7 @@
|
||||||
"Toast notifications for new updates": "Hurtigmelding-notifikasjon for nye oppdateringer",
|
"Toast notifications for new updates": "Hurtigmelding-notifikasjon for nye oppdateringer",
|
||||||
"Today": "I dag",
|
"Today": "I dag",
|
||||||
"Today at {{LOCALIZED_TIME}}": "",
|
"Today at {{LOCALIZED_TIME}}": "",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "",
|
"Toggle whether current connection is active.": "",
|
||||||
"Token": "Token",
|
"Token": "Token",
|
||||||
"Too verbose": "For omfattende",
|
"Too verbose": "For omfattende",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Een taakmodel wordt gebruikt bij het uitvoeren van taken zoals het genereren van titels voor chats en zoekopdrachten op het internet",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Een taakmodel wordt gebruikt bij het uitvoeren van taken zoals het genereren van titels voor chats en zoekopdrachten op het internet",
|
||||||
"a user": "een gebruiker",
|
"a user": "een gebruiker",
|
||||||
"About": "Over",
|
"About": "Over",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "Toegang",
|
"Access": "Toegang",
|
||||||
"Access Control": "Toegangsbeheer",
|
"Access Control": "Toegangsbeheer",
|
||||||
"Accessible to all users": "Toegankelijk voor alle gebruikers",
|
"Accessible to all users": "Toegankelijk voor alle gebruikers",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "Voeg content toe",
|
"Add Content": "Voeg content toe",
|
||||||
"Add content here": "Voeg hier content toe",
|
"Add content here": "Voeg hier content toe",
|
||||||
"Add Custom Parameter": "",
|
"Add Custom Parameter": "",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "",
|
"Add Details": "",
|
||||||
"Add Files": "Voeg bestanden toe",
|
"Add Files": "Voeg bestanden toe",
|
||||||
"Add Group": "Voeg groep toe",
|
"Add Group": "Voeg groep toe",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "Vraag",
|
"Ask": "Vraag",
|
||||||
"Ask a question": "Stel een vraag",
|
"Ask a question": "Stel een vraag",
|
||||||
"Assistant": "Assistent",
|
"Assistant": "Assistent",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "",
|
"Attach Knowledge": "",
|
||||||
"Attach Notes": "",
|
"Attach Notes": "",
|
||||||
"Attach Webpage": "",
|
"Attach Webpage": "",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "",
|
"Close Banner": "",
|
||||||
"Close Configure Connection Modal": "",
|
"Close Configure Connection Modal": "",
|
||||||
"Close modal": "",
|
"Close modal": "",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "",
|
"Close settings modal": "",
|
||||||
"Close Sidebar": "",
|
"Close Sidebar": "",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "Gekopieerd naar klembord",
|
"Copied to clipboard": "Gekopieerd naar klembord",
|
||||||
"Copy": "Kopieer",
|
"Copy": "Kopieer",
|
||||||
"Copy Formatted Text": "Kopieer opgemaakte tekst",
|
"Copy Formatted Text": "Kopieer opgemaakte tekst",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "Kopiëer link",
|
"Copy link": "Kopiëer link",
|
||||||
"Copy Link": "Kopieer link",
|
"Copy Link": "Kopieer link",
|
||||||
"Copy to clipboard": "Kopieer naar klembord",
|
"Copy to clipboard": "Kopieer naar klembord",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "Bewerk standaardrechten",
|
"Edit Default Permissions": "Bewerk standaardrechten",
|
||||||
"Edit Folder": "",
|
"Edit Folder": "",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "Bewerk geheugen",
|
"Edit Memory": "Bewerk geheugen",
|
||||||
"Edit User": "Wijzig gebruiker",
|
"Edit User": "Wijzig gebruiker",
|
||||||
"Edit User Group": "Bewerk gebruikergroep",
|
"Edit User Group": "Bewerk gebruikergroep",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "",
|
"Firecrawl API Base URL": "",
|
||||||
"Firecrawl API Key": "",
|
"Firecrawl API Key": "",
|
||||||
"Floating Quick Actions": "",
|
"Floating Quick Actions": "",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "",
|
"Folder": "",
|
||||||
"Folder Background Image": "",
|
"Folder Background Image": "",
|
||||||
"Folder deleted successfully": "Map succesvol verwijderd",
|
"Folder deleted successfully": "Map succesvol verwijderd",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "",
|
"Generate": "",
|
||||||
"Generate an image": "Genereer een afbeelding",
|
"Generate an image": "Genereer een afbeelding",
|
||||||
"Generate Image": "Genereer afbeelding",
|
"Generate Image": "Genereer afbeelding",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "",
|
"Generated Image": "",
|
||||||
"Generating search query": "Zoekopdracht genereren",
|
"Generating search query": "Zoekopdracht genereren",
|
||||||
"Generating...": "",
|
"Generating...": "",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "Geheugen succesvol bijgewerkt",
|
"Memory updated successfully": "Geheugen succesvol bijgewerkt",
|
||||||
"Merge Responses": "Voeg antwoorden samen",
|
"Merge Responses": "Voeg antwoorden samen",
|
||||||
"Merged Response": "Samengevoegd antwoord",
|
"Merged Response": "Samengevoegd antwoord",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "Berichtbeoordeling moet ingeschakeld zijn om deze functie te gebruiken",
|
"Message rating should be enabled to use this feature": "Berichtbeoordeling moet ingeschakeld zijn om deze functie te gebruiken",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Berichten die je verzendt nadat je jouw link hebt gemaakt, worden niet gedeeld. Gebruikers met de URL kunnen de gedeelde chat bekijken.",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Berichten die je verzendt nadat je jouw link hebt gemaakt, worden niet gedeeld. Gebruikers met de URL kunnen de gedeelde chat bekijken.",
|
||||||
"Microsoft OneDrive": "",
|
"Microsoft OneDrive": "",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "",
|
"New Note": "",
|
||||||
"New Password": "Nieuw Wachtwoord",
|
"New Password": "Nieuw Wachtwoord",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "",
|
"New Tool": "",
|
||||||
"new-channel": "nieuw-kanaal",
|
"new-channel": "nieuw-kanaal",
|
||||||
"Next message": "",
|
"Next message": "",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Ollama Versie",
|
"Ollama Version": "Ollama Versie",
|
||||||
"On": "Aan",
|
"On": "Aan",
|
||||||
"OneDrive": "OneDrive",
|
"OneDrive": "OneDrive",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "Alleen alfanumerieke tekens en koppeltekens zijn toegestaan",
|
"Only alphanumeric characters and hyphens are allowed": "Alleen alfanumerieke tekens en koppeltekens zijn toegestaan",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "Alleen alfanumerieke karakters en streepjes zijn toegestaan in de commando string.",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "Alleen alfanumerieke karakters en streepjes zijn toegestaan in de commando string.",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Alleen verzamelinge kunnen gewijzigd worden, maak een nieuwe kennisbank aan om bestanden aan te passen/toe te voegen",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Alleen verzamelinge kunnen gewijzigd worden, maak een nieuwe kennisbank aan om bestanden aan te passen/toe te voegen",
|
||||||
"Only markdown files are allowed": "",
|
"Only markdown files are allowed": "",
|
||||||
"Only select users and groups with permission can access": "Alleen geselecteerde gebruikers en groepen met toestemming hebben toegang",
|
"Only select users and groups with permission can access": "Alleen geselecteerde gebruikers en groepen met toestemming hebben toegang",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "",
|
"Open modal to configure connection": "",
|
||||||
"Open Modal To Manage Floating Quick Actions": "",
|
"Open Modal To Manage Floating Quick Actions": "",
|
||||||
"Open Modal To Manage Image Compression": "",
|
"Open Modal To Manage Image Compression": "",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "",
|
"Open Sidebar": "",
|
||||||
"Open User Profile Menu": "",
|
"Open User Profile Menu": "",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "",
|
"Prefer not to say": "",
|
||||||
"Prefix ID": "Voorvoegsel-ID",
|
"Prefix ID": "Voorvoegsel-ID",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Voorvoegsel-ID wordt gebruikt om conflicten met andere verbindingen te vermijden door een voorvoegsel aan het model-ID toe te voegen - laat leeg om uit te schakelen",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Voorvoegsel-ID wordt gebruikt om conflicten met andere verbindingen te vermijden door een voorvoegsel aan het model-ID toe te voegen - laat leeg om uit te schakelen",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "",
|
"Preview": "",
|
||||||
"Previous 30 days": "Afgelopen 30 dagen",
|
"Previous 30 days": "Afgelopen 30 dagen",
|
||||||
"Previous 7 days": "Afgelopen 7 dagen",
|
"Previous 7 days": "Afgelopen 7 dagen",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "Geweigerd terwijl het niet had moeten",
|
"Refused when it shouldn't have": "Geweigerd terwijl het niet had moeten",
|
||||||
"Regenerate": "Regenereren",
|
"Regenerate": "Regenereren",
|
||||||
"Regenerate Menu": "",
|
"Regenerate Menu": "",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "",
|
"Register Again": "",
|
||||||
"Register Client": "",
|
"Register Client": "",
|
||||||
"Registered": "",
|
"Registered": "",
|
||||||
|
|
@ -1439,6 +1457,7 @@
|
||||||
"Show Formatting Toolbar": "",
|
"Show Formatting Toolbar": "",
|
||||||
"Show image preview": "",
|
"Show image preview": "",
|
||||||
"Show Model": "Toon model",
|
"Show Model": "Toon model",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "Toon je steun",
|
"Show your support!": "Toon je steun",
|
||||||
"Showcased creativity": "Toonde creativiteit",
|
"Showcased creativity": "Toonde creativiteit",
|
||||||
"Sign in": "Inloggen",
|
"Sign in": "Inloggen",
|
||||||
|
|
@ -1474,6 +1493,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "Stop",
|
"Stop": "Stop",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "Stopsequentie",
|
"Stop Sequence": "Stopsequentie",
|
||||||
"Stream Chat Response": "Stream chat-antwoord",
|
"Stream Chat Response": "Stream chat-antwoord",
|
||||||
"Stream Delta Chunk Size": "",
|
"Stream Delta Chunk Size": "",
|
||||||
|
|
@ -1503,6 +1523,7 @@
|
||||||
"Tags Generation": "Taggeneratie",
|
"Tags Generation": "Taggeneratie",
|
||||||
"Tags Generation Prompt": "Prompt voor taggeneratie",
|
"Tags Generation Prompt": "Prompt voor taggeneratie",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Tail free sampling wordt gebruikt om de impact van minder waarschijnlijke tokens uit de uitvoer te verminderen. Een hogere waarde (bijvoorbeeld 2,0) zal de impact meer verminderen, terwijl een waarde van 1,0 deze instelling uitschakelt.",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Tail free sampling wordt gebruikt om de impact van minder waarschijnlijke tokens uit de uitvoer te verminderen. Een hogere waarde (bijvoorbeeld 2,0) zal de impact meer verminderen, terwijl een waarde van 1,0 deze instelling uitschakelt.",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "Tik om te onderbreken",
|
"Tap to interrupt": "Tik om te onderbreken",
|
||||||
"Task List": "",
|
"Task List": "",
|
||||||
"Task Model": "",
|
"Task Model": "",
|
||||||
|
|
@ -1584,6 +1605,7 @@
|
||||||
"Toast notifications for new updates": "Toon notificaties voor nieuwe updates",
|
"Toast notifications for new updates": "Toon notificaties voor nieuwe updates",
|
||||||
"Today": "Vandaag",
|
"Today": "Vandaag",
|
||||||
"Today at {{LOCALIZED_TIME}}": "",
|
"Today at {{LOCALIZED_TIME}}": "",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "",
|
"Toggle whether current connection is active.": "",
|
||||||
"Token": "Token",
|
"Token": "Token",
|
||||||
"Too verbose": "Te langdradig",
|
"Too verbose": "Te langdradig",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "ਚੈਟਾਂ ਅਤੇ ਵੈੱਬ ਖੋਜ ਪੁੱਛਗਿੱਛਾਂ ਵਾਸਤੇ ਸਿਰਲੇਖ ਤਿਆਰ ਕਰਨ ਵਰਗੇ ਕਾਰਜ ਾਂ ਨੂੰ ਕਰਦੇ ਸਮੇਂ ਇੱਕ ਕਾਰਜ ਮਾਡਲ ਦੀ ਵਰਤੋਂ ਕੀਤੀ ਜਾਂਦੀ ਹੈ",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "ਚੈਟਾਂ ਅਤੇ ਵੈੱਬ ਖੋਜ ਪੁੱਛਗਿੱਛਾਂ ਵਾਸਤੇ ਸਿਰਲੇਖ ਤਿਆਰ ਕਰਨ ਵਰਗੇ ਕਾਰਜ ਾਂ ਨੂੰ ਕਰਦੇ ਸਮੇਂ ਇੱਕ ਕਾਰਜ ਮਾਡਲ ਦੀ ਵਰਤੋਂ ਕੀਤੀ ਜਾਂਦੀ ਹੈ",
|
||||||
"a user": "ਇੱਕ ਉਪਭੋਗਤਾ",
|
"a user": "ਇੱਕ ਉਪਭੋਗਤਾ",
|
||||||
"About": "ਬਾਰੇ",
|
"About": "ਬਾਰੇ",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "",
|
"Access": "",
|
||||||
"Access Control": "",
|
"Access Control": "",
|
||||||
"Accessible to all users": "",
|
"Accessible to all users": "",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "",
|
"Add Content": "",
|
||||||
"Add content here": "",
|
"Add content here": "",
|
||||||
"Add Custom Parameter": "",
|
"Add Custom Parameter": "",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "",
|
"Add Details": "",
|
||||||
"Add Files": "ਫਾਈਲਾਂ ਸ਼ਾਮਲ ਕਰੋ",
|
"Add Files": "ਫਾਈਲਾਂ ਸ਼ਾਮਲ ਕਰੋ",
|
||||||
"Add Group": "",
|
"Add Group": "",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "",
|
"Ask": "",
|
||||||
"Ask a question": "",
|
"Ask a question": "",
|
||||||
"Assistant": "",
|
"Assistant": "",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "",
|
"Attach Knowledge": "",
|
||||||
"Attach Notes": "",
|
"Attach Notes": "",
|
||||||
"Attach Webpage": "",
|
"Attach Webpage": "",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "",
|
"Close Banner": "",
|
||||||
"Close Configure Connection Modal": "",
|
"Close Configure Connection Modal": "",
|
||||||
"Close modal": "",
|
"Close modal": "",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "",
|
"Close settings modal": "",
|
||||||
"Close Sidebar": "",
|
"Close Sidebar": "",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "",
|
"Copied to clipboard": "",
|
||||||
"Copy": "ਕਾਪੀ ਕਰੋ",
|
"Copy": "ਕਾਪੀ ਕਰੋ",
|
||||||
"Copy Formatted Text": "",
|
"Copy Formatted Text": "",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "",
|
"Copy link": "",
|
||||||
"Copy Link": "ਲਿੰਕ ਕਾਪੀ ਕਰੋ",
|
"Copy Link": "ਲਿੰਕ ਕਾਪੀ ਕਰੋ",
|
||||||
"Copy to clipboard": "",
|
"Copy to clipboard": "",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "",
|
"Edit Default Permissions": "",
|
||||||
"Edit Folder": "",
|
"Edit Folder": "",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "",
|
"Edit Memory": "",
|
||||||
"Edit User": "ਉਪਭੋਗਤਾ ਸੰਪਾਦਨ ਕਰੋ",
|
"Edit User": "ਉਪਭੋਗਤਾ ਸੰਪਾਦਨ ਕਰੋ",
|
||||||
"Edit User Group": "",
|
"Edit User Group": "",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "",
|
"Firecrawl API Base URL": "",
|
||||||
"Firecrawl API Key": "",
|
"Firecrawl API Key": "",
|
||||||
"Floating Quick Actions": "",
|
"Floating Quick Actions": "",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "",
|
"Folder": "",
|
||||||
"Folder Background Image": "",
|
"Folder Background Image": "",
|
||||||
"Folder deleted successfully": "",
|
"Folder deleted successfully": "",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "",
|
"Generate": "",
|
||||||
"Generate an image": "",
|
"Generate an image": "",
|
||||||
"Generate Image": "",
|
"Generate Image": "",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "",
|
"Generated Image": "",
|
||||||
"Generating search query": "ਖੋਜ ਪੁੱਛਗਿੱਛ ਤਿਆਰ ਕਰਨਾ",
|
"Generating search query": "ਖੋਜ ਪੁੱਛਗਿੱਛ ਤਿਆਰ ਕਰਨਾ",
|
||||||
"Generating...": "",
|
"Generating...": "",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "",
|
"Memory updated successfully": "",
|
||||||
"Merge Responses": "",
|
"Merge Responses": "",
|
||||||
"Merged Response": "ਮਿਲਾਇਆ ਗਿਆ ਜਵਾਬ",
|
"Merged Response": "ਮਿਲਾਇਆ ਗਿਆ ਜਵਾਬ",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "",
|
"Message rating should be enabled to use this feature": "",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "ਤੁਹਾਡਾ ਲਿੰਕ ਬਣਾਉਣ ਤੋਂ ਬਾਅਦ ਤੁਹਾਡੇ ਵੱਲੋਂ ਭੇਜੇ ਗਏ ਸੁਨੇਹੇ ਸਾਂਝੇ ਨਹੀਂ ਕੀਤੇ ਜਾਣਗੇ। URL ਵਾਲੇ ਉਪਭੋਗਤਾ ਸਾਂਝੀ ਚੈਟ ਨੂੰ ਵੇਖ ਸਕਣਗੇ।",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "ਤੁਹਾਡਾ ਲਿੰਕ ਬਣਾਉਣ ਤੋਂ ਬਾਅਦ ਤੁਹਾਡੇ ਵੱਲੋਂ ਭੇਜੇ ਗਏ ਸੁਨੇਹੇ ਸਾਂਝੇ ਨਹੀਂ ਕੀਤੇ ਜਾਣਗੇ। URL ਵਾਲੇ ਉਪਭੋਗਤਾ ਸਾਂਝੀ ਚੈਟ ਨੂੰ ਵੇਖ ਸਕਣਗੇ।",
|
||||||
"Microsoft OneDrive": "",
|
"Microsoft OneDrive": "",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "",
|
"New Note": "",
|
||||||
"New Password": "ਨਵਾਂ ਪਾਸਵਰਡ",
|
"New Password": "ਨਵਾਂ ਪਾਸਵਰਡ",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "",
|
"New Tool": "",
|
||||||
"new-channel": "",
|
"new-channel": "",
|
||||||
"Next message": "",
|
"Next message": "",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "ਓਲਾਮਾ ਵਰਜਨ",
|
"Ollama Version": "ਓਲਾਮਾ ਵਰਜਨ",
|
||||||
"On": "ਚਾਲੂ",
|
"On": "ਚਾਲੂ",
|
||||||
"OneDrive": "",
|
"OneDrive": "",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "",
|
"Only alphanumeric characters and hyphens are allowed": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "ਕਮਾਂਡ ਸਤਰ ਵਿੱਚ ਸਿਰਫ਼ ਅਲਫ਼ਾਨਯੂਮੈਰਿਕ ਅੱਖਰ ਅਤੇ ਹਾਈਫਨ ਦੀ ਆਗਿਆ ਹੈ।",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "ਕਮਾਂਡ ਸਤਰ ਵਿੱਚ ਸਿਰਫ਼ ਅਲਫ਼ਾਨਯੂਮੈਰਿਕ ਅੱਖਰ ਅਤੇ ਹਾਈਫਨ ਦੀ ਆਗਿਆ ਹੈ।",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
|
||||||
"Only markdown files are allowed": "",
|
"Only markdown files are allowed": "",
|
||||||
"Only select users and groups with permission can access": "",
|
"Only select users and groups with permission can access": "",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "",
|
"Open modal to configure connection": "",
|
||||||
"Open Modal To Manage Floating Quick Actions": "",
|
"Open Modal To Manage Floating Quick Actions": "",
|
||||||
"Open Modal To Manage Image Compression": "",
|
"Open Modal To Manage Image Compression": "",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "",
|
"Open Sidebar": "",
|
||||||
"Open User Profile Menu": "",
|
"Open User Profile Menu": "",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "",
|
"Prefer not to say": "",
|
||||||
"Prefix ID": "",
|
"Prefix ID": "",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "",
|
"Preview": "",
|
||||||
"Previous 30 days": "ਪਿਛਲੇ 30 ਦਿਨ",
|
"Previous 30 days": "ਪਿਛਲੇ 30 ਦਿਨ",
|
||||||
"Previous 7 days": "ਪਿਛਲੇ 7 ਦਿਨ",
|
"Previous 7 days": "ਪਿਛਲੇ 7 ਦਿਨ",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "ਜਦੋਂ ਇਹ ਨਹੀਂ ਹੋਣਾ ਚਾਹੀਦਾ ਸੀ ਤਾਂ ਇਨਕਾਰ ਕੀਤਾ",
|
"Refused when it shouldn't have": "ਜਦੋਂ ਇਹ ਨਹੀਂ ਹੋਣਾ ਚਾਹੀਦਾ ਸੀ ਤਾਂ ਇਨਕਾਰ ਕੀਤਾ",
|
||||||
"Regenerate": "ਮੁੜ ਬਣਾਓ",
|
"Regenerate": "ਮੁੜ ਬਣਾਓ",
|
||||||
"Regenerate Menu": "",
|
"Regenerate Menu": "",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "",
|
"Register Again": "",
|
||||||
"Register Client": "",
|
"Register Client": "",
|
||||||
"Registered": "",
|
"Registered": "",
|
||||||
|
|
@ -1439,6 +1457,7 @@
|
||||||
"Show Formatting Toolbar": "",
|
"Show Formatting Toolbar": "",
|
||||||
"Show image preview": "",
|
"Show image preview": "",
|
||||||
"Show Model": "",
|
"Show Model": "",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "",
|
"Show your support!": "",
|
||||||
"Showcased creativity": "ਸਿਰਜਣਾਤਮਕਤਾ ਦਿਖਾਈ",
|
"Showcased creativity": "ਸਿਰਜਣਾਤਮਕਤਾ ਦਿਖਾਈ",
|
||||||
"Sign in": "ਸਾਈਨ ਇਨ ਕਰੋ",
|
"Sign in": "ਸਾਈਨ ਇਨ ਕਰੋ",
|
||||||
|
|
@ -1474,6 +1493,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "",
|
"Stop": "",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "ਰੋਕੋ ਕ੍ਰਮ",
|
"Stop Sequence": "ਰੋਕੋ ਕ੍ਰਮ",
|
||||||
"Stream Chat Response": "",
|
"Stream Chat Response": "",
|
||||||
"Stream Delta Chunk Size": "",
|
"Stream Delta Chunk Size": "",
|
||||||
|
|
@ -1503,6 +1523,7 @@
|
||||||
"Tags Generation": "",
|
"Tags Generation": "",
|
||||||
"Tags Generation Prompt": "",
|
"Tags Generation Prompt": "",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "",
|
"Tap to interrupt": "",
|
||||||
"Task List": "",
|
"Task List": "",
|
||||||
"Task Model": "",
|
"Task Model": "",
|
||||||
|
|
@ -1584,6 +1605,7 @@
|
||||||
"Toast notifications for new updates": "",
|
"Toast notifications for new updates": "",
|
||||||
"Today": "ਅੱਜ",
|
"Today": "ਅੱਜ",
|
||||||
"Today at {{LOCALIZED_TIME}}": "",
|
"Today at {{LOCALIZED_TIME}}": "",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "",
|
"Toggle whether current connection is active.": "",
|
||||||
"Token": "",
|
"Token": "",
|
||||||
"Too verbose": "",
|
"Too verbose": "",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Model zadań jest wykorzystywany podczas realizacji zadań, takich jak generowanie tytułów rozmów i zapytań wyszukiwania internetowego.",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Model zadań jest wykorzystywany podczas realizacji zadań, takich jak generowanie tytułów rozmów i zapytań wyszukiwania internetowego.",
|
||||||
"a user": "użytkownik",
|
"a user": "użytkownik",
|
||||||
"About": "O nas",
|
"About": "O nas",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "Dostęp",
|
"Access": "Dostęp",
|
||||||
"Access Control": "Kontrola dostępu",
|
"Access Control": "Kontrola dostępu",
|
||||||
"Accessible to all users": "Dostępny dla wszystkich użytkowników",
|
"Accessible to all users": "Dostępny dla wszystkich użytkowników",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "Dodaj treść",
|
"Add Content": "Dodaj treść",
|
||||||
"Add content here": "Dodaj tutaj treść",
|
"Add content here": "Dodaj tutaj treść",
|
||||||
"Add Custom Parameter": "",
|
"Add Custom Parameter": "",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "",
|
"Add Details": "",
|
||||||
"Add Files": "Dodaj pliki",
|
"Add Files": "Dodaj pliki",
|
||||||
"Add Group": "Dodaj grupę",
|
"Add Group": "Dodaj grupę",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "Zapytaj",
|
"Ask": "Zapytaj",
|
||||||
"Ask a question": "Zadaj pytanie",
|
"Ask a question": "Zadaj pytanie",
|
||||||
"Assistant": "Asystent",
|
"Assistant": "Asystent",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "",
|
"Attach Knowledge": "",
|
||||||
"Attach Notes": "",
|
"Attach Notes": "",
|
||||||
"Attach Webpage": "",
|
"Attach Webpage": "",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "",
|
"Close Banner": "",
|
||||||
"Close Configure Connection Modal": "",
|
"Close Configure Connection Modal": "",
|
||||||
"Close modal": "",
|
"Close modal": "",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "",
|
"Close settings modal": "",
|
||||||
"Close Sidebar": "",
|
"Close Sidebar": "",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "Skopiowane do schowka",
|
"Copied to clipboard": "Skopiowane do schowka",
|
||||||
"Copy": "Skopiuj",
|
"Copy": "Skopiuj",
|
||||||
"Copy Formatted Text": "Skopiuj sformatowany tekst",
|
"Copy Formatted Text": "Skopiuj sformatowany tekst",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "Skopiuj link",
|
"Copy link": "Skopiuj link",
|
||||||
"Copy Link": "Skopiuj link",
|
"Copy Link": "Skopiuj link",
|
||||||
"Copy to clipboard": "Wklej do schowka",
|
"Copy to clipboard": "Wklej do schowka",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "Edytuj domyślne uprawnienia",
|
"Edit Default Permissions": "Edytuj domyślne uprawnienia",
|
||||||
"Edit Folder": "Edytuj folder",
|
"Edit Folder": "Edytuj folder",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "Edytuj pamięć",
|
"Edit Memory": "Edytuj pamięć",
|
||||||
"Edit User": "Edytuj profil użytkownika",
|
"Edit User": "Edytuj profil użytkownika",
|
||||||
"Edit User Group": "Edytuj grupa użytkowników",
|
"Edit User Group": "Edytuj grupa użytkowników",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "",
|
"Firecrawl API Base URL": "",
|
||||||
"Firecrawl API Key": "",
|
"Firecrawl API Key": "",
|
||||||
"Floating Quick Actions": "",
|
"Floating Quick Actions": "",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "",
|
"Folder": "",
|
||||||
"Folder Background Image": "",
|
"Folder Background Image": "",
|
||||||
"Folder deleted successfully": "Folder został usunięty pomyślnie",
|
"Folder deleted successfully": "Folder został usunięty pomyślnie",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "Wygeneruj",
|
"Generate": "Wygeneruj",
|
||||||
"Generate an image": "Wygeneruj obraz",
|
"Generate an image": "Wygeneruj obraz",
|
||||||
"Generate Image": "Wygeneruj obraz",
|
"Generate Image": "Wygeneruj obraz",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "",
|
"Generated Image": "",
|
||||||
"Generating search query": "Tworzenie zapytania wyszukiwania",
|
"Generating search query": "Tworzenie zapytania wyszukiwania",
|
||||||
"Generating...": "Generowanie...",
|
"Generating...": "Generowanie...",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "Pamięć zaktualizowana pomyślnie",
|
"Memory updated successfully": "Pamięć zaktualizowana pomyślnie",
|
||||||
"Merge Responses": "Scalaj odpowiedzi ",
|
"Merge Responses": "Scalaj odpowiedzi ",
|
||||||
"Merged Response": "Połączona odpowiedź",
|
"Merged Response": "Połączona odpowiedź",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "Ocena wiadomości powinna być włączona, aby korzystać z tej funkcji.",
|
"Message rating should be enabled to use this feature": "Ocena wiadomości powinna być włączona, aby korzystać z tej funkcji.",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Wiadomości wysyłane po utworzeniu linku nie będą udostępniane. Użytkownicy z adresem URL będą mogli wyświetlić udostępnioną rozmowę.",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Wiadomości wysyłane po utworzeniu linku nie będą udostępniane. Użytkownicy z adresem URL będą mogli wyświetlić udostępnioną rozmowę.",
|
||||||
"Microsoft OneDrive": "",
|
"Microsoft OneDrive": "",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "Nowa notatka",
|
"New Note": "Nowa notatka",
|
||||||
"New Password": "Nowe hasło",
|
"New Password": "Nowe hasło",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "Nowe narzędzie",
|
"New Tool": "Nowe narzędzie",
|
||||||
"new-channel": "nowy-kanał",
|
"new-channel": "nowy-kanał",
|
||||||
"Next message": "Następna wiadomość",
|
"Next message": "Następna wiadomość",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Wersja Ollama",
|
"Ollama Version": "Wersja Ollama",
|
||||||
"On": "Włączone",
|
"On": "Włączone",
|
||||||
"OneDrive": "",
|
"OneDrive": "",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "Dozwolone są tylko znaki alfanumeryczne i myślniki",
|
"Only alphanumeric characters and hyphens are allowed": "Dozwolone są tylko znaki alfanumeryczne i myślniki",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "W komendzie dozwolone są wyłącznie znaki alfanumeryczne i myślniki.",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "W komendzie dozwolone są wyłącznie znaki alfanumeryczne i myślniki.",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Tylko kolekcje można edytować, utwórz nową bazę wiedzy, aby edytować/dodawać dokumenty.",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Tylko kolekcje można edytować, utwórz nową bazę wiedzy, aby edytować/dodawać dokumenty.",
|
||||||
"Only markdown files are allowed": "",
|
"Only markdown files are allowed": "",
|
||||||
"Only select users and groups with permission can access": "Tylko wybrani użytkownicy i grupy z uprawnieniami mogą uzyskać dostęp.",
|
"Only select users and groups with permission can access": "Tylko wybrani użytkownicy i grupy z uprawnieniami mogą uzyskać dostęp.",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "",
|
"Open modal to configure connection": "",
|
||||||
"Open Modal To Manage Floating Quick Actions": "",
|
"Open Modal To Manage Floating Quick Actions": "",
|
||||||
"Open Modal To Manage Image Compression": "",
|
"Open Modal To Manage Image Compression": "",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "",
|
"Open Sidebar": "",
|
||||||
"Open User Profile Menu": "",
|
"Open User Profile Menu": "",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI może używać narzędzi dostarczanych przez serwery OpenAPI.",
|
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI może używać narzędzi dostarczanych przez serwery OpenAPI.",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "",
|
"Prefer not to say": "",
|
||||||
"Prefix ID": "Identyfikator prefiksu",
|
"Prefix ID": "Identyfikator prefiksu",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "ID prefiksu jest używane do unikania konfliktów z innymi połączeniami poprzez dodanie prefiksu do ID modelu - pozostaw puste, aby wyłączyć",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "ID prefiksu jest używane do unikania konfliktów z innymi połączeniami poprzez dodanie prefiksu do ID modelu - pozostaw puste, aby wyłączyć",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "Podgląd",
|
"Preview": "Podgląd",
|
||||||
"Previous 30 days": "Ostatnie 30 dni",
|
"Previous 30 days": "Ostatnie 30 dni",
|
||||||
"Previous 7 days": "Ostatnie 7 dni",
|
"Previous 7 days": "Ostatnie 7 dni",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "Odmówił, gdy nie powinien",
|
"Refused when it shouldn't have": "Odmówił, gdy nie powinien",
|
||||||
"Regenerate": "Wygeneruj ponownie",
|
"Regenerate": "Wygeneruj ponownie",
|
||||||
"Regenerate Menu": "",
|
"Regenerate Menu": "",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "",
|
"Register Again": "",
|
||||||
"Register Client": "",
|
"Register Client": "",
|
||||||
"Registered": "",
|
"Registered": "",
|
||||||
|
|
@ -1441,6 +1459,7 @@
|
||||||
"Show Formatting Toolbar": "",
|
"Show Formatting Toolbar": "",
|
||||||
"Show image preview": "",
|
"Show image preview": "",
|
||||||
"Show Model": "",
|
"Show Model": "",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "Wyraź swoje poparcie!",
|
"Show your support!": "Wyraź swoje poparcie!",
|
||||||
"Showcased creativity": "Prezentacja kreatywności",
|
"Showcased creativity": "Prezentacja kreatywności",
|
||||||
"Sign in": "Zaloguj się",
|
"Sign in": "Zaloguj się",
|
||||||
|
|
@ -1476,6 +1495,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "Zatrzymaj",
|
"Stop": "Zatrzymaj",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "Zatrzymaj sekwencję",
|
"Stop Sequence": "Zatrzymaj sekwencję",
|
||||||
"Stream Chat Response": "Strumieniowanie odpowiedzi z czatu",
|
"Stream Chat Response": "Strumieniowanie odpowiedzi z czatu",
|
||||||
"Stream Delta Chunk Size": "",
|
"Stream Delta Chunk Size": "",
|
||||||
|
|
@ -1505,6 +1525,7 @@
|
||||||
"Tags Generation": "Generowanie tagów",
|
"Tags Generation": "Generowanie tagów",
|
||||||
"Tags Generation Prompt": "Prompt do generowania tagów",
|
"Tags Generation Prompt": "Prompt do generowania tagów",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "Kliknij, aby przerwać",
|
"Tap to interrupt": "Kliknij, aby przerwać",
|
||||||
"Task List": "Lista zadań",
|
"Task List": "Lista zadań",
|
||||||
"Task Model": "",
|
"Task Model": "",
|
||||||
|
|
@ -1586,6 +1607,7 @@
|
||||||
"Toast notifications for new updates": "Powiadomienia o nowych aktualizacjach",
|
"Toast notifications for new updates": "Powiadomienia o nowych aktualizacjach",
|
||||||
"Today": "Dzisiaj",
|
"Today": "Dzisiaj",
|
||||||
"Today at {{LOCALIZED_TIME}}": "",
|
"Today at {{LOCALIZED_TIME}}": "",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "",
|
"Toggle whether current connection is active.": "",
|
||||||
"Token": "Token",
|
"Token": "Token",
|
||||||
"Too verbose": "Zbyt rozwlekłe",
|
"Too verbose": "Zbyt rozwlekłe",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Um modelo de tarefa é usado ao realizar tarefas como gerar títulos para chats e consultas de pesquisa na web",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Um modelo de tarefa é usado ao realizar tarefas como gerar títulos para chats e consultas de pesquisa na web",
|
||||||
"a user": "um usuário",
|
"a user": "um usuário",
|
||||||
"About": "Sobre",
|
"About": "Sobre",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "Acesso",
|
"Access": "Acesso",
|
||||||
"Access Control": "Controle de Acesso",
|
"Access Control": "Controle de Acesso",
|
||||||
"Accessible to all users": "Acessível para todos os usuários",
|
"Accessible to all users": "Acessível para todos os usuários",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "Adicionar Conteúdo",
|
"Add Content": "Adicionar Conteúdo",
|
||||||
"Add content here": "Adicionar conteúdo aqui",
|
"Add content here": "Adicionar conteúdo aqui",
|
||||||
"Add Custom Parameter": "Adicionar parâmetro personalizado",
|
"Add Custom Parameter": "Adicionar parâmetro personalizado",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "Adicionar detalhes",
|
"Add Details": "Adicionar detalhes",
|
||||||
"Add Files": "Adicionar Arquivos",
|
"Add Files": "Adicionar Arquivos",
|
||||||
"Add Group": "Adicionar Grupo",
|
"Add Group": "Adicionar Grupo",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "Perguntar",
|
"Ask": "Perguntar",
|
||||||
"Ask a question": "Faça uma pergunta",
|
"Ask a question": "Faça uma pergunta",
|
||||||
"Assistant": "Assistente",
|
"Assistant": "Assistente",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "Anexar Base de Conhecimento",
|
"Attach Knowledge": "Anexar Base de Conhecimento",
|
||||||
"Attach Notes": "Anexar Notas",
|
"Attach Notes": "Anexar Notas",
|
||||||
"Attach Webpage": "Anexar Página Web",
|
"Attach Webpage": "Anexar Página Web",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "Fechar Banner",
|
"Close Banner": "Fechar Banner",
|
||||||
"Close Configure Connection Modal": "Fechar a Modal de Configuração de Conexão",
|
"Close Configure Connection Modal": "Fechar a Modal de Configuração de Conexão",
|
||||||
"Close modal": "Fechar modal",
|
"Close modal": "Fechar modal",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "Fechar configurações modal",
|
"Close settings modal": "Fechar configurações modal",
|
||||||
"Close Sidebar": "Fechar barra lateral",
|
"Close Sidebar": "Fechar barra lateral",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "Copiado para a área de transferência",
|
"Copied to clipboard": "Copiado para a área de transferência",
|
||||||
"Copy": "Copiar",
|
"Copy": "Copiar",
|
||||||
"Copy Formatted Text": "Copiar texto formatado",
|
"Copy Formatted Text": "Copiar texto formatado",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "Copiar link",
|
"Copy link": "Copiar link",
|
||||||
"Copy Link": "Copiar Link",
|
"Copy Link": "Copiar Link",
|
||||||
"Copy to clipboard": "Copiar para a área de transferência",
|
"Copy to clipboard": "Copiar para a área de transferência",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "Editar Permissões Padrão",
|
"Edit Default Permissions": "Editar Permissões Padrão",
|
||||||
"Edit Folder": "Editar Pasta",
|
"Edit Folder": "Editar Pasta",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "Editar Memória",
|
"Edit Memory": "Editar Memória",
|
||||||
"Edit User": "Editar Usuário",
|
"Edit User": "Editar Usuário",
|
||||||
"Edit User Group": "Editar Grupo de Usuários",
|
"Edit User Group": "Editar Grupo de Usuários",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "URL base da API do Firecrawl",
|
"Firecrawl API Base URL": "URL base da API do Firecrawl",
|
||||||
"Firecrawl API Key": "Chave de API do Firecrawl",
|
"Firecrawl API Key": "Chave de API do Firecrawl",
|
||||||
"Floating Quick Actions": "Ações rápidas flutuantes",
|
"Floating Quick Actions": "Ações rápidas flutuantes",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "Pasta",
|
"Folder": "Pasta",
|
||||||
"Folder Background Image": "Imagem de fundo da pasta",
|
"Folder Background Image": "Imagem de fundo da pasta",
|
||||||
"Folder deleted successfully": "Pasta excluída com sucesso",
|
"Folder deleted successfully": "Pasta excluída com sucesso",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "Gerar",
|
"Generate": "Gerar",
|
||||||
"Generate an image": "Gerar uma imagem",
|
"Generate an image": "Gerar uma imagem",
|
||||||
"Generate Image": "Gerar Imagem",
|
"Generate Image": "Gerar Imagem",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "Imagem gerada",
|
"Generated Image": "Imagem gerada",
|
||||||
"Generating search query": "Gerando consulta de pesquisa",
|
"Generating search query": "Gerando consulta de pesquisa",
|
||||||
"Generating...": "Gerando...",
|
"Generating...": "Gerando...",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "Memória atualizada com sucesso",
|
"Memory updated successfully": "Memória atualizada com sucesso",
|
||||||
"Merge Responses": "Mesclar respostas",
|
"Merge Responses": "Mesclar respostas",
|
||||||
"Merged Response": "Resposta Mesclada",
|
"Merged Response": "Resposta Mesclada",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "Mensagem de avaliação deve estar habilitada para usar esta função",
|
"Message rating should be enabled to use this feature": "Mensagem de avaliação deve estar habilitada para usar esta função",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Mensagens enviadas após criar seu link não serão compartilhadas. Usuários com o URL poderão visualizar o chat compartilhado.",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Mensagens enviadas após criar seu link não serão compartilhadas. Usuários com o URL poderão visualizar o chat compartilhado.",
|
||||||
"Microsoft OneDrive": "",
|
"Microsoft OneDrive": "",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "Nota Nota",
|
"New Note": "Nota Nota",
|
||||||
"New Password": "Nova Senha",
|
"New Password": "Nova Senha",
|
||||||
"New Prompt": "Novo Prompt",
|
"New Prompt": "Novo Prompt",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "Nova Ferrameta",
|
"New Tool": "Nova Ferrameta",
|
||||||
"new-channel": "novo-canal",
|
"new-channel": "novo-canal",
|
||||||
"Next message": "Próxima mensagem",
|
"Next message": "Próxima mensagem",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Versão Ollama",
|
"Ollama Version": "Versão Ollama",
|
||||||
"On": "Ligado",
|
"On": "Ligado",
|
||||||
"OneDrive": "",
|
"OneDrive": "",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "Somente caracteres alfanuméricos e hífens são permitidos",
|
"Only alphanumeric characters and hyphens are allowed": "Somente caracteres alfanuméricos e hífens são permitidos",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "Apenas caracteres alfanuméricos e hífens são permitidos na string de comando.",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "Apenas caracteres alfanuméricos e hífens são permitidos na string de comando.",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Somente coleções podem ser editadas. Crie uma nova base de conhecimento para editar/adicionar documentos.",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Somente coleções podem ser editadas. Crie uma nova base de conhecimento para editar/adicionar documentos.",
|
||||||
"Only markdown files are allowed": "Somente arquivos markdown são permitidos",
|
"Only markdown files are allowed": "Somente arquivos markdown são permitidos",
|
||||||
"Only select users and groups with permission can access": "Somente usuários e grupos selecionados com permissão podem acessar.",
|
"Only select users and groups with permission can access": "Somente usuários e grupos selecionados com permissão podem acessar.",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "Abra o modal para configurar a conexão",
|
"Open modal to configure connection": "Abra o modal para configurar a conexão",
|
||||||
"Open Modal To Manage Floating Quick Actions": "Abra o Modal para gerenciar ações rápidas flutuantes",
|
"Open Modal To Manage Floating Quick Actions": "Abra o Modal para gerenciar ações rápidas flutuantes",
|
||||||
"Open Modal To Manage Image Compression": "Abrir o Modal para gerenciar a compressão de imagens",
|
"Open Modal To Manage Image Compression": "Abrir o Modal para gerenciar a compressão de imagens",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "Abrir barra lateral",
|
"Open Sidebar": "Abrir barra lateral",
|
||||||
"Open User Profile Menu": "Abrir menu de perfil do usuário",
|
"Open User Profile Menu": "Abrir menu de perfil do usuário",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "O Open WebUI pode usar ferramentas fornecidas por qualquer servidor OpenAPI.",
|
"Open WebUI can use tools provided by any OpenAPI server.": "O Open WebUI pode usar ferramentas fornecidas por qualquer servidor OpenAPI.",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "Prefiro não dizer",
|
"Prefer not to say": "Prefiro não dizer",
|
||||||
"Prefix ID": "Prefixo ID",
|
"Prefix ID": "Prefixo ID",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "O ID de prefixo é utilizado para evitar conflitos com outras conexões, adicionando um prefixo aos IDs dos modelos - deixe em branco para desativar.",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "O ID de prefixo é utilizado para evitar conflitos com outras conexões, adicionando um prefixo aos IDs dos modelos - deixe em branco para desativar.",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "Visualização",
|
"Preview": "Visualização",
|
||||||
"Previous 30 days": "Últimos 30 dias",
|
"Previous 30 days": "Últimos 30 dias",
|
||||||
"Previous 7 days": "Últimos 7 dias",
|
"Previous 7 days": "Últimos 7 dias",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "Recusado quando não deveria",
|
"Refused when it shouldn't have": "Recusado quando não deveria",
|
||||||
"Regenerate": "Gerar novamente",
|
"Regenerate": "Gerar novamente",
|
||||||
"Regenerate Menu": "Regenerar Menu",
|
"Regenerate Menu": "Regenerar Menu",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "Registre-se novamente",
|
"Register Again": "Registre-se novamente",
|
||||||
"Register Client": "Registrar cliente",
|
"Register Client": "Registrar cliente",
|
||||||
"Registered": "Registrado",
|
"Registered": "Registrado",
|
||||||
|
|
@ -1440,6 +1458,7 @@
|
||||||
"Show Formatting Toolbar": "Mostrar barra de ferramentas de formatação",
|
"Show Formatting Toolbar": "Mostrar barra de ferramentas de formatação",
|
||||||
"Show image preview": "Mostrar pré-visualização da imagem",
|
"Show image preview": "Mostrar pré-visualização da imagem",
|
||||||
"Show Model": "Mostrar modelo",
|
"Show Model": "Mostrar modelo",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "Mostre seu apoio!",
|
"Show your support!": "Mostre seu apoio!",
|
||||||
"Showcased creativity": "Criatividade exibida",
|
"Showcased creativity": "Criatividade exibida",
|
||||||
"Sign in": "Entrar",
|
"Sign in": "Entrar",
|
||||||
|
|
@ -1475,6 +1494,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "Parar",
|
"Stop": "Parar",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "Sequência de Parada",
|
"Stop Sequence": "Sequência de Parada",
|
||||||
"Stream Chat Response": "Stream Resposta do Chat",
|
"Stream Chat Response": "Stream Resposta do Chat",
|
||||||
"Stream Delta Chunk Size": "",
|
"Stream Delta Chunk Size": "",
|
||||||
|
|
@ -1504,6 +1524,7 @@
|
||||||
"Tags Generation": "Geração de tags",
|
"Tags Generation": "Geração de tags",
|
||||||
"Tags Generation Prompt": "Prompt para geração de Tags",
|
"Tags Generation Prompt": "Prompt para geração de Tags",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "A amostragem livre de cauda é usada para reduzir o impacto de tokens menos prováveis na saída. Um valor mais alto (por exemplo, 2,0) reduzirá ainda mais o impacto, enquanto um valor de 1,0 desabilita essa configuração.",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "A amostragem livre de cauda é usada para reduzir o impacto de tokens menos prováveis na saída. Um valor mais alto (por exemplo, 2,0) reduzirá ainda mais o impacto, enquanto um valor de 1,0 desabilita essa configuração.",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "Toque para interromper",
|
"Tap to interrupt": "Toque para interromper",
|
||||||
"Task List": "Lista de tarefas",
|
"Task List": "Lista de tarefas",
|
||||||
"Task Model": "Modelo de Tarefa",
|
"Task Model": "Modelo de Tarefa",
|
||||||
|
|
@ -1585,6 +1606,7 @@
|
||||||
"Toast notifications for new updates": "Notificações de alerta para novas atualizações",
|
"Toast notifications for new updates": "Notificações de alerta para novas atualizações",
|
||||||
"Today": "Hoje",
|
"Today": "Hoje",
|
||||||
"Today at {{LOCALIZED_TIME}}": "Hoje às {{LOCALIZED_TIME}}",
|
"Today at {{LOCALIZED_TIME}}": "Hoje às {{LOCALIZED_TIME}}",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "Alterna se a conexão atual está ativa.",
|
"Toggle whether current connection is active.": "Alterna se a conexão atual está ativa.",
|
||||||
"Token": "",
|
"Token": "",
|
||||||
"Too verbose": "Muito detalhado",
|
"Too verbose": "Muito detalhado",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Um modelo de tarefa é usado ao executar tarefas como gerar títulos para bate-papos e consultas de pesquisa na Web",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Um modelo de tarefa é usado ao executar tarefas como gerar títulos para bate-papos e consultas de pesquisa na Web",
|
||||||
"a user": "um utilizador",
|
"a user": "um utilizador",
|
||||||
"About": "Acerca de",
|
"About": "Acerca de",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "",
|
"Access": "",
|
||||||
"Access Control": "",
|
"Access Control": "",
|
||||||
"Accessible to all users": "",
|
"Accessible to all users": "",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "",
|
"Add Content": "",
|
||||||
"Add content here": "",
|
"Add content here": "",
|
||||||
"Add Custom Parameter": "",
|
"Add Custom Parameter": "",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "",
|
"Add Details": "",
|
||||||
"Add Files": "Adicionar Ficheiros",
|
"Add Files": "Adicionar Ficheiros",
|
||||||
"Add Group": "",
|
"Add Group": "",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "",
|
"Ask": "",
|
||||||
"Ask a question": "",
|
"Ask a question": "",
|
||||||
"Assistant": "",
|
"Assistant": "",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "",
|
"Attach Knowledge": "",
|
||||||
"Attach Notes": "",
|
"Attach Notes": "",
|
||||||
"Attach Webpage": "",
|
"Attach Webpage": "",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "",
|
"Close Banner": "",
|
||||||
"Close Configure Connection Modal": "",
|
"Close Configure Connection Modal": "",
|
||||||
"Close modal": "",
|
"Close modal": "",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "",
|
"Close settings modal": "",
|
||||||
"Close Sidebar": "",
|
"Close Sidebar": "",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "",
|
"Copied to clipboard": "",
|
||||||
"Copy": "Copiar",
|
"Copy": "Copiar",
|
||||||
"Copy Formatted Text": "",
|
"Copy Formatted Text": "",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "",
|
"Copy link": "",
|
||||||
"Copy Link": "Copiar link",
|
"Copy Link": "Copiar link",
|
||||||
"Copy to clipboard": "",
|
"Copy to clipboard": "",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "",
|
"Edit Default Permissions": "",
|
||||||
"Edit Folder": "",
|
"Edit Folder": "",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "",
|
"Edit Memory": "",
|
||||||
"Edit User": "Editar Utilizador",
|
"Edit User": "Editar Utilizador",
|
||||||
"Edit User Group": "",
|
"Edit User Group": "",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "",
|
"Firecrawl API Base URL": "",
|
||||||
"Firecrawl API Key": "",
|
"Firecrawl API Key": "",
|
||||||
"Floating Quick Actions": "",
|
"Floating Quick Actions": "",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "",
|
"Folder": "",
|
||||||
"Folder Background Image": "",
|
"Folder Background Image": "",
|
||||||
"Folder deleted successfully": "",
|
"Folder deleted successfully": "",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "",
|
"Generate": "",
|
||||||
"Generate an image": "",
|
"Generate an image": "",
|
||||||
"Generate Image": "Gerar imagem",
|
"Generate Image": "Gerar imagem",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "",
|
"Generated Image": "",
|
||||||
"Generating search query": "A gerar a consulta da pesquisa",
|
"Generating search query": "A gerar a consulta da pesquisa",
|
||||||
"Generating...": "",
|
"Generating...": "",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "",
|
"Memory updated successfully": "",
|
||||||
"Merge Responses": "",
|
"Merge Responses": "",
|
||||||
"Merged Response": "Resposta Fundida",
|
"Merged Response": "Resposta Fundida",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "",
|
"Message rating should be enabled to use this feature": "",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Mensagens que você enviar após criar o seu link não serão partilhadas. Os utilizadores com o URL poderão visualizar a conversa partilhada.",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Mensagens que você enviar após criar o seu link não serão partilhadas. Os utilizadores com o URL poderão visualizar a conversa partilhada.",
|
||||||
"Microsoft OneDrive": "",
|
"Microsoft OneDrive": "",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "",
|
"New Note": "",
|
||||||
"New Password": "Nova Senha",
|
"New Password": "Nova Senha",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "",
|
"New Tool": "",
|
||||||
"new-channel": "",
|
"new-channel": "",
|
||||||
"Next message": "",
|
"Next message": "",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Versão do Ollama",
|
"Ollama Version": "Versão do Ollama",
|
||||||
"On": "Ligado",
|
"On": "Ligado",
|
||||||
"OneDrive": "",
|
"OneDrive": "",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "",
|
"Only alphanumeric characters and hyphens are allowed": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "Apenas caracteres alfanuméricos e hífens são permitidos na string de comando.",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "Apenas caracteres alfanuméricos e hífens são permitidos na string de comando.",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
|
||||||
"Only markdown files are allowed": "",
|
"Only markdown files are allowed": "",
|
||||||
"Only select users and groups with permission can access": "",
|
"Only select users and groups with permission can access": "",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "",
|
"Open modal to configure connection": "",
|
||||||
"Open Modal To Manage Floating Quick Actions": "",
|
"Open Modal To Manage Floating Quick Actions": "",
|
||||||
"Open Modal To Manage Image Compression": "",
|
"Open Modal To Manage Image Compression": "",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "",
|
"Open Sidebar": "",
|
||||||
"Open User Profile Menu": "",
|
"Open User Profile Menu": "",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "",
|
"Prefer not to say": "",
|
||||||
"Prefix ID": "",
|
"Prefix ID": "",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "",
|
"Preview": "",
|
||||||
"Previous 30 days": "Últimos 30 dias",
|
"Previous 30 days": "Últimos 30 dias",
|
||||||
"Previous 7 days": "Últimos 7 dias",
|
"Previous 7 days": "Últimos 7 dias",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "Recusado quando não deveria",
|
"Refused when it shouldn't have": "Recusado quando não deveria",
|
||||||
"Regenerate": "Regenerar",
|
"Regenerate": "Regenerar",
|
||||||
"Regenerate Menu": "",
|
"Regenerate Menu": "",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "",
|
"Register Again": "",
|
||||||
"Register Client": "",
|
"Register Client": "",
|
||||||
"Registered": "",
|
"Registered": "",
|
||||||
|
|
@ -1440,6 +1458,7 @@
|
||||||
"Show Formatting Toolbar": "",
|
"Show Formatting Toolbar": "",
|
||||||
"Show image preview": "",
|
"Show image preview": "",
|
||||||
"Show Model": "",
|
"Show Model": "",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "",
|
"Show your support!": "",
|
||||||
"Showcased creativity": "Criatividade Exibida",
|
"Showcased creativity": "Criatividade Exibida",
|
||||||
"Sign in": "Entrar",
|
"Sign in": "Entrar",
|
||||||
|
|
@ -1475,6 +1494,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "",
|
"Stop": "",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "Sequência de Paragem",
|
"Stop Sequence": "Sequência de Paragem",
|
||||||
"Stream Chat Response": "",
|
"Stream Chat Response": "",
|
||||||
"Stream Delta Chunk Size": "",
|
"Stream Delta Chunk Size": "",
|
||||||
|
|
@ -1504,6 +1524,7 @@
|
||||||
"Tags Generation": "",
|
"Tags Generation": "",
|
||||||
"Tags Generation Prompt": "",
|
"Tags Generation Prompt": "",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "",
|
"Tap to interrupt": "",
|
||||||
"Task List": "",
|
"Task List": "",
|
||||||
"Task Model": "",
|
"Task Model": "",
|
||||||
|
|
@ -1585,6 +1606,7 @@
|
||||||
"Toast notifications for new updates": "",
|
"Toast notifications for new updates": "",
|
||||||
"Today": "Hoje",
|
"Today": "Hoje",
|
||||||
"Today at {{LOCALIZED_TIME}}": "",
|
"Today at {{LOCALIZED_TIME}}": "",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "",
|
"Toggle whether current connection is active.": "",
|
||||||
"Token": "",
|
"Token": "",
|
||||||
"Too verbose": "",
|
"Too verbose": "",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Un model de sarcină este utilizat pentru realizarea unor sarcini precum generarea de titluri pentru conversații și interogări de căutare pe web",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Un model de sarcină este utilizat pentru realizarea unor sarcini precum generarea de titluri pentru conversații și interogări de căutare pe web",
|
||||||
"a user": "un utilizator",
|
"a user": "un utilizator",
|
||||||
"About": "Despre",
|
"About": "Despre",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "Acces",
|
"Access": "Acces",
|
||||||
"Access Control": "Controlul accesului",
|
"Access Control": "Controlul accesului",
|
||||||
"Accessible to all users": "Accesibil pentru toți utilizatorii",
|
"Accessible to all users": "Accesibil pentru toți utilizatorii",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "Adăugați conținut",
|
"Add Content": "Adăugați conținut",
|
||||||
"Add content here": "Adăugați conținut aici",
|
"Add content here": "Adăugați conținut aici",
|
||||||
"Add Custom Parameter": "Adaugă parametru personalizat",
|
"Add Custom Parameter": "Adaugă parametru personalizat",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "",
|
"Add Details": "",
|
||||||
"Add Files": "Adaugă fișiere",
|
"Add Files": "Adaugă fișiere",
|
||||||
"Add Group": "Adaugă grup",
|
"Add Group": "Adaugă grup",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "Întreabă",
|
"Ask": "Întreabă",
|
||||||
"Ask a question": "Pune o întrebare",
|
"Ask a question": "Pune o întrebare",
|
||||||
"Assistant": "Asistent",
|
"Assistant": "Asistent",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "",
|
"Attach Knowledge": "",
|
||||||
"Attach Notes": "",
|
"Attach Notes": "",
|
||||||
"Attach Webpage": "",
|
"Attach Webpage": "",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "",
|
"Close Banner": "",
|
||||||
"Close Configure Connection Modal": "",
|
"Close Configure Connection Modal": "",
|
||||||
"Close modal": "",
|
"Close modal": "",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "",
|
"Close settings modal": "",
|
||||||
"Close Sidebar": "",
|
"Close Sidebar": "",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "Copiat în clipboard",
|
"Copied to clipboard": "Copiat în clipboard",
|
||||||
"Copy": "Copiază",
|
"Copy": "Copiază",
|
||||||
"Copy Formatted Text": "Copiază text formatat",
|
"Copy Formatted Text": "Copiază text formatat",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "",
|
"Copy link": "",
|
||||||
"Copy Link": "Copiază Link",
|
"Copy Link": "Copiază Link",
|
||||||
"Copy to clipboard": "Copiază în clipboard",
|
"Copy to clipboard": "Copiază în clipboard",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "Editează permisiunile implicite",
|
"Edit Default Permissions": "Editează permisiunile implicite",
|
||||||
"Edit Folder": "",
|
"Edit Folder": "",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "Editează Memorie",
|
"Edit Memory": "Editează Memorie",
|
||||||
"Edit User": "Editează Utilizator",
|
"Edit User": "Editează Utilizator",
|
||||||
"Edit User Group": "Editează grupul de utilizatori",
|
"Edit User Group": "Editează grupul de utilizatori",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "",
|
"Firecrawl API Base URL": "",
|
||||||
"Firecrawl API Key": "",
|
"Firecrawl API Key": "",
|
||||||
"Floating Quick Actions": "",
|
"Floating Quick Actions": "",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "",
|
"Folder": "",
|
||||||
"Folder Background Image": "",
|
"Folder Background Image": "",
|
||||||
"Folder deleted successfully": "Folder șters cu succes",
|
"Folder deleted successfully": "Folder șters cu succes",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "",
|
"Generate": "",
|
||||||
"Generate an image": "",
|
"Generate an image": "",
|
||||||
"Generate Image": "Generează Imagine",
|
"Generate Image": "Generează Imagine",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "",
|
"Generated Image": "",
|
||||||
"Generating search query": "Se generează interogarea de căutare",
|
"Generating search query": "Se generează interogarea de căutare",
|
||||||
"Generating...": "",
|
"Generating...": "",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "Memoria a fost actualizată cu succes",
|
"Memory updated successfully": "Memoria a fost actualizată cu succes",
|
||||||
"Merge Responses": "Combină răspunsurile",
|
"Merge Responses": "Combină răspunsurile",
|
||||||
"Merged Response": "Răspuns Combinat",
|
"Merged Response": "Răspuns Combinat",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "Evaluarea mesajelor ar trebui să fie activată pentru a utiliza această funcționalitate.",
|
"Message rating should be enabled to use this feature": "Evaluarea mesajelor ar trebui să fie activată pentru a utiliza această funcționalitate.",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Mesajele pe care le trimiteți după crearea link-ului dvs. nu vor fi partajate. Utilizatorii cu URL-ul vor putea vizualiza conversația partajată.",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Mesajele pe care le trimiteți după crearea link-ului dvs. nu vor fi partajate. Utilizatorii cu URL-ul vor putea vizualiza conversația partajată.",
|
||||||
"Microsoft OneDrive": "",
|
"Microsoft OneDrive": "",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "",
|
"New Note": "",
|
||||||
"New Password": "Parolă Nouă",
|
"New Password": "Parolă Nouă",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "",
|
"New Tool": "",
|
||||||
"new-channel": "",
|
"new-channel": "",
|
||||||
"Next message": "",
|
"Next message": "",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Versiune Ollama",
|
"Ollama Version": "Versiune Ollama",
|
||||||
"On": "Activat",
|
"On": "Activat",
|
||||||
"OneDrive": "",
|
"OneDrive": "",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "",
|
"Only alphanumeric characters and hyphens are allowed": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "Doar caracterele alfanumerice și cratimele sunt permise în șirul de comandă.",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "Doar caracterele alfanumerice și cratimele sunt permise în șirul de comandă.",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Doar colecțiile pot fi editate, creați o nouă bază de cunoștințe pentru a edita/adăuga documente.",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Doar colecțiile pot fi editate, creați o nouă bază de cunoștințe pentru a edita/adăuga documente.",
|
||||||
"Only markdown files are allowed": "",
|
"Only markdown files are allowed": "",
|
||||||
"Only select users and groups with permission can access": "",
|
"Only select users and groups with permission can access": "",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "",
|
"Open modal to configure connection": "",
|
||||||
"Open Modal To Manage Floating Quick Actions": "",
|
"Open Modal To Manage Floating Quick Actions": "",
|
||||||
"Open Modal To Manage Image Compression": "",
|
"Open Modal To Manage Image Compression": "",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "",
|
"Open Sidebar": "",
|
||||||
"Open User Profile Menu": "",
|
"Open User Profile Menu": "",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "",
|
"Prefer not to say": "",
|
||||||
"Prefix ID": "",
|
"Prefix ID": "",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "",
|
"Preview": "",
|
||||||
"Previous 30 days": "Ultimele 30 de zile",
|
"Previous 30 days": "Ultimele 30 de zile",
|
||||||
"Previous 7 days": "Ultimele 7 zile",
|
"Previous 7 days": "Ultimele 7 zile",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "Refuzat când nu ar fi trebuit",
|
"Refused when it shouldn't have": "Refuzat când nu ar fi trebuit",
|
||||||
"Regenerate": "Regenerare",
|
"Regenerate": "Regenerare",
|
||||||
"Regenerate Menu": "",
|
"Regenerate Menu": "",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "",
|
"Register Again": "",
|
||||||
"Register Client": "",
|
"Register Client": "",
|
||||||
"Registered": "",
|
"Registered": "",
|
||||||
|
|
@ -1440,6 +1458,7 @@
|
||||||
"Show Formatting Toolbar": "",
|
"Show Formatting Toolbar": "",
|
||||||
"Show image preview": "",
|
"Show image preview": "",
|
||||||
"Show Model": "",
|
"Show Model": "",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "Arată-ți susținerea!",
|
"Show your support!": "Arată-ți susținerea!",
|
||||||
"Showcased creativity": "Creativitate expusă",
|
"Showcased creativity": "Creativitate expusă",
|
||||||
"Sign in": "Autentificare",
|
"Sign in": "Autentificare",
|
||||||
|
|
@ -1475,6 +1494,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "Oprire",
|
"Stop": "Oprire",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "Oprește Secvența",
|
"Stop Sequence": "Oprește Secvența",
|
||||||
"Stream Chat Response": "Răspuns Stream Chat",
|
"Stream Chat Response": "Răspuns Stream Chat",
|
||||||
"Stream Delta Chunk Size": "",
|
"Stream Delta Chunk Size": "",
|
||||||
|
|
@ -1504,6 +1524,7 @@
|
||||||
"Tags Generation": "",
|
"Tags Generation": "",
|
||||||
"Tags Generation Prompt": "Generarea de Etichete Prompt",
|
"Tags Generation Prompt": "Generarea de Etichete Prompt",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "Apasă pentru a întrerupe",
|
"Tap to interrupt": "Apasă pentru a întrerupe",
|
||||||
"Task List": "",
|
"Task List": "",
|
||||||
"Task Model": "",
|
"Task Model": "",
|
||||||
|
|
@ -1585,6 +1606,7 @@
|
||||||
"Toast notifications for new updates": "Notificări toast pentru actualizări noi",
|
"Toast notifications for new updates": "Notificări toast pentru actualizări noi",
|
||||||
"Today": "Astăzi",
|
"Today": "Astăzi",
|
||||||
"Today at {{LOCALIZED_TIME}}": "",
|
"Today at {{LOCALIZED_TIME}}": "",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "",
|
"Toggle whether current connection is active.": "",
|
||||||
"Token": "Token",
|
"Token": "Token",
|
||||||
"Too verbose": "Prea detaliat",
|
"Too verbose": "Prea detaliat",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Модель задач используется при выполнении таких задач, как генерация заголовков для чатов и поисковых запросов в Интернете",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Модель задач используется при выполнении таких задач, как генерация заголовков для чатов и поисковых запросов в Интернете",
|
||||||
"a user": "пользователь",
|
"a user": "пользователь",
|
||||||
"About": "О программе",
|
"About": "О программе",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "Доступ",
|
"Access": "Доступ",
|
||||||
"Access Control": "Контроль доступа",
|
"Access Control": "Контроль доступа",
|
||||||
"Accessible to all users": "Доступно всем пользователям",
|
"Accessible to all users": "Доступно всем пользователям",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "Добавить контент",
|
"Add Content": "Добавить контент",
|
||||||
"Add content here": "Добавить контент сюда",
|
"Add content here": "Добавить контент сюда",
|
||||||
"Add Custom Parameter": "Добавить пользовательский параметр",
|
"Add Custom Parameter": "Добавить пользовательский параметр",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "Добавить детали",
|
"Add Details": "Добавить детали",
|
||||||
"Add Files": "Добавить файлы",
|
"Add Files": "Добавить файлы",
|
||||||
"Add Group": "Добавить группу",
|
"Add Group": "Добавить группу",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "Спросить",
|
"Ask": "Спросить",
|
||||||
"Ask a question": "Задать вопрос",
|
"Ask a question": "Задать вопрос",
|
||||||
"Assistant": "Ассистент",
|
"Assistant": "Ассистент",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "Прикрепить знания",
|
"Attach Knowledge": "Прикрепить знания",
|
||||||
"Attach Notes": "Прикрепить заметки",
|
"Attach Notes": "Прикрепить заметки",
|
||||||
"Attach Webpage": "",
|
"Attach Webpage": "",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "Закрыть баннер",
|
"Close Banner": "Закрыть баннер",
|
||||||
"Close Configure Connection Modal": "Закрыть модальное окно настройки соединения",
|
"Close Configure Connection Modal": "Закрыть модальное окно настройки соединения",
|
||||||
"Close modal": "Закрыть окно",
|
"Close modal": "Закрыть окно",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "Закрыть окно настроек",
|
"Close settings modal": "Закрыть окно настроек",
|
||||||
"Close Sidebar": "Закрыть боковую панель",
|
"Close Sidebar": "Закрыть боковую панель",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "Скопировано в буфер обмена",
|
"Copied to clipboard": "Скопировано в буфер обмена",
|
||||||
"Copy": "Копировать",
|
"Copy": "Копировать",
|
||||||
"Copy Formatted Text": "Копировать форматированный текст",
|
"Copy Formatted Text": "Копировать форматированный текст",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "Скопировать ссылку",
|
"Copy link": "Скопировать ссылку",
|
||||||
"Copy Link": "Копировать ссылку",
|
"Copy Link": "Копировать ссылку",
|
||||||
"Copy to clipboard": "Скопировать в буфер обмена",
|
"Copy to clipboard": "Скопировать в буфер обмена",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "Изменить разрешения по умолчанию",
|
"Edit Default Permissions": "Изменить разрешения по умолчанию",
|
||||||
"Edit Folder": "Редактировать папку",
|
"Edit Folder": "Редактировать папку",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "Редактировать воспоминание",
|
"Edit Memory": "Редактировать воспоминание",
|
||||||
"Edit User": "Редактировать пользователя",
|
"Edit User": "Редактировать пользователя",
|
||||||
"Edit User Group": "Редактировать Пользовательскую Группу",
|
"Edit User Group": "Редактировать Пользовательскую Группу",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "Базовый URL-адрес Firecrawl API",
|
"Firecrawl API Base URL": "Базовый URL-адрес Firecrawl API",
|
||||||
"Firecrawl API Key": "Ключ API Firecrawl",
|
"Firecrawl API Key": "Ключ API Firecrawl",
|
||||||
"Floating Quick Actions": "Плавающие быстрые действия",
|
"Floating Quick Actions": "Плавающие быстрые действия",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "",
|
"Folder": "",
|
||||||
"Folder Background Image": "Фоновое изображение папки",
|
"Folder Background Image": "Фоновое изображение папки",
|
||||||
"Folder deleted successfully": "Папка успешно удалена",
|
"Folder deleted successfully": "Папка успешно удалена",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "Сгенерировать",
|
"Generate": "Сгенерировать",
|
||||||
"Generate an image": "Сгенерировать изображение",
|
"Generate an image": "Сгенерировать изображение",
|
||||||
"Generate Image": "Сгенерировать изображение",
|
"Generate Image": "Сгенерировать изображение",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "",
|
"Generated Image": "",
|
||||||
"Generating search query": "Генерация поискового запроса",
|
"Generating search query": "Генерация поискового запроса",
|
||||||
"Generating...": "Генерирую...",
|
"Generating...": "Генерирую...",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "Воспоминание успешно обновлено",
|
"Memory updated successfully": "Воспоминание успешно обновлено",
|
||||||
"Merge Responses": "Объединить ответы",
|
"Merge Responses": "Объединить ответы",
|
||||||
"Merged Response": "Объединенный ответ",
|
"Merged Response": "Объединенный ответ",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "Чтобы использовать эту функцию, необходимо включить оценку сообщения.",
|
"Message rating should be enabled to use this feature": "Чтобы использовать эту функцию, необходимо включить оценку сообщения.",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Сообщения, отправленные вами после создания ссылки, не будут передаваться другим. Пользователи, у которых есть URL, смогут просматривать общий чат.",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Сообщения, отправленные вами после создания ссылки, не будут передаваться другим. Пользователи, у которых есть URL, смогут просматривать общий чат.",
|
||||||
"Microsoft OneDrive": "Microsoft OneDrive",
|
"Microsoft OneDrive": "Microsoft OneDrive",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "Новая заметка",
|
"New Note": "Новая заметка",
|
||||||
"New Password": "Новый пароль",
|
"New Password": "Новый пароль",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "Новый инструмент",
|
"New Tool": "Новый инструмент",
|
||||||
"new-channel": "новый-канал",
|
"new-channel": "новый-канал",
|
||||||
"Next message": "Следующее сообщение",
|
"Next message": "Следующее сообщение",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Версия Ollama",
|
"Ollama Version": "Версия Ollama",
|
||||||
"On": "Включено",
|
"On": "Включено",
|
||||||
"OneDrive": "OneDrive",
|
"OneDrive": "OneDrive",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "Разрешены только буквенно-цифровые символы и дефисы.",
|
"Only alphanumeric characters and hyphens are allowed": "Разрешены только буквенно-цифровые символы и дефисы.",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "В строке команды разрешено использовать только буквенно-цифровые символы и дефисы.",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "В строке команды разрешено использовать только буквенно-цифровые символы и дефисы.",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Редактировать можно только коллекции, создайте новую базу знаний для редактирования/добавления документов.",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Редактировать можно только коллекции, создайте новую базу знаний для редактирования/добавления документов.",
|
||||||
"Only markdown files are allowed": "Разрешены только файлы markdown",
|
"Only markdown files are allowed": "Разрешены только файлы markdown",
|
||||||
"Only select users and groups with permission can access": "Доступ имеют только избранные пользователи и группы, имеющие разрешение.",
|
"Only select users and groups with permission can access": "Доступ имеют только избранные пользователи и группы, имеющие разрешение.",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "Открыть окно настроек подключения",
|
"Open modal to configure connection": "Открыть окно настроек подключения",
|
||||||
"Open Modal To Manage Floating Quick Actions": "Открыть модальное окно для управления плавающими быстрыми действиями",
|
"Open Modal To Manage Floating Quick Actions": "Открыть модальное окно для управления плавающими быстрыми действиями",
|
||||||
"Open Modal To Manage Image Compression": "Открыть окно управления сжатием изображений",
|
"Open Modal To Manage Image Compression": "Открыть окно управления сжатием изображений",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "Открыть боковую панель",
|
"Open Sidebar": "Открыть боковую панель",
|
||||||
"Open User Profile Menu": "Открыть меню профиля пользователя",
|
"Open User Profile Menu": "Открыть меню профиля пользователя",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI может использовать инструменты, предоставляемые любым сервером OpenAPI.",
|
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI может использовать инструменты, предоставляемые любым сервером OpenAPI.",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "Предпочитаю не говорить",
|
"Prefer not to say": "Предпочитаю не говорить",
|
||||||
"Prefix ID": "ID префикса",
|
"Prefix ID": "ID префикса",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "ID префикса используется для предотвращения конфликтов с другими подключениями путем добавления префикса к идентификаторам моделей - оставьте пустым, чтобы отключить",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "ID префикса используется для предотвращения конфликтов с другими подключениями путем добавления префикса к идентификаторам моделей - оставьте пустым, чтобы отключить",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "Предпросмотр",
|
"Preview": "Предпросмотр",
|
||||||
"Previous 30 days": "Предыдущие 30 дней",
|
"Previous 30 days": "Предыдущие 30 дней",
|
||||||
"Previous 7 days": "Предыдущие 7 дней",
|
"Previous 7 days": "Предыдущие 7 дней",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "Отказано в доступе, когда это не должно было произойти",
|
"Refused when it shouldn't have": "Отказано в доступе, когда это не должно было произойти",
|
||||||
"Regenerate": "Перегенерировать",
|
"Regenerate": "Перегенерировать",
|
||||||
"Regenerate Menu": "Обновить меню",
|
"Regenerate Menu": "Обновить меню",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "",
|
"Register Again": "",
|
||||||
"Register Client": "",
|
"Register Client": "",
|
||||||
"Registered": "",
|
"Registered": "",
|
||||||
|
|
@ -1441,6 +1459,7 @@
|
||||||
"Show Formatting Toolbar": "Показать панель форматирования",
|
"Show Formatting Toolbar": "Показать панель форматирования",
|
||||||
"Show image preview": "Показать предварительный просмотр изображения",
|
"Show image preview": "Показать предварительный просмотр изображения",
|
||||||
"Show Model": "Показать модель",
|
"Show Model": "Показать модель",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "Поддержите нас!",
|
"Show your support!": "Поддержите нас!",
|
||||||
"Showcased creativity": "Продемонстрирован творческий подход",
|
"Showcased creativity": "Продемонстрирован творческий подход",
|
||||||
"Sign in": "Войти",
|
"Sign in": "Войти",
|
||||||
|
|
@ -1476,6 +1495,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "Остановить",
|
"Stop": "Остановить",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "Последовательность останова",
|
"Stop Sequence": "Последовательность останова",
|
||||||
"Stream Chat Response": "Потоковый вывод ответа",
|
"Stream Chat Response": "Потоковый вывод ответа",
|
||||||
"Stream Delta Chunk Size": "Размер чанка дельты потока",
|
"Stream Delta Chunk Size": "Размер чанка дельты потока",
|
||||||
|
|
@ -1505,6 +1525,7 @@
|
||||||
"Tags Generation": "Генерация тегов",
|
"Tags Generation": "Генерация тегов",
|
||||||
"Tags Generation Prompt": "Промпт для генерации тегов",
|
"Tags Generation Prompt": "Промпт для генерации тегов",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Выборка без хвостов используется для уменьшения влияния менее вероятных токенов на выходные данные. Более высокое значение (например, 2.0) еще больше уменьшит влияние, в то время как значение 1.0 отключает эту настройку.",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Выборка без хвостов используется для уменьшения влияния менее вероятных токенов на выходные данные. Более высокое значение (например, 2.0) еще больше уменьшит влияние, в то время как значение 1.0 отключает эту настройку.",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "Нажмите, чтобы прервать",
|
"Tap to interrupt": "Нажмите, чтобы прервать",
|
||||||
"Task List": "Список задач",
|
"Task List": "Список задач",
|
||||||
"Task Model": "Модель задачи",
|
"Task Model": "Модель задачи",
|
||||||
|
|
@ -1586,6 +1607,7 @@
|
||||||
"Toast notifications for new updates": "Уведомления о обновлениях",
|
"Toast notifications for new updates": "Уведомления о обновлениях",
|
||||||
"Today": "Сегодня",
|
"Today": "Сегодня",
|
||||||
"Today at {{LOCALIZED_TIME}}": "Сегодня в {{LOCALIZED_TIME}}",
|
"Today at {{LOCALIZED_TIME}}": "Сегодня в {{LOCALIZED_TIME}}",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "Переключить, активно ли текущее соединение.",
|
"Toggle whether current connection is active.": "Переключить, активно ли текущее соединение.",
|
||||||
"Token": "Токен",
|
"Token": "Токен",
|
||||||
"Too verbose": "Слишком многословно",
|
"Too verbose": "Слишком многословно",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Model úloh sa používa pri vykonávaní úloh, ako je generovanie názvov pre chaty a vyhľadávacie dotazy na webe.",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Model úloh sa používa pri vykonávaní úloh, ako je generovanie názvov pre chaty a vyhľadávacie dotazy na webe.",
|
||||||
"a user": "užívateľ",
|
"a user": "užívateľ",
|
||||||
"About": "O programe",
|
"About": "O programe",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "Prístup",
|
"Access": "Prístup",
|
||||||
"Access Control": "",
|
"Access Control": "",
|
||||||
"Accessible to all users": "Prístupné pre všetkých užívateľov",
|
"Accessible to all users": "Prístupné pre všetkých užívateľov",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "Pridať obsah",
|
"Add Content": "Pridať obsah",
|
||||||
"Add content here": "Pridať obsah sem",
|
"Add content here": "Pridať obsah sem",
|
||||||
"Add Custom Parameter": "",
|
"Add Custom Parameter": "",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "",
|
"Add Details": "",
|
||||||
"Add Files": "Pridať súbory",
|
"Add Files": "Pridať súbory",
|
||||||
"Add Group": "Pridať skupinu",
|
"Add Group": "Pridať skupinu",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "",
|
"Ask": "",
|
||||||
"Ask a question": "Opýtajte sa otázku",
|
"Ask a question": "Opýtajte sa otázku",
|
||||||
"Assistant": "Asistent",
|
"Assistant": "Asistent",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "",
|
"Attach Knowledge": "",
|
||||||
"Attach Notes": "",
|
"Attach Notes": "",
|
||||||
"Attach Webpage": "",
|
"Attach Webpage": "",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "",
|
"Close Banner": "",
|
||||||
"Close Configure Connection Modal": "",
|
"Close Configure Connection Modal": "",
|
||||||
"Close modal": "",
|
"Close modal": "",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "",
|
"Close settings modal": "",
|
||||||
"Close Sidebar": "",
|
"Close Sidebar": "",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "Skopírované do schránky",
|
"Copied to clipboard": "Skopírované do schránky",
|
||||||
"Copy": "Kopírovať",
|
"Copy": "Kopírovať",
|
||||||
"Copy Formatted Text": "",
|
"Copy Formatted Text": "",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "",
|
"Copy link": "",
|
||||||
"Copy Link": "Kopírovať odkaz",
|
"Copy Link": "Kopírovať odkaz",
|
||||||
"Copy to clipboard": "Kopírovať do schránky",
|
"Copy to clipboard": "Kopírovať do schránky",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "",
|
"Edit Default Permissions": "",
|
||||||
"Edit Folder": "",
|
"Edit Folder": "",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "Upraviť pamäť",
|
"Edit Memory": "Upraviť pamäť",
|
||||||
"Edit User": "Upraviť užívateľa",
|
"Edit User": "Upraviť užívateľa",
|
||||||
"Edit User Group": "",
|
"Edit User Group": "",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "",
|
"Firecrawl API Base URL": "",
|
||||||
"Firecrawl API Key": "",
|
"Firecrawl API Key": "",
|
||||||
"Floating Quick Actions": "",
|
"Floating Quick Actions": "",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "",
|
"Folder": "",
|
||||||
"Folder Background Image": "",
|
"Folder Background Image": "",
|
||||||
"Folder deleted successfully": "Priečinok bol úspešne vymazaný",
|
"Folder deleted successfully": "Priečinok bol úspešne vymazaný",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "",
|
"Generate": "",
|
||||||
"Generate an image": "",
|
"Generate an image": "",
|
||||||
"Generate Image": "Vygenerovať obrázok",
|
"Generate Image": "Vygenerovať obrázok",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "",
|
"Generated Image": "",
|
||||||
"Generating search query": "Generovanie vyhľadávacieho dotazu",
|
"Generating search query": "Generovanie vyhľadávacieho dotazu",
|
||||||
"Generating...": "",
|
"Generating...": "",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "Pamäť úspešne aktualizovaná",
|
"Memory updated successfully": "Pamäť úspešne aktualizovaná",
|
||||||
"Merge Responses": "Zlúčiť odpovede",
|
"Merge Responses": "Zlúčiť odpovede",
|
||||||
"Merged Response": "Zlúčená odpoveď",
|
"Merged Response": "Zlúčená odpoveď",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "Hodnotenie správ musí byť povolené, aby bolo možné túto funkciu používať.",
|
"Message rating should be enabled to use this feature": "Hodnotenie správ musí byť povolené, aby bolo možné túto funkciu používať.",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Správy, ktoré odošlete po vytvorení odkazu, nebudú zdieľané. Používatelia s URL budú môcť zobraziť zdieľaný chat.",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Správy, ktoré odošlete po vytvorení odkazu, nebudú zdieľané. Používatelia s URL budú môcť zobraziť zdieľaný chat.",
|
||||||
"Microsoft OneDrive": "",
|
"Microsoft OneDrive": "",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "",
|
"New Note": "",
|
||||||
"New Password": "Nové heslo",
|
"New Password": "Nové heslo",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "",
|
"New Tool": "",
|
||||||
"new-channel": "",
|
"new-channel": "",
|
||||||
"Next message": "",
|
"Next message": "",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Verzia Ollama",
|
"Ollama Version": "Verzia Ollama",
|
||||||
"On": "Zapnuté",
|
"On": "Zapnuté",
|
||||||
"OneDrive": "",
|
"OneDrive": "",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "",
|
"Only alphanumeric characters and hyphens are allowed": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "Príkazový reťazec môže obsahovať iba alfanumerické znaky a pomlčky.",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "Príkazový reťazec môže obsahovať iba alfanumerické znaky a pomlčky.",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Iba kolekcie môžu byť upravované, na úpravu/pridanie dokumentov vytvorte novú znalostnú databázu.",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Iba kolekcie môžu byť upravované, na úpravu/pridanie dokumentov vytvorte novú znalostnú databázu.",
|
||||||
"Only markdown files are allowed": "",
|
"Only markdown files are allowed": "",
|
||||||
"Only select users and groups with permission can access": "",
|
"Only select users and groups with permission can access": "",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "",
|
"Open modal to configure connection": "",
|
||||||
"Open Modal To Manage Floating Quick Actions": "",
|
"Open Modal To Manage Floating Quick Actions": "",
|
||||||
"Open Modal To Manage Image Compression": "",
|
"Open Modal To Manage Image Compression": "",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "",
|
"Open Sidebar": "",
|
||||||
"Open User Profile Menu": "",
|
"Open User Profile Menu": "",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "",
|
"Prefer not to say": "",
|
||||||
"Prefix ID": "",
|
"Prefix ID": "",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "",
|
"Preview": "",
|
||||||
"Previous 30 days": "Predchádzajúcich 30 dní",
|
"Previous 30 days": "Predchádzajúcich 30 dní",
|
||||||
"Previous 7 days": "Predchádzajúcich 7 dní",
|
"Previous 7 days": "Predchádzajúcich 7 dní",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "Odmietnuté, keď nemalo byť.",
|
"Refused when it shouldn't have": "Odmietnuté, keď nemalo byť.",
|
||||||
"Regenerate": "Regenerovať",
|
"Regenerate": "Regenerovať",
|
||||||
"Regenerate Menu": "",
|
"Regenerate Menu": "",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "",
|
"Register Again": "",
|
||||||
"Register Client": "",
|
"Register Client": "",
|
||||||
"Registered": "",
|
"Registered": "",
|
||||||
|
|
@ -1441,6 +1459,7 @@
|
||||||
"Show Formatting Toolbar": "",
|
"Show Formatting Toolbar": "",
|
||||||
"Show image preview": "",
|
"Show image preview": "",
|
||||||
"Show Model": "",
|
"Show Model": "",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "Vyjadrite svoju podporu!",
|
"Show your support!": "Vyjadrite svoju podporu!",
|
||||||
"Showcased creativity": "Predvedená kreativita",
|
"Showcased creativity": "Predvedená kreativita",
|
||||||
"Sign in": "Prihlásiť sa",
|
"Sign in": "Prihlásiť sa",
|
||||||
|
|
@ -1476,6 +1495,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "Zastaviť",
|
"Stop": "Zastaviť",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "Sekvencia zastavenia",
|
"Stop Sequence": "Sekvencia zastavenia",
|
||||||
"Stream Chat Response": "Odozva chatu Stream",
|
"Stream Chat Response": "Odozva chatu Stream",
|
||||||
"Stream Delta Chunk Size": "",
|
"Stream Delta Chunk Size": "",
|
||||||
|
|
@ -1505,6 +1525,7 @@
|
||||||
"Tags Generation": "",
|
"Tags Generation": "",
|
||||||
"Tags Generation Prompt": "Prompt na generovanie značiek",
|
"Tags Generation Prompt": "Prompt na generovanie značiek",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "Klepnite na prerušenie",
|
"Tap to interrupt": "Klepnite na prerušenie",
|
||||||
"Task List": "",
|
"Task List": "",
|
||||||
"Task Model": "",
|
"Task Model": "",
|
||||||
|
|
@ -1586,6 +1607,7 @@
|
||||||
"Toast notifications for new updates": "Oznámenia vo forme toastov pre nové aktualizácie",
|
"Toast notifications for new updates": "Oznámenia vo forme toastov pre nové aktualizácie",
|
||||||
"Today": "Dnes",
|
"Today": "Dnes",
|
||||||
"Today at {{LOCALIZED_TIME}}": "",
|
"Today at {{LOCALIZED_TIME}}": "",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "",
|
"Toggle whether current connection is active.": "",
|
||||||
"Token": "Token",
|
"Token": "Token",
|
||||||
"Too verbose": "Príliš rozvláčne",
|
"Too verbose": "Príliš rozvláčne",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Модел задатка се користи приликом извршавања задатака као што су генерисање наслова за ћаскања и упите за Веб претрагу",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Модел задатка се користи приликом извршавања задатака као што су генерисање наслова за ћаскања и упите за Веб претрагу",
|
||||||
"a user": "корисник",
|
"a user": "корисник",
|
||||||
"About": "О нама",
|
"About": "О нама",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "Приступ",
|
"Access": "Приступ",
|
||||||
"Access Control": "Контрола приступа",
|
"Access Control": "Контрола приступа",
|
||||||
"Accessible to all users": "Доступно свим корисницима",
|
"Accessible to all users": "Доступно свим корисницима",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "Додај садржај",
|
"Add Content": "Додај садржај",
|
||||||
"Add content here": "Додај садржај овде",
|
"Add content here": "Додај садржај овде",
|
||||||
"Add Custom Parameter": "",
|
"Add Custom Parameter": "",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "",
|
"Add Details": "",
|
||||||
"Add Files": "Додај датотеке",
|
"Add Files": "Додај датотеке",
|
||||||
"Add Group": "Додај групу",
|
"Add Group": "Додај групу",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "",
|
"Ask": "",
|
||||||
"Ask a question": "Постави питање",
|
"Ask a question": "Постави питање",
|
||||||
"Assistant": "Помоћник",
|
"Assistant": "Помоћник",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "",
|
"Attach Knowledge": "",
|
||||||
"Attach Notes": "",
|
"Attach Notes": "",
|
||||||
"Attach Webpage": "",
|
"Attach Webpage": "",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "",
|
"Close Banner": "",
|
||||||
"Close Configure Connection Modal": "",
|
"Close Configure Connection Modal": "",
|
||||||
"Close modal": "",
|
"Close modal": "",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "",
|
"Close settings modal": "",
|
||||||
"Close Sidebar": "",
|
"Close Sidebar": "",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "Копирано у оставу",
|
"Copied to clipboard": "Копирано у оставу",
|
||||||
"Copy": "Копирај",
|
"Copy": "Копирај",
|
||||||
"Copy Formatted Text": "",
|
"Copy Formatted Text": "",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "",
|
"Copy link": "",
|
||||||
"Copy Link": "Копирај везу",
|
"Copy Link": "Копирај везу",
|
||||||
"Copy to clipboard": "Копирај у оставу",
|
"Copy to clipboard": "Копирај у оставу",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "Измени подразумевана овлашћења",
|
"Edit Default Permissions": "Измени подразумевана овлашћења",
|
||||||
"Edit Folder": "",
|
"Edit Folder": "",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "Измени сећање",
|
"Edit Memory": "Измени сећање",
|
||||||
"Edit User": "Измени корисника",
|
"Edit User": "Измени корисника",
|
||||||
"Edit User Group": "Измени корисничку групу",
|
"Edit User Group": "Измени корисничку групу",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "",
|
"Firecrawl API Base URL": "",
|
||||||
"Firecrawl API Key": "",
|
"Firecrawl API Key": "",
|
||||||
"Floating Quick Actions": "",
|
"Floating Quick Actions": "",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "",
|
"Folder": "",
|
||||||
"Folder Background Image": "",
|
"Folder Background Image": "",
|
||||||
"Folder deleted successfully": "",
|
"Folder deleted successfully": "",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "",
|
"Generate": "",
|
||||||
"Generate an image": "",
|
"Generate an image": "",
|
||||||
"Generate Image": "",
|
"Generate Image": "",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "",
|
"Generated Image": "",
|
||||||
"Generating search query": "Генерисање упита претраге",
|
"Generating search query": "Генерисање упита претраге",
|
||||||
"Generating...": "",
|
"Generating...": "",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "Сећање успешно измењено",
|
"Memory updated successfully": "Сећање успешно измењено",
|
||||||
"Merge Responses": "Спој одговоре",
|
"Merge Responses": "Спој одговоре",
|
||||||
"Merged Response": "Спојени одговор",
|
"Merged Response": "Спојени одговор",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "",
|
"Message rating should be enabled to use this feature": "",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Поруке које пошаљете након стварања ваше везе неће бити подељене. Корисници са URL-ом ће моћи да виде дељено ћаскање.",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Поруке које пошаљете након стварања ваше везе неће бити подељене. Корисници са URL-ом ће моћи да виде дељено ћаскање.",
|
||||||
"Microsoft OneDrive": "",
|
"Microsoft OneDrive": "",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "",
|
"New Note": "",
|
||||||
"New Password": "Нова лозинка",
|
"New Password": "Нова лозинка",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "",
|
"New Tool": "",
|
||||||
"new-channel": "",
|
"new-channel": "",
|
||||||
"Next message": "",
|
"Next message": "",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Издање Ollama-е",
|
"Ollama Version": "Издање Ollama-е",
|
||||||
"On": "Укључено",
|
"On": "Укључено",
|
||||||
"OneDrive": "",
|
"OneDrive": "",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "",
|
"Only alphanumeric characters and hyphens are allowed": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "Само алфанумерички знакови и цртице су дозвољени у низу наредби.",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "Само алфанумерички знакови и цртице су дозвољени у низу наредби.",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
|
||||||
"Only markdown files are allowed": "",
|
"Only markdown files are allowed": "",
|
||||||
"Only select users and groups with permission can access": "",
|
"Only select users and groups with permission can access": "",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "",
|
"Open modal to configure connection": "",
|
||||||
"Open Modal To Manage Floating Quick Actions": "",
|
"Open Modal To Manage Floating Quick Actions": "",
|
||||||
"Open Modal To Manage Image Compression": "",
|
"Open Modal To Manage Image Compression": "",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "",
|
"Open Sidebar": "",
|
||||||
"Open User Profile Menu": "",
|
"Open User Profile Menu": "",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "",
|
"Prefer not to say": "",
|
||||||
"Prefix ID": "",
|
"Prefix ID": "",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "",
|
"Preview": "",
|
||||||
"Previous 30 days": "Претходних 30 дана",
|
"Previous 30 days": "Претходних 30 дана",
|
||||||
"Previous 7 days": "Претходних 7 дана",
|
"Previous 7 days": "Претходних 7 дана",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "Одбијено када није требало",
|
"Refused when it shouldn't have": "Одбијено када није требало",
|
||||||
"Regenerate": "Поново створи",
|
"Regenerate": "Поново створи",
|
||||||
"Regenerate Menu": "",
|
"Regenerate Menu": "",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "",
|
"Register Again": "",
|
||||||
"Register Client": "",
|
"Register Client": "",
|
||||||
"Registered": "",
|
"Registered": "",
|
||||||
|
|
@ -1440,6 +1458,7 @@
|
||||||
"Show Formatting Toolbar": "",
|
"Show Formatting Toolbar": "",
|
||||||
"Show image preview": "",
|
"Show image preview": "",
|
||||||
"Show Model": "",
|
"Show Model": "",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "",
|
"Show your support!": "",
|
||||||
"Showcased creativity": "Приказана креативност",
|
"Showcased creativity": "Приказана креативност",
|
||||||
"Sign in": "Пријави се",
|
"Sign in": "Пријави се",
|
||||||
|
|
@ -1475,6 +1494,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "Заустави",
|
"Stop": "Заустави",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "Секвенца заустављања",
|
"Stop Sequence": "Секвенца заустављања",
|
||||||
"Stream Chat Response": "",
|
"Stream Chat Response": "",
|
||||||
"Stream Delta Chunk Size": "",
|
"Stream Delta Chunk Size": "",
|
||||||
|
|
@ -1504,6 +1524,7 @@
|
||||||
"Tags Generation": "Стварање ознака",
|
"Tags Generation": "Стварање ознака",
|
||||||
"Tags Generation Prompt": "Упит стварања ознака",
|
"Tags Generation Prompt": "Упит стварања ознака",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "",
|
"Tap to interrupt": "",
|
||||||
"Task List": "",
|
"Task List": "",
|
||||||
"Task Model": "",
|
"Task Model": "",
|
||||||
|
|
@ -1585,6 +1606,7 @@
|
||||||
"Toast notifications for new updates": "Тост-обавештења за нове исправке",
|
"Toast notifications for new updates": "Тост-обавештења за нове исправке",
|
||||||
"Today": "Данас",
|
"Today": "Данас",
|
||||||
"Today at {{LOCALIZED_TIME}}": "",
|
"Today at {{LOCALIZED_TIME}}": "",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "",
|
"Toggle whether current connection is active.": "",
|
||||||
"Token": "Жетон",
|
"Token": "Жетон",
|
||||||
"Too verbose": "Преопширно",
|
"Too verbose": "Преопширно",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "En uppgiftsmodell används när du utför uppgifter som att generera titlar för chattar och webbsökningsfrågor",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "En uppgiftsmodell används när du utför uppgifter som att generera titlar för chattar och webbsökningsfrågor",
|
||||||
"a user": "en användare",
|
"a user": "en användare",
|
||||||
"About": "Om",
|
"About": "Om",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "Åtkomst",
|
"Access": "Åtkomst",
|
||||||
"Access Control": "Åtkomstkontroll",
|
"Access Control": "Åtkomstkontroll",
|
||||||
"Accessible to all users": "Tillgänglig för alla användare",
|
"Accessible to all users": "Tillgänglig för alla användare",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "Lägg till innehåll",
|
"Add Content": "Lägg till innehåll",
|
||||||
"Add content here": "Lägg till innehåll här",
|
"Add content here": "Lägg till innehåll här",
|
||||||
"Add Custom Parameter": "Lägg till anpassad parameter",
|
"Add Custom Parameter": "Lägg till anpassad parameter",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "",
|
"Add Details": "",
|
||||||
"Add Files": "Lägg till filer",
|
"Add Files": "Lägg till filer",
|
||||||
"Add Group": "Lägg till grupp",
|
"Add Group": "Lägg till grupp",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "Fråga",
|
"Ask": "Fråga",
|
||||||
"Ask a question": "Ställ en fråga",
|
"Ask a question": "Ställ en fråga",
|
||||||
"Assistant": "Assistent",
|
"Assistant": "Assistent",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "",
|
"Attach Knowledge": "",
|
||||||
"Attach Notes": "",
|
"Attach Notes": "",
|
||||||
"Attach Webpage": "",
|
"Attach Webpage": "",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "",
|
"Close Banner": "",
|
||||||
"Close Configure Connection Modal": "",
|
"Close Configure Connection Modal": "",
|
||||||
"Close modal": "Stäng modal",
|
"Close modal": "Stäng modal",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "Stäng inställningsmodal",
|
"Close settings modal": "Stäng inställningsmodal",
|
||||||
"Close Sidebar": "",
|
"Close Sidebar": "",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "Kopierad till urklipp",
|
"Copied to clipboard": "Kopierad till urklipp",
|
||||||
"Copy": "Kopiera",
|
"Copy": "Kopiera",
|
||||||
"Copy Formatted Text": "Kopiera formaterad text",
|
"Copy Formatted Text": "Kopiera formaterad text",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "",
|
"Copy link": "",
|
||||||
"Copy Link": "Kopiera länk",
|
"Copy Link": "Kopiera länk",
|
||||||
"Copy to clipboard": "Kopiera till urklipp",
|
"Copy to clipboard": "Kopiera till urklipp",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "Redigera standardbehörigheter",
|
"Edit Default Permissions": "Redigera standardbehörigheter",
|
||||||
"Edit Folder": "",
|
"Edit Folder": "",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "Redigera minne",
|
"Edit Memory": "Redigera minne",
|
||||||
"Edit User": "Redigera användare",
|
"Edit User": "Redigera användare",
|
||||||
"Edit User Group": "Redigera användargrupp",
|
"Edit User Group": "Redigera användargrupp",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "Firecrawl API Base URL",
|
"Firecrawl API Base URL": "Firecrawl API Base URL",
|
||||||
"Firecrawl API Key": "Firecrawl API-nyckel",
|
"Firecrawl API Key": "Firecrawl API-nyckel",
|
||||||
"Floating Quick Actions": "",
|
"Floating Quick Actions": "",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "",
|
"Folder": "",
|
||||||
"Folder Background Image": "",
|
"Folder Background Image": "",
|
||||||
"Folder deleted successfully": "Mappen har tagits bort",
|
"Folder deleted successfully": "Mappen har tagits bort",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "Generera",
|
"Generate": "Generera",
|
||||||
"Generate an image": "Generera en bild",
|
"Generate an image": "Generera en bild",
|
||||||
"Generate Image": "Generera bild",
|
"Generate Image": "Generera bild",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "",
|
"Generated Image": "",
|
||||||
"Generating search query": "Genererar sökfråga",
|
"Generating search query": "Genererar sökfråga",
|
||||||
"Generating...": "Genererar...",
|
"Generating...": "Genererar...",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "Minnet har uppdaterats",
|
"Memory updated successfully": "Minnet har uppdaterats",
|
||||||
"Merge Responses": "Sammanfoga svar",
|
"Merge Responses": "Sammanfoga svar",
|
||||||
"Merged Response": "Sammanslaget svar",
|
"Merged Response": "Sammanslaget svar",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "Meddelandebetyg måste vara aktiverat för att använda den här funktionen",
|
"Message rating should be enabled to use this feature": "Meddelandebetyg måste vara aktiverat för att använda den här funktionen",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Meddelanden du skickar efter att du har skapat din länk kommer inte att delas. Användare med URL:en kommer att kunna se den delade chatten.",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Meddelanden du skickar efter att du har skapat din länk kommer inte att delas. Användare med URL:en kommer att kunna se den delade chatten.",
|
||||||
"Microsoft OneDrive": "Microsoft OneDrive",
|
"Microsoft OneDrive": "Microsoft OneDrive",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "Ny anteckning",
|
"New Note": "Ny anteckning",
|
||||||
"New Password": "Nytt lösenord",
|
"New Password": "Nytt lösenord",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "Nytt verktyg",
|
"New Tool": "Nytt verktyg",
|
||||||
"new-channel": "ny-kanal",
|
"new-channel": "ny-kanal",
|
||||||
"Next message": "Nästa meddelande",
|
"Next message": "Nästa meddelande",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Ollama-version",
|
"Ollama Version": "Ollama-version",
|
||||||
"On": "På",
|
"On": "På",
|
||||||
"OneDrive": "OneDrive",
|
"OneDrive": "OneDrive",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "Endast alfanumeriska tecken och bindestreck är tillåtna",
|
"Only alphanumeric characters and hyphens are allowed": "Endast alfanumeriska tecken och bindestreck är tillåtna",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "Endast alfanumeriska tecken och bindestreck är tillåtna i kommandosträngen.",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "Endast alfanumeriska tecken och bindestreck är tillåtna i kommandosträngen.",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Endast samlingar kan redigeras, skapa en ny kunskapsbas för att redigera/lägga till dokument.",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Endast samlingar kan redigeras, skapa en ny kunskapsbas för att redigera/lägga till dokument.",
|
||||||
"Only markdown files are allowed": "Endast markdown-filer är tillåtna",
|
"Only markdown files are allowed": "Endast markdown-filer är tillåtna",
|
||||||
"Only select users and groups with permission can access": "Endast valda användare och grupper med behörighet kan komma åt",
|
"Only select users and groups with permission can access": "Endast valda användare och grupper med behörighet kan komma åt",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "Öppna modal för att konfigurera anslutning",
|
"Open modal to configure connection": "Öppna modal för att konfigurera anslutning",
|
||||||
"Open Modal To Manage Floating Quick Actions": "",
|
"Open Modal To Manage Floating Quick Actions": "",
|
||||||
"Open Modal To Manage Image Compression": "",
|
"Open Modal To Manage Image Compression": "",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "",
|
"Open Sidebar": "",
|
||||||
"Open User Profile Menu": "",
|
"Open User Profile Menu": "",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI kan använda verktyg från alla OpenAPI-servrar.",
|
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI kan använda verktyg från alla OpenAPI-servrar.",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "",
|
"Prefer not to say": "",
|
||||||
"Prefix ID": "Prefix ID",
|
"Prefix ID": "Prefix ID",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefix ID används för att undvika konflikter med andra anslutningar genom att lägga till ett prefix till modell-ID:n - lämna tomt för att inaktivera",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefix ID används för att undvika konflikter med andra anslutningar genom att lägga till ett prefix till modell-ID:n - lämna tomt för att inaktivera",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "Förhandsgranska",
|
"Preview": "Förhandsgranska",
|
||||||
"Previous 30 days": "Föregående 30 dagar",
|
"Previous 30 days": "Föregående 30 dagar",
|
||||||
"Previous 7 days": "Föregående 7 dagar",
|
"Previous 7 days": "Föregående 7 dagar",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "Avvisades när det inte borde ha gjort det",
|
"Refused when it shouldn't have": "Avvisades när det inte borde ha gjort det",
|
||||||
"Regenerate": "Regenerera",
|
"Regenerate": "Regenerera",
|
||||||
"Regenerate Menu": "",
|
"Regenerate Menu": "",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "",
|
"Register Again": "",
|
||||||
"Register Client": "",
|
"Register Client": "",
|
||||||
"Registered": "",
|
"Registered": "",
|
||||||
|
|
@ -1439,6 +1457,7 @@
|
||||||
"Show Formatting Toolbar": "",
|
"Show Formatting Toolbar": "",
|
||||||
"Show image preview": "",
|
"Show image preview": "",
|
||||||
"Show Model": "Visa modell",
|
"Show Model": "Visa modell",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "Visa ditt stöd!",
|
"Show your support!": "Visa ditt stöd!",
|
||||||
"Showcased creativity": "Visade kreativitet",
|
"Showcased creativity": "Visade kreativitet",
|
||||||
"Sign in": "Logga in",
|
"Sign in": "Logga in",
|
||||||
|
|
@ -1474,6 +1493,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "Stopp",
|
"Stop": "Stopp",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "Stoppsekvens",
|
"Stop Sequence": "Stoppsekvens",
|
||||||
"Stream Chat Response": "Strömma chattsvar",
|
"Stream Chat Response": "Strömma chattsvar",
|
||||||
"Stream Delta Chunk Size": "",
|
"Stream Delta Chunk Size": "",
|
||||||
|
|
@ -1503,6 +1523,7 @@
|
||||||
"Tags Generation": "Tagggenerering",
|
"Tags Generation": "Tagggenerering",
|
||||||
"Tags Generation Prompt": "Prompt för tagggenerering",
|
"Tags Generation Prompt": "Prompt för tagggenerering",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Svansfri sampling används för att minska effekten av mindre sannolika tokens från utdata. Ett högre värde (t.ex. 2,0) kommer att minska effekten mer, medan ett värde på 1,0 inaktiverar denna inställning.",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Svansfri sampling används för att minska effekten av mindre sannolika tokens från utdata. Ett högre värde (t.ex. 2,0) kommer att minska effekten mer, medan ett värde på 1,0 inaktiverar denna inställning.",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "Tryck för att avbryta",
|
"Tap to interrupt": "Tryck för att avbryta",
|
||||||
"Task List": "",
|
"Task List": "",
|
||||||
"Task Model": "Uppgiftsmodell",
|
"Task Model": "Uppgiftsmodell",
|
||||||
|
|
@ -1584,6 +1605,7 @@
|
||||||
"Toast notifications for new updates": "Toast-aviseringar för nya uppdateringar",
|
"Toast notifications for new updates": "Toast-aviseringar för nya uppdateringar",
|
||||||
"Today": "Idag",
|
"Today": "Idag",
|
||||||
"Today at {{LOCALIZED_TIME}}": "",
|
"Today at {{LOCALIZED_TIME}}": "",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "Växla om aktuell anslutning är aktiv.",
|
"Toggle whether current connection is active.": "Växla om aktuell anslutning är aktiv.",
|
||||||
"Token": "Token",
|
"Token": "Token",
|
||||||
"Too verbose": "För utförlig",
|
"Too verbose": "För utförlig",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "ใช้โมเดลงานเมื่อทำงานเช่นการสร้างหัวข้อสำหรับการสนทนาและการค้นหาเว็บ",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "ใช้โมเดลงานเมื่อทำงานเช่นการสร้างหัวข้อสำหรับการสนทนาและการค้นหาเว็บ",
|
||||||
"a user": "ผู้ใช้",
|
"a user": "ผู้ใช้",
|
||||||
"About": "เกี่ยวกับ",
|
"About": "เกี่ยวกับ",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "",
|
"Access": "",
|
||||||
"Access Control": "",
|
"Access Control": "",
|
||||||
"Accessible to all users": "",
|
"Accessible to all users": "",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "เพิ่มเนื้อหา",
|
"Add Content": "เพิ่มเนื้อหา",
|
||||||
"Add content here": "เพิ่มเนื้อหาตรงนี้",
|
"Add content here": "เพิ่มเนื้อหาตรงนี้",
|
||||||
"Add Custom Parameter": "",
|
"Add Custom Parameter": "",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "",
|
"Add Details": "",
|
||||||
"Add Files": "เพิ่มไฟล์",
|
"Add Files": "เพิ่มไฟล์",
|
||||||
"Add Group": "เพิ่มกลุ่ม",
|
"Add Group": "เพิ่มกลุ่ม",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "",
|
"Ask": "",
|
||||||
"Ask a question": "",
|
"Ask a question": "",
|
||||||
"Assistant": "",
|
"Assistant": "",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "",
|
"Attach Knowledge": "",
|
||||||
"Attach Notes": "",
|
"Attach Notes": "",
|
||||||
"Attach Webpage": "",
|
"Attach Webpage": "",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "",
|
"Close Banner": "",
|
||||||
"Close Configure Connection Modal": "",
|
"Close Configure Connection Modal": "",
|
||||||
"Close modal": "",
|
"Close modal": "",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "",
|
"Close settings modal": "",
|
||||||
"Close Sidebar": "",
|
"Close Sidebar": "",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "",
|
"Copied to clipboard": "",
|
||||||
"Copy": "คัดลอก",
|
"Copy": "คัดลอก",
|
||||||
"Copy Formatted Text": "",
|
"Copy Formatted Text": "",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "",
|
"Copy link": "",
|
||||||
"Copy Link": "คัดลอกลิงก์",
|
"Copy Link": "คัดลอกลิงก์",
|
||||||
"Copy to clipboard": "",
|
"Copy to clipboard": "",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "",
|
"Edit Default Permissions": "",
|
||||||
"Edit Folder": "",
|
"Edit Folder": "",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "แก้ไขความจำ",
|
"Edit Memory": "แก้ไขความจำ",
|
||||||
"Edit User": "แก้ไขผู้ใช้",
|
"Edit User": "แก้ไขผู้ใช้",
|
||||||
"Edit User Group": "",
|
"Edit User Group": "",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "",
|
"Firecrawl API Base URL": "",
|
||||||
"Firecrawl API Key": "",
|
"Firecrawl API Key": "",
|
||||||
"Floating Quick Actions": "",
|
"Floating Quick Actions": "",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "",
|
"Folder": "",
|
||||||
"Folder Background Image": "",
|
"Folder Background Image": "",
|
||||||
"Folder deleted successfully": "",
|
"Folder deleted successfully": "",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "",
|
"Generate": "",
|
||||||
"Generate an image": "",
|
"Generate an image": "",
|
||||||
"Generate Image": "สร้างภาพ",
|
"Generate Image": "สร้างภาพ",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "",
|
"Generated Image": "",
|
||||||
"Generating search query": "สร้างคำค้นหา",
|
"Generating search query": "สร้างคำค้นหา",
|
||||||
"Generating...": "",
|
"Generating...": "",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "",
|
"Memory updated successfully": "",
|
||||||
"Merge Responses": "",
|
"Merge Responses": "",
|
||||||
"Merged Response": "การตอบกลับที่รวมกัน",
|
"Merged Response": "การตอบกลับที่รวมกัน",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "",
|
"Message rating should be enabled to use this feature": "",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "ข้อความที่คุณส่งหลังจากสร้างลิงก์ของคุณแล้วจะไม่ถูกแชร์ ผู้ใช้ที่มี URL จะสามารถดูแชทที่แชร์ได้",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "ข้อความที่คุณส่งหลังจากสร้างลิงก์ของคุณแล้วจะไม่ถูกแชร์ ผู้ใช้ที่มี URL จะสามารถดูแชทที่แชร์ได้",
|
||||||
"Microsoft OneDrive": "",
|
"Microsoft OneDrive": "",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "",
|
"New Note": "",
|
||||||
"New Password": "รหัสผ่านใหม่",
|
"New Password": "รหัสผ่านใหม่",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "",
|
"New Tool": "",
|
||||||
"new-channel": "",
|
"new-channel": "",
|
||||||
"Next message": "",
|
"Next message": "",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "เวอร์ชั่น Ollama",
|
"Ollama Version": "เวอร์ชั่น Ollama",
|
||||||
"On": "เปิด",
|
"On": "เปิด",
|
||||||
"OneDrive": "",
|
"OneDrive": "",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "",
|
"Only alphanumeric characters and hyphens are allowed": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "อนุญาตให้ใช้เฉพาะอักขระตัวอักษรและตัวเลข รวมถึงเครื่องหมายขีดกลางในสตริงคำสั่งเท่านั้น",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "อนุญาตให้ใช้เฉพาะอักขระตัวอักษรและตัวเลข รวมถึงเครื่องหมายขีดกลางในสตริงคำสั่งเท่านั้น",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
|
||||||
"Only markdown files are allowed": "",
|
"Only markdown files are allowed": "",
|
||||||
"Only select users and groups with permission can access": "",
|
"Only select users and groups with permission can access": "",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "",
|
"Open modal to configure connection": "",
|
||||||
"Open Modal To Manage Floating Quick Actions": "",
|
"Open Modal To Manage Floating Quick Actions": "",
|
||||||
"Open Modal To Manage Image Compression": "",
|
"Open Modal To Manage Image Compression": "",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "",
|
"Open Sidebar": "",
|
||||||
"Open User Profile Menu": "",
|
"Open User Profile Menu": "",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "",
|
"Prefer not to say": "",
|
||||||
"Prefix ID": "",
|
"Prefix ID": "",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "",
|
"Preview": "",
|
||||||
"Previous 30 days": "30 วันที่ผ่านมา",
|
"Previous 30 days": "30 วันที่ผ่านมา",
|
||||||
"Previous 7 days": "7 วันที่ผ่านมา",
|
"Previous 7 days": "7 วันที่ผ่านมา",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "ปฏิเสธเมื่อไม่ควรทำ",
|
"Refused when it shouldn't have": "ปฏิเสธเมื่อไม่ควรทำ",
|
||||||
"Regenerate": "สร้างใหม่",
|
"Regenerate": "สร้างใหม่",
|
||||||
"Regenerate Menu": "",
|
"Regenerate Menu": "",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "",
|
"Register Again": "",
|
||||||
"Register Client": "",
|
"Register Client": "",
|
||||||
"Registered": "",
|
"Registered": "",
|
||||||
|
|
@ -1438,6 +1456,7 @@
|
||||||
"Show Formatting Toolbar": "",
|
"Show Formatting Toolbar": "",
|
||||||
"Show image preview": "",
|
"Show image preview": "",
|
||||||
"Show Model": "",
|
"Show Model": "",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "แสดงการสนับสนุนของคุณ!",
|
"Show your support!": "แสดงการสนับสนุนของคุณ!",
|
||||||
"Showcased creativity": "แสดงความคิดสร้างสรรค์",
|
"Showcased creativity": "แสดงความคิดสร้างสรรค์",
|
||||||
"Sign in": "ลงชื่อเข้าใช้",
|
"Sign in": "ลงชื่อเข้าใช้",
|
||||||
|
|
@ -1473,6 +1492,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "",
|
"Stop": "",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "หยุดลำดับ",
|
"Stop Sequence": "หยุดลำดับ",
|
||||||
"Stream Chat Response": "",
|
"Stream Chat Response": "",
|
||||||
"Stream Delta Chunk Size": "",
|
"Stream Delta Chunk Size": "",
|
||||||
|
|
@ -1502,6 +1522,7 @@
|
||||||
"Tags Generation": "",
|
"Tags Generation": "",
|
||||||
"Tags Generation Prompt": "",
|
"Tags Generation Prompt": "",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "แตะเพื่อขัดจังหวะ",
|
"Tap to interrupt": "แตะเพื่อขัดจังหวะ",
|
||||||
"Task List": "",
|
"Task List": "",
|
||||||
"Task Model": "",
|
"Task Model": "",
|
||||||
|
|
@ -1583,6 +1604,7 @@
|
||||||
"Toast notifications for new updates": "",
|
"Toast notifications for new updates": "",
|
||||||
"Today": "วันนี้",
|
"Today": "วันนี้",
|
||||||
"Today at {{LOCALIZED_TIME}}": "",
|
"Today at {{LOCALIZED_TIME}}": "",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "",
|
"Toggle whether current connection is active.": "",
|
||||||
"Token": "",
|
"Token": "",
|
||||||
"Too verbose": "",
|
"Too verbose": "",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Çatlar we web gözleg soraglary üçin başlyk döretmek ýaly wezipeleri ýerine ýetirýän wagty ulanylýar",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Çatlar we web gözleg soraglary üçin başlyk döretmek ýaly wezipeleri ýerine ýetirýän wagty ulanylýar",
|
||||||
"a user": "ulanyjy",
|
"a user": "ulanyjy",
|
||||||
"About": "Barada",
|
"About": "Barada",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "",
|
"Access": "",
|
||||||
"Access Control": "",
|
"Access Control": "",
|
||||||
"Accessible to all users": "",
|
"Accessible to all users": "",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "",
|
"Add Content": "",
|
||||||
"Add content here": "",
|
"Add content here": "",
|
||||||
"Add Custom Parameter": "",
|
"Add Custom Parameter": "",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "",
|
"Add Details": "",
|
||||||
"Add Files": "Faýllar goş",
|
"Add Files": "Faýllar goş",
|
||||||
"Add Group": "",
|
"Add Group": "",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "",
|
"Ask": "",
|
||||||
"Ask a question": "",
|
"Ask a question": "",
|
||||||
"Assistant": "",
|
"Assistant": "",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "",
|
"Attach Knowledge": "",
|
||||||
"Attach Notes": "",
|
"Attach Notes": "",
|
||||||
"Attach Webpage": "",
|
"Attach Webpage": "",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "",
|
"Close Banner": "",
|
||||||
"Close Configure Connection Modal": "",
|
"Close Configure Connection Modal": "",
|
||||||
"Close modal": "",
|
"Close modal": "",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "",
|
"Close settings modal": "",
|
||||||
"Close Sidebar": "",
|
"Close Sidebar": "",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "",
|
"Copied to clipboard": "",
|
||||||
"Copy": "Göçür",
|
"Copy": "Göçür",
|
||||||
"Copy Formatted Text": "",
|
"Copy Formatted Text": "",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "",
|
"Copy link": "",
|
||||||
"Copy Link": "Baglanyşygy Göçür",
|
"Copy Link": "Baglanyşygy Göçür",
|
||||||
"Copy to clipboard": "",
|
"Copy to clipboard": "",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "",
|
"Edit Default Permissions": "",
|
||||||
"Edit Folder": "",
|
"Edit Folder": "",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "",
|
"Edit Memory": "",
|
||||||
"Edit User": "",
|
"Edit User": "",
|
||||||
"Edit User Group": "",
|
"Edit User Group": "",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "",
|
"Firecrawl API Base URL": "",
|
||||||
"Firecrawl API Key": "",
|
"Firecrawl API Key": "",
|
||||||
"Floating Quick Actions": "",
|
"Floating Quick Actions": "",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "",
|
"Folder": "",
|
||||||
"Folder Background Image": "",
|
"Folder Background Image": "",
|
||||||
"Folder deleted successfully": "",
|
"Folder deleted successfully": "",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "Döret",
|
"Generate": "Döret",
|
||||||
"Generate an image": "",
|
"Generate an image": "",
|
||||||
"Generate Image": "",
|
"Generate Image": "",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "",
|
"Generated Image": "",
|
||||||
"Generating search query": "",
|
"Generating search query": "",
|
||||||
"Generating...": "Döredilýär...",
|
"Generating...": "Döredilýär...",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "",
|
"Memory updated successfully": "",
|
||||||
"Merge Responses": "",
|
"Merge Responses": "",
|
||||||
"Merged Response": "Birleşdirilen jogap",
|
"Merged Response": "Birleşdirilen jogap",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "",
|
"Message rating should be enabled to use this feature": "",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "",
|
||||||
"Microsoft OneDrive": "",
|
"Microsoft OneDrive": "",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "",
|
"New Note": "",
|
||||||
"New Password": "Täze Parol",
|
"New Password": "Täze Parol",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "",
|
"New Tool": "",
|
||||||
"new-channel": "",
|
"new-channel": "",
|
||||||
"Next message": "",
|
"Next message": "",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "",
|
"Ollama Version": "",
|
||||||
"On": "Işjeň",
|
"On": "Işjeň",
|
||||||
"OneDrive": "",
|
"OneDrive": "",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "",
|
"Only alphanumeric characters and hyphens are allowed": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "",
|
||||||
"Only markdown files are allowed": "",
|
"Only markdown files are allowed": "",
|
||||||
"Only select users and groups with permission can access": "",
|
"Only select users and groups with permission can access": "",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "",
|
"Open modal to configure connection": "",
|
||||||
"Open Modal To Manage Floating Quick Actions": "",
|
"Open Modal To Manage Floating Quick Actions": "",
|
||||||
"Open Modal To Manage Image Compression": "",
|
"Open Modal To Manage Image Compression": "",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "",
|
"Open Sidebar": "",
|
||||||
"Open User Profile Menu": "",
|
"Open User Profile Menu": "",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "",
|
"Prefer not to say": "",
|
||||||
"Prefix ID": "",
|
"Prefix ID": "",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "Öň-üşürgi",
|
"Preview": "Öň-üşürgi",
|
||||||
"Previous 30 days": "",
|
"Previous 30 days": "",
|
||||||
"Previous 7 days": "",
|
"Previous 7 days": "",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "",
|
"Refused when it shouldn't have": "",
|
||||||
"Regenerate": "",
|
"Regenerate": "",
|
||||||
"Regenerate Menu": "",
|
"Regenerate Menu": "",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "",
|
"Register Again": "",
|
||||||
"Register Client": "",
|
"Register Client": "",
|
||||||
"Registered": "",
|
"Registered": "",
|
||||||
|
|
@ -1439,6 +1457,7 @@
|
||||||
"Show Formatting Toolbar": "",
|
"Show Formatting Toolbar": "",
|
||||||
"Show image preview": "",
|
"Show image preview": "",
|
||||||
"Show Model": "Modeli Görkez",
|
"Show Model": "Modeli Görkez",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "",
|
"Show your support!": "",
|
||||||
"Showcased creativity": "",
|
"Showcased creativity": "",
|
||||||
"Sign in": "",
|
"Sign in": "",
|
||||||
|
|
@ -1474,6 +1493,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "Bes et",
|
"Stop": "Bes et",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "",
|
"Stop Sequence": "",
|
||||||
"Stream Chat Response": "",
|
"Stream Chat Response": "",
|
||||||
"Stream Delta Chunk Size": "",
|
"Stream Delta Chunk Size": "",
|
||||||
|
|
@ -1503,6 +1523,7 @@
|
||||||
"Tags Generation": "",
|
"Tags Generation": "",
|
||||||
"Tags Generation Prompt": "",
|
"Tags Generation Prompt": "",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "",
|
"Tap to interrupt": "",
|
||||||
"Task List": "",
|
"Task List": "",
|
||||||
"Task Model": "",
|
"Task Model": "",
|
||||||
|
|
@ -1584,6 +1605,7 @@
|
||||||
"Toast notifications for new updates": "",
|
"Toast notifications for new updates": "",
|
||||||
"Today": "Şu gün",
|
"Today": "Şu gün",
|
||||||
"Today at {{LOCALIZED_TIME}}": "",
|
"Today at {{LOCALIZED_TIME}}": "",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "",
|
"Toggle whether current connection is active.": "",
|
||||||
"Token": "Token",
|
"Token": "Token",
|
||||||
"Too verbose": "",
|
"Too verbose": "",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Bir görev modeli, sohbetler ve web arama sorguları için başlık oluşturma gibi görevleri yerine getirirken kullanılır",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Bir görev modeli, sohbetler ve web arama sorguları için başlık oluşturma gibi görevleri yerine getirirken kullanılır",
|
||||||
"a user": "bir kullanıcı",
|
"a user": "bir kullanıcı",
|
||||||
"About": "Hakkında",
|
"About": "Hakkında",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "Erişim",
|
"Access": "Erişim",
|
||||||
"Access Control": "Erişim Kontrolü",
|
"Access Control": "Erişim Kontrolü",
|
||||||
"Accessible to all users": "Tüm kullanıcılara erişilebilir",
|
"Accessible to all users": "Tüm kullanıcılara erişilebilir",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "İçerik Ekle",
|
"Add Content": "İçerik Ekle",
|
||||||
"Add content here": "Buraya içerik ekleyin",
|
"Add content here": "Buraya içerik ekleyin",
|
||||||
"Add Custom Parameter": "Özel Parametre Ekle",
|
"Add Custom Parameter": "Özel Parametre Ekle",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "",
|
"Add Details": "",
|
||||||
"Add Files": "Dosyalar Ekle",
|
"Add Files": "Dosyalar Ekle",
|
||||||
"Add Group": "Grup Ekle",
|
"Add Group": "Grup Ekle",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "Sor",
|
"Ask": "Sor",
|
||||||
"Ask a question": "Bir soru sorun",
|
"Ask a question": "Bir soru sorun",
|
||||||
"Assistant": "Asistan",
|
"Assistant": "Asistan",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "",
|
"Attach Knowledge": "",
|
||||||
"Attach Notes": "",
|
"Attach Notes": "",
|
||||||
"Attach Webpage": "",
|
"Attach Webpage": "",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "",
|
"Close Banner": "",
|
||||||
"Close Configure Connection Modal": "",
|
"Close Configure Connection Modal": "",
|
||||||
"Close modal": "",
|
"Close modal": "",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "",
|
"Close settings modal": "",
|
||||||
"Close Sidebar": "",
|
"Close Sidebar": "",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "Panoya kopyalandı",
|
"Copied to clipboard": "Panoya kopyalandı",
|
||||||
"Copy": "Kopyala",
|
"Copy": "Kopyala",
|
||||||
"Copy Formatted Text": "Biçimlenirilmiş Metni Kopyala",
|
"Copy Formatted Text": "Biçimlenirilmiş Metni Kopyala",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "Bağlantıyı kopyala",
|
"Copy link": "Bağlantıyı kopyala",
|
||||||
"Copy Link": "Bağlantıyı Kopyala",
|
"Copy Link": "Bağlantıyı Kopyala",
|
||||||
"Copy to clipboard": "Panoya kopyala",
|
"Copy to clipboard": "Panoya kopyala",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "Varsayılan İzinleri Düzenle",
|
"Edit Default Permissions": "Varsayılan İzinleri Düzenle",
|
||||||
"Edit Folder": "",
|
"Edit Folder": "",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "Belleği Düzenle",
|
"Edit Memory": "Belleği Düzenle",
|
||||||
"Edit User": "Kullanıcıyı Düzenle",
|
"Edit User": "Kullanıcıyı Düzenle",
|
||||||
"Edit User Group": "Kullanıcı Grubunu Düzenle",
|
"Edit User Group": "Kullanıcı Grubunu Düzenle",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "",
|
"Firecrawl API Base URL": "",
|
||||||
"Firecrawl API Key": "",
|
"Firecrawl API Key": "",
|
||||||
"Floating Quick Actions": "",
|
"Floating Quick Actions": "",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "Klasör",
|
"Folder": "Klasör",
|
||||||
"Folder Background Image": "Klasör Arka Plan Resmi",
|
"Folder Background Image": "Klasör Arka Plan Resmi",
|
||||||
"Folder deleted successfully": "Klasör başarıyla silindi",
|
"Folder deleted successfully": "Klasör başarıyla silindi",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "Oluştur",
|
"Generate": "Oluştur",
|
||||||
"Generate an image": "Bir Görsel Oluştur",
|
"Generate an image": "Bir Görsel Oluştur",
|
||||||
"Generate Image": "Görsel Üret",
|
"Generate Image": "Görsel Üret",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "",
|
"Generated Image": "",
|
||||||
"Generating search query": "Arama sorgusu oluşturma",
|
"Generating search query": "Arama sorgusu oluşturma",
|
||||||
"Generating...": "Oluşturuluyor...",
|
"Generating...": "Oluşturuluyor...",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "Bellek başarıyla güncellendi",
|
"Memory updated successfully": "Bellek başarıyla güncellendi",
|
||||||
"Merge Responses": "Yanıtları Birleştir",
|
"Merge Responses": "Yanıtları Birleştir",
|
||||||
"Merged Response": "Birleştirilmiş Yanıt",
|
"Merged Response": "Birleştirilmiş Yanıt",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "Bu özelliği kullanmak için mesaj derecelendirmesi etkinleştirilmelidir",
|
"Message rating should be enabled to use this feature": "Bu özelliği kullanmak için mesaj derecelendirmesi etkinleştirilmelidir",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Bağlantınızı oluşturduktan sonra gönderdiğiniz mesajlar paylaşılmayacaktır. URL'ye sahip kullanıcılar paylaşılan sohbeti görüntüleyebilecektir.",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Bağlantınızı oluşturduktan sonra gönderdiğiniz mesajlar paylaşılmayacaktır. URL'ye sahip kullanıcılar paylaşılan sohbeti görüntüleyebilecektir.",
|
||||||
"Microsoft OneDrive": "Microsoft OneDrive",
|
"Microsoft OneDrive": "Microsoft OneDrive",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "Yeni Not",
|
"New Note": "Yeni Not",
|
||||||
"New Password": "Yeni Parola",
|
"New Password": "Yeni Parola",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "",
|
"New Tool": "",
|
||||||
"new-channel": "yeni-kanal",
|
"new-channel": "yeni-kanal",
|
||||||
"Next message": "",
|
"Next message": "",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Ollama Sürümü",
|
"Ollama Version": "Ollama Sürümü",
|
||||||
"On": "Açık",
|
"On": "Açık",
|
||||||
"OneDrive": "OneDrive",
|
"OneDrive": "OneDrive",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "Yalnızca alfasayısal karakterler ve tireler kabul edilir",
|
"Only alphanumeric characters and hyphens are allowed": "Yalnızca alfasayısal karakterler ve tireler kabul edilir",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "Komut dizisinde yalnızca alfasayısal karakterler ve tireler kabul edilir.",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "Komut dizisinde yalnızca alfasayısal karakterler ve tireler kabul edilir.",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Yalnızca koleksiyonlar düzenlenebilir, belgeleri düzenlemek/eklemek için yeni bir bilgi tabanı oluşturun.",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Yalnızca koleksiyonlar düzenlenebilir, belgeleri düzenlemek/eklemek için yeni bir bilgi tabanı oluşturun.",
|
||||||
"Only markdown files are allowed": "Yalnızca markdown biçimli dosyalar kullanılabilir",
|
"Only markdown files are allowed": "Yalnızca markdown biçimli dosyalar kullanılabilir",
|
||||||
"Only select users and groups with permission can access": "İzinli kullanıcılar ve gruplar yalnızca erişebilir",
|
"Only select users and groups with permission can access": "İzinli kullanıcılar ve gruplar yalnızca erişebilir",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "",
|
"Open modal to configure connection": "",
|
||||||
"Open Modal To Manage Floating Quick Actions": "",
|
"Open Modal To Manage Floating Quick Actions": "",
|
||||||
"Open Modal To Manage Image Compression": "",
|
"Open Modal To Manage Image Compression": "",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "",
|
"Open Sidebar": "",
|
||||||
"Open User Profile Menu": "",
|
"Open User Profile Menu": "",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI OpenAPI tarafından sağlanan araçları kullanabilir",
|
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI OpenAPI tarafından sağlanan araçları kullanabilir",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "",
|
"Prefer not to say": "",
|
||||||
"Prefix ID": "",
|
"Prefix ID": "",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "",
|
"Preview": "",
|
||||||
"Previous 30 days": "Önceki 30 gün",
|
"Previous 30 days": "Önceki 30 gün",
|
||||||
"Previous 7 days": "Önceki 7 gün",
|
"Previous 7 days": "Önceki 7 gün",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "Reddedilmemesi gerekirken reddedildi",
|
"Refused when it shouldn't have": "Reddedilmemesi gerekirken reddedildi",
|
||||||
"Regenerate": "Tekrar Oluştur",
|
"Regenerate": "Tekrar Oluştur",
|
||||||
"Regenerate Menu": "",
|
"Regenerate Menu": "",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "",
|
"Register Again": "",
|
||||||
"Register Client": "",
|
"Register Client": "",
|
||||||
"Registered": "",
|
"Registered": "",
|
||||||
|
|
@ -1439,6 +1457,7 @@
|
||||||
"Show Formatting Toolbar": "",
|
"Show Formatting Toolbar": "",
|
||||||
"Show image preview": "",
|
"Show image preview": "",
|
||||||
"Show Model": "Modeli Göster",
|
"Show Model": "Modeli Göster",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "Desteğinizi gösterin!",
|
"Show your support!": "Desteğinizi gösterin!",
|
||||||
"Showcased creativity": "Sergilenen yaratıcılık",
|
"Showcased creativity": "Sergilenen yaratıcılık",
|
||||||
"Sign in": "Oturum aç",
|
"Sign in": "Oturum aç",
|
||||||
|
|
@ -1474,6 +1493,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "Durdur",
|
"Stop": "Durdur",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "Diziyi Durdur",
|
"Stop Sequence": "Diziyi Durdur",
|
||||||
"Stream Chat Response": "Akış Sohbet Yanıtı",
|
"Stream Chat Response": "Akış Sohbet Yanıtı",
|
||||||
"Stream Delta Chunk Size": "",
|
"Stream Delta Chunk Size": "",
|
||||||
|
|
@ -1503,6 +1523,7 @@
|
||||||
"Tags Generation": "Etiketler Oluşturma",
|
"Tags Generation": "Etiketler Oluşturma",
|
||||||
"Tags Generation Prompt": "Etiketler Oluşturma Promptu",
|
"Tags Generation Prompt": "Etiketler Oluşturma Promptu",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "Durdurmak için dokunun",
|
"Tap to interrupt": "Durdurmak için dokunun",
|
||||||
"Task List": "",
|
"Task List": "",
|
||||||
"Task Model": "",
|
"Task Model": "",
|
||||||
|
|
@ -1584,6 +1605,7 @@
|
||||||
"Toast notifications for new updates": "",
|
"Toast notifications for new updates": "",
|
||||||
"Today": "Bugün",
|
"Today": "Bugün",
|
||||||
"Today at {{LOCALIZED_TIME}}": "",
|
"Today at {{LOCALIZED_TIME}}": "",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "",
|
"Toggle whether current connection is active.": "",
|
||||||
"Token": "Birim",
|
"Token": "Birim",
|
||||||
"Too verbose": "Çok ayrıntılı",
|
"Too verbose": "Çok ayrıntılı",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "سۆھبەت ياكى تور ئىزدەش سۇئالىنىڭ تېمىسىنى ھاسىل قىلىشقا ئوخشىغان ۋەزىپىلەر ئۈچۈن ۋەزىپە مودېلى ئىشلىتىلىدۇ",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "سۆھبەت ياكى تور ئىزدەش سۇئالىنىڭ تېمىسىنى ھاسىل قىلىشقا ئوخشىغان ۋەزىپىلەر ئۈچۈن ۋەزىپە مودېلى ئىشلىتىلىدۇ",
|
||||||
"a user": "ئىشلەتكۈچى",
|
"a user": "ئىشلەتكۈچى",
|
||||||
"About": "ھەققىدە",
|
"About": "ھەققىدە",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "زىيارەت",
|
"Access": "زىيارەت",
|
||||||
"Access Control": "زىيارەت باشقۇرۇش",
|
"Access Control": "زىيارەت باشقۇرۇش",
|
||||||
"Accessible to all users": "بارلىق ئىشلەتكۈچىلەر كىرەلەيدىغان",
|
"Accessible to all users": "بارلىق ئىشلەتكۈچىلەر كىرەلەيدىغان",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "مەزمۇن قوشۇش",
|
"Add Content": "مەزمۇن قوشۇش",
|
||||||
"Add content here": "مەزمۇننى بۇ يەرگە قوشۇڭ",
|
"Add content here": "مەزمۇننى بۇ يەرگە قوشۇڭ",
|
||||||
"Add Custom Parameter": "ئۆزلۈك پارامېتىر قوشۇش",
|
"Add Custom Parameter": "ئۆزلۈك پارامېتىر قوشۇش",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "",
|
"Add Details": "",
|
||||||
"Add Files": "ھۆججەتلەر قوشۇش",
|
"Add Files": "ھۆججەتلەر قوشۇش",
|
||||||
"Add Group": "گۇرۇپپا قوشۇش",
|
"Add Group": "گۇرۇپپا قوشۇش",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "سوراڭ",
|
"Ask": "سوراڭ",
|
||||||
"Ask a question": "سؤئال سوراڭ",
|
"Ask a question": "سؤئال سوراڭ",
|
||||||
"Assistant": "ياردەمچى",
|
"Assistant": "ياردەمچى",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "",
|
"Attach Knowledge": "",
|
||||||
"Attach Notes": "",
|
"Attach Notes": "",
|
||||||
"Attach Webpage": "",
|
"Attach Webpage": "",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "",
|
"Close Banner": "",
|
||||||
"Close Configure Connection Modal": "",
|
"Close Configure Connection Modal": "",
|
||||||
"Close modal": "مودالنى يېپىش",
|
"Close modal": "مودالنى يېپىش",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "تەڭشەك مودالىنى يېپىش",
|
"Close settings modal": "تەڭشەك مودالىنى يېپىش",
|
||||||
"Close Sidebar": "",
|
"Close Sidebar": "",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "چاپلاش تاختىسىغا كۆچۈرۈلدى",
|
"Copied to clipboard": "چاپلاش تاختىسىغا كۆچۈرۈلدى",
|
||||||
"Copy": "كۆچۈرۈش",
|
"Copy": "كۆچۈرۈش",
|
||||||
"Copy Formatted Text": "فورماتلانغان تېكستنى كۆچۈرۈش",
|
"Copy Formatted Text": "فورماتلانغان تېكستنى كۆچۈرۈش",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "",
|
"Copy link": "",
|
||||||
"Copy Link": "ئۇلانما كۆچۈرۈش",
|
"Copy Link": "ئۇلانما كۆچۈرۈش",
|
||||||
"Copy to clipboard": "چاپلاش تاختىسىغا كۆچۈرۈش",
|
"Copy to clipboard": "چاپلاش تاختىسىغا كۆچۈرۈش",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "كۆڭۈلدىكى ھوقۇقلارنى تەھرىرلەش",
|
"Edit Default Permissions": "كۆڭۈلدىكى ھوقۇقلارنى تەھرىرلەش",
|
||||||
"Edit Folder": "",
|
"Edit Folder": "",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "ئەسلەتمە تەھرىرلەش",
|
"Edit Memory": "ئەسلەتمە تەھرىرلەش",
|
||||||
"Edit User": "ئىشلەتكۈچى تەھرىرلەش",
|
"Edit User": "ئىشلەتكۈچى تەھرىرلەش",
|
||||||
"Edit User Group": "ئىشلەتكۈچى گۇرۇپپىسى تەھرىرلەش",
|
"Edit User Group": "ئىشلەتكۈچى گۇرۇپپىسى تەھرىرلەش",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "Firecrawl API ئاساسىي URL",
|
"Firecrawl API Base URL": "Firecrawl API ئاساسىي URL",
|
||||||
"Firecrawl API Key": "Firecrawl API ئاچقۇچى",
|
"Firecrawl API Key": "Firecrawl API ئاچقۇچى",
|
||||||
"Floating Quick Actions": "",
|
"Floating Quick Actions": "",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "",
|
"Folder": "",
|
||||||
"Folder Background Image": "",
|
"Folder Background Image": "",
|
||||||
"Folder deleted successfully": "قىسقۇچ مۇۋەپپەقىيەتلىك ئۆچۈرۈلدى",
|
"Folder deleted successfully": "قىسقۇچ مۇۋەپپەقىيەتلىك ئۆچۈرۈلدى",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "ھاسىل قىلىش",
|
"Generate": "ھاسىل قىلىش",
|
||||||
"Generate an image": "رەسىم ھاسىل قىلىش",
|
"Generate an image": "رەسىم ھاسىل قىلىش",
|
||||||
"Generate Image": "رەسىم ھاسىل قىلىش",
|
"Generate Image": "رەسىم ھاسىل قىلىش",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "",
|
"Generated Image": "",
|
||||||
"Generating search query": "ئىزدەش سۇئالى ھاسىل قىلىنىۋاتىدۇ",
|
"Generating search query": "ئىزدەش سۇئالى ھاسىل قىلىنىۋاتىدۇ",
|
||||||
"Generating...": "ھاسىل قىلىنىۋاتىدۇ...",
|
"Generating...": "ھاسىل قىلىنىۋاتىدۇ...",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "ئەسلەتمە مۇۋەپپەقىيەتلىك يېڭىلاندى",
|
"Memory updated successfully": "ئەسلەتمە مۇۋەپپەقىيەتلىك يېڭىلاندى",
|
||||||
"Merge Responses": "ئىنكاسلارنى بىرلەشتۈرۈش",
|
"Merge Responses": "ئىنكاسلارنى بىرلەشتۈرۈش",
|
||||||
"Merged Response": "بىرلەشتۈرۈلگەن ئىنكاس",
|
"Merged Response": "بىرلەشتۈرۈلگەن ئىنكاس",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "بۇ ئىقتىدار ئۈچۈن ئۇچۇر باھالاشنى قوزغىتىڭ",
|
"Message rating should be enabled to use this feature": "بۇ ئىقتىدار ئۈچۈن ئۇچۇر باھالاشنى قوزغىتىڭ",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "ئۇلانما قۇرغاندىن كېيىن يوللىغان ئۇچۇرلار ھەمبەھىرلەنمەيدۇ. URL غا ئىگە ئىشلەتكۈچىلەر ھەمبەھىرلەنگەن سۆھبەتنى كۆرەلەيدۇ.",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "ئۇلانما قۇرغاندىن كېيىن يوللىغان ئۇچۇرلار ھەمبەھىرلەنمەيدۇ. URL غا ئىگە ئىشلەتكۈچىلەر ھەمبەھىرلەنگەن سۆھبەتنى كۆرەلەيدۇ.",
|
||||||
"Microsoft OneDrive": "Microsoft OneDrive",
|
"Microsoft OneDrive": "Microsoft OneDrive",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "يېڭى خاتىرە",
|
"New Note": "يېڭى خاتىرە",
|
||||||
"New Password": "يېڭى پارول",
|
"New Password": "يېڭى پارول",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "يېڭى قورال",
|
"New Tool": "يېڭى قورال",
|
||||||
"new-channel": "يېڭى-قانال",
|
"new-channel": "يېڭى-قانال",
|
||||||
"Next message": "كېيىنكى ئۇچۇر",
|
"Next message": "كېيىنكى ئۇچۇر",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Ollama نەشرى",
|
"Ollama Version": "Ollama نەشرى",
|
||||||
"On": "قوزغىتىلغان",
|
"On": "قوزغىتىلغان",
|
||||||
"OneDrive": "OneDrive",
|
"OneDrive": "OneDrive",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "پەقەت ھەرپ، سان ۋە چەكىت ئىشلىتىشكە بولىدۇ",
|
"Only alphanumeric characters and hyphens are allowed": "پەقەت ھەرپ، سان ۋە چەكىت ئىشلىتىشكە بولىدۇ",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "بۇيرۇق تىزىقىدا پەقەت ھەرپ، سان ۋە چەكىت ئىشلىتىشكە بولىدۇ.",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "بۇيرۇق تىزىقىدا پەقەت ھەرپ، سان ۋە چەكىت ئىشلىتىشكە بولىدۇ.",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "پەقەت توپلام تەھرىرلەشكە بولىدۇ، ھۆججەت قوشۇش/تەھرىرلەش ئۈچۈن يېڭى بىلىم ئاساسى قۇرۇڭ.",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "پەقەت توپلام تەھرىرلەشكە بولىدۇ، ھۆججەت قوشۇش/تەھرىرلەش ئۈچۈن يېڭى بىلىم ئاساسى قۇرۇڭ.",
|
||||||
"Only markdown files are allowed": "پەقەت markdown ھۆججىتى ئىشلىتىشكە بولىدۇ",
|
"Only markdown files are allowed": "پەقەت markdown ھۆججىتى ئىشلىتىشكە بولىدۇ",
|
||||||
"Only select users and groups with permission can access": "پەقەت ھوقۇقى بار تاللانغان ئىشلەتكۈچى ۋە گۇرۇپپىلارلا زىيارەت قىلالايدۇ",
|
"Only select users and groups with permission can access": "پەقەت ھوقۇقى بار تاللانغان ئىشلەتكۈچى ۋە گۇرۇپپىلارلا زىيارەت قىلالايدۇ",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "ئۇلىنىش تەڭشەك مودالىنى ئېچىڭ",
|
"Open modal to configure connection": "ئۇلىنىش تەڭشەك مودالىنى ئېچىڭ",
|
||||||
"Open Modal To Manage Floating Quick Actions": "",
|
"Open Modal To Manage Floating Quick Actions": "",
|
||||||
"Open Modal To Manage Image Compression": "",
|
"Open Modal To Manage Image Compression": "",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "",
|
"Open Sidebar": "",
|
||||||
"Open User Profile Menu": "",
|
"Open User Profile Menu": "",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI ھەر قانداق OpenAPI مۇلازىمېتىرلىرىدىكى قوراللارنى ئىشلىتەلىدۇ.",
|
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI ھەر قانداق OpenAPI مۇلازىمېتىرلىرىدىكى قوراللارنى ئىشلىتەلىدۇ.",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "",
|
"Prefer not to say": "",
|
||||||
"Prefix ID": "Prefix ID",
|
"Prefix ID": "Prefix ID",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "باشقا ئۇلىنىش بىلەن توقۇنۇشنىڭ ئالدىنى ئېلىش ئۈچۈن مودېل ID غا Prefix قوشۇلىدۇ - چەكلەش ئۈچۈن بوش قالدۇرۇڭ",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "باشقا ئۇلىنىش بىلەن توقۇنۇشنىڭ ئالدىنى ئېلىش ئۈچۈن مودېل ID غا Prefix قوشۇلىدۇ - چەكلەش ئۈچۈن بوش قالدۇرۇڭ",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "ئالدىن كۆرۈش",
|
"Preview": "ئالدىن كۆرۈش",
|
||||||
"Previous 30 days": "ئالدىنقى 30 كۈن",
|
"Previous 30 days": "ئالدىنقى 30 كۈن",
|
||||||
"Previous 7 days": "ئالدىنقى 7 كۈن",
|
"Previous 7 days": "ئالدىنقى 7 كۈن",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "رەت قىلماسلىق كېرەك ئىدى",
|
"Refused when it shouldn't have": "رەت قىلماسلىق كېرەك ئىدى",
|
||||||
"Regenerate": "قايتا ھاسىل قىلىش",
|
"Regenerate": "قايتا ھاسىل قىلىش",
|
||||||
"Regenerate Menu": "",
|
"Regenerate Menu": "",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "",
|
"Register Again": "",
|
||||||
"Register Client": "",
|
"Register Client": "",
|
||||||
"Registered": "",
|
"Registered": "",
|
||||||
|
|
@ -1439,6 +1457,7 @@
|
||||||
"Show Formatting Toolbar": "",
|
"Show Formatting Toolbar": "",
|
||||||
"Show image preview": "",
|
"Show image preview": "",
|
||||||
"Show Model": "مودېل كۆرسىتىش",
|
"Show Model": "مودېل كۆرسىتىش",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "قوللاڭ!",
|
"Show your support!": "قوللاڭ!",
|
||||||
"Showcased creativity": "يېڭىلىق كۆرسىتىلدى",
|
"Showcased creativity": "يېڭىلىق كۆرسىتىلدى",
|
||||||
"Sign in": "كىرىش",
|
"Sign in": "كىرىش",
|
||||||
|
|
@ -1474,6 +1493,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "توختات",
|
"Stop": "توختات",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "توختاش تىزىقى",
|
"Stop Sequence": "توختاش تىزىقى",
|
||||||
"Stream Chat Response": "سۆھبەت ئىنكاسىنى ئېقىم قىلىش",
|
"Stream Chat Response": "سۆھبەت ئىنكاسىنى ئېقىم قىلىش",
|
||||||
"Stream Delta Chunk Size": "",
|
"Stream Delta Chunk Size": "",
|
||||||
|
|
@ -1503,6 +1523,7 @@
|
||||||
"Tags Generation": "تەغ ھاسىل قىلىش",
|
"Tags Generation": "تەغ ھاسىل قىلىش",
|
||||||
"Tags Generation Prompt": "تەغ ھاسىل قىلىش تۈرتكەسى",
|
"Tags Generation Prompt": "تەغ ھاسىل قىلىش تۈرتكەسى",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "ئىھتىماللىقى تۆۋەن ئىملەرنىڭ تەسىرىنى ئازايتىش ئۈچۈن tail free sampling ئىشلىتىلىدۇ. چوڭ قىممەت (مەسىلەن: 2.0) تەسىرىنى تېخىمۇ ئازايتىدۇ، 1.0 بولسا چەكلەنگەن.",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "ئىھتىماللىقى تۆۋەن ئىملەرنىڭ تەسىرىنى ئازايتىش ئۈچۈن tail free sampling ئىشلىتىلىدۇ. چوڭ قىممەت (مەسىلەن: 2.0) تەسىرىنى تېخىمۇ ئازايتىدۇ، 1.0 بولسا چەكلەنگەن.",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "توختاتماقچى بولسىڭىز چېكىڭ",
|
"Tap to interrupt": "توختاتماقچى بولسىڭىز چېكىڭ",
|
||||||
"Task List": "",
|
"Task List": "",
|
||||||
"Task Model": "ۋەزىپە مودېلى",
|
"Task Model": "ۋەزىپە مودېلى",
|
||||||
|
|
@ -1584,6 +1605,7 @@
|
||||||
"Toast notifications for new updates": "يېڭىلىق ئۇقتۇرۇشى (toast)",
|
"Toast notifications for new updates": "يېڭىلىق ئۇقتۇرۇشى (toast)",
|
||||||
"Today": "بۈگۈن",
|
"Today": "بۈگۈن",
|
||||||
"Today at {{LOCALIZED_TIME}}": "",
|
"Today at {{LOCALIZED_TIME}}": "",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "ھازىرقى ئۇلىنىشنىڭ ئاكتىپ ياكى ئەمەسلىكىنى ئالماشتۇرۇش.",
|
"Toggle whether current connection is active.": "ھازىرقى ئۇلىنىشنىڭ ئاكتىپ ياكى ئەمەسلىكىنى ئالماشتۇرۇش.",
|
||||||
"Token": "ئىم",
|
"Token": "ئىم",
|
||||||
"Too verbose": "بەك ئۇزۇن",
|
"Too verbose": "بەك ئۇزۇن",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Модель задач використовується при виконанні таких завдань, як генерація заголовків для чатів та пошукових запитів в Інтернеті",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Модель задач використовується при виконанні таких завдань, як генерація заголовків для чатів та пошукових запитів в Інтернеті",
|
||||||
"a user": "користувача",
|
"a user": "користувача",
|
||||||
"About": "Про програму",
|
"About": "Про програму",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "Доступ",
|
"Access": "Доступ",
|
||||||
"Access Control": "Контроль доступу",
|
"Access Control": "Контроль доступу",
|
||||||
"Accessible to all users": "Доступно всім користувачам",
|
"Accessible to all users": "Доступно всім користувачам",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "Додати вміст",
|
"Add Content": "Додати вміст",
|
||||||
"Add content here": "Додайте вміст сюди",
|
"Add content here": "Додайте вміст сюди",
|
||||||
"Add Custom Parameter": "",
|
"Add Custom Parameter": "",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "",
|
"Add Details": "",
|
||||||
"Add Files": "Додати файли",
|
"Add Files": "Додати файли",
|
||||||
"Add Group": "Додати групу",
|
"Add Group": "Додати групу",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "Запитати",
|
"Ask": "Запитати",
|
||||||
"Ask a question": "Задати питання",
|
"Ask a question": "Задати питання",
|
||||||
"Assistant": "Асистент",
|
"Assistant": "Асистент",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "",
|
"Attach Knowledge": "",
|
||||||
"Attach Notes": "",
|
"Attach Notes": "",
|
||||||
"Attach Webpage": "",
|
"Attach Webpage": "",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "",
|
"Close Banner": "",
|
||||||
"Close Configure Connection Modal": "",
|
"Close Configure Connection Modal": "",
|
||||||
"Close modal": "",
|
"Close modal": "",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "",
|
"Close settings modal": "",
|
||||||
"Close Sidebar": "",
|
"Close Sidebar": "",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "Скопійовано в буфер обміну",
|
"Copied to clipboard": "Скопійовано в буфер обміну",
|
||||||
"Copy": "Копіювати",
|
"Copy": "Копіювати",
|
||||||
"Copy Formatted Text": "",
|
"Copy Formatted Text": "",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "",
|
"Copy link": "",
|
||||||
"Copy Link": "Копіювати посилання",
|
"Copy Link": "Копіювати посилання",
|
||||||
"Copy to clipboard": "Копіювати в буфер обміну",
|
"Copy to clipboard": "Копіювати в буфер обміну",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "Редагувати дозволи за замовчуванням",
|
"Edit Default Permissions": "Редагувати дозволи за замовчуванням",
|
||||||
"Edit Folder": "",
|
"Edit Folder": "",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "Редагувати пам'ять",
|
"Edit Memory": "Редагувати пам'ять",
|
||||||
"Edit User": "Редагувати користувача",
|
"Edit User": "Редагувати користувача",
|
||||||
"Edit User Group": "Редагувати групу користувачів",
|
"Edit User Group": "Редагувати групу користувачів",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "",
|
"Firecrawl API Base URL": "",
|
||||||
"Firecrawl API Key": "",
|
"Firecrawl API Key": "",
|
||||||
"Floating Quick Actions": "",
|
"Floating Quick Actions": "",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "",
|
"Folder": "",
|
||||||
"Folder Background Image": "",
|
"Folder Background Image": "",
|
||||||
"Folder deleted successfully": "Папку успішно видалено",
|
"Folder deleted successfully": "Папку успішно видалено",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "",
|
"Generate": "",
|
||||||
"Generate an image": "Згенерувати зображення",
|
"Generate an image": "Згенерувати зображення",
|
||||||
"Generate Image": "Створити зображення",
|
"Generate Image": "Створити зображення",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "",
|
"Generated Image": "",
|
||||||
"Generating search query": "Сформувати пошуковий запит",
|
"Generating search query": "Сформувати пошуковий запит",
|
||||||
"Generating...": "",
|
"Generating...": "",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "Пам'ять успішно оновлено",
|
"Memory updated successfully": "Пам'ять успішно оновлено",
|
||||||
"Merge Responses": "Об'єднати відповіді",
|
"Merge Responses": "Об'єднати відповіді",
|
||||||
"Merged Response": "Об'єднана відповідь",
|
"Merged Response": "Об'єднана відповідь",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "Оцінювання повідомлень має бути увімкнено для використання цієї функції.",
|
"Message rating should be enabled to use this feature": "Оцінювання повідомлень має бути увімкнено для використання цієї функції.",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Повідомлення, які ви надішлете після створення посилання, не будуть доступні для інших. Користувачі, які мають URL, зможуть переглядати спільний чат.",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Повідомлення, які ви надішлете після створення посилання, не будуть доступні для інших. Користувачі, які мають URL, зможуть переглядати спільний чат.",
|
||||||
"Microsoft OneDrive": "",
|
"Microsoft OneDrive": "",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "",
|
"New Note": "",
|
||||||
"New Password": "Новий пароль",
|
"New Password": "Новий пароль",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "",
|
"New Tool": "",
|
||||||
"new-channel": "новий-канал",
|
"new-channel": "новий-канал",
|
||||||
"Next message": "",
|
"Next message": "",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Версія Ollama",
|
"Ollama Version": "Версія Ollama",
|
||||||
"On": "Увімк",
|
"On": "Увімк",
|
||||||
"OneDrive": "OneDrive",
|
"OneDrive": "OneDrive",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "Дозволені тільки алфавітно-цифрові символи та дефіси",
|
"Only alphanumeric characters and hyphens are allowed": "Дозволені тільки алфавітно-цифрові символи та дефіси",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "У рядку команди дозволено використовувати лише алфавітно-цифрові символи та дефіси.",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "У рядку команди дозволено використовувати лише алфавітно-цифрові символи та дефіси.",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Редагувати можна лише колекції, створіть нову базу знань, щоб редагувати або додавати документи.",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Редагувати можна лише колекції, створіть нову базу знань, щоб редагувати або додавати документи.",
|
||||||
"Only markdown files are allowed": "",
|
"Only markdown files are allowed": "",
|
||||||
"Only select users and groups with permission can access": "Тільки вибрані користувачі та групи з дозволом можуть отримати доступ",
|
"Only select users and groups with permission can access": "Тільки вибрані користувачі та групи з дозволом можуть отримати доступ",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "",
|
"Open modal to configure connection": "",
|
||||||
"Open Modal To Manage Floating Quick Actions": "",
|
"Open Modal To Manage Floating Quick Actions": "",
|
||||||
"Open Modal To Manage Image Compression": "",
|
"Open Modal To Manage Image Compression": "",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "",
|
"Open Sidebar": "",
|
||||||
"Open User Profile Menu": "",
|
"Open User Profile Menu": "",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "",
|
"Prefer not to say": "",
|
||||||
"Prefix ID": "ID префікса",
|
"Prefix ID": "ID префікса",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "ID префікса використовується для уникнення конфліктів з іншими підключеннями шляхом додавання префікса до ID моделей — залиште порожнім, щоб вимкнути",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "ID префікса використовується для уникнення конфліктів з іншими підключеннями шляхом додавання префікса до ID моделей — залиште порожнім, щоб вимкнути",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "",
|
"Preview": "",
|
||||||
"Previous 30 days": "Попередні 30 днів",
|
"Previous 30 days": "Попередні 30 днів",
|
||||||
"Previous 7 days": "Попередні 7 днів",
|
"Previous 7 days": "Попередні 7 днів",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "Відмовив, коли не мав би",
|
"Refused when it shouldn't have": "Відмовив, коли не мав би",
|
||||||
"Regenerate": "Регенерувати",
|
"Regenerate": "Регенерувати",
|
||||||
"Regenerate Menu": "",
|
"Regenerate Menu": "",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "",
|
"Register Again": "",
|
||||||
"Register Client": "",
|
"Register Client": "",
|
||||||
"Registered": "",
|
"Registered": "",
|
||||||
|
|
@ -1441,6 +1459,7 @@
|
||||||
"Show Formatting Toolbar": "",
|
"Show Formatting Toolbar": "",
|
||||||
"Show image preview": "",
|
"Show image preview": "",
|
||||||
"Show Model": "Показати модель",
|
"Show Model": "Показати модель",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "Підтримайте нас!",
|
"Show your support!": "Підтримайте нас!",
|
||||||
"Showcased creativity": "Продемонстрований креатив",
|
"Showcased creativity": "Продемонстрований креатив",
|
||||||
"Sign in": "Увійти",
|
"Sign in": "Увійти",
|
||||||
|
|
@ -1476,6 +1495,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "Зупинити",
|
"Stop": "Зупинити",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "Символ зупинки",
|
"Stop Sequence": "Символ зупинки",
|
||||||
"Stream Chat Response": "Відповідь стрім-чату",
|
"Stream Chat Response": "Відповідь стрім-чату",
|
||||||
"Stream Delta Chunk Size": "",
|
"Stream Delta Chunk Size": "",
|
||||||
|
|
@ -1505,6 +1525,7 @@
|
||||||
"Tags Generation": "Генерація тегів",
|
"Tags Generation": "Генерація тегів",
|
||||||
"Tags Generation Prompt": "Підказка для генерації тегів",
|
"Tags Generation Prompt": "Підказка для генерації тегів",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Вибірка без хвоста використовується для зменшення впливу менш ймовірних токенів на результат. Вищий показник (напр., 2.0) зменшить вплив сильніше, тоді як значення 1.0 вимикає цю опцію.",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Вибірка без хвоста використовується для зменшення впливу менш ймовірних токенів на результат. Вищий показник (напр., 2.0) зменшить вплив сильніше, тоді як значення 1.0 вимикає цю опцію.",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "Натисніть, щоб перервати",
|
"Tap to interrupt": "Натисніть, щоб перервати",
|
||||||
"Task List": "",
|
"Task List": "",
|
||||||
"Task Model": "",
|
"Task Model": "",
|
||||||
|
|
@ -1586,6 +1607,7 @@
|
||||||
"Toast notifications for new updates": "Сповіщення Toast про нові оновлення",
|
"Toast notifications for new updates": "Сповіщення Toast про нові оновлення",
|
||||||
"Today": "Сьогодні",
|
"Today": "Сьогодні",
|
||||||
"Today at {{LOCALIZED_TIME}}": "",
|
"Today at {{LOCALIZED_TIME}}": "",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "",
|
"Toggle whether current connection is active.": "",
|
||||||
"Token": "Токен",
|
"Token": "Токен",
|
||||||
"Too verbose": "Занадто докладно",
|
"Too verbose": "Занадто докладно",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "ٹاسک ماڈل اس وقت استعمال ہوتا ہے جب چیٹس کے عنوانات اور ویب سرچ سوالات تیار کیے جا رہے ہوں",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "ٹاسک ماڈل اس وقت استعمال ہوتا ہے جب چیٹس کے عنوانات اور ویب سرچ سوالات تیار کیے جا رہے ہوں",
|
||||||
"a user": "ایک صارف",
|
"a user": "ایک صارف",
|
||||||
"About": "بارے میں",
|
"About": "بارے میں",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "",
|
"Access": "",
|
||||||
"Access Control": "",
|
"Access Control": "",
|
||||||
"Accessible to all users": "",
|
"Accessible to all users": "",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "مواد شامل کریں",
|
"Add Content": "مواد شامل کریں",
|
||||||
"Add content here": "یہاں مواد شامل کریں",
|
"Add content here": "یہاں مواد شامل کریں",
|
||||||
"Add Custom Parameter": "",
|
"Add Custom Parameter": "",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "",
|
"Add Details": "",
|
||||||
"Add Files": "فائلیں شامل کریں",
|
"Add Files": "فائلیں شامل کریں",
|
||||||
"Add Group": "",
|
"Add Group": "",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "",
|
"Ask": "",
|
||||||
"Ask a question": "سوال پوچھیں",
|
"Ask a question": "سوال پوچھیں",
|
||||||
"Assistant": "اسسٹنٹ",
|
"Assistant": "اسسٹنٹ",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "",
|
"Attach Knowledge": "",
|
||||||
"Attach Notes": "",
|
"Attach Notes": "",
|
||||||
"Attach Webpage": "",
|
"Attach Webpage": "",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "",
|
"Close Banner": "",
|
||||||
"Close Configure Connection Modal": "",
|
"Close Configure Connection Modal": "",
|
||||||
"Close modal": "",
|
"Close modal": "",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "",
|
"Close settings modal": "",
|
||||||
"Close Sidebar": "",
|
"Close Sidebar": "",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "کلپ بورڈ پر نقل کر دیا گیا",
|
"Copied to clipboard": "کلپ بورڈ پر نقل کر دیا گیا",
|
||||||
"Copy": "نقل کریں",
|
"Copy": "نقل کریں",
|
||||||
"Copy Formatted Text": "",
|
"Copy Formatted Text": "",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "",
|
"Copy link": "",
|
||||||
"Copy Link": "لنک کاپی کریں",
|
"Copy Link": "لنک کاپی کریں",
|
||||||
"Copy to clipboard": "کلپ بورڈ پر کاپی کریں",
|
"Copy to clipboard": "کلپ بورڈ پر کاپی کریں",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "",
|
"Edit Default Permissions": "",
|
||||||
"Edit Folder": "",
|
"Edit Folder": "",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "یادداشت میں ترمیم کریں",
|
"Edit Memory": "یادداشت میں ترمیم کریں",
|
||||||
"Edit User": "صارف میں ترمیم کریں",
|
"Edit User": "صارف میں ترمیم کریں",
|
||||||
"Edit User Group": "",
|
"Edit User Group": "",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "",
|
"Firecrawl API Base URL": "",
|
||||||
"Firecrawl API Key": "",
|
"Firecrawl API Key": "",
|
||||||
"Floating Quick Actions": "",
|
"Floating Quick Actions": "",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "",
|
"Folder": "",
|
||||||
"Folder Background Image": "",
|
"Folder Background Image": "",
|
||||||
"Folder deleted successfully": "پوشہ کامیابی سے حذف ہو گیا",
|
"Folder deleted successfully": "پوشہ کامیابی سے حذف ہو گیا",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "",
|
"Generate": "",
|
||||||
"Generate an image": "",
|
"Generate an image": "",
|
||||||
"Generate Image": "تصویر بنائیں",
|
"Generate Image": "تصویر بنائیں",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "",
|
"Generated Image": "",
|
||||||
"Generating search query": "تلاش کے لیے سوالیہ عبارت تیار کی جا رہی ہے",
|
"Generating search query": "تلاش کے لیے سوالیہ عبارت تیار کی جا رہی ہے",
|
||||||
"Generating...": "",
|
"Generating...": "",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "حافظہ کامیابی سے اپ ڈیٹ کر دیا گیا",
|
"Memory updated successfully": "حافظہ کامیابی سے اپ ڈیٹ کر دیا گیا",
|
||||||
"Merge Responses": "جوابات کو یکجا کریں",
|
"Merge Responses": "جوابات کو یکجا کریں",
|
||||||
"Merged Response": "مرکب جواب",
|
"Merged Response": "مرکب جواب",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "اس فیچر کو استعمال کرنے کے لئے پیغام کی درجہ بندی فعال کی جانی چاہئے",
|
"Message rating should be enabled to use this feature": "اس فیچر کو استعمال کرنے کے لئے پیغام کی درجہ بندی فعال کی جانی چاہئے",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "آپ کے لنک بنانے کے بعد بھیجے گئے پیغامات شیئر نہیں کیے جائیں گے یو آر ایل والے صارفین شیئر کیا گیا چیٹ دیکھ سکیں گے",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "آپ کے لنک بنانے کے بعد بھیجے گئے پیغامات شیئر نہیں کیے جائیں گے یو آر ایل والے صارفین شیئر کیا گیا چیٹ دیکھ سکیں گے",
|
||||||
"Microsoft OneDrive": "",
|
"Microsoft OneDrive": "",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "",
|
"New Note": "",
|
||||||
"New Password": "نیا پاس ورڈ",
|
"New Password": "نیا پاس ورڈ",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "",
|
"New Tool": "",
|
||||||
"new-channel": "",
|
"new-channel": "",
|
||||||
"Next message": "",
|
"Next message": "",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "اولاما ورژن",
|
"Ollama Version": "اولاما ورژن",
|
||||||
"On": "چالو",
|
"On": "چالو",
|
||||||
"OneDrive": "",
|
"OneDrive": "",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "",
|
"Only alphanumeric characters and hyphens are allowed": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "کمانڈ سٹرنگ میں صرف حروفی، عددی کردار اور ہائفن کی اجازت ہے",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "کمانڈ سٹرنگ میں صرف حروفی، عددی کردار اور ہائفن کی اجازت ہے",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "صرف مجموعے ترمیم کیے جا سکتے ہیں، دستاویزات کو ترمیم یا شامل کرنے کے لیے نیا علمی بنیاد بنائیں",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "صرف مجموعے ترمیم کیے جا سکتے ہیں، دستاویزات کو ترمیم یا شامل کرنے کے لیے نیا علمی بنیاد بنائیں",
|
||||||
"Only markdown files are allowed": "",
|
"Only markdown files are allowed": "",
|
||||||
"Only select users and groups with permission can access": "",
|
"Only select users and groups with permission can access": "",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "",
|
"Open modal to configure connection": "",
|
||||||
"Open Modal To Manage Floating Quick Actions": "",
|
"Open Modal To Manage Floating Quick Actions": "",
|
||||||
"Open Modal To Manage Image Compression": "",
|
"Open Modal To Manage Image Compression": "",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "",
|
"Open Sidebar": "",
|
||||||
"Open User Profile Menu": "",
|
"Open User Profile Menu": "",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "",
|
"Prefer not to say": "",
|
||||||
"Prefix ID": "",
|
"Prefix ID": "",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "",
|
"Preview": "",
|
||||||
"Previous 30 days": "پچھلے 30 دن",
|
"Previous 30 days": "پچھلے 30 دن",
|
||||||
"Previous 7 days": "پچھلے 7 دن",
|
"Previous 7 days": "پچھلے 7 دن",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "جب انکار نہیں ہونا چاہیے تھا، انکار کر دیا",
|
"Refused when it shouldn't have": "جب انکار نہیں ہونا چاہیے تھا، انکار کر دیا",
|
||||||
"Regenerate": "دوبارہ تخلیق کریں",
|
"Regenerate": "دوبارہ تخلیق کریں",
|
||||||
"Regenerate Menu": "",
|
"Regenerate Menu": "",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "",
|
"Register Again": "",
|
||||||
"Register Client": "",
|
"Register Client": "",
|
||||||
"Registered": "",
|
"Registered": "",
|
||||||
|
|
@ -1439,6 +1457,7 @@
|
||||||
"Show Formatting Toolbar": "",
|
"Show Formatting Toolbar": "",
|
||||||
"Show image preview": "",
|
"Show image preview": "",
|
||||||
"Show Model": "",
|
"Show Model": "",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "اپنی حمایت دکھائیں!",
|
"Show your support!": "اپنی حمایت دکھائیں!",
|
||||||
"Showcased creativity": "نمائش شدہ تخلیقی صلاحیتیں",
|
"Showcased creativity": "نمائش شدہ تخلیقی صلاحیتیں",
|
||||||
"Sign in": "سائن ان کریں",
|
"Sign in": "سائن ان کریں",
|
||||||
|
|
@ -1474,6 +1493,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "روکیں",
|
"Stop": "روکیں",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "ترتیب روکیں",
|
"Stop Sequence": "ترتیب روکیں",
|
||||||
"Stream Chat Response": "اسٹریم چیٹ جواب",
|
"Stream Chat Response": "اسٹریم چیٹ جواب",
|
||||||
"Stream Delta Chunk Size": "",
|
"Stream Delta Chunk Size": "",
|
||||||
|
|
@ -1503,6 +1523,7 @@
|
||||||
"Tags Generation": "",
|
"Tags Generation": "",
|
||||||
"Tags Generation Prompt": "پرمپٹ کے لیے ٹیگز بنائیں",
|
"Tags Generation Prompt": "پرمپٹ کے لیے ٹیگز بنائیں",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "رکنے کے لئے ٹچ کریں",
|
"Tap to interrupt": "رکنے کے لئے ٹچ کریں",
|
||||||
"Task List": "",
|
"Task List": "",
|
||||||
"Task Model": "",
|
"Task Model": "",
|
||||||
|
|
@ -1584,6 +1605,7 @@
|
||||||
"Toast notifications for new updates": "نئے اپڈیٹس کے لئے ٹوسٹ نوٹیفیکیشنز",
|
"Toast notifications for new updates": "نئے اپڈیٹس کے لئے ٹوسٹ نوٹیفیکیشنز",
|
||||||
"Today": "آج",
|
"Today": "آج",
|
||||||
"Today at {{LOCALIZED_TIME}}": "",
|
"Today at {{LOCALIZED_TIME}}": "",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "",
|
"Toggle whether current connection is active.": "",
|
||||||
"Token": "ٹوکَن",
|
"Token": "ٹوکَن",
|
||||||
"Too verbose": "بہت زیادہ طویل",
|
"Too verbose": "بہت زیادہ طویل",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Вазифа модели чатлар ва веб-қидирув сўровлари учун сарлавҳаларни яратиш каби вазифаларни бажаришда ишлатилади",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Вазифа модели чатлар ва веб-қидирув сўровлари учун сарлавҳаларни яратиш каби вазифаларни бажаришда ишлатилади",
|
||||||
"a user": "фойдаланувчи",
|
"a user": "фойдаланувчи",
|
||||||
"About": "Ҳақида",
|
"About": "Ҳақида",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "Кириш",
|
"Access": "Кириш",
|
||||||
"Access Control": "Кириш назорати",
|
"Access Control": "Кириш назорати",
|
||||||
"Accessible to all users": "Барча фойдаланувчилар учун очиқ",
|
"Accessible to all users": "Барча фойдаланувчилар учун очиқ",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "Контент қўшиш",
|
"Add Content": "Контент қўшиш",
|
||||||
"Add content here": "Бу ерга таркиб қўшинг",
|
"Add content here": "Бу ерга таркиб қўшинг",
|
||||||
"Add Custom Parameter": "Махсус параметр қўшинг",
|
"Add Custom Parameter": "Махсус параметр қўшинг",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "",
|
"Add Details": "",
|
||||||
"Add Files": "Файлларни қўшиш",
|
"Add Files": "Файлларни қўшиш",
|
||||||
"Add Group": "Гуруҳ қўшиш",
|
"Add Group": "Гуруҳ қўшиш",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "Сўранг",
|
"Ask": "Сўранг",
|
||||||
"Ask a question": "Савол беринг",
|
"Ask a question": "Савол беринг",
|
||||||
"Assistant": "Ёрдамчи",
|
"Assistant": "Ёрдамчи",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "",
|
"Attach Knowledge": "",
|
||||||
"Attach Notes": "",
|
"Attach Notes": "",
|
||||||
"Attach Webpage": "",
|
"Attach Webpage": "",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "",
|
"Close Banner": "",
|
||||||
"Close Configure Connection Modal": "",
|
"Close Configure Connection Modal": "",
|
||||||
"Close modal": "",
|
"Close modal": "",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "",
|
"Close settings modal": "",
|
||||||
"Close Sidebar": "",
|
"Close Sidebar": "",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "Буферга нусхаланди",
|
"Copied to clipboard": "Буферга нусхаланди",
|
||||||
"Copy": "Нусхалаш",
|
"Copy": "Нусхалаш",
|
||||||
"Copy Formatted Text": "Форматланган матнни нусхалаш",
|
"Copy Formatted Text": "Форматланган матнни нусхалаш",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "",
|
"Copy link": "",
|
||||||
"Copy Link": "Ҳаволани нусхалаш",
|
"Copy Link": "Ҳаволани нусхалаш",
|
||||||
"Copy to clipboard": "Буферга нусхалаш",
|
"Copy to clipboard": "Буферга нусхалаш",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "Стандарт рухсатларни таҳрирлаш",
|
"Edit Default Permissions": "Стандарт рухсатларни таҳрирлаш",
|
||||||
"Edit Folder": "",
|
"Edit Folder": "",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "Хотирани таҳрирлаш",
|
"Edit Memory": "Хотирани таҳрирлаш",
|
||||||
"Edit User": "Фойдаланувчини таҳрирлаш",
|
"Edit User": "Фойдаланувчини таҳрирлаш",
|
||||||
"Edit User Group": "Фойдаланувчилар гуруҳини таҳрирлаш",
|
"Edit User Group": "Фойдаланувчилар гуруҳини таҳрирлаш",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "Firecrawl АПИ асосий УРЛ манзили",
|
"Firecrawl API Base URL": "Firecrawl АПИ асосий УРЛ манзили",
|
||||||
"Firecrawl API Key": "Firecrawl АПИ калити",
|
"Firecrawl API Key": "Firecrawl АПИ калити",
|
||||||
"Floating Quick Actions": "",
|
"Floating Quick Actions": "",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "",
|
"Folder": "",
|
||||||
"Folder Background Image": "",
|
"Folder Background Image": "",
|
||||||
"Folder deleted successfully": "Жилд муваффақиятли ўчирилди",
|
"Folder deleted successfully": "Жилд муваффақиятли ўчирилди",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "Яратиш",
|
"Generate": "Яратиш",
|
||||||
"Generate an image": "Тасвир яратиш",
|
"Generate an image": "Тасвир яратиш",
|
||||||
"Generate Image": "Расм яратиш",
|
"Generate Image": "Расм яратиш",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "",
|
"Generated Image": "",
|
||||||
"Generating search query": "Қидирув сўрови яратилмоқда",
|
"Generating search query": "Қидирув сўрови яратилмоқда",
|
||||||
"Generating...": "Яратилмоқда...",
|
"Generating...": "Яратилмоқда...",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "Хотира муваффақиятли янгиланди",
|
"Memory updated successfully": "Хотира муваффақиятли янгиланди",
|
||||||
"Merge Responses": "Жавобларни бирлаштириш",
|
"Merge Responses": "Жавобларни бирлаштириш",
|
||||||
"Merged Response": "Бирлаштирилган жавоб",
|
"Merged Response": "Бирлаштирилган жавоб",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "Бу функсиядан фойдаланиш учун хабарлар рейтинги ёқилиши керак",
|
"Message rating should be enabled to use this feature": "Бу функсиядан фойдаланиш учун хабарлар рейтинги ёқилиши керак",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Ҳаволани яратганингиздан кейин юборган хабарларингиз улашилмайди. УРЛ манзили бўлган фойдаланувчилар умумий чатни кўришлари мумкин бўлади.",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Ҳаволани яратганингиздан кейин юборган хабарларингиз улашилмайди. УРЛ манзили бўлган фойдаланувчилар умумий чатни кўришлари мумкин бўлади.",
|
||||||
"Microsoft OneDrive": "Microsoft ОнеДриве",
|
"Microsoft OneDrive": "Microsoft ОнеДриве",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "Янги эслатма",
|
"New Note": "Янги эслатма",
|
||||||
"New Password": "Янги парол",
|
"New Password": "Янги парол",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "Янги восита",
|
"New Tool": "Янги восита",
|
||||||
"new-channel": "янги канал",
|
"new-channel": "янги канал",
|
||||||
"Next message": "",
|
"Next message": "",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Ollama версияси",
|
"Ollama Version": "Ollama версияси",
|
||||||
"On": "Ёниқ",
|
"On": "Ёниқ",
|
||||||
"OneDrive": "ОнеДриве",
|
"OneDrive": "ОнеДриве",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "Фақат ҳарф-рақамли белгилар ва дефисларга рухсат берилади",
|
"Only alphanumeric characters and hyphens are allowed": "Фақат ҳарф-рақамли белгилар ва дефисларга рухсат берилади",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "Буйруқлар қаторида фақат ҳарф-рақамли белгилар ва дефисларга рухсат берилади.",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "Буйруқлар қаторида фақат ҳарф-рақамли белгилар ва дефисларга рухсат берилади.",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Фақат тўпламларни таҳрирлаш мумкин, ҳужжатларни таҳрирлаш/қўшиш учун янги билимлар базасини яратинг.",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Фақат тўпламларни таҳрирлаш мумкин, ҳужжатларни таҳрирлаш/қўшиш учун янги билимлар базасини яратинг.",
|
||||||
"Only markdown files are allowed": "Фақат маркдоwн файлларига рухсат берилади",
|
"Only markdown files are allowed": "Фақат маркдоwн файлларига рухсат берилади",
|
||||||
"Only select users and groups with permission can access": "Фақат рухсати бор танланган фойдаланувчилар ва гуруҳларга кириш мумкин",
|
"Only select users and groups with permission can access": "Фақат рухсати бор танланган фойдаланувчилар ва гуруҳларга кириш мумкин",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "",
|
"Open modal to configure connection": "",
|
||||||
"Open Modal To Manage Floating Quick Actions": "",
|
"Open Modal To Manage Floating Quick Actions": "",
|
||||||
"Open Modal To Manage Image Compression": "",
|
"Open Modal To Manage Image Compression": "",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "",
|
"Open Sidebar": "",
|
||||||
"Open User Profile Menu": "",
|
"Open User Profile Menu": "",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "Опен WебУИ ҳар қандай ОпенАПИ сервери томонидан тақдим этилган воситалардан фойдаланиши мумкин.",
|
"Open WebUI can use tools provided by any OpenAPI server.": "Опен WебУИ ҳар қандай ОпенАПИ сервери томонидан тақдим этилган воситалардан фойдаланиши мумкин.",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "",
|
"Prefer not to say": "",
|
||||||
"Prefix ID": "Префикс идентификатори",
|
"Prefix ID": "Префикс идентификатори",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Префикс идентификатори модел идентификаторларига префикс қўшиш орқали бошқа уланишлар билан зиддиятларни олдини олиш учун ишлатилади - ўчириш учун бўш қолдиринг.",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Префикс идентификатори модел идентификаторларига префикс қўшиш орқали бошқа уланишлар билан зиддиятларни олдини олиш учун ишлатилади - ўчириш учун бўш қолдиринг.",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "Кўриб чиқиш",
|
"Preview": "Кўриб чиқиш",
|
||||||
"Previous 30 days": "Олдинги 30 кун",
|
"Previous 30 days": "Олдинги 30 кун",
|
||||||
"Previous 7 days": "Олдинги 7 кун",
|
"Previous 7 days": "Олдинги 7 кун",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "Бўлмаслиги керак бўлганда рад этилди",
|
"Refused when it shouldn't have": "Бўлмаслиги керак бўлганда рад этилди",
|
||||||
"Regenerate": "Қайта тиклаш",
|
"Regenerate": "Қайта тиклаш",
|
||||||
"Regenerate Menu": "",
|
"Regenerate Menu": "",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "",
|
"Register Again": "",
|
||||||
"Register Client": "",
|
"Register Client": "",
|
||||||
"Registered": "",
|
"Registered": "",
|
||||||
|
|
@ -1439,6 +1457,7 @@
|
||||||
"Show Formatting Toolbar": "",
|
"Show Formatting Toolbar": "",
|
||||||
"Show image preview": "",
|
"Show image preview": "",
|
||||||
"Show Model": "Моделни кўрсатиш",
|
"Show Model": "Моделни кўрсатиш",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "Қўллаб-қувватланг!",
|
"Show your support!": "Қўллаб-қувватланг!",
|
||||||
"Showcased creativity": "Кўрсатилган ижодкорлик",
|
"Showcased creativity": "Кўрсатилган ижодкорлик",
|
||||||
"Sign in": "тизимга кириш",
|
"Sign in": "тизимга кириш",
|
||||||
|
|
@ -1474,6 +1493,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "СТОП",
|
"Stop": "СТОП",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "Кетма-кетликни тўхтатиш",
|
"Stop Sequence": "Кетма-кетликни тўхтатиш",
|
||||||
"Stream Chat Response": "Chat жавобини юбориш",
|
"Stream Chat Response": "Chat жавобини юбориш",
|
||||||
"Stream Delta Chunk Size": "",
|
"Stream Delta Chunk Size": "",
|
||||||
|
|
@ -1503,6 +1523,7 @@
|
||||||
"Tags Generation": "Теглар яратиш",
|
"Tags Generation": "Теглар яратиш",
|
||||||
"Tags Generation Prompt": "Теглар яратиш таклифи",
|
"Tags Generation Prompt": "Теглар яратиш таклифи",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Чиқишдан камроқ эҳтимолий токенларнинг таъсирини камайтириш учун қуйруқсиз намуна олиш қўлланилади. Юқори қиймат (масалан, 2.0) таъсирни кўпроқ камайтиради, 1.0 қиймати эса бу созламани ўчириб қўяди.",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Чиқишдан камроқ эҳтимолий токенларнинг таъсирини камайтириш учун қуйруқсиз намуна олиш қўлланилади. Юқори қиймат (масалан, 2.0) таъсирни кўпроқ камайтиради, 1.0 қиймати эса бу созламани ўчириб қўяди.",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "Тўхтатиш учун босинг",
|
"Tap to interrupt": "Тўхтатиш учун босинг",
|
||||||
"Task List": "",
|
"Task List": "",
|
||||||
"Task Model": "Вазифа модели",
|
"Task Model": "Вазифа модели",
|
||||||
|
|
@ -1584,6 +1605,7 @@
|
||||||
"Toast notifications for new updates": "Янги янгиланишлар ҳақида билдиришномалар",
|
"Toast notifications for new updates": "Янги янгиланишлар ҳақида билдиришномалар",
|
||||||
"Today": "Бугун",
|
"Today": "Бугун",
|
||||||
"Today at {{LOCALIZED_TIME}}": "",
|
"Today at {{LOCALIZED_TIME}}": "",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "",
|
"Toggle whether current connection is active.": "",
|
||||||
"Token": "Токен",
|
"Token": "Токен",
|
||||||
"Too verbose": "Жуда батафсил",
|
"Too verbose": "Жуда батафсил",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Vazifa modeli chatlar va veb-qidiruv so'rovlari uchun sarlavhalarni yaratish kabi vazifalarni bajarishda ishlatiladi",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Vazifa modeli chatlar va veb-qidiruv so'rovlari uchun sarlavhalarni yaratish kabi vazifalarni bajarishda ishlatiladi",
|
||||||
"a user": "foydalanuvchi",
|
"a user": "foydalanuvchi",
|
||||||
"About": "Haqida",
|
"About": "Haqida",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "Kirish",
|
"Access": "Kirish",
|
||||||
"Access Control": "Kirish nazorati",
|
"Access Control": "Kirish nazorati",
|
||||||
"Accessible to all users": "Barcha foydalanuvchilar uchun ochiq",
|
"Accessible to all users": "Barcha foydalanuvchilar uchun ochiq",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "Kontent qo'shish",
|
"Add Content": "Kontent qo'shish",
|
||||||
"Add content here": "Bu yerga tarkib qo'shing",
|
"Add content here": "Bu yerga tarkib qo'shing",
|
||||||
"Add Custom Parameter": "Maxsus parametr qo'shing",
|
"Add Custom Parameter": "Maxsus parametr qo'shing",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "",
|
"Add Details": "",
|
||||||
"Add Files": "Fayllarni qo'shish",
|
"Add Files": "Fayllarni qo'shish",
|
||||||
"Add Group": "Guruh qo'shish",
|
"Add Group": "Guruh qo'shish",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "So'rang",
|
"Ask": "So'rang",
|
||||||
"Ask a question": "Savol bering",
|
"Ask a question": "Savol bering",
|
||||||
"Assistant": "Yordamchi",
|
"Assistant": "Yordamchi",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "",
|
"Attach Knowledge": "",
|
||||||
"Attach Notes": "",
|
"Attach Notes": "",
|
||||||
"Attach Webpage": "",
|
"Attach Webpage": "",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "",
|
"Close Banner": "",
|
||||||
"Close Configure Connection Modal": "",
|
"Close Configure Connection Modal": "",
|
||||||
"Close modal": "",
|
"Close modal": "",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "",
|
"Close settings modal": "",
|
||||||
"Close Sidebar": "",
|
"Close Sidebar": "",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "Buferga nusxalandi",
|
"Copied to clipboard": "Buferga nusxalandi",
|
||||||
"Copy": "Nusxalash",
|
"Copy": "Nusxalash",
|
||||||
"Copy Formatted Text": "Formatlangan matnni nusxalash",
|
"Copy Formatted Text": "Formatlangan matnni nusxalash",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "",
|
"Copy link": "",
|
||||||
"Copy Link": "Havolani nusxalash",
|
"Copy Link": "Havolani nusxalash",
|
||||||
"Copy to clipboard": "Buferga nusxalash",
|
"Copy to clipboard": "Buferga nusxalash",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "Standart ruxsatlarni tahrirlash",
|
"Edit Default Permissions": "Standart ruxsatlarni tahrirlash",
|
||||||
"Edit Folder": "",
|
"Edit Folder": "",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "Xotirani tahrirlash",
|
"Edit Memory": "Xotirani tahrirlash",
|
||||||
"Edit User": "Foydalanuvchini tahrirlash",
|
"Edit User": "Foydalanuvchini tahrirlash",
|
||||||
"Edit User Group": "Foydalanuvchilar guruhini tahrirlash",
|
"Edit User Group": "Foydalanuvchilar guruhini tahrirlash",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "Firecrawl API asosiy URL manzili",
|
"Firecrawl API Base URL": "Firecrawl API asosiy URL manzili",
|
||||||
"Firecrawl API Key": "Firecrawl API kaliti",
|
"Firecrawl API Key": "Firecrawl API kaliti",
|
||||||
"Floating Quick Actions": "",
|
"Floating Quick Actions": "",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "",
|
"Folder": "",
|
||||||
"Folder Background Image": "",
|
"Folder Background Image": "",
|
||||||
"Folder deleted successfully": "Jild muvaffaqiyatli oʻchirildi",
|
"Folder deleted successfully": "Jild muvaffaqiyatli oʻchirildi",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "Yaratish",
|
"Generate": "Yaratish",
|
||||||
"Generate an image": "Tasvir yaratish",
|
"Generate an image": "Tasvir yaratish",
|
||||||
"Generate Image": "Rasm yaratish",
|
"Generate Image": "Rasm yaratish",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "",
|
"Generated Image": "",
|
||||||
"Generating search query": "Qidiruv so'rovi yaratilmoqda",
|
"Generating search query": "Qidiruv so'rovi yaratilmoqda",
|
||||||
"Generating...": "Yaratilmoqda...",
|
"Generating...": "Yaratilmoqda...",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "Xotira muvaffaqiyatli yangilandi",
|
"Memory updated successfully": "Xotira muvaffaqiyatli yangilandi",
|
||||||
"Merge Responses": "Javoblarni birlashtirish",
|
"Merge Responses": "Javoblarni birlashtirish",
|
||||||
"Merged Response": "Birlashtirilgan javob",
|
"Merged Response": "Birlashtirilgan javob",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "Bu funksiyadan foydalanish uchun xabarlar reytingi yoqilishi kerak",
|
"Message rating should be enabled to use this feature": "Bu funksiyadan foydalanish uchun xabarlar reytingi yoqilishi kerak",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Havolani yaratganingizdan keyin yuborgan xabarlaringiz ulashilmaydi. URL manzili bo'lgan foydalanuvchilar umumiy chatni ko'rishlari mumkin bo'ladi.",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Havolani yaratganingizdan keyin yuborgan xabarlaringiz ulashilmaydi. URL manzili bo'lgan foydalanuvchilar umumiy chatni ko'rishlari mumkin bo'ladi.",
|
||||||
"Microsoft OneDrive": "Microsoft OneDrive",
|
"Microsoft OneDrive": "Microsoft OneDrive",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "Yangi eslatma",
|
"New Note": "Yangi eslatma",
|
||||||
"New Password": "Yangi parol",
|
"New Password": "Yangi parol",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "Yangi vosita",
|
"New Tool": "Yangi vosita",
|
||||||
"new-channel": "yangi kanal",
|
"new-channel": "yangi kanal",
|
||||||
"Next message": "",
|
"Next message": "",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Ollama versiyasi",
|
"Ollama Version": "Ollama versiyasi",
|
||||||
"On": "Yoniq",
|
"On": "Yoniq",
|
||||||
"OneDrive": "OneDrive",
|
"OneDrive": "OneDrive",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "Faqat harf-raqamli belgilar va defislarga ruxsat beriladi",
|
"Only alphanumeric characters and hyphens are allowed": "Faqat harf-raqamli belgilar va defislarga ruxsat beriladi",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "Buyruqlar qatorida faqat harf-raqamli belgilar va defislarga ruxsat beriladi.",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "Buyruqlar qatorida faqat harf-raqamli belgilar va defislarga ruxsat beriladi.",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Faqat to'plamlarni tahrirlash mumkin, hujjatlarni tahrirlash/qo'shish uchun yangi bilimlar bazasini yarating.",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Faqat to'plamlarni tahrirlash mumkin, hujjatlarni tahrirlash/qo'shish uchun yangi bilimlar bazasini yarating.",
|
||||||
"Only markdown files are allowed": "Faqat markdown fayllariga ruxsat beriladi",
|
"Only markdown files are allowed": "Faqat markdown fayllariga ruxsat beriladi",
|
||||||
"Only select users and groups with permission can access": "Faqat ruxsati bor tanlangan foydalanuvchilar va guruhlarga kirish mumkin",
|
"Only select users and groups with permission can access": "Faqat ruxsati bor tanlangan foydalanuvchilar va guruhlarga kirish mumkin",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "",
|
"Open modal to configure connection": "",
|
||||||
"Open Modal To Manage Floating Quick Actions": "",
|
"Open Modal To Manage Floating Quick Actions": "",
|
||||||
"Open Modal To Manage Image Compression": "",
|
"Open Modal To Manage Image Compression": "",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "",
|
"Open Sidebar": "",
|
||||||
"Open User Profile Menu": "",
|
"Open User Profile Menu": "",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI har qanday OpenAPI serveri tomonidan taqdim etilgan vositalardan foydalanishi mumkin.",
|
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI har qanday OpenAPI serveri tomonidan taqdim etilgan vositalardan foydalanishi mumkin.",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "",
|
"Prefer not to say": "",
|
||||||
"Prefix ID": "Prefiks identifikatori",
|
"Prefix ID": "Prefiks identifikatori",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefiks identifikatori model identifikatorlariga prefiks qo'shish orqali boshqa ulanishlar bilan ziddiyatlarni oldini olish uchun ishlatiladi - o'chirish uchun bo'sh qoldiring.",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Prefiks identifikatori model identifikatorlariga prefiks qo'shish orqali boshqa ulanishlar bilan ziddiyatlarni oldini olish uchun ishlatiladi - o'chirish uchun bo'sh qoldiring.",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "Ko‘rib chiqish",
|
"Preview": "Ko‘rib chiqish",
|
||||||
"Previous 30 days": "Oldingi 30 kun",
|
"Previous 30 days": "Oldingi 30 kun",
|
||||||
"Previous 7 days": "Oldingi 7 kun",
|
"Previous 7 days": "Oldingi 7 kun",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "Bo'lmasligi kerak bo'lganda rad etildi",
|
"Refused when it shouldn't have": "Bo'lmasligi kerak bo'lganda rad etildi",
|
||||||
"Regenerate": "Qayta tiklash",
|
"Regenerate": "Qayta tiklash",
|
||||||
"Regenerate Menu": "",
|
"Regenerate Menu": "",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "",
|
"Register Again": "",
|
||||||
"Register Client": "",
|
"Register Client": "",
|
||||||
"Registered": "",
|
"Registered": "",
|
||||||
|
|
@ -1439,6 +1457,7 @@
|
||||||
"Show Formatting Toolbar": "",
|
"Show Formatting Toolbar": "",
|
||||||
"Show image preview": "",
|
"Show image preview": "",
|
||||||
"Show Model": "Modelni ko'rsatish",
|
"Show Model": "Modelni ko'rsatish",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "Qo'llab-quvvatlang!",
|
"Show your support!": "Qo'llab-quvvatlang!",
|
||||||
"Showcased creativity": "Ko'rsatilgan ijodkorlik",
|
"Showcased creativity": "Ko'rsatilgan ijodkorlik",
|
||||||
"Sign in": "tizimga kirish",
|
"Sign in": "tizimga kirish",
|
||||||
|
|
@ -1474,6 +1493,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "STOP",
|
"Stop": "STOP",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "Ketma-ketlikni to'xtatish",
|
"Stop Sequence": "Ketma-ketlikni to'xtatish",
|
||||||
"Stream Chat Response": "Stream Chat javobi",
|
"Stream Chat Response": "Stream Chat javobi",
|
||||||
"Stream Delta Chunk Size": "",
|
"Stream Delta Chunk Size": "",
|
||||||
|
|
@ -1503,6 +1523,7 @@
|
||||||
"Tags Generation": "Teglar yaratish",
|
"Tags Generation": "Teglar yaratish",
|
||||||
"Tags Generation Prompt": "Teglar yaratish taklifi",
|
"Tags Generation Prompt": "Teglar yaratish taklifi",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Chiqishdan kamroq ehtimoliy tokenlarning ta'sirini kamaytirish uchun quyruqsiz namuna olish qo'llaniladi. Yuqori qiymat (masalan, 2.0) taʼsirni koʻproq kamaytiradi, 1.0 qiymati esa bu sozlamani oʻchirib qoʻyadi.",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Chiqishdan kamroq ehtimoliy tokenlarning ta'sirini kamaytirish uchun quyruqsiz namuna olish qo'llaniladi. Yuqori qiymat (masalan, 2.0) taʼsirni koʻproq kamaytiradi, 1.0 qiymati esa bu sozlamani oʻchirib qoʻyadi.",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "To‘xtatish uchun bosing",
|
"Tap to interrupt": "To‘xtatish uchun bosing",
|
||||||
"Task List": "",
|
"Task List": "",
|
||||||
"Task Model": "Vazifa modeli",
|
"Task Model": "Vazifa modeli",
|
||||||
|
|
@ -1584,6 +1605,7 @@
|
||||||
"Toast notifications for new updates": "Yangi yangilanishlar haqida bildirishnomalar",
|
"Toast notifications for new updates": "Yangi yangilanishlar haqida bildirishnomalar",
|
||||||
"Today": "Bugun",
|
"Today": "Bugun",
|
||||||
"Today at {{LOCALIZED_TIME}}": "",
|
"Today at {{LOCALIZED_TIME}}": "",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "",
|
"Toggle whether current connection is active.": "",
|
||||||
"Token": "Token",
|
"Token": "Token",
|
||||||
"Too verbose": "Juda batafsil",
|
"Too verbose": "Juda batafsil",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Mô hình tác vụ được sử dụng khi thực hiện các tác vụ như tạo tiêu đề cho cuộc trò chuyện và truy vấn tìm kiếm trên web",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "Mô hình tác vụ được sử dụng khi thực hiện các tác vụ như tạo tiêu đề cho cuộc trò chuyện và truy vấn tìm kiếm trên web",
|
||||||
"a user": "người sử dụng",
|
"a user": "người sử dụng",
|
||||||
"About": "Giới thiệu",
|
"About": "Giới thiệu",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "Truy cập",
|
"Access": "Truy cập",
|
||||||
"Access Control": "Kiểm soát truy cập",
|
"Access Control": "Kiểm soát truy cập",
|
||||||
"Accessible to all users": "Truy cập được bởi tất cả người dùng",
|
"Accessible to all users": "Truy cập được bởi tất cả người dùng",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "Thêm nội dung",
|
"Add Content": "Thêm nội dung",
|
||||||
"Add content here": "Thêm nội dung tại đây",
|
"Add content here": "Thêm nội dung tại đây",
|
||||||
"Add Custom Parameter": "",
|
"Add Custom Parameter": "",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "",
|
"Add Details": "",
|
||||||
"Add Files": "Thêm tệp",
|
"Add Files": "Thêm tệp",
|
||||||
"Add Group": "Thêm Nhóm",
|
"Add Group": "Thêm Nhóm",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "Hỏi",
|
"Ask": "Hỏi",
|
||||||
"Ask a question": "Đặt câu hỏi",
|
"Ask a question": "Đặt câu hỏi",
|
||||||
"Assistant": "Trợ lý",
|
"Assistant": "Trợ lý",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "",
|
"Attach Knowledge": "",
|
||||||
"Attach Notes": "",
|
"Attach Notes": "",
|
||||||
"Attach Webpage": "",
|
"Attach Webpage": "",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "",
|
"Close Banner": "",
|
||||||
"Close Configure Connection Modal": "",
|
"Close Configure Connection Modal": "",
|
||||||
"Close modal": "",
|
"Close modal": "",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "",
|
"Close settings modal": "",
|
||||||
"Close Sidebar": "",
|
"Close Sidebar": "",
|
||||||
"cloud": "",
|
"cloud": "",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "Đã sao chép vào clipboard",
|
"Copied to clipboard": "Đã sao chép vào clipboard",
|
||||||
"Copy": "Sao chép",
|
"Copy": "Sao chép",
|
||||||
"Copy Formatted Text": "",
|
"Copy Formatted Text": "",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "",
|
"Copy link": "",
|
||||||
"Copy Link": "Sao chép link",
|
"Copy Link": "Sao chép link",
|
||||||
"Copy to clipboard": "Sao chép vào clipboard",
|
"Copy to clipboard": "Sao chép vào clipboard",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "Chỉnh sửa Quyền Mặc định",
|
"Edit Default Permissions": "Chỉnh sửa Quyền Mặc định",
|
||||||
"Edit Folder": "",
|
"Edit Folder": "",
|
||||||
"Edit Image": "",
|
"Edit Image": "",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "Sửa Memory",
|
"Edit Memory": "Sửa Memory",
|
||||||
"Edit User": "Thay đổi thông tin người sử dụng",
|
"Edit User": "Thay đổi thông tin người sử dụng",
|
||||||
"Edit User Group": "Chỉnh sửa Nhóm Người dùng",
|
"Edit User Group": "Chỉnh sửa Nhóm Người dùng",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "",
|
"Firecrawl API Base URL": "",
|
||||||
"Firecrawl API Key": "",
|
"Firecrawl API Key": "",
|
||||||
"Floating Quick Actions": "",
|
"Floating Quick Actions": "",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "",
|
"Folder": "",
|
||||||
"Folder Background Image": "",
|
"Folder Background Image": "",
|
||||||
"Folder deleted successfully": "Xóa thư mục thành công",
|
"Folder deleted successfully": "Xóa thư mục thành công",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "",
|
"Generate": "",
|
||||||
"Generate an image": "Tạo một hình ảnh",
|
"Generate an image": "Tạo một hình ảnh",
|
||||||
"Generate Image": "Sinh ảnh",
|
"Generate Image": "Sinh ảnh",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "",
|
"Generated Image": "",
|
||||||
"Generating search query": "Tạo truy vấn tìm kiếm",
|
"Generating search query": "Tạo truy vấn tìm kiếm",
|
||||||
"Generating...": "",
|
"Generating...": "",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "Memory đã cập nhật thành công",
|
"Memory updated successfully": "Memory đã cập nhật thành công",
|
||||||
"Merge Responses": "Hợp nhất các phản hồi",
|
"Merge Responses": "Hợp nhất các phản hồi",
|
||||||
"Merged Response": "Phản hồi Hợp nhất",
|
"Merged Response": "Phản hồi Hợp nhất",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "Cần bật tính năng đánh giá tin nhắn để sử dụng tính năng này",
|
"Message rating should be enabled to use this feature": "Cần bật tính năng đánh giá tin nhắn để sử dụng tính năng này",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Tin nhắn bạn gửi sau khi tạo liên kết sẽ không được chia sẻ. Người dùng có URL sẽ có thể xem cuộc trò chuyện được chia sẻ.",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Tin nhắn bạn gửi sau khi tạo liên kết sẽ không được chia sẻ. Người dùng có URL sẽ có thể xem cuộc trò chuyện được chia sẻ.",
|
||||||
"Microsoft OneDrive": "",
|
"Microsoft OneDrive": "",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "",
|
"New Note": "",
|
||||||
"New Password": "Mật khẩu mới",
|
"New Password": "Mật khẩu mới",
|
||||||
"New Prompt": "",
|
"New Prompt": "",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "",
|
"New Tool": "",
|
||||||
"new-channel": "kênh-mới",
|
"new-channel": "kênh-mới",
|
||||||
"Next message": "",
|
"Next message": "",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Phiên bản Ollama",
|
"Ollama Version": "Phiên bản Ollama",
|
||||||
"On": "Bật",
|
"On": "Bật",
|
||||||
"OneDrive": "OneDrive",
|
"OneDrive": "OneDrive",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "Chỉ cho phép các ký tự chữ và số và dấu gạch nối",
|
"Only alphanumeric characters and hyphens are allowed": "Chỉ cho phép các ký tự chữ và số và dấu gạch nối",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "Chỉ ký tự số và gạch nối được phép trong chuỗi lệnh.",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "Chỉ ký tự số và gạch nối được phép trong chuỗi lệnh.",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Chỉ có thể chỉnh sửa bộ sưu tập, tạo cơ sở kiến thức mới để chỉnh sửa/thêm tài liệu.",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "Chỉ có thể chỉnh sửa bộ sưu tập, tạo cơ sở kiến thức mới để chỉnh sửa/thêm tài liệu.",
|
||||||
"Only markdown files are allowed": "",
|
"Only markdown files are allowed": "",
|
||||||
"Only select users and groups with permission can access": "Chỉ người dùng và nhóm được chọn có quyền mới có thể truy cập",
|
"Only select users and groups with permission can access": "Chỉ người dùng và nhóm được chọn có quyền mới có thể truy cập",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "",
|
"Open modal to configure connection": "",
|
||||||
"Open Modal To Manage Floating Quick Actions": "",
|
"Open Modal To Manage Floating Quick Actions": "",
|
||||||
"Open Modal To Manage Image Compression": "",
|
"Open Modal To Manage Image Compression": "",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "",
|
"Open Sidebar": "",
|
||||||
"Open User Profile Menu": "",
|
"Open User Profile Menu": "",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
"Open WebUI can use tools provided by any OpenAPI server.": "",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "",
|
"Prefer not to say": "",
|
||||||
"Prefix ID": "Tiền tố ID",
|
"Prefix ID": "Tiền tố ID",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Tiền tố ID được sử dụng để tránh xung đột với các kết nối khác bằng cách thêm tiền tố vào ID mô hình - để trống để tắt",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "Tiền tố ID được sử dụng để tránh xung đột với các kết nối khác bằng cách thêm tiền tố vào ID mô hình - để trống để tắt",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "",
|
"Preview": "",
|
||||||
"Previous 30 days": "30 ngày trước",
|
"Previous 30 days": "30 ngày trước",
|
||||||
"Previous 7 days": "7 ngày trước",
|
"Previous 7 days": "7 ngày trước",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "Từ chối trả lời mà nhẽ không nên làm vậy",
|
"Refused when it shouldn't have": "Từ chối trả lời mà nhẽ không nên làm vậy",
|
||||||
"Regenerate": "Tạo sinh lại câu trả lời",
|
"Regenerate": "Tạo sinh lại câu trả lời",
|
||||||
"Regenerate Menu": "",
|
"Regenerate Menu": "",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "",
|
"Register Again": "",
|
||||||
"Register Client": "",
|
"Register Client": "",
|
||||||
"Registered": "",
|
"Registered": "",
|
||||||
|
|
@ -1438,6 +1456,7 @@
|
||||||
"Show Formatting Toolbar": "",
|
"Show Formatting Toolbar": "",
|
||||||
"Show image preview": "",
|
"Show image preview": "",
|
||||||
"Show Model": "Hiển thị Mô hình",
|
"Show Model": "Hiển thị Mô hình",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "Thể hiện sự ủng hộ của bạn!",
|
"Show your support!": "Thể hiện sự ủng hộ của bạn!",
|
||||||
"Showcased creativity": "Thể hiện sự sáng tạo",
|
"Showcased creativity": "Thể hiện sự sáng tạo",
|
||||||
"Sign in": "Đăng nhập",
|
"Sign in": "Đăng nhập",
|
||||||
|
|
@ -1473,6 +1492,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "",
|
"Steps": "",
|
||||||
"Stop": "Dừng",
|
"Stop": "Dừng",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "Trình tự Dừng",
|
"Stop Sequence": "Trình tự Dừng",
|
||||||
"Stream Chat Response": "Truyền trực tiếp Phản hồi Chat",
|
"Stream Chat Response": "Truyền trực tiếp Phản hồi Chat",
|
||||||
"Stream Delta Chunk Size": "",
|
"Stream Delta Chunk Size": "",
|
||||||
|
|
@ -1502,6 +1522,7 @@
|
||||||
"Tags Generation": "Tạo Thẻ",
|
"Tags Generation": "Tạo Thẻ",
|
||||||
"Tags Generation Prompt": "Prompt Tạo Thẻ",
|
"Tags Generation Prompt": "Prompt Tạo Thẻ",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Lấy mẫu không đuôi (tail free sampling) được sử dụng để giảm tác động của các token ít có khả năng xuất hiện trong đầu ra. Giá trị cao hơn (ví dụ: 2.0) sẽ giảm tác động nhiều hơn, trong khi giá trị 1.0 sẽ tắt cài đặt này.",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "Lấy mẫu không đuôi (tail free sampling) được sử dụng để giảm tác động của các token ít có khả năng xuất hiện trong đầu ra. Giá trị cao hơn (ví dụ: 2.0) sẽ giảm tác động nhiều hơn, trong khi giá trị 1.0 sẽ tắt cài đặt này.",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "Chạm để ngừng",
|
"Tap to interrupt": "Chạm để ngừng",
|
||||||
"Task List": "",
|
"Task List": "",
|
||||||
"Task Model": "",
|
"Task Model": "",
|
||||||
|
|
@ -1583,6 +1604,7 @@
|
||||||
"Toast notifications for new updates": "Thông báo nhanh cho các cập nhật mới",
|
"Toast notifications for new updates": "Thông báo nhanh cho các cập nhật mới",
|
||||||
"Today": "Hôm nay",
|
"Today": "Hôm nay",
|
||||||
"Today at {{LOCALIZED_TIME}}": "",
|
"Today at {{LOCALIZED_TIME}}": "",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "",
|
"Toggle whether current connection is active.": "",
|
||||||
"Token": "Token",
|
"Token": "Token",
|
||||||
"Too verbose": "Quá dài dòng",
|
"Too verbose": "Quá dài dòng",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "任务模型用于执行生成对话标题和联网搜索查询等任务",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "任务模型用于执行生成对话标题和联网搜索查询等任务",
|
||||||
"a user": "用户",
|
"a user": "用户",
|
||||||
"About": "关于",
|
"About": "关于",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "访问",
|
"Access": "访问",
|
||||||
"Access Control": "访问控制",
|
"Access Control": "访问控制",
|
||||||
"Accessible to all users": "对所有用户开放",
|
"Accessible to all users": "对所有用户开放",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "添加内容",
|
"Add Content": "添加内容",
|
||||||
"Add content here": "在此添加内容",
|
"Add content here": "在此添加内容",
|
||||||
"Add Custom Parameter": "增加自定义参数",
|
"Add Custom Parameter": "增加自定义参数",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "丰富细节",
|
"Add Details": "丰富细节",
|
||||||
"Add Files": "添加文件",
|
"Add Files": "添加文件",
|
||||||
"Add Group": "添加权限组",
|
"Add Group": "添加权限组",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "提问",
|
"Ask": "提问",
|
||||||
"Ask a question": "提问",
|
"Ask a question": "提问",
|
||||||
"Assistant": "助手",
|
"Assistant": "助手",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "引用知识库",
|
"Attach Knowledge": "引用知识库",
|
||||||
"Attach Notes": "引用笔记",
|
"Attach Notes": "引用笔记",
|
||||||
"Attach Webpage": "引用网页",
|
"Attach Webpage": "引用网页",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "关闭横幅",
|
"Close Banner": "关闭横幅",
|
||||||
"Close Configure Connection Modal": "关闭外部连接配置弹窗",
|
"Close Configure Connection Modal": "关闭外部连接配置弹窗",
|
||||||
"Close modal": "关闭弹窗",
|
"Close modal": "关闭弹窗",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "关闭设置弹窗",
|
"Close settings modal": "关闭设置弹窗",
|
||||||
"Close Sidebar": "收起侧边栏",
|
"Close Sidebar": "收起侧边栏",
|
||||||
"cloud": "云服务",
|
"cloud": "云服务",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "已复制到剪贴板",
|
"Copied to clipboard": "已复制到剪贴板",
|
||||||
"Copy": "复制",
|
"Copy": "复制",
|
||||||
"Copy Formatted Text": "复制文本时包含特殊格式",
|
"Copy Formatted Text": "复制文本时包含特殊格式",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "复制链接",
|
"Copy link": "复制链接",
|
||||||
"Copy Link": "复制链接",
|
"Copy Link": "复制链接",
|
||||||
"Copy to clipboard": "复制到剪贴板",
|
"Copy to clipboard": "复制到剪贴板",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "编辑默认权限",
|
"Edit Default Permissions": "编辑默认权限",
|
||||||
"Edit Folder": "编辑分组",
|
"Edit Folder": "编辑分组",
|
||||||
"Edit Image": "图片编辑",
|
"Edit Image": "图片编辑",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "编辑记忆",
|
"Edit Memory": "编辑记忆",
|
||||||
"Edit User": "编辑用户",
|
"Edit User": "编辑用户",
|
||||||
"Edit User Group": "编辑用户组",
|
"Edit User Group": "编辑用户组",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "Firecrawl 接口地址",
|
"Firecrawl API Base URL": "Firecrawl 接口地址",
|
||||||
"Firecrawl API Key": "Firecrawl 接口密钥",
|
"Firecrawl API Key": "Firecrawl 接口密钥",
|
||||||
"Floating Quick Actions": "快捷操作浮窗",
|
"Floating Quick Actions": "快捷操作浮窗",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "分组",
|
"Folder": "分组",
|
||||||
"Folder Background Image": "分组背景图",
|
"Folder Background Image": "分组背景图",
|
||||||
"Folder deleted successfully": "分组删除成功",
|
"Folder deleted successfully": "分组删除成功",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "生成",
|
"Generate": "生成",
|
||||||
"Generate an image": "生成图像",
|
"Generate an image": "生成图像",
|
||||||
"Generate Image": "生成图像",
|
"Generate Image": "生成图像",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "已生成图像",
|
"Generated Image": "已生成图像",
|
||||||
"Generating search query": "生成搜索查询",
|
"Generating search query": "生成搜索查询",
|
||||||
"Generating...": "生成中...",
|
"Generating...": "生成中...",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "记忆更新成功",
|
"Memory updated successfully": "记忆更新成功",
|
||||||
"Merge Responses": "合并回复",
|
"Merge Responses": "合并回复",
|
||||||
"Merged Response": "合并的回复",
|
"Merged Response": "合并的回复",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "要使用此功能,需先启用回复评价功能",
|
"Message rating should be enabled to use this feature": "要使用此功能,需先启用回复评价功能",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "创建链接后发送的消息将不会被分享。通过该链接访问的用户可以查看对话记录。",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "创建链接后发送的消息将不会被分享。通过该链接访问的用户可以查看对话记录。",
|
||||||
"Microsoft OneDrive": "Microsoft OneDrive",
|
"Microsoft OneDrive": "Microsoft OneDrive",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "新笔记",
|
"New Note": "新笔记",
|
||||||
"New Password": "新密码",
|
"New Password": "新密码",
|
||||||
"New Prompt": "创建提示词",
|
"New Prompt": "创建提示词",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "新工具",
|
"New Tool": "新工具",
|
||||||
"new-channel": "新频道",
|
"new-channel": "新频道",
|
||||||
"Next message": "下一条消息",
|
"Next message": "下一条消息",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Ollama 版本",
|
"Ollama Version": "Ollama 版本",
|
||||||
"On": "开启",
|
"On": "开启",
|
||||||
"OneDrive": "OneDrive",
|
"OneDrive": "OneDrive",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "只允许使用英文字母,数字 (0-9) 以及连字符 (-)",
|
"Only alphanumeric characters and hyphens are allowed": "只允许使用英文字母,数字 (0-9) 以及连字符 (-)",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "命令字符串中只允许使用英文字母,数字 (0-9) 以及连字符 (-)。",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "命令字符串中只允许使用英文字母,数字 (0-9) 以及连字符 (-)。",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "只能编辑文件集,创建一个新的知识库来编辑/添加文件。",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "只能编辑文件集,创建一个新的知识库来编辑/添加文件。",
|
||||||
"Only markdown files are allowed": "仅允许使用 markdown 文件",
|
"Only markdown files are allowed": "仅允许使用 markdown 文件",
|
||||||
"Only select users and groups with permission can access": "只有具有权限的用户和组才能访问",
|
"Only select users and groups with permission can access": "只有具有权限的用户和组才能访问",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "打开外部连接配置弹窗",
|
"Open modal to configure connection": "打开外部连接配置弹窗",
|
||||||
"Open Modal To Manage Floating Quick Actions": "管理快捷操作浮窗",
|
"Open Modal To Manage Floating Quick Actions": "管理快捷操作浮窗",
|
||||||
"Open Modal To Manage Image Compression": "打开图片压缩配置窗口",
|
"Open Modal To Manage Image Compression": "打开图片压缩配置窗口",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "展开侧边栏",
|
"Open Sidebar": "展开侧边栏",
|
||||||
"Open User Profile Menu": "打开个人资料菜单",
|
"Open User Profile Menu": "打开个人资料菜单",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI 可使用任何 OpenAPI 服务器提供的工具。",
|
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI 可使用任何 OpenAPI 服务器提供的工具。",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "暂不透露",
|
"Prefer not to say": "暂不透露",
|
||||||
"Prefix ID": "模型 ID 前缀",
|
"Prefix ID": "模型 ID 前缀",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "在模型 ID 前添加前缀以避免与其它连接提供的模型冲突。留空则禁用此功能。",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "在模型 ID 前添加前缀以避免与其它连接提供的模型冲突。留空则禁用此功能。",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "预览",
|
"Preview": "预览",
|
||||||
"Previous 30 days": "过去 30 天",
|
"Previous 30 days": "过去 30 天",
|
||||||
"Previous 7 days": "过去 7 天",
|
"Previous 7 days": "过去 7 天",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "拒绝了我的要求",
|
"Refused when it shouldn't have": "拒绝了我的要求",
|
||||||
"Regenerate": "重新生成",
|
"Regenerate": "重新生成",
|
||||||
"Regenerate Menu": "显示重新生成选项菜单",
|
"Regenerate Menu": "显示重新生成选项菜单",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "重新注册",
|
"Register Again": "重新注册",
|
||||||
"Register Client": "注册客户端",
|
"Register Client": "注册客户端",
|
||||||
"Registered": "已注册",
|
"Registered": "已注册",
|
||||||
|
|
@ -1438,6 +1456,7 @@
|
||||||
"Show Formatting Toolbar": "显示文本格式工具栏",
|
"Show Formatting Toolbar": "显示文本格式工具栏",
|
||||||
"Show image preview": "显示图像预览",
|
"Show image preview": "显示图像预览",
|
||||||
"Show Model": "显示模型",
|
"Show Model": "显示模型",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "表达您的支持!",
|
"Show your support!": "表达您的支持!",
|
||||||
"Showcased creativity": "很有创意",
|
"Showcased creativity": "很有创意",
|
||||||
"Sign in": "登录",
|
"Sign in": "登录",
|
||||||
|
|
@ -1473,6 +1492,7 @@
|
||||||
"STDOUT/STDERR": "标准输出/标准错误",
|
"STDOUT/STDERR": "标准输出/标准错误",
|
||||||
"Steps": "迭代步数",
|
"Steps": "迭代步数",
|
||||||
"Stop": "停止",
|
"Stop": "停止",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "停止序列 (Stop Sequence)",
|
"Stop Sequence": "停止序列 (Stop Sequence)",
|
||||||
"Stream Chat Response": "流式对话响应 (Stream Chat Response)",
|
"Stream Chat Response": "流式对话响应 (Stream Chat Response)",
|
||||||
"Stream Delta Chunk Size": "流式增量输出的分块大小(Stream Delta Chunk Size)",
|
"Stream Delta Chunk Size": "流式增量输出的分块大小(Stream Delta Chunk Size)",
|
||||||
|
|
@ -1502,6 +1522,7 @@
|
||||||
"Tags Generation": "标签生成",
|
"Tags Generation": "标签生成",
|
||||||
"Tags Generation Prompt": "标签生成提示词",
|
"Tags Generation Prompt": "标签生成提示词",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "无尾采样用于减少输出中出现概率较小的 Token 的影响。较高的值(例如 2.0)将进一步减少影响,而值 1.0 则禁用此设置。",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "无尾采样用于减少输出中出现概率较小的 Token 的影响。较高的值(例如 2.0)将进一步减少影响,而值 1.0 则禁用此设置。",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "点击以中断",
|
"Tap to interrupt": "点击以中断",
|
||||||
"Task List": "任务列表",
|
"Task List": "任务列表",
|
||||||
"Task Model": "任务模型",
|
"Task Model": "任务模型",
|
||||||
|
|
@ -1583,6 +1604,7 @@
|
||||||
"Toast notifications for new updates": "检测到新版本时显示更新通知",
|
"Toast notifications for new updates": "检测到新版本时显示更新通知",
|
||||||
"Today": "今天",
|
"Today": "今天",
|
||||||
"Today at {{LOCALIZED_TIME}}": "今天 {{LOCALIZED_TIME}}",
|
"Today at {{LOCALIZED_TIME}}": "今天 {{LOCALIZED_TIME}}",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "切换当前连接的启用状态",
|
"Toggle whether current connection is active.": "切换当前连接的启用状态",
|
||||||
"Token": "Token",
|
"Token": "Token",
|
||||||
"Too verbose": "过于冗长",
|
"Too verbose": "过于冗长",
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@
|
||||||
"A task model is used when performing tasks such as generating titles for chats and web search queries": "執行「產生對話標題」和「網頁搜尋查詢生成」等任務時使用的任務模型",
|
"A task model is used when performing tasks such as generating titles for chats and web search queries": "執行「產生對話標題」和「網頁搜尋查詢生成」等任務時使用的任務模型",
|
||||||
"a user": "使用者",
|
"a user": "使用者",
|
||||||
"About": "關於",
|
"About": "關於",
|
||||||
|
"Accept Autocomplete Generation\nJump to Prompt Variable": "",
|
||||||
"Access": "存取",
|
"Access": "存取",
|
||||||
"Access Control": "存取控制",
|
"Access Control": "存取控制",
|
||||||
"Accessible to all users": "所有使用者皆可存取",
|
"Accessible to all users": "所有使用者皆可存取",
|
||||||
|
|
@ -50,6 +51,7 @@
|
||||||
"Add Content": "新增內容",
|
"Add Content": "新增內容",
|
||||||
"Add content here": "在此新增內容",
|
"Add content here": "在此新增內容",
|
||||||
"Add Custom Parameter": "新增自訂參數",
|
"Add Custom Parameter": "新增自訂參數",
|
||||||
|
"Add Custom Prompt": "",
|
||||||
"Add Details": "豐富細節",
|
"Add Details": "豐富細節",
|
||||||
"Add Files": "新增檔案",
|
"Add Files": "新增檔案",
|
||||||
"Add Group": "新增群組",
|
"Add Group": "新增群組",
|
||||||
|
|
@ -149,6 +151,7 @@
|
||||||
"Ask": "提問",
|
"Ask": "提問",
|
||||||
"Ask a question": "提出問題",
|
"Ask a question": "提出問題",
|
||||||
"Assistant": "助理",
|
"Assistant": "助理",
|
||||||
|
"Attach File From Knowledge": "",
|
||||||
"Attach Knowledge": "附加知識庫",
|
"Attach Knowledge": "附加知識庫",
|
||||||
"Attach Notes": "附加筆記",
|
"Attach Notes": "附加筆記",
|
||||||
"Attach Webpage": "附加網頁",
|
"Attach Webpage": "附加網頁",
|
||||||
|
|
@ -268,6 +271,7 @@
|
||||||
"Close Banner": "關閉橫幅",
|
"Close Banner": "關閉橫幅",
|
||||||
"Close Configure Connection Modal": "關閉外部連線設定彈出視窗",
|
"Close Configure Connection Modal": "關閉外部連線設定彈出視窗",
|
||||||
"Close modal": "關閉彈出視窗",
|
"Close modal": "關閉彈出視窗",
|
||||||
|
"Close Modal": "",
|
||||||
"Close settings modal": "關閉設定彈出視窗",
|
"Close settings modal": "關閉設定彈出視窗",
|
||||||
"Close Sidebar": "收起側邊欄",
|
"Close Sidebar": "收起側邊欄",
|
||||||
"cloud": "雲端服務",
|
"cloud": "雲端服務",
|
||||||
|
|
@ -331,6 +335,8 @@
|
||||||
"Copied to clipboard": "已複製到剪貼簿",
|
"Copied to clipboard": "已複製到剪貼簿",
|
||||||
"Copy": "複製",
|
"Copy": "複製",
|
||||||
"Copy Formatted Text": "複製格式化文字",
|
"Copy Formatted Text": "複製格式化文字",
|
||||||
|
"Copy Last Code Block": "",
|
||||||
|
"Copy Last Response": "",
|
||||||
"Copy link": "複製連結",
|
"Copy link": "複製連結",
|
||||||
"Copy Link": "複製連結",
|
"Copy Link": "複製連結",
|
||||||
"Copy to clipboard": "複製到剪貼簿",
|
"Copy to clipboard": "複製到剪貼簿",
|
||||||
|
|
@ -493,6 +499,7 @@
|
||||||
"Edit Default Permissions": "編輯預設權限",
|
"Edit Default Permissions": "編輯預設權限",
|
||||||
"Edit Folder": "編輯分組",
|
"Edit Folder": "編輯分組",
|
||||||
"Edit Image": "編輯圖片",
|
"Edit Image": "編輯圖片",
|
||||||
|
"Edit Last Message": "",
|
||||||
"Edit Memory": "編輯記憶",
|
"Edit Memory": "編輯記憶",
|
||||||
"Edit User": "編輯使用者",
|
"Edit User": "編輯使用者",
|
||||||
"Edit User Group": "編輯使用者群組",
|
"Edit User Group": "編輯使用者群組",
|
||||||
|
|
@ -737,6 +744,7 @@
|
||||||
"Firecrawl API Base URL": "Firecrawl API 基底 URL",
|
"Firecrawl API Base URL": "Firecrawl API 基底 URL",
|
||||||
"Firecrawl API Key": "Firecrawl API 金鑰",
|
"Firecrawl API Key": "Firecrawl API 金鑰",
|
||||||
"Floating Quick Actions": "浮動快速操作",
|
"Floating Quick Actions": "浮動快速操作",
|
||||||
|
"Focus Chat Input": "",
|
||||||
"Folder": "分組",
|
"Folder": "分組",
|
||||||
"Folder Background Image": "分組背景圖",
|
"Folder Background Image": "分組背景圖",
|
||||||
"Folder deleted successfully": "成功刪除分組",
|
"Folder deleted successfully": "成功刪除分組",
|
||||||
|
|
@ -785,6 +793,7 @@
|
||||||
"Generate": "生成",
|
"Generate": "生成",
|
||||||
"Generate an image": "生成圖片",
|
"Generate an image": "生成圖片",
|
||||||
"Generate Image": "生成圖片",
|
"Generate Image": "生成圖片",
|
||||||
|
"Generate Message Pair": "",
|
||||||
"Generated Image": "生成圖片",
|
"Generated Image": "生成圖片",
|
||||||
"Generating search query": "正在生成搜尋查詢",
|
"Generating search query": "正在生成搜尋查詢",
|
||||||
"Generating...": "正在生成...",
|
"Generating...": "正在生成...",
|
||||||
|
|
@ -994,6 +1003,7 @@
|
||||||
"Memory updated successfully": "成功更新記憶",
|
"Memory updated successfully": "成功更新記憶",
|
||||||
"Merge Responses": "合併回應",
|
"Merge Responses": "合併回應",
|
||||||
"Merged Response": "整合回應結果",
|
"Merged Response": "整合回應結果",
|
||||||
|
"Message": "",
|
||||||
"Message rating should be enabled to use this feature": "需要啟用訊息評分才能使用此功能",
|
"Message rating should be enabled to use this feature": "需要啟用訊息評分才能使用此功能",
|
||||||
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "建立連結後傳送的訊息不會被分享。擁有網址的使用者可檢視分享的對話內容。",
|
"Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "建立連結後傳送的訊息不會被分享。擁有網址的使用者可檢視分享的對話內容。",
|
||||||
"Microsoft OneDrive": "Microsoft OneDrive",
|
"Microsoft OneDrive": "Microsoft OneDrive",
|
||||||
|
|
@ -1056,6 +1066,7 @@
|
||||||
"New Note": "新增筆記",
|
"New Note": "新增筆記",
|
||||||
"New Password": "新密碼",
|
"New Password": "新密碼",
|
||||||
"New Prompt": "新增提示詞",
|
"New Prompt": "新增提示詞",
|
||||||
|
"New Temporary Chat": "",
|
||||||
"New Tool": "新增工具",
|
"New Tool": "新增工具",
|
||||||
"new-channel": "new-channel",
|
"new-channel": "new-channel",
|
||||||
"Next message": "下一條訊息",
|
"Next message": "下一條訊息",
|
||||||
|
|
@ -1122,8 +1133,12 @@
|
||||||
"Ollama Version": "Ollama 版本",
|
"Ollama Version": "Ollama 版本",
|
||||||
"On": "開啟",
|
"On": "開啟",
|
||||||
"OneDrive": "OneDrive",
|
"OneDrive": "OneDrive",
|
||||||
|
"Only active when \"Paste Large Text as File\" setting is toggled on.": "",
|
||||||
|
"Only active when the chat input is in focus and an LLM is generating a response.": "",
|
||||||
|
"Only active when the chat input is in focus.": "",
|
||||||
"Only alphanumeric characters and hyphens are allowed": "只允許使用英文字母、數字和連字號",
|
"Only alphanumeric characters and hyphens are allowed": "只允許使用英文字母、數字和連字號",
|
||||||
"Only alphanumeric characters and hyphens are allowed in the command string.": "命令字串中只允許使用英文字母、數字和連字號。",
|
"Only alphanumeric characters and hyphens are allowed in the command string.": "命令字串中只允許使用英文字母、數字和連字號。",
|
||||||
|
"Only can be triggered when the chat input is in focus.": "",
|
||||||
"Only collections can be edited, create a new knowledge base to edit/add documents.": "只能編輯集合,請建立新的知識以編輯或新增檔案。",
|
"Only collections can be edited, create a new knowledge base to edit/add documents.": "只能編輯集合,請建立新的知識以編輯或新增檔案。",
|
||||||
"Only markdown files are allowed": "僅允許 Markdown 檔案",
|
"Only markdown files are allowed": "僅允許 Markdown 檔案",
|
||||||
"Only select users and groups with permission can access": "只有具有權限的選定使用者和群組可以存取",
|
"Only select users and groups with permission can access": "只有具有權限的選定使用者和群組可以存取",
|
||||||
|
|
@ -1137,6 +1152,7 @@
|
||||||
"Open modal to configure connection": "開啟外部連線設定彈出視窗",
|
"Open modal to configure connection": "開啟外部連線設定彈出視窗",
|
||||||
"Open Modal To Manage Floating Quick Actions": "開啟管理浮動快速操作的彈出視窗",
|
"Open Modal To Manage Floating Quick Actions": "開啟管理浮動快速操作的彈出視窗",
|
||||||
"Open Modal To Manage Image Compression": "打開圖片壓縮設定視窗",
|
"Open Modal To Manage Image Compression": "打開圖片壓縮設定視窗",
|
||||||
|
"Open Settings": "",
|
||||||
"Open Sidebar": "展開側邊欄",
|
"Open Sidebar": "展開側邊欄",
|
||||||
"Open User Profile Menu": "開啟個人資料選單",
|
"Open User Profile Menu": "開啟個人資料選單",
|
||||||
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI 可使用任何 OpenAPI 伺服器提供的工具。",
|
"Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI 可使用任何 OpenAPI 伺服器提供的工具。",
|
||||||
|
|
@ -1227,6 +1243,7 @@
|
||||||
"Prefer not to say": "不想透露",
|
"Prefer not to say": "不想透露",
|
||||||
"Prefix ID": "前置 ID",
|
"Prefix ID": "前置 ID",
|
||||||
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "前置 ID 用於透過為模型 ID 新增字首以避免與其他連線衝突 - 留空以停用",
|
"Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "前置 ID 用於透過為模型 ID 新增字首以避免與其他連線衝突 - 留空以停用",
|
||||||
|
"Prevent File Creation": "",
|
||||||
"Preview": "預覽",
|
"Preview": "預覽",
|
||||||
"Previous 30 days": "過去 30 天",
|
"Previous 30 days": "過去 30 天",
|
||||||
"Previous 7 days": "過去 7 天",
|
"Previous 7 days": "過去 7 天",
|
||||||
|
|
@ -1270,6 +1287,7 @@
|
||||||
"Refused when it shouldn't have": "不應拒絕時拒絕了",
|
"Refused when it shouldn't have": "不應拒絕時拒絕了",
|
||||||
"Regenerate": "重新產生回應",
|
"Regenerate": "重新產生回應",
|
||||||
"Regenerate Menu": "重新產生前顯示選單",
|
"Regenerate Menu": "重新產生前顯示選單",
|
||||||
|
"Regenerate Response": "",
|
||||||
"Register Again": "重新登錄",
|
"Register Again": "重新登錄",
|
||||||
"Register Client": "登錄用戶端",
|
"Register Client": "登錄用戶端",
|
||||||
"Registered": "已登錄",
|
"Registered": "已登錄",
|
||||||
|
|
@ -1438,6 +1456,7 @@
|
||||||
"Show Formatting Toolbar": "顯示文字格式工具列",
|
"Show Formatting Toolbar": "顯示文字格式工具列",
|
||||||
"Show image preview": "顯示圖片預覽",
|
"Show image preview": "顯示圖片預覽",
|
||||||
"Show Model": "顯示模型",
|
"Show Model": "顯示模型",
|
||||||
|
"Show Shortcuts": "",
|
||||||
"Show your support!": "表達您的支持!",
|
"Show your support!": "表達您的支持!",
|
||||||
"Showcased creativity": "展現創意",
|
"Showcased creativity": "展現創意",
|
||||||
"Sign in": "登入",
|
"Sign in": "登入",
|
||||||
|
|
@ -1473,6 +1492,7 @@
|
||||||
"STDOUT/STDERR": "STDOUT/STDERR",
|
"STDOUT/STDERR": "STDOUT/STDERR",
|
||||||
"Steps": "迭代步數",
|
"Steps": "迭代步數",
|
||||||
"Stop": "停止",
|
"Stop": "停止",
|
||||||
|
"Stop Generating": "",
|
||||||
"Stop Sequence": "停止序列",
|
"Stop Sequence": "停止序列",
|
||||||
"Stream Chat Response": "串流式對話回應",
|
"Stream Chat Response": "串流式對話回應",
|
||||||
"Stream Delta Chunk Size": "串流增量輸出的分塊大小(Stream Delta Chunk Size)",
|
"Stream Delta Chunk Size": "串流增量輸出的分塊大小(Stream Delta Chunk Size)",
|
||||||
|
|
@ -1502,6 +1522,7 @@
|
||||||
"Tags Generation": "標籤生成",
|
"Tags Generation": "標籤生成",
|
||||||
"Tags Generation Prompt": "標籤生成提示詞",
|
"Tags Generation Prompt": "標籤生成提示詞",
|
||||||
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "尾部自由取樣用於減少輸出結果中較低機率 token 的影響。較高的值(例如:2.0)會減少更多影響,而值為 1.0 時會停用此設定。",
|
"Tail free sampling is used to reduce the impact of less probable tokens from the output. A higher value (e.g., 2.0) will reduce the impact more, while a value of 1.0 disables this setting.": "尾部自由取樣用於減少輸出結果中較低機率 token 的影響。較高的值(例如:2.0)會減少更多影響,而值為 1.0 時會停用此設定。",
|
||||||
|
"Talk to Model": "",
|
||||||
"Tap to interrupt": "點選以中斷",
|
"Tap to interrupt": "點選以中斷",
|
||||||
"Task List": "工作清單",
|
"Task List": "工作清單",
|
||||||
"Task Model": "任務模型",
|
"Task Model": "任務模型",
|
||||||
|
|
@ -1583,6 +1604,7 @@
|
||||||
"Toast notifications for new updates": "快顯通知新的更新",
|
"Toast notifications for new updates": "快顯通知新的更新",
|
||||||
"Today": "今天",
|
"Today": "今天",
|
||||||
"Today at {{LOCALIZED_TIME}}": "今天 {{LOCALIZED_TIME}}",
|
"Today at {{LOCALIZED_TIME}}": "今天 {{LOCALIZED_TIME}}",
|
||||||
|
"Toggle Sidebar": "",
|
||||||
"Toggle whether current connection is active.": "切換當前連接的啟用狀態",
|
"Toggle whether current connection is active.": "切換當前連接的啟用狀態",
|
||||||
"Token": "Token",
|
"Token": "Token",
|
||||||
"Too verbose": "太過冗長",
|
"Too verbose": "太過冗長",
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue