From 67c4ea1e57a9fae3b77a16256b0fa20518aac59b Mon Sep 17 00:00:00 2001 From: Timothy Jaeryang Baek Date: Thu, 6 Nov 2025 14:17:54 -0500 Subject: [PATCH 01/11] fix: image edit workflow editor --- src/lib/components/admin/Settings/Images.svelte | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/lib/components/admin/Settings/Images.svelte b/src/lib/components/admin/Settings/Images.svelte index f9be013adf..0fb2f29ca3 100644 --- a/src/lib/components/admin/Settings/Images.svelte +++ b/src/lib/components/admin/Settings/Images.svelte @@ -62,6 +62,7 @@ } ]; + let showComfyUIEditWorkflowEditor = false; let REQUIRED_EDIT_WORKFLOW_NODES = [ { type: 'image', @@ -1075,7 +1076,7 @@ aria-label={$i18n.t('Edit workflow.json content')} on:click={() => { // open code editor modal - showComfyUIWorkflowEditor = true; + showComfyUIEditWorkflowEditor = true; }} > {$i18n.t('Edit')} @@ -1100,7 +1101,7 @@
{ From c38f878e1e5257de1a12c00db14cead8d523e7c1 Mon Sep 17 00:00:00 2001 From: Timothy Jaeryang Baek Date: Thu, 6 Nov 2025 15:19:08 -0500 Subject: [PATCH 02/11] fix: firecrawl import --- backend/open_webui/retrieval/web/firecrawl.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backend/open_webui/retrieval/web/firecrawl.py b/backend/open_webui/retrieval/web/firecrawl.py index acad014d70..00de5de9cb 100644 --- a/backend/open_webui/retrieval/web/firecrawl.py +++ b/backend/open_webui/retrieval/web/firecrawl.py @@ -4,7 +4,6 @@ from typing import Optional, List from open_webui.retrieval.web.main import SearchResult, get_filtered_results from open_webui.env import SRC_LOG_LEVELS -from firecrawl import Firecrawl log = logging.getLogger(__name__) log.setLevel(SRC_LOG_LEVELS["RAG"]) @@ -18,6 +17,8 @@ def search_firecrawl( filter_list: Optional[List[str]] = None, ) -> List[SearchResult]: try: + from firecrawl import Firecrawl + firecrawl = Firecrawl(api_key=firecrawl_api_key, api_url=firecrawl_url) response = firecrawl.search( query=query, limit=count, ignore_invalid_urls=True, timeout=count * 3 From 7faf19dad9511305e8a0c3ea15f0a3dfe0fa1ca0 Mon Sep 17 00:00:00 2001 From: Timothy Jaeryang Baek Date: Thu, 6 Nov 2025 15:21:06 -0500 Subject: [PATCH 03/11] refac --- backend/open_webui/retrieval/web/firecrawl.py | 4 ++-- backend/open_webui/retrieval/web/utils.py | 9 ++++++--- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/backend/open_webui/retrieval/web/firecrawl.py b/backend/open_webui/retrieval/web/firecrawl.py index 00de5de9cb..2d9b104bca 100644 --- a/backend/open_webui/retrieval/web/firecrawl.py +++ b/backend/open_webui/retrieval/web/firecrawl.py @@ -17,9 +17,9 @@ def search_firecrawl( filter_list: Optional[List[str]] = None, ) -> List[SearchResult]: try: - from firecrawl import Firecrawl + from firecrawl import FirecrawlApp - firecrawl = Firecrawl(api_key=firecrawl_api_key, api_url=firecrawl_url) + firecrawl = FirecrawlApp(api_key=firecrawl_api_key, api_url=firecrawl_url) response = firecrawl.search( query=query, limit=count, ignore_invalid_urls=True, timeout=count * 3 ) diff --git a/backend/open_webui/retrieval/web/utils.py b/backend/open_webui/retrieval/web/utils.py index 74c4a734da..91699a157b 100644 --- a/backend/open_webui/retrieval/web/utils.py +++ b/backend/open_webui/retrieval/web/utils.py @@ -41,7 +41,6 @@ from open_webui.config import ( ) from open_webui.env import SRC_LOG_LEVELS -from firecrawl import Firecrawl log = logging.getLogger(__name__) log.setLevel(SRC_LOG_LEVELS["RAG"]) @@ -227,7 +226,9 @@ class SafeFireCrawlLoader(BaseLoader, RateLimitMixin, URLProcessingMixin): self.params, ) 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( self.web_paths, formats=["markdown"], @@ -266,7 +267,9 @@ class SafeFireCrawlLoader(BaseLoader, RateLimitMixin, URLProcessingMixin): self.params, ) 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( self.web_paths, formats=["markdown"], From 639d26252e528c9c37a5f553b11eb94376d8792d Mon Sep 17 00:00:00 2001 From: Timothy Jaeryang Baek Date: Thu, 6 Nov 2025 15:21:41 -0500 Subject: [PATCH 04/11] fix: Socket.IO CORS warning Co-Authored-By: Gero Doll <6284675+limbicnation@users.noreply.github.com> --- backend/open_webui/socket/main.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/backend/open_webui/socket/main.py b/backend/open_webui/socket/main.py index 781f2cb1ae..818a57807f 100644 --- a/backend/open_webui/socket/main.py +++ b/backend/open_webui/socket/main.py @@ -53,6 +53,9 @@ log.setLevel(SRC_LOG_LEVELS["SOCKET"]) REDIS = None +# Configure CORS for Socket.IO +SOCKETIO_CORS_ORIGINS = "*" if CORS_ALLOW_ORIGIN == ["*"] else CORS_ALLOW_ORIGIN + if WEBSOCKET_MANAGER == "redis": if WEBSOCKET_SENTINEL_HOSTS: mgr = socketio.AsyncRedisManager( @@ -63,7 +66,7 @@ if WEBSOCKET_MANAGER == "redis": else: mgr = socketio.AsyncRedisManager(WEBSOCKET_REDIS_URL) sio = socketio.AsyncServer( - cors_allowed_origins=CORS_ALLOW_ORIGIN, + cors_allowed_origins=SOCKETIO_CORS_ORIGINS, async_mode="asgi", transports=(["websocket"] if ENABLE_WEBSOCKET_SUPPORT else ["polling"]), allow_upgrades=ENABLE_WEBSOCKET_SUPPORT, @@ -72,7 +75,7 @@ if WEBSOCKET_MANAGER == "redis": ) else: sio = socketio.AsyncServer( - cors_allowed_origins=CORS_ALLOW_ORIGIN, + cors_allowed_origins=SOCKETIO_CORS_ORIGINS, async_mode="asgi", transports=(["websocket"] if ENABLE_WEBSOCKET_SUPPORT else ["polling"]), allow_upgrades=ENABLE_WEBSOCKET_SUPPORT, From 96b98cd13cbd2826e0524c92d61173221ce3cbe2 Mon Sep 17 00:00:00 2001 From: "Adam M. Smith" Date: Thu, 6 Nov 2025 21:01:51 +0000 Subject: [PATCH 05/11] feat: add OAUTH_GROUPS_SEPARATOR for configurable group parsing --- backend/open_webui/config.py | 2 ++ backend/open_webui/utils/oauth.py | 7 ++++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/backend/open_webui/config.py b/backend/open_webui/config.py index 2576e8e995..8d5b6829dc 100644 --- a/backend/open_webui/config.py +++ b/backend/open_webui/config.py @@ -570,6 +570,8 @@ OAUTH_BLOCKED_GROUPS = PersistentConfig( os.environ.get("OAUTH_BLOCKED_GROUPS", "[]"), ) +OAUTH_GROUPS_SEPARATOR = os.environ.get("OAUTH_GROUPS_SEPARATOR", ";") + OAUTH_ROLES_CLAIM = PersistentConfig( "OAUTH_ROLES_CLAIM", "oauth.roles_claim", diff --git a/backend/open_webui/utils/oauth.py b/backend/open_webui/utils/oauth.py index 26706b65f4..392f4cd4bf 100644 --- a/backend/open_webui/utils/oauth.py +++ b/backend/open_webui/utils/oauth.py @@ -42,6 +42,7 @@ from open_webui.config import ( ENABLE_OAUTH_GROUP_MANAGEMENT, ENABLE_OAUTH_GROUP_CREATION, OAUTH_BLOCKED_GROUPS, + OAUTH_GROUPS_SEPARATOR, OAUTH_ROLES_CLAIM, OAUTH_SUB_CLAIM, OAUTH_GROUPS_CLAIM, @@ -1035,7 +1036,11 @@ class OAuthManager: if isinstance(claim_data, list): user_oauth_groups = claim_data elif isinstance(claim_data, str): - user_oauth_groups = [claim_data] + # 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] else: user_oauth_groups = [] From c2c02846a8745859ea48ac8b8b8a9f746f6e659b Mon Sep 17 00:00:00 2001 From: Timothy Jaeryang Baek Date: Thu, 6 Nov 2025 16:35:19 -0500 Subject: [PATCH 06/11] fix: tool calling --- backend/open_webui/utils/middleware.py | 2 +- backend/open_webui/utils/tools.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/backend/open_webui/utils/middleware.py b/backend/open_webui/utils/middleware.py index 80c4c460cb..e5b84a3d79 100644 --- a/backend/open_webui/utils/middleware.py +++ b/backend/open_webui/utils/middleware.py @@ -2839,7 +2839,7 @@ async def process_chat_response( ) else: - tool_function = await get_updated_tool_function( + tool_function = get_updated_tool_function( function=tool["callable"], extra_params={ "__messages__": form_data.get( diff --git a/backend/open_webui/utils/tools.py b/backend/open_webui/utils/tools.py index c1f07445ad..1d1254f184 100644 --- a/backend/open_webui/utils/tools.py +++ b/backend/open_webui/utils/tools.py @@ -91,13 +91,13 @@ def get_async_tool_function_and_apply_extra_params( 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 __function__ = getattr(function, "__function__", None) __extra_params__ = getattr(function, "__extra_params__", 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__, {**__extra_params__, **extra_params}, ) From e239e170508d7243d23e2d51d0d5e80aa495a2b2 Mon Sep 17 00:00:00 2001 From: EntropyYue Date: Fri, 7 Nov 2025 05:37:30 +0800 Subject: [PATCH 07/11] fix: Shortcuts Modal i18n --- src/lib/components/chat/ShortcutsModal.svelte | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/src/lib/components/chat/ShortcutsModal.svelte b/src/lib/components/chat/ShortcutsModal.svelte index 1395518035..cc62258caa 100644 --- a/src/lib/components/chat/ShortcutsModal.svelte +++ b/src/lib/components/chat/ShortcutsModal.svelte @@ -65,6 +65,36 @@
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + {#each items as shortcut}
From 9b3ecb703a65a5f93f2cc629e4f167d358b6ae0c Mon Sep 17 00:00:00 2001 From: Timothy Jaeryang Baek Date: Thu, 6 Nov 2025 16:37:41 -0500 Subject: [PATCH 08/11] chore: bump --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index b980c15516..c86757e9a5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "open-webui", - "version": "0.6.35", + "version": "0.6.36", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "open-webui", - "version": "0.6.35", + "version": "0.6.36", "dependencies": { "@azure/msal-browser": "^4.5.0", "@codemirror/lang-javascript": "^6.2.2", diff --git a/package.json b/package.json index 6627acbc3c..9065bda0ce 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "open-webui", - "version": "0.6.35", + "version": "0.6.36", "private": true, "scripts": { "dev": "npm run pyodide:fetch && vite dev --host", From a32a3dfee46a0b36e374fe5218aa5b0f6c2d6d84 Mon Sep 17 00:00:00 2001 From: Classic298 <27028174+Classic298@users.noreply.github.com> Date: Thu, 6 Nov 2025 22:38:29 +0100 Subject: [PATCH 09/11] chore: CHANGELOG 0.6.36 --- CHANGELOG.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 80906a5bbd..4d119a1386 100644 --- a/CHANGELOG.md +++ b/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/), 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 ### Added From 0d0a37c8848f9d6b34ec9f67ac396b77e1bc659c Mon Sep 17 00:00:00 2001 From: Timothy Jaeryang Baek Date: Thu, 6 Nov 2025 16:39:07 -0500 Subject: [PATCH 10/11] chore: format --- docs/SECURITY.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/SECURITY.md b/docs/SECURITY.md index 82bd1388b8..0de8ab34b5 100644 --- a/docs/SECURITY.md +++ b/docs/SECURITY.md @@ -59,14 +59,14 @@ We appreciate the community's interest in identifying potential vulnerabilities. > > 1. affects default configurations, **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**, -> **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. +> 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. 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. -> [!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. +> [!NOTE] +> **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.** From 49d57ae82bdbd0497581517101ae13d31b3e3776 Mon Sep 17 00:00:00 2001 From: Timothy Jaeryang Baek Date: Thu, 6 Nov 2025 16:44:33 -0500 Subject: [PATCH 11/11] chore: format --- docs/SECURITY.md | 3 ++- src/lib/i18n/locales/ar-BH/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/ar/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/bg-BG/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/bn-BD/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/bo-TB/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/bs-BA/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/ca-ES/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/ceb-PH/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/cs-CZ/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/da-DK/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/de-DE/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/dg-DG/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/el-GR/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/en-GB/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/en-US/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/es-ES/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/et-EE/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/eu-ES/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/fa-IR/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/fi-FI/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/fr-CA/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/fr-FR/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/gl-ES/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/he-IL/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/hi-IN/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/hr-HR/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/hu-HU/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/id-ID/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/ie-GA/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/it-IT/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/ja-JP/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/ka-GE/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/kab-DZ/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/ko-KR/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/lt-LT/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/ms-MY/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/nb-NO/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/nl-NL/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/pa-IN/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/pl-PL/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/pt-BR/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/pt-PT/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/ro-RO/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/ru-RU/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/sk-SK/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/sr-RS/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/sv-SE/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/th-TH/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/tk-TM/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/tr-TR/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/ug-CN/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/uk-UA/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/ur-PK/translation.json | 22 +++++++++++++++++++ .../i18n/locales/uz-Cyrl-UZ/translation.json | 22 +++++++++++++++++++ .../i18n/locales/uz-Latn-Uz/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/vi-VN/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/zh-CN/translation.json | 22 +++++++++++++++++++ src/lib/i18n/locales/zh-TW/translation.json | 22 +++++++++++++++++++ 59 files changed, 1278 insertions(+), 1 deletion(-) diff --git a/docs/SECURITY.md b/docs/SECURITY.md index 0de8ab34b5..90951e5265 100644 --- a/docs/SECURITY.md +++ b/docs/SECURITY.md @@ -65,7 +65,8 @@ We appreciate the community's interest in identifying potential vulnerabilities. 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. -> [!NOTE] +> [!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.** diff --git a/src/lib/i18n/locales/ar-BH/translation.json b/src/lib/i18n/locales/ar-BH/translation.json index 00cb218e48..8a005a0e4d 100644 --- a/src/lib/i18n/locales/ar-BH/translation.json +++ b/src/lib/i18n/locales/ar-BH/translation.json @@ -26,6 +26,7 @@ "A task model is used when performing tasks such as generating titles for chats and web search queries": "يتم استخدام نموذج المهمة عند تنفيذ مهام مثل إنشاء عناوين للدردشات واستعلامات بحث الويب", "a user": "مستخدم", "About": "عن", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "", "Access Control": "", "Accessible to all users": "", @@ -50,6 +51,7 @@ "Add Content": "", "Add content here": "", "Add Custom Parameter": "", + "Add Custom Prompt": "", "Add Details": "", "Add Files": "إضافة ملفات", "Add Group": "", @@ -149,6 +151,7 @@ "Ask": "", "Ask a question": "", "Assistant": "", + "Attach File From Knowledge": "", "Attach Knowledge": "", "Attach Notes": "", "Attach Webpage": "", @@ -268,6 +271,7 @@ "Close Banner": "", "Close Configure Connection Modal": "", "Close modal": "", + "Close Modal": "", "Close settings modal": "", "Close Sidebar": "", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "", "Copy": "نسخ", "Copy Formatted Text": "", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "", "Copy Link": "أنسخ الرابط", "Copy to clipboard": "", @@ -493,6 +499,7 @@ "Edit Default Permissions": "", "Edit Folder": "", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "", "Edit User": "تعديل المستخدم", "Edit User Group": "", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "", "Firecrawl API Key": "", "Floating Quick Actions": "", + "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "", @@ -785,6 +793,7 @@ "Generate": "", "Generate an image": "", "Generate Image": "", + "Generate Message Pair": "", "Generated Image": "", "Generating search query": "إنشاء استعلام بحث", "Generating...": "", @@ -994,6 +1003,7 @@ "Memory updated successfully": "", "Merge Responses": "", "Merged Response": "نتيجة الردود المدمجة", + "Message": "", "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 من عرض الدردشة المشتركة", "Microsoft OneDrive": "", @@ -1056,6 +1066,7 @@ "New Note": "", "New Password": "كلمة المرور الجديدة", "New Prompt": "", + "New Temporary Chat": "", "New Tool": "", "new-channel": "", "Next message": "", @@ -1122,8 +1133,12 @@ "Ollama Version": "Ollama الاصدار", "On": "تشغيل", "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 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 markdown files are allowed": "", "Only select users and groups with permission can access": "", @@ -1137,6 +1152,7 @@ "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Image Compression": "", + "Open Settings": "", "Open Sidebar": "", "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", @@ -1227,6 +1243,7 @@ "Prefer not to say": "", "Prefix ID": "", "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": "", "Previous 30 days": "أخر 30 يوم", "Previous 7 days": "أخر 7 أيام", @@ -1270,6 +1287,7 @@ "Refused when it shouldn't have": "رفض عندما لا ينبغي أن يكون", "Regenerate": "تجديد", "Regenerate Menu": "", + "Regenerate Response": "", "Register Again": "", "Register Client": "", "Registered": "", @@ -1443,6 +1461,7 @@ "Show Formatting Toolbar": "", "Show image preview": "", "Show Model": "", + "Show Shortcuts": "", "Show your support!": "", "Showcased creativity": "أظهر الإبداع", "Sign in": "تسجيل الدخول", @@ -1478,6 +1497,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "", + "Stop Generating": "", "Stop Sequence": "وقف التسلسل", "Stream Chat Response": "", "Stream Delta Chunk Size": "", @@ -1507,6 +1527,7 @@ "Tags Generation": "", "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.": "", + "Talk to Model": "", "Tap to interrupt": "", "Task List": "", "Task Model": "", @@ -1588,6 +1609,7 @@ "Toast notifications for new updates": "", "Today": "اليوم", "Today at {{LOCALIZED_TIME}}": "", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "", "Token": "", "Too verbose": "", diff --git a/src/lib/i18n/locales/ar/translation.json b/src/lib/i18n/locales/ar/translation.json index 0707d035df..63cdd54340 100644 --- a/src/lib/i18n/locales/ar/translation.json +++ b/src/lib/i18n/locales/ar/translation.json @@ -26,6 +26,7 @@ "A task model is used when performing tasks such as generating titles for chats and web search queries": "يُستخدم نموذج المهام عند تنفيذ مهام مثل توليد عناوين المحادثات واستعلامات البحث على الويب", "a user": "مستخدم", "About": "حول", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "الوصول", "Access Control": "التحكم في الوصول", "Accessible to all users": "متاح لجميع المستخدمين", @@ -50,6 +51,7 @@ "Add Content": "إضافة محتوى", "Add content here": "أضف المحتوى هنا", "Add Custom Parameter": "", + "Add Custom Prompt": "", "Add Details": "", "Add Files": "إضافة ملفات", "Add Group": "إضافة مجموعة", @@ -149,6 +151,7 @@ "Ask": "اسأل", "Ask a question": "اطرح سؤالاً", "Assistant": "المساعد", + "Attach File From Knowledge": "", "Attach Knowledge": "", "Attach Notes": "", "Attach Webpage": "", @@ -268,6 +271,7 @@ "Close Banner": "", "Close Configure Connection Modal": "", "Close modal": "", + "Close Modal": "", "Close settings modal": "", "Close Sidebar": "", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "تم النسخ إلى الحافظة", "Copy": "نسخ", "Copy Formatted Text": "", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "", "Copy Link": "نسخ الرابط", "Copy to clipboard": "نسخ إلى الحافظة", @@ -493,6 +499,7 @@ "Edit Default Permissions": "تعديل الأذونات الافتراضية", "Edit Folder": "", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "تعديل الذاكرة", "Edit User": "تعديل المستخدم", "Edit User Group": "تعديل مجموعة المستخدمين", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "", "Firecrawl API Key": "", "Floating Quick Actions": "", + "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "تم حذف المجلد بنجاح", @@ -785,6 +793,7 @@ "Generate": "", "Generate an image": "توليد صورة", "Generate Image": "توليد صورة", + "Generate Message Pair": "", "Generated Image": "", "Generating search query": "إنشاء استعلام بحث", "Generating...": "", @@ -994,6 +1003,7 @@ "Memory updated successfully": "تم تحديث الذاكرة بنجاح", "Merge Responses": "دمج الردود", "Merged Response": "نتيجة الردود المدمجة", + "Message": "", "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 من عرض الدردشة المشتركة", "Microsoft OneDrive": "", @@ -1056,6 +1066,7 @@ "New Note": "", "New Password": "كلمة المرور الجديدة", "New Prompt": "", + "New Temporary Chat": "", "New Tool": "", "new-channel": "قناة جديدة", "Next message": "", @@ -1122,8 +1133,12 @@ "Ollama Version": "Ollama الاصدار", "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 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 markdown files are allowed": "", "Only select users and groups with permission can access": "يمكن الوصول فقط من قبل المستخدمين والمجموعات المصرح لهم", @@ -1137,6 +1152,7 @@ "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Image Compression": "", + "Open Settings": "", "Open Sidebar": "", "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", @@ -1227,6 +1243,7 @@ "Prefer not to say": "", "Prefix ID": "معرف البادئة", "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": "", "Previous 30 days": "أخر 30 يوم", "Previous 7 days": "أخر 7 أيام", @@ -1270,6 +1287,7 @@ "Refused when it shouldn't have": "رفض عندما لا ينبغي أن يكون", "Regenerate": "تجديد", "Regenerate Menu": "", + "Regenerate Response": "", "Register Again": "", "Register Client": "", "Registered": "", @@ -1443,6 +1461,7 @@ "Show Formatting Toolbar": "", "Show image preview": "", "Show Model": "", + "Show Shortcuts": "", "Show your support!": "أظهر دعمك!", "Showcased creativity": "أظهر الإبداع", "Sign in": "تسجيل الدخول", @@ -1478,6 +1497,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "إيقاف", + "Stop Generating": "", "Stop Sequence": "وقف التسلسل", "Stream Chat Response": "بث استجابة الدردشة", "Stream Delta Chunk Size": "", @@ -1507,6 +1527,7 @@ "Tags Generation": "إنشاء الوسوم", "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 تعطل هذا الإعداد.", + "Talk to Model": "", "Tap to interrupt": "اضغط للمقاطعة", "Task List": "", "Task Model": "", @@ -1588,6 +1609,7 @@ "Toast notifications for new updates": "إشعارات منبثقة للتحديثات الجديدة", "Today": "اليوم", "Today at {{LOCALIZED_TIME}}": "", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "", "Token": "رمز", "Too verbose": "مفرط في التفاصيل", diff --git a/src/lib/i18n/locales/bg-BG/translation.json b/src/lib/i18n/locales/bg-BG/translation.json index dd7baf6c27..41dcb0ca62 100644 --- a/src/lib/i18n/locales/bg-BG/translation.json +++ b/src/lib/i18n/locales/bg-BG/translation.json @@ -26,6 +26,7 @@ "A task model is used when performing tasks such as generating titles for chats and web search queries": "Моделът на задачите се използва при изпълнението на задачите като генериране на заглавия за чатове и заявки за търсене в мрежата", "a user": "потребител", "About": "Относно", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "Достъп", "Access Control": "Контрол на достъпа", "Accessible to all users": "Достъпно за всички потребители", @@ -50,6 +51,7 @@ "Add Content": "Добавяне на съдържание", "Add content here": "Добавете съдържание тук", "Add Custom Parameter": "", + "Add Custom Prompt": "", "Add Details": "", "Add Files": "Добавяне на Файлове", "Add Group": "Добавяне на група", @@ -149,6 +151,7 @@ "Ask": "Питай", "Ask a question": "Задайте въпрос", "Assistant": "Асистент", + "Attach File From Knowledge": "", "Attach Knowledge": "", "Attach Notes": "", "Attach Webpage": "", @@ -268,6 +271,7 @@ "Close Banner": "", "Close Configure Connection Modal": "", "Close modal": "", + "Close Modal": "", "Close settings modal": "", "Close Sidebar": "", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "Копирано в клипборда", "Copy": "Копирай", "Copy Formatted Text": "", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "", "Copy Link": "Копиране на връзка", "Copy to clipboard": "Копиране в клипборда", @@ -493,6 +499,7 @@ "Edit Default Permissions": "Редактиране на разрешения по подразбиране", "Edit Folder": "", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "Редактиране на памет", "Edit User": "Редактиране на потребител", "Edit User Group": "Редактиране на потребителска група", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "", "Firecrawl API Key": "", "Floating Quick Actions": "", + "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "Папката е изтрита успешно", @@ -785,6 +793,7 @@ "Generate": "", "Generate an image": "Генериране на изображение", "Generate Image": "Генериране на изображение", + "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Генериране на заявка за търсене", "Generating...": "", @@ -994,6 +1003,7 @@ "Memory updated successfully": "Паметта е актуализирана успешно", "Merge Responses": "Обединяване на отговори", "Merged Response": "Обединен отговор", + "Message": "", "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 адреса ще могат да видят споделения чат.", "Microsoft OneDrive": "", @@ -1056,6 +1066,7 @@ "New Note": "Нова бележка", "New Password": "Нова парола", "New Prompt": "", + "New Temporary Chat": "", "New Tool": "", "new-channel": "нов-канал", "Next message": "", @@ -1122,8 +1133,12 @@ "Ollama Version": "Ollama Версия", "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 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 markdown files are allowed": "", "Only select users and groups with permission can access": "Само избрани потребители и групи с разрешение могат да имат достъп", @@ -1137,6 +1152,7 @@ "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Image Compression": "", + "Open Settings": "", "Open Sidebar": "", "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", @@ -1227,6 +1243,7 @@ "Prefer not to say": "", "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-тата на моделите - оставете празно, за да деактивирате", + "Prevent File Creation": "", "Preview": "", "Previous 30 days": "Предишните 30 дни", "Previous 7 days": "Предишните 7 дни", @@ -1270,6 +1287,7 @@ "Refused when it shouldn't have": "Отказано, когато не трябва да бъде", "Regenerate": "Регенериране", "Regenerate Menu": "", + "Regenerate Response": "", "Register Again": "", "Register Client": "", "Registered": "", @@ -1439,6 +1457,7 @@ "Show Formatting Toolbar": "", "Show image preview": "", "Show Model": "Покажи модел", + "Show Shortcuts": "", "Show your support!": "Покажете вашата подкрепа!", "Showcased creativity": "Показана креативност", "Sign in": "Вписване", @@ -1474,6 +1493,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Спри", + "Stop Generating": "", "Stop Sequence": "Стоп последователност", "Stream Chat Response": "Поточен чат отговор", "Stream Delta Chunk Size": "", @@ -1503,6 +1523,7 @@ "Tags Generation": "Генериране на тагове", "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.": "", + "Talk to Model": "", "Tap to interrupt": "Докоснете за прекъсване", "Task List": "", "Task Model": "", @@ -1584,6 +1605,7 @@ "Toast notifications for new updates": "Изскачащи известия за нови актуализации", "Today": "Днес", "Today at {{LOCALIZED_TIME}}": "", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "", "Token": "Токен", "Too verbose": "Прекалено многословно", diff --git a/src/lib/i18n/locales/bn-BD/translation.json b/src/lib/i18n/locales/bn-BD/translation.json index 90c5f5c08a..36ca4d5e83 100644 --- a/src/lib/i18n/locales/bn-BD/translation.json +++ b/src/lib/i18n/locales/bn-BD/translation.json @@ -26,6 +26,7 @@ "A task model is used when performing tasks such as generating titles for chats and web search queries": "চ্যাট এবং ওয়েব অনুসন্ধান প্রশ্নের জন্য শিরোনাম তৈরি করার মতো কাজগুলি সম্পাদন করার সময় একটি টাস্ক মডেল ব্যবহার করা হয়", "a user": "একজন ব্যাবহারকারী", "About": "সম্পর্কে", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "", "Access Control": "", "Accessible to all users": "", @@ -50,6 +51,7 @@ "Add Content": "", "Add content here": "", "Add Custom Parameter": "", + "Add Custom Prompt": "", "Add Details": "", "Add Files": "ফাইল যোগ করুন", "Add Group": "", @@ -149,6 +151,7 @@ "Ask": "", "Ask a question": "", "Assistant": "", + "Attach File From Knowledge": "", "Attach Knowledge": "", "Attach Notes": "", "Attach Webpage": "", @@ -268,6 +271,7 @@ "Close Banner": "", "Close Configure Connection Modal": "", "Close modal": "", + "Close Modal": "", "Close settings modal": "", "Close Sidebar": "", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "", "Copy": "অনুলিপি", "Copy Formatted Text": "", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "", "Copy Link": "লিংক কপি করুন", "Copy to clipboard": "", @@ -493,6 +499,7 @@ "Edit Default Permissions": "", "Edit Folder": "", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "", "Edit User": "ইউজার এডিট করুন", "Edit User Group": "", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "", "Firecrawl API Key": "", "Floating Quick Actions": "", + "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "", @@ -785,6 +793,7 @@ "Generate": "", "Generate an image": "", "Generate Image": "", + "Generate Message Pair": "", "Generated Image": "", "Generating search query": "অনুসন্ধান ক্যোয়ারী তৈরি করা হচ্ছে", "Generating...": "", @@ -994,6 +1003,7 @@ "Memory updated successfully": "", "Merge Responses": "", "Merged Response": "একত্রিত প্রতিক্রিয়া ফলাফল", + "Message": "", "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.": "আপনার লিঙ্ক তৈরি করার পরে আপনার পাঠানো বার্তাগুলি শেয়ার করা হবে না। ইউআরএল ব্যবহারকারীরা শেয়ার করা চ্যাট দেখতে পারবেন।", "Microsoft OneDrive": "", @@ -1056,6 +1066,7 @@ "New Note": "", "New Password": "নতুন পাসওয়ার্ড", "New Prompt": "", + "New Temporary Chat": "", "New Tool": "", "new-channel": "", "Next message": "", @@ -1122,8 +1133,12 @@ "Ollama Version": "Ollama ভার্সন", "On": "চালু", "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 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 markdown files are allowed": "", "Only select users and groups with permission can access": "", @@ -1137,6 +1152,7 @@ "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Image Compression": "", + "Open Settings": "", "Open Sidebar": "", "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", @@ -1227,6 +1243,7 @@ "Prefer not to say": "", "Prefix ID": "", "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": "", "Previous 30 days": "পূর্ব ৩০ দিন", "Previous 7 days": "পূর্ব ৭ দিন", @@ -1270,6 +1287,7 @@ "Refused when it shouldn't have": "যদি উপযুক্ত নয়, তবে রেজিগেনেট করা হচ্ছে", "Regenerate": "রেজিগেনেট করুন", "Regenerate Menu": "", + "Regenerate Response": "", "Register Again": "", "Register Client": "", "Registered": "", @@ -1439,6 +1457,7 @@ "Show Formatting Toolbar": "", "Show image preview": "", "Show Model": "", + "Show Shortcuts": "", "Show your support!": "", "Showcased creativity": "সৃজনশীলতা প্রদর্শন", "Sign in": "সাইন ইন", @@ -1474,6 +1493,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "", + "Stop Generating": "", "Stop Sequence": "সিকোয়েন্স থামান", "Stream Chat Response": "", "Stream Delta Chunk Size": "", @@ -1503,6 +1523,7 @@ "Tags Generation": "", "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.": "", + "Talk to Model": "", "Tap to interrupt": "", "Task List": "", "Task Model": "", @@ -1584,6 +1605,7 @@ "Toast notifications for new updates": "", "Today": "আজ", "Today at {{LOCALIZED_TIME}}": "", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "", "Token": "", "Too verbose": "", diff --git a/src/lib/i18n/locales/bo-TB/translation.json b/src/lib/i18n/locales/bo-TB/translation.json index 62eece9f1e..c7efcd4619 100644 --- a/src/lib/i18n/locales/bo-TB/translation.json +++ b/src/lib/i18n/locales/bo-TB/translation.json @@ -26,6 +26,7 @@ "A task model is used when performing tasks such as generating titles for chats and web search queries": "ལས་ཀའི་དཔེ་དབྱིབས་ནི་ཁ་བརྡའི་ཁ་བྱང་བཟོ་བ་དང་དྲ་བའི་འཚོལ་བཤེར་འདྲི་བ་ལྟ་བུའི་ལས་འགན་སྒྲུབ་སྐབས་སྤྱོད་ཀྱི་ཡོད།", "a user": "བེད་སྤྱོད་མཁན་ཞིག", "About": "སྐོར་ལོ།", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "འཛུལ་སྤྱོད།", "Access Control": "འཛུལ་སྤྱོད་ཚོད་འཛིན།", "Accessible to all users": "བེད་སྤྱོད་མཁན་ཡོངས་ལ་འཛུལ་སྤྱོད་ཆོག་པ།", @@ -50,6 +51,7 @@ "Add Content": "ནང་དོན་སྣོན་པ།", "Add content here": "ནང་དོན་འདིར་སྣོན་པ།", "Add Custom Parameter": "", + "Add Custom Prompt": "", "Add Details": "", "Add Files": "ཡིག་ཆ་སྣོན་པ།", "Add Group": "ཚོགས་པ་སྣོན་པ།", @@ -149,6 +151,7 @@ "Ask": "འདྲི་བ།", "Ask a question": "དྲི་བ་ཞིག་འདྲི་བ།", "Assistant": "ལག་རོགས་པ།", + "Attach File From Knowledge": "", "Attach Knowledge": "", "Attach Notes": "", "Attach Webpage": "", @@ -268,6 +271,7 @@ "Close Banner": "", "Close Configure Connection Modal": "", "Close modal": "", + "Close Modal": "", "Close settings modal": "", "Close Sidebar": "", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "སྦྱར་སྡེར་དུ་འདྲ་བཤུས་བྱས་པ།", "Copy": "འདྲ་བཤུས།", "Copy Formatted Text": "", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "", "Copy Link": "སྦྲེལ་ཐག་འདྲ་བཤུས།", "Copy to clipboard": "སྦྱར་སྡེར་དུ་འདྲ་བཤུས།", @@ -493,6 +499,7 @@ "Edit Default Permissions": "སྔོན་སྒྲིག་དབང་ཚད་ཞུ་དག", "Edit Folder": "", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "དྲན་ཤེས་ཞུ་དག", "Edit User": "བེད་སྤྱོད་མཁན་ཞུ་དག", "Edit User Group": "བེད་སྤྱོད་མཁན་ཚོགས་པ་ཞུ་དག", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "", "Firecrawl API Key": "", "Floating Quick Actions": "", + "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "ཡིག་སྣོད་ལེགས་པར་བསུབས་ཟིན།", @@ -785,6 +793,7 @@ "Generate": "", "Generate an image": "པར་ཞིག་བཟོ་བ།", "Generate Image": "པར་བཟོ་བ།", + "Generate Message Pair": "", "Generated Image": "", "Generating search query": "འཚོལ་བཤེར་འདྲི་བ་བཟོ་བཞིན་པ།", "Generating...": "", @@ -994,6 +1003,7 @@ "Memory updated successfully": "དྲན་ཤེས་ལེགས་པར་གསར་སྒྱུར་བྱས་ཟིན།", "Merge Responses": "ལན་ཟླ་སྒྲིལ།", "Merged Response": "བསྡུར་མཐུན་གྱི་ལན་གསལ་གནས་ཡོད།", + "Message": "", "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 ཡོད་པའི་བེད་སྤྱོད་མཁན་ཚོས་མཉམ་སྤྱོད་ཁ་བརྡ་ལྟ་ཐུབ་ངེས།", "Microsoft OneDrive": "", @@ -1056,6 +1066,7 @@ "New Note": "", "New Password": "གསང་གྲངས་གསར་པ།", "New Prompt": "", + "New Temporary Chat": "", "New Tool": "", "new-channel": "བགྲོ་གླེང་གསར་པ།", "Next message": "", @@ -1122,8 +1133,12 @@ "Ollama Version": "Ollama པར་གཞི།", "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 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 markdown files are allowed": "", "Only select users and groups with permission can access": "དབང་ཚད་ཡོད་པའི་བེད་སྤྱོད་མཁན་དང་ཚོགས་པ་གདམ་ག་བྱས་པ་ཁོ་ན་འཛུལ་སྤྱོད་ཐུབ།", @@ -1137,6 +1152,7 @@ "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Image Compression": "", + "Open Settings": "", "Open Sidebar": "", "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", @@ -1227,6 +1243,7 @@ "Prefer not to say": "", "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 ལ་སྔོན་སྦྱོར་ཞིག་སྣོན་ནས་སྦྲེལ་མཐུད་གཞན་དང་གདོང་ཐུག་ལས་གཡོལ་བར་བེད་སྤྱོད་བྱེད། - ནུས་མེད་བཏང་བར་སྟོང་པ་བཞག་པ།", + "Prevent File Creation": "", "Preview": "", "Previous 30 days": "ཉིན་ ༣༠ སྔོན་མ།", "Previous 7 days": "ཉིན་ ༧ སྔོན་མ།", @@ -1270,6 +1287,7 @@ "Refused when it shouldn't have": "མི་དགོས་དུས་ཁས་མ་བླངས།", "Regenerate": "བསྐྱར་བཟོ།", "Regenerate Menu": "", + "Regenerate Response": "", "Register Again": "", "Register Client": "", "Registered": "", @@ -1438,6 +1456,7 @@ "Show Formatting Toolbar": "", "Show image preview": "", "Show Model": "དཔེ་དབྱིབས་སྟོན་པ།", + "Show Shortcuts": "", "Show your support!": "ཁྱེད་ཀྱི་རྒྱབ་སྐྱོར་སྟོན་པ།", "Showcased creativity": "གསར་གཏོད་ནུས་པ་ངོམ་པ།", "Sign in": "ནང་འཛུལ།", @@ -1473,6 +1492,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "མཚམས་འཇོག", + "Stop Generating": "", "Stop Sequence": "མཚམས་འཇོག་རིམ་པ།", "Stream Chat Response": "ཁ་བརྡའི་ལན་རྒྱུག་པ།", "Stream Delta Chunk Size": "", @@ -1502,6 +1522,7 @@ "Tags Generation": "རྟགས་བཟོ་སྐྲུན།", "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 ཡིས་སྒྲིག་འགོད་འདི་ནུས་མེད་བཏང་ངེས།", + "Talk to Model": "", "Tap to interrupt": "བར་ཆད་བྱེད་པར་མནན་པ།", "Task List": "", "Task Model": "", @@ -1583,6 +1604,7 @@ "Toast notifications for new updates": "གསར་སྒྱུར་གསར་པའི་ཆེད་དུ་ Toast བརྡ་ཁྱབ།", "Today": "དེ་རིང་།", "Today at {{LOCALIZED_TIME}}": "", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "", "Token": "ཊོཀ་ཀེན།", "Too verbose": "རིང་དྲགས།", diff --git a/src/lib/i18n/locales/bs-BA/translation.json b/src/lib/i18n/locales/bs-BA/translation.json index d6270e7459..71854421bd 100644 --- a/src/lib/i18n/locales/bs-BA/translation.json +++ b/src/lib/i18n/locales/bs-BA/translation.json @@ -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 user": "korisnik", "About": "O aplikaciji", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "", "Access Control": "", "Accessible to all users": "", @@ -50,6 +51,7 @@ "Add Content": "", "Add content here": "", "Add Custom Parameter": "", + "Add Custom Prompt": "", "Add Details": "", "Add Files": "Dodaj datoteke", "Add Group": "", @@ -149,6 +151,7 @@ "Ask": "Pitaj", "Ask a question": "Pitaj pitanje", "Assistant": "Asistent", + "Attach File From Knowledge": "", "Attach Knowledge": "Prikazi znanje", "Attach Notes": "Prikazi zapise", "Attach Webpage": "", @@ -268,6 +271,7 @@ "Close Banner": "", "Close Configure Connection Modal": "", "Close modal": "", + "Close Modal": "", "Close settings modal": "", "Close Sidebar": "", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "", "Copy": "Kopiraj", "Copy Formatted Text": "", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "", "Copy Link": "Kopiraj vezu", "Copy to clipboard": "", @@ -493,6 +499,7 @@ "Edit Default Permissions": "", "Edit Folder": "", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "", "Edit User": "Uredi korisnika", "Edit User Group": "", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "", "Firecrawl API Key": "", "Floating Quick Actions": "", + "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "", @@ -785,6 +793,7 @@ "Generate": "", "Generate an image": "", "Generate Image": "Gneriraj sliku", + "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Generiranje upita za pretraživanje", "Generating...": "", @@ -994,6 +1003,7 @@ "Memory updated successfully": "", "Merge Responses": "", "Merged Response": "Spojeni odgovor", + "Message": "", "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.", "Microsoft OneDrive": "", @@ -1056,6 +1066,7 @@ "New Note": "", "New Password": "Nova lozinka", "New Prompt": "", + "New Temporary Chat": "", "New Tool": "", "new-channel": "", "Next message": "", @@ -1122,8 +1133,12 @@ "Ollama Version": "Ollama verzija", "On": "Uključeno", "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 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 markdown files are allowed": "", "Only select users and groups with permission can access": "", @@ -1137,6 +1152,7 @@ "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Image Compression": "", + "Open Settings": "", "Open Sidebar": "", "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", @@ -1227,6 +1243,7 @@ "Prefer not to say": "", "Prefix ID": "", "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": "", "Previous 30 days": "Prethodnih 30 dana", "Previous 7 days": "Prethodnih 7 dana", @@ -1270,6 +1287,7 @@ "Refused when it shouldn't have": "Odbijen kada nije trebao biti", "Regenerate": "Regeneriraj", "Regenerate Menu": "", + "Regenerate Response": "", "Register Again": "", "Register Client": "", "Registered": "", @@ -1440,6 +1458,7 @@ "Show Formatting Toolbar": "", "Show image preview": "", "Show Model": "", + "Show Shortcuts": "", "Show your support!": "", "Showcased creativity": "Prikazana kreativnost", "Sign in": "Prijava", @@ -1475,6 +1494,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "", + "Stop Generating": "", "Stop Sequence": "Zaustavi sekvencu", "Stream Chat Response": "", "Stream Delta Chunk Size": "", @@ -1504,6 +1524,7 @@ "Tags Generation": "", "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.": "", + "Talk to Model": "", "Tap to interrupt": "", "Task List": "", "Task Model": "", @@ -1585,6 +1606,7 @@ "Toast notifications for new updates": "", "Today": "Danas", "Today at {{LOCALIZED_TIME}}": "", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "", "Token": "", "Too verbose": "", diff --git a/src/lib/i18n/locales/ca-ES/translation.json b/src/lib/i18n/locales/ca-ES/translation.json index eb8685569d..ca14b30c5f 100644 --- a/src/lib/i18n/locales/ca-ES/translation.json +++ b/src/lib/i18n/locales/ca-ES/translation.json @@ -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 user": "un usuari", "About": "Sobre", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "Accés", "Access Control": "Control d'accés", "Accessible to all users": "Accessible a tots els usuaris", @@ -50,6 +51,7 @@ "Add Content": "Afegir contingut", "Add content here": "Afegir contingut aquí", "Add Custom Parameter": "Afegir paràmetre personalitzat ", + "Add Custom Prompt": "", "Add Details": "Afegir detalls", "Add Files": "Afegir arxius", "Add Group": "Afegir grup", @@ -149,6 +151,7 @@ "Ask": "Preguntar", "Ask a question": "Fer una pregunta", "Assistant": "Assistent", + "Attach File From Knowledge": "", "Attach Knowledge": "Adjuntar coneixement", "Attach Notes": "Adjuntar notes", "Attach Webpage": "Adjuntar pàgina web", @@ -268,6 +271,7 @@ "Close Banner": "Tancar el bàner", "Close Configure Connection Modal": "Tancar la finestra de configuració de la connexió", "Close modal": "Tancar el modal", + "Close Modal": "", "Close settings modal": "Tancar el modal de configuració", "Close Sidebar": "Tancar la barra lateral", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "Copiat al porta-retalls", "Copy": "Copiar", "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 to clipboard": "Copiar al porta-retalls", @@ -493,6 +499,7 @@ "Edit Default Permissions": "Editar el permisos per defecte", "Edit Folder": "Editar la carpeta", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "Editar la memòria", "Edit User": "Editar l'usuari", "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 Key": "Clau API de Firecrawl", "Floating Quick Actions": "Accions ràpides flotants", + "Focus Chat Input": "", "Folder": "Carpeta", "Folder Background Image": "Imatge del fons de la carpeta", "Folder deleted successfully": "Carpeta eliminada correctament", @@ -785,6 +793,7 @@ "Generate": "Generar", "Generate an image": "Generar una imatge", "Generate Image": "Generar imatge", + "Generate Message Pair": "", "Generated Image": "Imatge generada", "Generating search query": "Generant consulta", "Generating...": "Generant...", @@ -994,6 +1003,7 @@ "Memory updated successfully": "Memòria actualitzada correctament", "Merge Responses": "Fusionar les respostes", "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ó", "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", @@ -1056,6 +1066,7 @@ "New Note": "Nova nota", "New Password": "Nova contrasenya", "New Prompt": "Nova indicació", + "New Temporary Chat": "", "New Tool": "Nova eina", "new-channel": "nou-canal", "Next message": "Missatge següent", @@ -1122,8 +1133,12 @@ "Ollama Version": "Versió d'Ollama", "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": "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 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 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", @@ -1137,6 +1152,7 @@ "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 Image Compression": "Obrir un modal per gestionar la compressió d'imatges", + "Open Settings": "", "Open Sidebar": "Obre la barra lateral", "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.", @@ -1227,6 +1243,7 @@ "Prefer not to say": "Prefereixo no dir-ho", "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.", + "Prevent File Creation": "", "Preview": "Previsualització", "Previous 30 days": "30 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", "Regenerate": "Regenerar", "Regenerate Menu": "Regenerar el menú", + "Regenerate Response": "", "Register Again": "Registrar de nou", "Register Client": "Registrar client", "Registered": "Registrat", @@ -1440,6 +1458,7 @@ "Show Formatting Toolbar": "Mostrar la barra de format", "Show image preview": "Mostrar la previsualització de la imatge", "Show Model": "Mostrar el model", + "Show Shortcuts": "", "Show your support!": "Mostra el teu suport!", "Showcased creativity": "Creativitat mostrada", "Sign in": "Iniciar sessió", @@ -1475,6 +1494,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Atura", + "Stop Generating": "", "Stop Sequence": "Atura la seqüència", "Stream Chat Response": "Fer streaming de la resposta del xat", "Stream Delta Chunk Size": "Mida del fragment Delta del flux", @@ -1504,6 +1524,7 @@ "Tags Generation": "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ó.", + "Talk to Model": "", "Tap to interrupt": "Prem per interrompre", "Task List": "Llista de tasques", "Task Model": "Model de tasques", @@ -1585,6 +1606,7 @@ "Toast notifications for new updates": "Notificacions Toast de noves actualitzacions", "Today": "Avui", "Today at {{LOCALIZED_TIME}}": "Avui a les {{LOCALIZED_TIME}}", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "Alterna si la connexió actual està activa.", "Token": "Token", "Too verbose": "Massa explicit", diff --git a/src/lib/i18n/locales/ceb-PH/translation.json b/src/lib/i18n/locales/ceb-PH/translation.json index b6aa88179d..26571e797b 100644 --- a/src/lib/i18n/locales/ceb-PH/translation.json +++ b/src/lib/i18n/locales/ceb-PH/translation.json @@ -26,6 +26,7 @@ "A task model is used when performing tasks such as generating titles for chats and web search queries": "", "a user": "usa ka user", "About": "Mahitungod sa", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "", "Access Control": "", "Accessible to all users": "", @@ -50,6 +51,7 @@ "Add Content": "", "Add content here": "", "Add Custom Parameter": "", + "Add Custom Prompt": "", "Add Details": "", "Add Files": "Idugang ang mga file", "Add Group": "", @@ -149,6 +151,7 @@ "Ask": "", "Ask a question": "", "Assistant": "", + "Attach File From Knowledge": "", "Attach Knowledge": "", "Attach Notes": "", "Attach Webpage": "", @@ -268,6 +271,7 @@ "Close Banner": "", "Close Configure Connection Modal": "", "Close modal": "", + "Close Modal": "", "Close settings modal": "", "Close Sidebar": "", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "", "Copy": "", "Copy Formatted Text": "", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "", "Copy Link": "", "Copy to clipboard": "", @@ -493,6 +499,7 @@ "Edit Default Permissions": "", "Edit Folder": "", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "", "Edit User": "I-edit ang tiggamit", "Edit User Group": "", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "", "Firecrawl API Key": "", "Floating Quick Actions": "", + "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "", @@ -785,6 +793,7 @@ "Generate": "", "Generate an image": "", "Generate Image": "", + "Generate Message Pair": "", "Generated Image": "", "Generating search query": "", "Generating...": "", @@ -994,6 +1003,7 @@ "Memory updated successfully": "", "Merge Responses": "", "Merged Response": "Gihiusa nga Resulta sa Tubag", + "Message": "", "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.": "", "Microsoft OneDrive": "", @@ -1056,6 +1066,7 @@ "New Note": "", "New Password": "Bag-ong Password", "New Prompt": "", + "New Temporary Chat": "", "New Tool": "", "new-channel": "", "Next message": "", @@ -1122,8 +1133,12 @@ "Ollama Version": "Ollama nga bersyon", "On": "Gipaandar", "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 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 markdown files are allowed": "", "Only select users and groups with permission can access": "", @@ -1137,6 +1152,7 @@ "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Image Compression": "", + "Open Settings": "", "Open Sidebar": "", "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", @@ -1227,6 +1243,7 @@ "Prefer not to say": "", "Prefix ID": "", "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": "", "Previous 30 days": "", "Previous 7 days": "", @@ -1270,6 +1287,7 @@ "Refused when it shouldn't have": "", "Regenerate": "", "Regenerate Menu": "", + "Regenerate Response": "", "Register Again": "", "Register Client": "", "Registered": "", @@ -1439,6 +1457,7 @@ "Show Formatting Toolbar": "", "Show image preview": "", "Show Model": "", + "Show Shortcuts": "", "Show your support!": "", "Showcased creativity": "", "Sign in": "Para maka log in", @@ -1474,6 +1493,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "", + "Stop Generating": "", "Stop Sequence": "Pagkasunod-sunod sa pagsira", "Stream Chat Response": "", "Stream Delta Chunk Size": "", @@ -1503,6 +1523,7 @@ "Tags Generation": "", "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.": "", + "Talk to Model": "", "Tap to interrupt": "", "Task List": "", "Task Model": "", @@ -1584,6 +1605,7 @@ "Toast notifications for new updates": "", "Today": "", "Today at {{LOCALIZED_TIME}}": "", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "", "Token": "", "Too verbose": "", diff --git a/src/lib/i18n/locales/cs-CZ/translation.json b/src/lib/i18n/locales/cs-CZ/translation.json index bffb04abb3..dd32a01d51 100644 --- a/src/lib/i18n/locales/cs-CZ/translation.json +++ b/src/lib/i18n/locales/cs-CZ/translation.json @@ -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 user": "uživatel", "About": "O aplikaci", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "Přístup", "Access Control": "Řízení přístupu", "Accessible to all users": "Přístupné pro všechny uživatele", @@ -50,6 +51,7 @@ "Add Content": "Přidat obsah", "Add content here": "Zde přidejte obsah", "Add Custom Parameter": "Přidat vlastní parametr", + "Add Custom Prompt": "", "Add Details": "Přidat podrobnosti", "Add Files": "Přidat soubory", "Add Group": "Přidat skupinu", @@ -149,6 +151,7 @@ "Ask": "Zeptat se", "Ask a question": "Položit otázku", "Assistant": "Asistent", + "Attach File From Knowledge": "", "Attach Knowledge": "Připojit znalosti", "Attach Notes": "Přiojit poznámky", "Attach Webpage": "Připojit web", @@ -268,6 +271,7 @@ "Close Banner": "Zavřít upozornění", "Close Configure Connection Modal": "Zavřít modální okno konfigurace připojení", "Close modal": "Zavřít modální okno", + "Close Modal": "", "Close settings modal": "Zavřít modální okno nastavení", "Close Sidebar": "Zavřít postranní panel", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "Zkopírováno do schránky", "Copy": "Kopírovat", "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 to clipboard": "Kopírovat do schránky", @@ -493,6 +499,7 @@ "Edit Default Permissions": "Upravit výchozí oprávnění", "Edit Folder": "Upravit složku", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "Upravit vzpomínku", "Edit User": "Upravit uživatele", "Edit User Group": "Upravit skupinu uživatelů", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "Základní URL API pro Firecrawl", "Firecrawl API Key": "API klíč pro Firecrawl", "Floating Quick Actions": "Plovoucí rychlé akce", + "Focus Chat Input": "", "Folder": "Složka", "Folder Background Image": "Obrázek na pozadí složky", "Folder deleted successfully": "Složka byla úspěšně smazána", @@ -785,6 +793,7 @@ "Generate": "Generovat", "Generate an image": "Generovat obrázek", "Generate Image": "Generovat obrázek", + "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Generuji vyhledávací dotaz", "Generating...": "Generuji...", @@ -994,6 +1003,7 @@ "Memory updated successfully": "Vzpomínka byla úspěšně aktualizována", "Merge Responses": "Sloučit odpovědi", "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.", "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", @@ -1056,6 +1066,7 @@ "New Note": "Nová poznámka", "New Password": "Nové heslo", "New Prompt": "Nová instrukce", + "New Temporary Chat": "", "New Tool": "Nový nástroj", "new-channel": "novy-kanal", "Next message": "Další zpráva", @@ -1122,8 +1133,12 @@ "Ollama Version": "Verze Ollama", "On": "Zapnuto", "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 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 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", @@ -1137,6 +1152,7 @@ "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 Image Compression": "", + "Open Settings": "", "Open Sidebar": "Otevřít postranní panel", "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.", @@ -1227,6 +1243,7 @@ "Prefer not to say": "Raději nevyberu", "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é", + "Prevent File Creation": "", "Preview": "Náhled", "Previous 30 days": "Posledních 30 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", "Regenerate": "Znovu generovat", "Regenerate Menu": "Nabídka Znovu generovat", + "Regenerate Response": "", "Register Again": "", "Register Client": "", "Registered": "", @@ -1441,6 +1459,7 @@ "Show Formatting Toolbar": "Zobrazit panel nástrojů pro formátování", "Show image preview": "Zobrazit náhled obrázku", "Show Model": "Zobrazit model", + "Show Shortcuts": "", "Show your support!": "Vyjádřete svou podporu!", "Showcased creativity": "Předvedená kreativita", "Sign in": "Přihlásit se", @@ -1476,6 +1495,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Zastavit", + "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": "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.", + "Talk to Model": "", "Tap to interrupt": "Klepnutím přerušíte", "Task List": "Seznam úkolů", "Task Model": "Model pro úkoly", @@ -1586,6 +1607,7 @@ "Toast notifications for new updates": "Vyskakovací oznámení o nových aktualizacích", "Today": "Dnes", "Today at {{LOCALIZED_TIME}}": "", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "Přepnout, zda je aktuální připojení aktivní.", "Token": "Token", "Too verbose": "Příliš rozvláčné", diff --git a/src/lib/i18n/locales/da-DK/translation.json b/src/lib/i18n/locales/da-DK/translation.json index 0c700fed71..492b7fec07 100644 --- a/src/lib/i18n/locales/da-DK/translation.json +++ b/src/lib/i18n/locales/da-DK/translation.json @@ -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 user": "en bruger", "About": "Information", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "Adgang", "Access Control": "Adgangskontrol", "Accessible to all users": "Tilgængelig for alle brugere", @@ -50,6 +51,7 @@ "Add Content": "Tilføj indhold", "Add content here": "Tilføj indhold her", "Add Custom Parameter": "Tilføj brugerdefineret parameter", + "Add Custom Prompt": "", "Add Details": "", "Add Files": "Tilføj filer", "Add Group": "Tilføj gruppe", @@ -149,6 +151,7 @@ "Ask": "Spørg", "Ask a question": "Stil et spørgsmål", "Assistant": "Assistent", + "Attach File From Knowledge": "", "Attach Knowledge": "", "Attach Notes": "", "Attach Webpage": "", @@ -268,6 +271,7 @@ "Close Banner": "", "Close Configure Connection Modal": "Luk Configure Forbindelse dialogboks", "Close modal": "Luk dialogboks", + "Close Modal": "", "Close settings modal": "Luk dialogboks med indstillinger", "Close Sidebar": "", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "Kopieret til udklipsholder", "Copy": "Kopier", "Copy Formatted Text": "Kopier formateret tekst", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "Kopier link", "Copy Link": "Kopier link", "Copy to clipboard": "Kopier til udklipsholder", @@ -493,6 +499,7 @@ "Edit Default Permissions": "Rediger standard tilladelser", "Edit Folder": "Rediger mappe", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "Rediger hukommelse", "Edit User": "Rediger bruger", "Edit User Group": "Rediger brugergruppe", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "Firecrawl API Base URL", "Firecrawl API Key": "Firecrawl API nøgle", "Floating Quick Actions": "", + "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "Mappe fjernet.", @@ -785,6 +793,7 @@ "Generate": "Generer", "Generate an image": "Generer et billede", "Generate Image": "Generer billede", + "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Genererer søgeforespørgsel", "Generating...": "Genererer...", @@ -994,6 +1003,7 @@ "Memory updated successfully": "Hukommelse opdateret.", "Merge Responses": "Flet 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", "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", @@ -1056,6 +1066,7 @@ "New Note": "Ny note", "New Password": "Ny adgangskode", "New Prompt": "", + "New Temporary Chat": "", "New Tool": "Nyt værktøj", "new-channel": "ny-kanal", "Next message": "Næste besked", @@ -1122,8 +1133,12 @@ "Ollama Version": "Ollama-version", "On": "Til", "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 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 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å", @@ -1137,6 +1152,7 @@ "Open modal to configure connection": "Åbn modal for at konfigurere forbindelse", "Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Image Compression": "", + "Open Settings": "", "Open Sidebar": "", "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.", @@ -1227,6 +1243,7 @@ "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 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", "Previous 30 days": "Seneste 30 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", "Regenerate": "Regenerer", "Regenerate Menu": "", + "Regenerate Response": "", "Register Again": "", "Register Client": "", "Registered": "", @@ -1439,6 +1457,7 @@ "Show Formatting Toolbar": "", "Show image preview": "Vis billedforhåndsvisning", "Show Model": "Vis model", + "Show Shortcuts": "", "Show your support!": "Vis din støtte!", "Showcased creativity": "Udstillet kreativitet", "Sign in": "Log ind", @@ -1474,6 +1493,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Stop", + "Stop Generating": "", "Stop Sequence": "Stopsekvens", "Stream Chat Response": "Stream chatsvar", "Stream Delta Chunk Size": "", @@ -1503,6 +1523,7 @@ "Tags Generation": "Tag generering", "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.", + "Talk to Model": "", "Tap to interrupt": "Tryk for at afbryde", "Task List": "Opgaveliste", "Task Model": "Opgavemodel", @@ -1584,6 +1605,7 @@ "Toast notifications for new updates": "Toast-notifikationer for nye opdateringer", "Today": "I dag", "Today at {{LOCALIZED_TIME}}": "I dag {{LOCALIZED_TIME}}", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "Skift om nuværende forbindelse er aktiv.", "Token": "Token", "Too verbose": "For ordrigt", diff --git a/src/lib/i18n/locales/de-DE/translation.json b/src/lib/i18n/locales/de-DE/translation.json index fd598ea66e..c6071da293 100644 --- a/src/lib/i18n/locales/de-DE/translation.json +++ b/src/lib/i18n/locales/de-DE/translation.json @@ -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 user": "ein Benutzer", "About": "Über", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "Zugang", "Access Control": "Zugangskontrolle", "Accessible to all users": "Für alle Benutzer zugänglich", @@ -50,6 +51,7 @@ "Add Content": "Inhalt hinzufügen", "Add content here": "Inhalt hier hinzufügen", "Add Custom Parameter": "Benutzerdefinierten Parameter hinzufügen", + "Add Custom Prompt": "", "Add Details": "Details hinzufügen", "Add Files": "Dateien hinzufügen", "Add Group": "Gruppe hinzufügen", @@ -149,6 +151,7 @@ "Ask": "Fragen", "Ask a question": "Stellen Sie eine Frage", "Assistant": "Assistent", + "Attach File From Knowledge": "", "Attach Knowledge": "Wissensspeicher anhängen", "Attach Notes": "Notizen anhängen", "Attach Webpage": "Webseite anhängen", @@ -268,6 +271,7 @@ "Close Banner": "Banner schließen", "Close Configure Connection Modal": "Konfigurationsfenster für Verbindung schließen", "Close modal": "Modal schließen", + "Close Modal": "", "Close settings modal": "Einstellungsfenster schließen", "Close Sidebar": "Seitenleiste schließen", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "In die Zwischenablage kopiert", "Copy": "Kopieren", "Copy Formatted Text": "Formatierten Text kopieren", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "Link kopieren", "Copy Link": "Link kopieren", "Copy to clipboard": "In die Zwischenablage kopieren", @@ -493,6 +499,7 @@ "Edit Default Permissions": "Standardberechtigungen bearbeiten", "Edit Folder": "Ordner bearbeiten", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "Erinnerungen bearbeiten", "Edit User": "Benutzer bearbeiten", "Edit User Group": "Benutzergruppe bearbeiten", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "Firecrawl API Basis-URL", "Firecrawl API Key": "Firecrawl API-Schlüssel", "Floating Quick Actions": "Schnellaktionen", + "Focus Chat Input": "", "Folder": "Ordner", "Folder Background Image": "Ordner Hintergrundbild", "Folder deleted successfully": "Ordner erfolgreich gelöscht", @@ -785,6 +793,7 @@ "Generate": "Generieren", "Generate an image": "Bild erzeugen", "Generate Image": "Bild erzeugen", + "Generate Message Pair": "", "Generated Image": "Generiertes Bild", "Generating search query": "Suchanfrage wird erstellt", "Generating...": "Generiere...", @@ -994,6 +1003,7 @@ "Memory updated successfully": "Erinnerung erfolgreich aktualisiert", "Merge Responses": "Antworten zusammenführen", "Merged Response": "Zusammengeführte Antwort", + "Message": "", "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.", "Microsoft OneDrive": "Microsoft OneDrive", @@ -1056,6 +1066,7 @@ "New Note": "Neue Notiz", "New Password": "Neues Passwort", "New Prompt": "Neuer Prompt", + "New Temporary Chat": "", "New Tool": "Neues Werkzeug", "new-channel": "neuer-kanal", "Next message": "Nächste Nachricht", @@ -1122,8 +1133,12 @@ "Ollama Version": "Ollama-Version", "On": "Ein", "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 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 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", @@ -1137,6 +1152,7 @@ "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 Image Compression": "Modal öffnen, um die Bildkompression zu verwalten", + "Open Settings": "", "Open Sidebar": "Seitenleiste ö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.", @@ -1227,6 +1243,7 @@ "Prefer not to say": "Keine Angabe", "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", + "Prevent File Creation": "", "Preview": "Vorschau", "Previous 30 days": "Vorherige 30 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", "Regenerate": "Neu generieren", "Regenerate Menu": "Menü neu generieren", + "Regenerate Response": "", "Register Again": "Erneut registrieren", "Register Client": "Client registrieren", "Registered": "Angemeldet", @@ -1439,6 +1457,7 @@ "Show Formatting Toolbar": "Formatierungsleiste anzeigen", "Show image preview": "Bildvorschau anzeigen", "Show Model": "Modell anzeigen", + "Show Shortcuts": "", "Show your support!": "Zeigen Sie Ihre Unterstützung!", "Showcased creativity": "Kreativität gezeigt", "Sign in": "Anmelden", @@ -1474,6 +1493,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Stop", + "Stop Generating": "", "Stop Sequence": "Stop-Sequenz", "Stream Chat Response": "Chat-Antwort streamen", "Stream Delta Chunk Size": "Stream-Delta-Chunk-Größe", @@ -1503,6 +1523,7 @@ "Tags Generation": "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)", + "Talk to Model": "", "Tap to interrupt": "Zum Unterbrechen tippen", "Task List": "Aufgabenliste", "Task Model": "Aufgabenmodell", @@ -1584,6 +1605,7 @@ "Toast notifications for new updates": "Toast-Benachrichtigungen für neue Updates", "Today": "Heute", "Today at {{LOCALIZED_TIME}}": "Heute um {{LOCALIZED_TIME}}", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "Aktuelle Verbindung umschalten.", "Token": "Token", "Too verbose": "Zu ausführlich", diff --git a/src/lib/i18n/locales/dg-DG/translation.json b/src/lib/i18n/locales/dg-DG/translation.json index bfdda26033..6970f6ef48 100644 --- a/src/lib/i18n/locales/dg-DG/translation.json +++ b/src/lib/i18n/locales/dg-DG/translation.json @@ -26,6 +26,7 @@ "A task model is used when performing tasks such as generating titles for chats and web search queries": "", "a user": "such user", "About": "Much About", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "", "Access Control": "", "Accessible to all users": "", @@ -50,6 +51,7 @@ "Add Content": "", "Add content here": "", "Add Custom Parameter": "", + "Add Custom Prompt": "", "Add Details": "", "Add Files": "Add Files", "Add Group": "", @@ -149,6 +151,7 @@ "Ask": "", "Ask a question": "", "Assistant": "", + "Attach File From Knowledge": "", "Attach Knowledge": "", "Attach Notes": "", "Attach Webpage": "", @@ -268,6 +271,7 @@ "Close Banner": "", "Close Configure Connection Modal": "", "Close modal": "", + "Close Modal": "", "Close settings modal": "", "Close Sidebar": "", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "", "Copy": "", "Copy Formatted Text": "", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "", "Copy Link": "", "Copy to clipboard": "", @@ -493,6 +499,7 @@ "Edit Default Permissions": "", "Edit Folder": "", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "", "Edit User": "Edit Wowser", "Edit User Group": "", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "", "Firecrawl API Key": "", "Floating Quick Actions": "", + "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "", @@ -785,6 +793,7 @@ "Generate": "", "Generate an image": "", "Generate Image": "", + "Generate Message Pair": "", "Generated Image": "", "Generating search query": "", "Generating...": "", @@ -994,6 +1003,7 @@ "Memory updated successfully": "", "Merge Responses": "", "Merged Response": "", + "Message": "", "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.": "", "Microsoft OneDrive": "", @@ -1056,6 +1066,7 @@ "New Note": "", "New Password": "New Barkword", "New Prompt": "", + "New Temporary Chat": "", "New Tool": "", "new-channel": "", "Next message": "", @@ -1122,8 +1133,12 @@ "Ollama Version": "Ollama Version", "On": "On", "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 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 markdown files are allowed": "", "Only select users and groups with permission can access": "", @@ -1137,6 +1152,7 @@ "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Image Compression": "", + "Open Settings": "", "Open Sidebar": "", "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", @@ -1227,6 +1243,7 @@ "Prefer not to say": "", "Prefix ID": "", "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": "", "Previous 30 days": "", "Previous 7 days": "", @@ -1270,6 +1287,7 @@ "Refused when it shouldn't have": "", "Regenerate": "", "Regenerate Menu": "", + "Regenerate Response": "", "Register Again": "", "Register Client": "", "Registered": "", @@ -1439,6 +1457,7 @@ "Show Formatting Toolbar": "", "Show image preview": "", "Show Model": "", + "Show Shortcuts": "", "Show your support!": "", "Showcased creativity": "", "Sign in": "Sign in very sign", @@ -1474,6 +1493,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "", + "Stop Generating": "", "Stop Sequence": "Stop Sequence much stop", "Stream Chat Response": "", "Stream Delta Chunk Size": "", @@ -1503,6 +1523,7 @@ "Tags Generation": "", "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.": "", + "Talk to Model": "", "Tap to interrupt": "", "Task List": "", "Task Model": "", @@ -1584,6 +1605,7 @@ "Toast notifications for new updates": "", "Today": "", "Today at {{LOCALIZED_TIME}}": "", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "", "Token": "", "Too verbose": "", diff --git a/src/lib/i18n/locales/el-GR/translation.json b/src/lib/i18n/locales/el-GR/translation.json index 3a958e6eb6..4cf59bde1f 100644 --- a/src/lib/i18n/locales/el-GR/translation.json +++ b/src/lib/i18n/locales/el-GR/translation.json @@ -26,6 +26,7 @@ "A task model is used when performing tasks such as generating titles for chats and web search queries": "Ένα μοντέλο εργασίας χρησιμοποιείται κατά την εκτέλεση εργασιών όπως η δημιουργία τίτλων για συνομιλίες και αναζητήσεις στο διαδίκτυο", "a user": "ένας χρήστης", "About": "Σχετικά", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "Πρόσβαση", "Access Control": "Έλεγχος Πρόσβασης", "Accessible to all users": "Προσβάσιμο σε όλους τους χρήστες", @@ -50,6 +51,7 @@ "Add Content": "Προσθήκη Περιεχομένου", "Add content here": "Προσθέστε περιεχόμενο εδώ", "Add Custom Parameter": "", + "Add Custom Prompt": "", "Add Details": "", "Add Files": "Προσθήκη Αρχείων", "Add Group": "Προσθήκη Ομάδας", @@ -149,6 +151,7 @@ "Ask": "", "Ask a question": "Ρωτήστε μια ερώτηση", "Assistant": "Βοηθός", + "Attach File From Knowledge": "", "Attach Knowledge": "Προσθήκη Knowledge", "Attach Notes": "Προσθήκη Σημειώσεων", "Attach Webpage": "Προσθήκη ιστότοπου", @@ -268,6 +271,7 @@ "Close Banner": "Κλείσιμο Ανακοίνωσης", "Close Configure Connection Modal": "Κλείσιμο παραθύρου διαμόρφωσης σύνδεσης", "Close modal": "Κλείσιμο παραθύρου διαλόγου", + "Close Modal": "", "Close settings modal": "Κλείσιμο παραθύρου διαμόρφωσης ρυθμίσεων", "Close Sidebar": "Κλείσιμο πλευρικής μπάρας", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "Αντιγράφηκε στο πρόχειρο", "Copy": "Αντιγραφή", "Copy Formatted Text": "Αντιγραφή μορφοποιημένου κειμένου", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "Αντιγραφή συνδέσμου", "Copy Link": "Αντιγραφή Συνδέσμου", "Copy to clipboard": "Αντιγραφή στο πρόχειρο", @@ -493,6 +499,7 @@ "Edit Default Permissions": "Επεξεργασία Προεπιλεγμένων Δικαιωμάτων", "Edit Folder": "", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "Επεξεργασία Μνήμης", "Edit User": "Επεξεργασία Χρήστη", "Edit User Group": "Επεξεργασία Ομάδας Χρηστών", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "URL του API του Firecrawl", "Firecrawl API Key": "API κλειδί του Firecrawl", "Floating Quick Actions": "", + "Focus Chat Input": "", "Folder": "Φάκελος", "Folder Background Image": "Εικόνα Φόντου Φακέλου", "Folder deleted successfully": "Ο φάκελος διαγράφηκε με επιτυχία", @@ -785,6 +793,7 @@ "Generate": "Δημιουργία", "Generate an image": "Δημιουργία εικόνας", "Generate Image": "Δημιουργία Εικόνας", + "Generate Message Pair": "", "Generated Image": "Δημιουργημένη Εικόνα", "Generating search query": "Γενιά αναζήτησης ερώτησης", "Generating...": "Δημιουργία...", @@ -994,6 +1003,7 @@ "Memory updated successfully": "Η μνήμη ενημερώθηκε με επιτυχία", "Merge Responses": "Συγχώνευση Απαντήσεων", "Merged Response": "Συγχωνευμένη απάντηση", + "Message": "", "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 θα μπορούν να δουν τη συνομιλία που μοιραστήκατε.", "Microsoft OneDrive": "", @@ -1056,6 +1066,7 @@ "New Note": "Νέα Σημείωση", "New Password": "Νέος Κωδικός", "New Prompt": "Νέα Προτροπή", + "New Temporary Chat": "", "New Tool": "Νέο Εργαλείο", "new-channel": "", "Next message": "Επόμενο μήνυμα", @@ -1122,8 +1133,12 @@ "Ollama Version": "Έκδοση Ollama", "On": "Ενεργό", "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 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 markdown files are allowed": "", "Only select users and groups with permission can access": "Μόνο επιλεγμένοι χρήστες και ομάδες με άδεια μπορούν να έχουν πρόσβαση", @@ -1137,6 +1152,7 @@ "Open modal to configure connection": "Άνοιγμα παραθύρου διαλόγου για διαχείριση σύνδεσης", "Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Image Compression": "Άνοιγμα παραθύρου διαλόγου για διαχείριση συμπίεσης εικόνων", + "Open Settings": "", "Open Sidebar": "Άνοιγμα πλευρικής μπάρας", "Open User Profile Menu": "Άνοιγμα μενού προφίλ χρήστη", "Open WebUI can use tools provided by any OpenAPI server.": "", @@ -1227,6 +1243,7 @@ "Prefer not to say": "", "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 των μοντέλων - αφήστε κενό για απενεργοποίηση", + "Prevent File Creation": "", "Preview": "Προεπισκόπηση", "Previous 30 days": "Προηγούμενες 30 ημέρες", "Previous 7 days": "Προηγούμενες 7 ημέρες", @@ -1270,6 +1287,7 @@ "Refused when it shouldn't have": "Αρνήθηκε όταν δεν έπρεπε", "Regenerate": "Επαναδημιουργία", "Regenerate Menu": "Επαναδημιουργία Μενού", + "Regenerate Response": "", "Register Again": "", "Register Client": "", "Registered": "", @@ -1439,6 +1457,7 @@ "Show Formatting Toolbar": "", "Show image preview": "", "Show Model": "", + "Show Shortcuts": "", "Show your support!": "Δείξτε την υποστήριξή σας!", "Showcased creativity": "Εμφανιζόμενη δημιουργικότητα", "Sign in": "Σύνδεση", @@ -1474,6 +1493,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Σταμάτημα", + "Stop Generating": "", "Stop Sequence": "Σειρά Παύσης", "Stream Chat Response": "Ροή Δεδομένων Απαντήσεων", "Stream Delta Chunk Size": "Δέλτα Μεγέθους Τμήματος Ροής", @@ -1503,6 +1523,7 @@ "Tags Generation": "Δημιουργία Ετικετών", "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.": "", + "Talk to Model": "", "Tap to interrupt": "Πατήστε για παύση", "Task List": "Λίστα Εργασιών", "Task Model": "Μοντέλο Εργασίας", @@ -1584,6 +1605,7 @@ "Toast notifications for new updates": "Ειδοποιήσεις Toast για νέες ενημερώσεις", "Today": "Σήμερα", "Today at {{LOCALIZED_TIME}}": "Σήμερα στις {{LOCALIZED_TIME}}", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "", "Token": "", "Too verbose": "Πολύ λεπτομερές", diff --git a/src/lib/i18n/locales/en-GB/translation.json b/src/lib/i18n/locales/en-GB/translation.json index 362d5fc0c3..9d3c25fbca 100644 --- a/src/lib/i18n/locales/en-GB/translation.json +++ b/src/lib/i18n/locales/en-GB/translation.json @@ -26,6 +26,7 @@ "A task model is used when performing tasks such as generating titles for chats and web search queries": "", "a user": "", "About": "", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "", "Access Control": "", "Accessible to all users": "", @@ -50,6 +51,7 @@ "Add Content": "", "Add content here": "", "Add Custom Parameter": "", + "Add Custom Prompt": "", "Add Details": "", "Add Files": "", "Add Group": "", @@ -149,6 +151,7 @@ "Ask": "", "Ask a question": "", "Assistant": "", + "Attach File From Knowledge": "", "Attach Knowledge": "", "Attach Notes": "", "Attach Webpage": "", @@ -268,6 +271,7 @@ "Close Banner": "", "Close Configure Connection Modal": "", "Close modal": "", + "Close Modal": "", "Close settings modal": "", "Close Sidebar": "", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "", "Copy": "", "Copy Formatted Text": "", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "", "Copy Link": "", "Copy to clipboard": "", @@ -493,6 +499,7 @@ "Edit Default Permissions": "", "Edit Folder": "", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "", "Edit User": "", "Edit User Group": "", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "", "Firecrawl API Key": "", "Floating Quick Actions": "", + "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "", @@ -785,6 +793,7 @@ "Generate": "", "Generate an image": "", "Generate Image": "", + "Generate Message Pair": "", "Generated Image": "", "Generating search query": "", "Generating...": "", @@ -994,6 +1003,7 @@ "Memory updated successfully": "", "Merge Responses": "", "Merged Response": "", + "Message": "", "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.": "", "Microsoft OneDrive": "", @@ -1056,6 +1066,7 @@ "New Note": "", "New Password": "", "New Prompt": "", + "New Temporary Chat": "", "New Tool": "", "new-channel": "", "Next message": "", @@ -1122,8 +1133,12 @@ "Ollama Version": "", "On": "", "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 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 markdown files are allowed": "", "Only select users and groups with permission can access": "", @@ -1137,6 +1152,7 @@ "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Image Compression": "", + "Open Settings": "", "Open Sidebar": "", "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", @@ -1227,6 +1243,7 @@ "Prefer not to say": "", "Prefix ID": "", "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": "", "Previous 30 days": "", "Previous 7 days": "", @@ -1270,6 +1287,7 @@ "Refused when it shouldn't have": "", "Regenerate": "", "Regenerate Menu": "", + "Regenerate Response": "", "Register Again": "", "Register Client": "", "Registered": "", @@ -1439,6 +1457,7 @@ "Show Formatting Toolbar": "", "Show image preview": "", "Show Model": "", + "Show Shortcuts": "", "Show your support!": "", "Showcased creativity": "", "Sign in": "", @@ -1474,6 +1493,7 @@ "STDOUT/STDERR": "", "Steps": "", "Stop": "", + "Stop Generating": "", "Stop Sequence": "", "Stream Chat Response": "", "Stream Delta Chunk Size": "", @@ -1503,6 +1523,7 @@ "Tags Generation": "", "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.": "", + "Talk to Model": "", "Tap to interrupt": "", "Task List": "", "Task Model": "", @@ -1584,6 +1605,7 @@ "Toast notifications for new updates": "", "Today": "", "Today at {{LOCALIZED_TIME}}": "", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "", "Token": "", "Too verbose": "", diff --git a/src/lib/i18n/locales/en-US/translation.json b/src/lib/i18n/locales/en-US/translation.json index e3c7bf0b04..7c4e62ecec 100644 --- a/src/lib/i18n/locales/en-US/translation.json +++ b/src/lib/i18n/locales/en-US/translation.json @@ -26,6 +26,7 @@ "A task model is used when performing tasks such as generating titles for chats and web search queries": "", "a user": "", "About": "", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "", "Access Control": "", "Accessible to all users": "", @@ -50,6 +51,7 @@ "Add Content": "", "Add content here": "", "Add Custom Parameter": "", + "Add Custom Prompt": "", "Add Details": "", "Add Files": "", "Add Group": "", @@ -149,6 +151,7 @@ "Ask": "", "Ask a question": "", "Assistant": "", + "Attach File From Knowledge": "", "Attach Knowledge": "", "Attach Notes": "", "Attach Webpage": "", @@ -268,6 +271,7 @@ "Close Banner": "", "Close Configure Connection Modal": "", "Close modal": "", + "Close Modal": "", "Close settings modal": "", "Close Sidebar": "", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "", "Copy": "", "Copy Formatted Text": "", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "", "Copy Link": "", "Copy to clipboard": "", @@ -493,6 +499,7 @@ "Edit Default Permissions": "", "Edit Folder": "", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "", "Edit User": "", "Edit User Group": "", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "", "Firecrawl API Key": "", "Floating Quick Actions": "", + "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "", @@ -785,6 +793,7 @@ "Generate": "", "Generate an image": "", "Generate Image": "", + "Generate Message Pair": "", "Generated Image": "Generated Image", "Generating search query": "", "Generating...": "", @@ -994,6 +1003,7 @@ "Memory updated successfully": "", "Merge Responses": "", "Merged Response": "", + "Message": "", "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.": "", "Microsoft OneDrive": "", @@ -1056,6 +1066,7 @@ "New Note": "", "New Password": "", "New Prompt": "", + "New Temporary Chat": "", "New Tool": "", "new-channel": "", "Next message": "Next message", @@ -1122,8 +1133,12 @@ "Ollama Version": "", "On": "", "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 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 markdown files are allowed": "", "Only select users and groups with permission can access": "", @@ -1137,6 +1152,7 @@ "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Image Compression": "", + "Open Settings": "", "Open Sidebar": "", "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", @@ -1227,6 +1243,7 @@ "Prefer not to say": "", "Prefix ID": "", "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": "", "Previous 30 days": "", "Previous 7 days": "", @@ -1270,6 +1287,7 @@ "Refused when it shouldn't have": "", "Regenerate": "", "Regenerate Menu": "", + "Regenerate Response": "", "Register Again": "", "Register Client": "", "Registered": "", @@ -1439,6 +1457,7 @@ "Show Formatting Toolbar": "", "Show image preview": "", "Show Model": "", + "Show Shortcuts": "", "Show your support!": "", "Showcased creativity": "", "Sign in": "", @@ -1474,6 +1493,7 @@ "STDOUT/STDERR": "", "Steps": "", "Stop": "", + "Stop Generating": "", "Stop Sequence": "", "Stream Chat Response": "", "Stream Delta Chunk Size": "", @@ -1503,6 +1523,7 @@ "Tags Generation": "", "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.": "", + "Talk to Model": "", "Tap to interrupt": "", "Task List": "", "Task Model": "", @@ -1584,6 +1605,7 @@ "Toast notifications for new updates": "", "Today": "", "Today at {{LOCALIZED_TIME}}": "", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "", "Token": "", "Too verbose": "", diff --git a/src/lib/i18n/locales/es-ES/translation.json b/src/lib/i18n/locales/es-ES/translation.json index 9806413344..192e10e1d4 100644 --- a/src/lib/i18n/locales/es-ES/translation.json +++ b/src/lib/i18n/locales/es-ES/translation.json @@ -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 user": "un usuario", "About": "Acerca de", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "Acceso", "Access Control": "Control de Acceso", "Accessible to all users": "Accesible para todos los usuarios", @@ -50,6 +51,7 @@ "Add Content": "Añadir Contenido", "Add content here": "Añadir contenido aquí", "Add Custom Parameter": "Añadir parámetro personalizado", + "Add Custom Prompt": "", "Add Details": "Añadir Detalles", "Add Files": "Añadir Archivos", "Add Group": "Añadir Grupo", @@ -149,6 +151,7 @@ "Ask": "Preguntar", "Ask a question": "Haz una pregunta", "Assistant": "Asistente", + "Attach File From Knowledge": "", "Attach Knowledge": "Adjuntar Conocimiento", "Attach Notes": "Adjuntar Notas", "Attach Webpage": "Adjuntar Página Web", @@ -268,6 +271,7 @@ "Close Banner": "Cerrar Banner", "Close Configure Connection Modal": "Cerrar modal Configurar la Conexión", "Close modal": "Cerrar modal", + "Close Modal": "", "Close settings modal": "Cerrar modal configuraciones", "Close Sidebar": "Cerrar Barra Lateral", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "Copiado al portapapeles", "Copy": "Copiar", "Copy Formatted Text": "Copiar Texto Formateado", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "Copiar Enlace", "Copy Link": "Copiar enlace", "Copy to clipboard": "Copia a portapapeles", @@ -493,6 +499,7 @@ "Edit Default Permissions": "Editar Permisos Predeterminados", "Edit Folder": "Editar Carpeta", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "Editar Memoria", "Edit User": "Editar Usuario", "Edit User Group": "Editar Grupo de Usuarios", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "URL Base de API de Firecrawl", "Firecrawl API Key": "Clave de API de Firecrawl", "Floating Quick Actions": "Acciones Rápidas Flotantes", + "Focus Chat Input": "", "Folder": "Carpeta", "Folder Background Image": "Imagen de Fondo de la Carpeta", "Folder deleted successfully": "Carpeta eliminada correctamente", @@ -785,6 +793,7 @@ "Generate": "Generar", "Generate an image": "Generar una imagen", "Generate Image": "Generar imagen", + "Generate Message Pair": "", "Generated Image": "Imagen Generada", "Generating search query": "Generando consulta de búsqueda", "Generating...": "Generando", @@ -994,6 +1003,7 @@ "Memory updated successfully": "Memoria actualizada correctamente", "Merge Responses": "Fusionar Respuestas", "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", "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", @@ -1056,6 +1066,7 @@ "New Note": "Nueva Nota", "New Password": "Nueva Contraseña", "New Prompt": "Nuevo Indicador", + "New Temporary Chat": "", "New Tool": "Nueva Herramienta", "new-channel": "nuevo-canal", "Next message": "Siguiente mensaje", @@ -1122,8 +1133,12 @@ "Ollama Version": "Versión de Ollama", "On": "Activado", "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 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 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", @@ -1137,6 +1152,7 @@ "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 Image Compression": "Abrir Modal para Gestionar Compresión de Imagen", + "Open Settings": "", "Open Sidebar": "Abrir Barra Lateral", "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", @@ -1227,6 +1243,7 @@ "Prefer not to say": "Prefiero no decirlo", "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", + "Prevent File Creation": "", "Preview": "Previsualización", "Previous 30 days": "30 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", "Regenerate": "Regenerar", "Regenerate Menu": "Regenerar Menú", + "Regenerate Response": "", "Register Again": "Volver a Registrar", "Register Client": "Registrar Cliente", "Registered": "Registrado", @@ -1440,6 +1458,7 @@ "Show Formatting Toolbar": "Mostrar barra de herramientas de Formateo", "Show image preview": "Mostrar previsualización de imagen", "Show Model": "Mostrar Modelo", + "Show Shortcuts": "", "Show your support!": "¡Muestra tu apoyo!", "Showcased creativity": "Creatividad exhibida", "Sign in": "Iniciar Sesión", @@ -1475,6 +1494,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Detener", + "Stop Generating": "", "Stop Sequence": "Secuencia de Parada", "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", @@ -1504,6 +1524,7 @@ "Tags Generation": "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.", + "Talk to Model": "", "Tap to interrupt": "Toca para interrumpir", "Task List": "Lista de Tareas", "Task Model": "Modelo de Tarea", @@ -1585,6 +1606,7 @@ "Toast notifications for new updates": "Notificaciones emergentes para nuevas actualizaciones", "Today": "Hoy", "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", "Token": "Token", "Too verbose": "Demasiado detallado", diff --git a/src/lib/i18n/locales/et-EE/translation.json b/src/lib/i18n/locales/et-EE/translation.json index 5e8280cec8..1d9de16748 100644 --- a/src/lib/i18n/locales/et-EE/translation.json +++ b/src/lib/i18n/locales/et-EE/translation.json @@ -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 user": "kasutaja", "About": "Teave", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "Juurdepääs", "Access Control": "Juurdepääsu kontroll", "Accessible to all users": "Kättesaadav kõigile kasutajatele", @@ -50,6 +51,7 @@ "Add Content": "Lisa sisu", "Add content here": "Lisa siia sisu", "Add Custom Parameter": "Lisa kohandatud parameeter", + "Add Custom Prompt": "", "Add Details": "Lisa üksikasjad", "Add Files": "Lisa faile", "Add Group": "Lisa grupp", @@ -149,6 +151,7 @@ "Ask": "Küsi", "Ask a question": "Esita küsimus", "Assistant": "Assistent", + "Attach File From Knowledge": "", "Attach Knowledge": "Lisa teadmised", "Attach Notes": "Lisa märkmed", "Attach Webpage": "Lisa veebileht", @@ -268,6 +271,7 @@ "Close Banner": "Sulge bänner", "Close Configure Connection Modal": "Sulge ühenduse seadistamise aken", "Close modal": "Sulge aken", + "Close Modal": "", "Close settings modal": "Sulge seadete aken", "Close Sidebar": "Sulge külgriba", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "Kopeeritud lõikelauale", "Copy": "Kopeeri", "Copy Formatted Text": "Kopeeri vormindatud tekst", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "Kopeeri link", "Copy Link": "Kopeeri link", "Copy to clipboard": "Kopeeri lõikelauale", @@ -493,6 +499,7 @@ "Edit Default Permissions": "Muuda vaikimisi õigusi", "Edit Folder": "Muuda kausta", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "Muuda mälu", "Edit User": "Muuda kasutajat", "Edit User Group": "Muuda kasutajagruppi", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "Firecrawl API Base URL", "Firecrawl API Key": "Firecrawl API Võti", "Floating Quick Actions": "Floating Quick Actions", + "Focus Chat Input": "", "Folder": "Kaust", "Folder Background Image": "Kausta taustpilt", "Folder deleted successfully": "Kaust edukalt kustutatud", @@ -785,6 +793,7 @@ "Generate": "Generate", "Generate an image": "Genereeri pilt", "Generate Image": "Genereeri pilt", + "Generate Message Pair": "", "Generated Image": "Genereeritud pilt", "Generating search query": "Otsinguküsimuse genereerimine", "Generating...": "Genereerimine...", @@ -994,6 +1003,7 @@ "Memory updated successfully": "Mälu edukalt uuendatud", "Merge Responses": "Ühenda vastused", "Merged Response": "Kombineeritud vastus", + "Message": "", "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.", "Microsoft OneDrive": "Microsoft OneDrive", @@ -1056,6 +1066,7 @@ "New Note": "Uus märge", "New Password": "Uus parool", "New Prompt": "Uus vihje", + "New Temporary Chat": "", "New Tool": "Uus tööriist", "new-channel": "uus-kanal", "Next message": "Järgmine sõnum", @@ -1122,8 +1133,12 @@ "Ollama Version": "Ollama versioon", "On": "Sees", "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 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 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", @@ -1137,6 +1152,7 @@ "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 Image Compression": "Ava Modal Kuni Manage Pilt Compression", + "Open Settings": "", "Open Sidebar": "Ava Sidebar", "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.", @@ -1227,6 +1243,7 @@ "Prefer not to say": "Prefer not kuni say", "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", + "Prevent File Creation": "", "Preview": "Preview", "Previous 30 days": "Eelmised 30 päeva", "Previous 7 days": "Eelmised 7 päeva", @@ -1270,6 +1287,7 @@ "Refused when it shouldn't have": "Keeldus, kui ei oleks pidanud", "Regenerate": "Regenereeri", "Regenerate Menu": "Regenerate Menu", + "Regenerate Response": "", "Register Again": "Registreeru Again", "Register Client": "Registreeru Client", "Registered": "Registered", @@ -1439,6 +1457,7 @@ "Show Formatting Toolbar": "Kuva Formatting Toolbar", "Show image preview": "Kuva pilt preview", "Show Model": "Kuva Mudel", + "Show Shortcuts": "", "Show your support!": "Näita oma toetust!", "Showcased creativity": "Näitas loovust", "Sign in": "Logi sisse", @@ -1474,6 +1493,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Peata", + "Stop Generating": "", "Stop Sequence": "Lõpetamise järjestus", "Stream Chat Response": "Voogedasta vestluse vastust", "Stream Delta Chunk Size": "Stream Delta Chunk Size", @@ -1503,6 +1523,7 @@ "Tags Generation": "Siltide genereerimine", "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.", + "Talk to Model": "", "Tap to interrupt": "Puuduta katkestamiseks", "Task List": "Task List", "Task Model": "Task Mudel", @@ -1584,6 +1605,7 @@ "Toast notifications for new updates": "Hüpikmärguanded uuenduste kohta", "Today": "Täna", "Today at {{LOCALIZED_TIME}}": "Täna kell {{LOCALIZED_TIME}}", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "Toggle whether current connection is aktiivne.", "Token": "Token", "Too verbose": "Liiga paljusõnaline", diff --git a/src/lib/i18n/locales/eu-ES/translation.json b/src/lib/i18n/locales/eu-ES/translation.json index a90d650059..4ff4f42d4e 100644 --- a/src/lib/i18n/locales/eu-ES/translation.json +++ b/src/lib/i18n/locales/eu-ES/translation.json @@ -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 user": "erabiltzaile bat", "About": "Honi buruz", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "Sarbidea", "Access Control": "Sarbide Kontrola", "Accessible to all users": "Erabiltzaile guztientzat eskuragarri", @@ -50,6 +51,7 @@ "Add Content": "Gehitu Edukia", "Add content here": "Gehitu edukia hemen", "Add Custom Parameter": "", + "Add Custom Prompt": "", "Add Details": "", "Add Files": "Gehitu Fitxategiak", "Add Group": "Gehitu Taldea", @@ -149,6 +151,7 @@ "Ask": "", "Ask a question": "Egin galdera bat", "Assistant": "Laguntzailea", + "Attach File From Knowledge": "", "Attach Knowledge": "", "Attach Notes": "", "Attach Webpage": "", @@ -268,6 +271,7 @@ "Close Banner": "", "Close Configure Connection Modal": "", "Close modal": "", + "Close Modal": "", "Close settings modal": "", "Close Sidebar": "", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "Arbelera kopiatuta", "Copy": "Kopiatu", "Copy Formatted Text": "", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "", "Copy Link": "Kopiatu Esteka", "Copy to clipboard": "Kopiatu arbelera", @@ -493,6 +499,7 @@ "Edit Default Permissions": "Editatu Baimen Lehenetsiak", "Edit Folder": "", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "Editatu Memoria", "Edit User": "Editatu Erabiltzailea", "Edit User Group": "Editatu Erabiltzaile Taldea", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "", "Firecrawl API Key": "", "Floating Quick Actions": "", + "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "Karpeta ongi ezabatu da", @@ -785,6 +793,7 @@ "Generate": "", "Generate an image": "", "Generate Image": "Sortu Irudia", + "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Bilaketa kontsulta sortzen", "Generating...": "", @@ -994,6 +1003,7 @@ "Memory updated successfully": "Memoria ongi eguneratu da", "Merge Responses": "Batu erantzunak", "Merged Response": "Erantzun bateratua", + "Message": "", "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.", "Microsoft OneDrive": "", @@ -1056,6 +1066,7 @@ "New Note": "", "New Password": "Pasahitz berria", "New Prompt": "", + "New Temporary Chat": "", "New Tool": "", "new-channel": "", "Next message": "", @@ -1122,8 +1133,12 @@ "Ollama Version": "Ollama bertsioa", "On": "Piztuta", "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 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 markdown files are allowed": "", "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 Manage Floating Quick Actions": "", "Open Modal To Manage Image Compression": "", + "Open Settings": "", "Open Sidebar": "", "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", @@ -1227,6 +1243,7 @@ "Prefer not to say": "", "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", + "Prevent File Creation": "", "Preview": "", "Previous 30 days": "Aurreko 30 egunak", "Previous 7 days": "Aurreko 7 egunak", @@ -1270,6 +1287,7 @@ "Refused when it shouldn't have": "Ukatu duenean ukatu behar ez zuenean", "Regenerate": "Bersortu", "Regenerate Menu": "", + "Regenerate Response": "", "Register Again": "", "Register Client": "", "Registered": "", @@ -1439,6 +1457,7 @@ "Show Formatting Toolbar": "", "Show image preview": "", "Show Model": "", + "Show Shortcuts": "", "Show your support!": "Erakutsi zure babesa!", "Showcased creativity": "Erakutsitako sormena", "Sign in": "Hasi saioa", @@ -1474,6 +1493,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Gelditu", + "Stop Generating": "", "Stop Sequence": "Gelditzeko sekuentzia", "Stream Chat Response": "Transmititu txat erantzuna", "Stream Delta Chunk Size": "", @@ -1503,6 +1523,7 @@ "Tags Generation": "", "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.": "", + "Talk to Model": "", "Tap to interrupt": "Ukitu eteteko", "Task List": "", "Task Model": "", @@ -1584,6 +1605,7 @@ "Toast notifications for new updates": "Toast jakinarazpenak eguneraketa berrientzat", "Today": "Gaur", "Today at {{LOCALIZED_TIME}}": "", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "", "Token": "Tokena", "Too verbose": "Luzeegia", diff --git a/src/lib/i18n/locales/fa-IR/translation.json b/src/lib/i18n/locales/fa-IR/translation.json index 0e274a6a48..d8758a4f74 100644 --- a/src/lib/i18n/locales/fa-IR/translation.json +++ b/src/lib/i18n/locales/fa-IR/translation.json @@ -26,6 +26,7 @@ "A task model is used when performing tasks such as generating titles for chats and web search queries": "یک مدل وظیفه هنگام انجام وظایف مانند تولید عناوین برای چت ها و نمایش های جستجوی وب استفاده می شود.", "a user": "یک کاربر", "About": "درباره", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "دسترسی", "Access Control": "کنترل دسترسی", "Accessible to all users": "قابل دسترسی برای همه کاربران", @@ -50,6 +51,7 @@ "Add Content": "افزودن محتوا", "Add content here": "محتوا را اینجا اضافه کنید", "Add Custom Parameter": "", + "Add Custom Prompt": "", "Add Details": "", "Add Files": "افزودن فایل\u200cها", "Add Group": "افزودن گروه", @@ -149,6 +151,7 @@ "Ask": "بپرس", "Ask a question": "سوالی بپرسید", "Assistant": "دستیار", + "Attach File From Knowledge": "", "Attach Knowledge": "", "Attach Notes": "", "Attach Webpage": "", @@ -268,6 +271,7 @@ "Close Banner": "", "Close Configure Connection Modal": "", "Close modal": "", + "Close Modal": "", "Close settings modal": "", "Close Sidebar": "", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "به بریده\u200cدان کپی\u200cشد", "Copy": "کپی", "Copy Formatted Text": "", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "", "Copy Link": "کپی لینک", "Copy to clipboard": "کپی به کلیپ\u200cبورد", @@ -493,6 +499,7 @@ "Edit Default Permissions": "ویرایش مجوزهای پیش\u200cفرض", "Edit Folder": "", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "ویرایش حافظه", "Edit User": "ویرایش کاربر", "Edit User Group": "ویرایش گروه کاربری", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "آدرس پایه API فایرکراول", "Firecrawl API Key": "کلید API فایرکراول", "Floating Quick Actions": "", + "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "پوشه با موفقیت حذف شد", @@ -785,6 +793,7 @@ "Generate": "", "Generate an image": "تولید یک تصویر", "Generate Image": "تولید تصویر", + "Generate Message Pair": "", "Generated Image": "", "Generating search query": "در حال تولید پرسوجوی جستجو", "Generating...": "", @@ -994,6 +1003,7 @@ "Memory updated successfully": "حافظه با موفقیت به\u200cروز شد", "Merge Responses": "ادغام پاسخ\u200cها", "Merged Response": "پاسخ ادغام شده", + "Message": "", "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 می توانند چت اشتراک را مشاهده کنند.", "Microsoft OneDrive": "", @@ -1056,6 +1066,7 @@ "New Note": "", "New Password": "رمز عبور جدید", "New Prompt": "", + "New Temporary Chat": "", "New Tool": "", "new-channel": "کانال-جدید", "Next message": "", @@ -1122,8 +1133,12 @@ "Ollama Version": "نسخه ollama", "On": "روشن", "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 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 markdown files are allowed": "", "Only select users and groups with permission can access": "فقط کاربران و گروه\u200cهای دارای مجوز می\u200cتوانند دسترسی داشته باشند", @@ -1137,6 +1152,7 @@ "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Image Compression": "", + "Open Settings": "", "Open Sidebar": "", "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI می\u200cتواند از ابزارهای ارائه شده توسط هر سرور OpenAPI استفاده کند.", @@ -1227,6 +1243,7 @@ "Prefer not to say": "", "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شود - برای غیرفعال کردن خالی بگذارید", + "Prevent File Creation": "", "Preview": "", "Previous 30 days": "30 روز قبل", "Previous 7 days": "7 روز قبل", @@ -1270,6 +1287,7 @@ "Refused when it shouldn't have": "رد شده زمانی که باید نباشد", "Regenerate": "تولید مجدد", "Regenerate Menu": "", + "Regenerate Response": "", "Register Again": "", "Register Client": "", "Registered": "", @@ -1439,6 +1457,7 @@ "Show Formatting Toolbar": "", "Show image preview": "", "Show Model": "نمایش مدل", + "Show Shortcuts": "", "Show your support!": "حمایت خود را نشان دهید!", "Showcased creativity": "ایده\u200cآفرینی", "Sign in": "ورود", @@ -1474,6 +1493,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "توقف", + "Stop Generating": "", "Stop Sequence": "توقف توالی", "Stream Chat Response": "پاسخ چت جریانی", "Stream Delta Chunk Size": "", @@ -1503,6 +1523,7 @@ "Tags Generation": "تولید برچسب\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کند.", + "Talk to Model": "", "Tap to interrupt": "برای وقفه ضربه بزنید", "Task List": "", "Task Model": "", @@ -1584,6 +1605,7 @@ "Toast notifications for new updates": "اعلان\u200cهای پاپ\u200cآپ برای به\u200cروزرسانی\u200cهای جدید", "Today": "امروز", "Today at {{LOCALIZED_TIME}}": "", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "", "Token": "توکن", "Too verbose": "خیلی طولانی", diff --git a/src/lib/i18n/locales/fi-FI/translation.json b/src/lib/i18n/locales/fi-FI/translation.json index 03688fd507..cd0b6c617f 100644 --- a/src/lib/i18n/locales/fi-FI/translation.json +++ b/src/lib/i18n/locales/fi-FI/translation.json @@ -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 user": "käyttäjä", "About": "Tietoja", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "Pääsy", "Access Control": "Käyttöoikeuksien hallinta", "Accessible to all users": "Käytettävissä kaikille käyttäjille", @@ -50,6 +51,7 @@ "Add Content": "Lisää sisältöä", "Add content here": "Lisää sisältöä tähän", "Add Custom Parameter": "Lisää mukautettu parametri", + "Add Custom Prompt": "", "Add Details": "Lisää yksityiskohtia", "Add Files": "Lisää tiedostoja", "Add Group": "Lisää ryhmä", @@ -149,6 +151,7 @@ "Ask": "Kysy", "Ask a question": "Kysy kysymys", "Assistant": "Avustaja", + "Attach File From Knowledge": "", "Attach Knowledge": "Liitä tietoa", "Attach Notes": "Liitä muistiinpanoja", "Attach Webpage": "Liitä verkkosivu", @@ -268,6 +271,7 @@ "Close Banner": "Sulje banneri", "Close Configure Connection Modal": "Sulje yhteyksien modaali", "Close modal": "Sulje modaali", + "Close Modal": "", "Close settings modal": "Sulje asetus modaali", "Close Sidebar": "Sulje sivupalkki", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "Kopioitu leikepöydälle", "Copy": "Kopioi", "Copy Formatted Text": "Kopioi muotoiltu teksti", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "Kopioi linkki", "Copy Link": "Kopioi linkki", "Copy to clipboard": "Kopioi leikepöydälle", @@ -493,6 +499,7 @@ "Edit Default Permissions": "Muokkaa oletuskäyttöoikeuksia", "Edit Folder": "Muokkaa kansiota", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "Muokkaa muistia", "Edit User": "Muokkaa käyttäjää", "Edit User Group": "Muokkaa käyttäjäryhmää", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "Firecrawl API -verkko-osoite", "Firecrawl API Key": "Firecrawl API-avain", "Floating Quick Actions": "Kelluvat pikakomennot", + "Focus Chat Input": "", "Folder": "Kansio", "Folder Background Image": "Kansion taustakuva", "Folder deleted successfully": "Kansio poistettu onnistuneesti", @@ -785,6 +793,7 @@ "Generate": "Luo", "Generate an image": "Luo kuva", "Generate Image": "Luo kuva", + "Generate Message Pair": "", "Generated Image": "Luo kuva", "Generating search query": "Luodaan hakukyselyä", "Generating...": "Luodaan...", @@ -994,6 +1003,7 @@ "Memory updated successfully": "Muisti päivitetty onnistuneesti", "Merge Responses": "Yhdistä vastaukset", "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", "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": "", @@ -1056,6 +1066,7 @@ "New Note": "Uusi muistiinpano", "New Password": "Uusi salasana", "New Prompt": "Uusi kehoite", + "New Temporary Chat": "", "New Tool": "Uusi työkalu", "new-channel": "uusi-kanava", "Next message": "Seuraava viesti", @@ -1122,8 +1133,12 @@ "Ollama Version": "Ollama-versio", "On": "Päällä", "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 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 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", @@ -1137,6 +1152,7 @@ "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 Image Compression": "Avaa kuvien pakkaus hallinta modaali", + "Open Settings": "", "Open Sidebar": "Avaa sivupalkki", "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.", @@ -1227,6 +1243,7 @@ "Prefer not to say": "En halua sanoa", "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ä", + "Prevent File Creation": "", "Preview": "Esikatselu", "Previous 30 days": "Edelliset 30 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", "Regenerate": "Regeneroi", "Regenerate Menu": "Regenerointi ikkuna", + "Regenerate Response": "", "Register Again": "Rekisteröi uudelleen", "Register Client": "Rekiströi asiakasohjelma", "Registered": "Rekisteröity", @@ -1439,6 +1457,7 @@ "Show Formatting Toolbar": "Näytä muotoilupalkki", "Show image preview": "Näytä kuvan esikatselu", "Show Model": "Näytä malli", + "Show Shortcuts": "", "Show your support!": "Osoita tukesi!", "Showcased creativity": "Osoitti luovuutta", "Sign in": "Kirjaudu sisään", @@ -1474,6 +1493,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Pysäytä", + "Stop Generating": "", "Stop Sequence": "Lopetussekvenssi", "Stream Chat Response": "Streamaa keskusteluvastaus", "Stream Delta Chunk Size": "Striimin delta-lohkon koko", @@ -1503,6 +1523,7 @@ "Tags Generation": "Tagien luonti", "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.": "", + "Talk to Model": "", "Tap to interrupt": "Napauta keskeyttääksesi", "Task List": "Tehtävälista", "Task Model": "Työmalli", @@ -1584,6 +1605,7 @@ "Toast notifications for new updates": "Ilmoituspopuppien näyttäminen uusista päivityksistä", "Today": "Tänään", "Today at {{LOCALIZED_TIME}}": "Tänään {{LOCALIZED_TIME}}", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "Vaihda, onko nykyinen yhteys aktiivinen", "Token": "Token", "Too verbose": "Liian puhelias", diff --git a/src/lib/i18n/locales/fr-CA/translation.json b/src/lib/i18n/locales/fr-CA/translation.json index a943156c27..97e358594c 100644 --- a/src/lib/i18n/locales/fr-CA/translation.json +++ b/src/lib/i18n/locales/fr-CA/translation.json @@ -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 user": "un utilisateur", "About": "À propos", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "Accès", "Access Control": "Contrôle d'accès", "Accessible to all users": "Accessible à tous les utilisateurs", @@ -50,6 +51,7 @@ "Add Content": "Ajouter du contenu", "Add content here": "Ajoutez du contenu ici", "Add Custom Parameter": "Ajoutez votre réglage personnalisé", + "Add Custom Prompt": "", "Add Details": "", "Add Files": "Ajouter des fichiers", "Add Group": "Ajouter un groupe", @@ -149,6 +151,7 @@ "Ask": "Demander", "Ask a question": "Posez votre question", "Assistant": "Assistant", + "Attach File From Knowledge": "", "Attach Knowledge": "", "Attach Notes": "", "Attach Webpage": "", @@ -268,6 +271,7 @@ "Close Banner": "", "Close Configure Connection Modal": "Fermer la fenêtre de configuration de la connexion", "Close modal": "Fermer la fenêtre", + "Close Modal": "", "Close settings modal": "Fermer la fenêtre des réglages", "Close Sidebar": "", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "Copié dans le presse-papiers", "Copy": "Copier", "Copy Formatted Text": "Copier le texte en gardant le format", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "", "Copy Link": "Copier le lien", "Copy to clipboard": "Copier dans le presse-papiers", @@ -493,6 +499,7 @@ "Edit Default Permissions": "Modifier les autorisations par défaut", "Edit Folder": "", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "Modifier la mémoire", "Edit User": "Modifier l'utilisateur", "Edit User Group": "Modifier le groupe d'utilisateurs", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "Url de l'API Base Firecrawl", "Firecrawl API Key": "Clé de l'API Firecrawl", "Floating Quick Actions": "", + "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "Dossier supprimé avec succès", @@ -785,6 +793,7 @@ "Generate": "Génére", "Generate an image": "Génère une image", "Generate Image": "Générer une image", + "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Génération d'une requête de recherche", "Generating...": "Génération en cours...", @@ -994,6 +1003,7 @@ "Memory updated successfully": "Le souvenir a été mis à jour avec succès", "Merge Responses": "Fusionner les réponses", "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é", "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", @@ -1056,6 +1066,7 @@ "New Note": "Nouvelle note", "New Password": "Nouveau mot de passe", "New Prompt": "", + "New Temporary Chat": "", "New Tool": "Nouvel outil", "new-channel": "nouveau-canal", "Next message": "Message suivant", @@ -1122,8 +1133,12 @@ "Ollama Version": "Version d'Ollama", "On": "Activé", "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 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 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", @@ -1137,6 +1152,7 @@ "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 Image Compression": "", + "Open Settings": "", "Open Sidebar": "", "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.", @@ -1227,6 +1243,7 @@ "Prefer not to say": "", "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", + "Prevent File Creation": "", "Preview": "Aperçu", "Previous 30 days": "30 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", "Regenerate": "Regénérer", "Regenerate Menu": "", + "Regenerate Response": "", "Register Again": "", "Register Client": "", "Registered": "", @@ -1440,6 +1458,7 @@ "Show Formatting Toolbar": "", "Show image preview": "Afficher l'aperçu de l'image", "Show Model": "Afficher le model", + "Show Shortcuts": "", "Show your support!": "Montrez votre soutien !", "Showcased creativity": "Créativité mise en avant", "Sign in": "Connexion", @@ -1475,6 +1494,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Stop", + "Stop Generating": "", "Stop Sequence": "Séquence d'arrêt", "Stream Chat Response": "Streamer la réponse de la conversation", "Stream Delta Chunk Size": "", @@ -1504,6 +1524,7 @@ "Tags Generation": "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.", + "Talk to Model": "", "Tap to interrupt": "Appuyez pour interrompre", "Task List": "", "Task Model": "Modèle pour les tâches", @@ -1585,6 +1606,7 @@ "Toast notifications for new updates": "Notifications toast pour les nouvelles mises à jour", "Today": "Aujourd'hui", "Today at {{LOCALIZED_TIME}}": "", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "Afficher/masquer si la connection courante est active", "Token": "Token", "Too verbose": "Trop détaillé", diff --git a/src/lib/i18n/locales/fr-FR/translation.json b/src/lib/i18n/locales/fr-FR/translation.json index 27f7dc0d74..50e655010f 100644 --- a/src/lib/i18n/locales/fr-FR/translation.json +++ b/src/lib/i18n/locales/fr-FR/translation.json @@ -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 user": "un utilisateur", "About": "À propos", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "Accès", "Access Control": "Contrôle d'accès", "Accessible to all users": "Accessible à tous les utilisateurs", @@ -50,6 +51,7 @@ "Add Content": "Ajouter du contenu", "Add content here": "Ajoutez du contenu ici", "Add Custom Parameter": "Ajoutez votre réglage personnalisé", + "Add Custom Prompt": "", "Add Details": "Ajouter des détails", "Add Files": "Ajouter des fichiers", "Add Group": "Ajouter un groupe", @@ -149,6 +151,7 @@ "Ask": "Demander", "Ask a question": "Posez votre question", "Assistant": "Assistant", + "Attach File From Knowledge": "", "Attach Knowledge": "Joindre une connaissance", "Attach Notes": "Joindre une note", "Attach Webpage": "", @@ -268,6 +271,7 @@ "Close Banner": "Fermer la bannière", "Close Configure Connection Modal": "Fermer la fenêtre de configuration de la connexion", "Close modal": "Fermer la fenêtre", + "Close Modal": "", "Close settings modal": "Fermer la fenêtre des réglages", "Close Sidebar": "Fermer la barre latérale", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "Copié dans le presse-papiers", "Copy": "Copier", "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 to clipboard": "Copier dans le presse-papiers", @@ -493,6 +499,7 @@ "Edit Default Permissions": "Modifier les autorisations par défaut", "Edit Folder": "Modifier le dossier", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "Modifier la mémoire", "Edit User": "Modifier l'utilisateur", "Edit User Group": "Modifier le groupe d'utilisateurs", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "Url de l'API Base Firecrawl", "Firecrawl API Key": "Clé de l'API Firecrawl", "Floating Quick Actions": "Actions rapides flottantes", + "Focus Chat Input": "", "Folder": "", "Folder Background Image": "Image d'arrière-plan du dossier", "Folder deleted successfully": "Dossier supprimé avec succès", @@ -785,6 +793,7 @@ "Generate": "Génére", "Generate an image": "Génère une image", "Generate Image": "Générer une image", + "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Génération d'une requête de recherche", "Generating...": "Génération en cours...", @@ -994,6 +1003,7 @@ "Memory updated successfully": "Le souvenir a été mis à jour avec succès", "Merge Responses": "Fusionner les réponses", "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é", "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", @@ -1056,6 +1066,7 @@ "New Note": "Nouvelle note", "New Password": "Nouveau mot de passe", "New Prompt": "", + "New Temporary Chat": "", "New Tool": "Nouvel outil", "new-channel": "nouveau-canal", "Next message": "Message suivant", @@ -1122,8 +1133,12 @@ "Ollama Version": "Version d'Ollama", "On": "Activé", "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 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 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", @@ -1137,6 +1152,7 @@ "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 Image Compression": "", + "Open Settings": "", "Open Sidebar": "Ouvrir la barre latérale", "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.", @@ -1227,6 +1243,7 @@ "Prefer not to say": "Je préfère ne pas répondre", "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", + "Prevent File Creation": "", "Preview": "Aperçu", "Previous 30 days": "30 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", "Regenerate": "Regénérer", "Regenerate Menu": "Régénérer le menu", + "Regenerate Response": "", "Register Again": "", "Register Client": "", "Registered": "", @@ -1440,6 +1458,7 @@ "Show Formatting Toolbar": "Afficher la barre d'outils de formatage", "Show image preview": "Afficher l'aperçu de l'image", "Show Model": "Afficher le model", + "Show Shortcuts": "", "Show your support!": "Montrez votre soutien !", "Showcased creativity": "Créativité mise en avant", "Sign in": "Connexion", @@ -1475,6 +1494,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Stop", + "Stop Generating": "", "Stop Sequence": "Séquence d'arrêt", "Stream Chat Response": "Streamer la réponse de la conversation", "Stream Delta Chunk Size": "", @@ -1504,6 +1524,7 @@ "Tags Generation": "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.", + "Talk to Model": "", "Tap to interrupt": "Appuyez pour interrompre", "Task List": "Liste 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", "Today": "Aujourd'hui", "Today at {{LOCALIZED_TIME}}": "Aujourd'hui à {{LOCALIZED_TIME}}", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "Afficher/masquer si la connection courante est active", "Token": "Token", "Too verbose": "Trop détaillé", diff --git a/src/lib/i18n/locales/gl-ES/translation.json b/src/lib/i18n/locales/gl-ES/translation.json index d7c1afd542..e1e8cfa857 100644 --- a/src/lib/i18n/locales/gl-ES/translation.json +++ b/src/lib/i18n/locales/gl-ES/translation.json @@ -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 user": "un usuario", "About": "Sobre nos", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "Acceso", "Access Control": "Control de Acceso", "Accessible to all users": "Accesible para todos os usuarios", @@ -50,6 +51,7 @@ "Add Content": "Agregar contido", "Add content here": "Agrege contido aquí", "Add Custom Parameter": "", + "Add Custom Prompt": "", "Add Details": "", "Add Files": "Agregar Arquivos", "Add Group": "Agregar Grupo", @@ -149,6 +151,7 @@ "Ask": "", "Ask a question": "Fai unha pregunta", "Assistant": "Asistente", + "Attach File From Knowledge": "", "Attach Knowledge": "", "Attach Notes": "", "Attach Webpage": "", @@ -268,6 +271,7 @@ "Close Banner": "", "Close Configure Connection Modal": "", "Close modal": "", + "Close Modal": "", "Close settings modal": "", "Close Sidebar": "", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "Copiado o portapapeis", "Copy": "Copiar", "Copy Formatted Text": "", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "", "Copy Link": "Copiar enlace", "Copy to clipboard": "Copiado o portapapeis", @@ -493,6 +499,7 @@ "Edit Default Permissions": "Editar permisos predeterminados", "Edit Folder": "", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "Editar Memoria", "Edit User": "Editar Usuario", "Edit User Group": "Editar grupo de usuarios", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "", "Firecrawl API Key": "", "Floating Quick Actions": "", + "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "Carpeta eliminada correctamente", @@ -785,6 +793,7 @@ "Generate": "", "Generate an image": "Generar unha imaxen", "Generate Image": "Generar imaxen", + "Generate Message Pair": "", "Generated Image": "", "Generating search query": "xeneración de consultas de búsqueda", "Generating...": "", @@ -994,6 +1003,7 @@ "Memory updated successfully": "Memoria actualizada correctamente", "Merge Responses": "Fusionar Respuestas", "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", "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": "", @@ -1056,6 +1066,7 @@ "New Note": "", "New Password": "Novo contrasinal ", "New Prompt": "", + "New Temporary Chat": "", "New Tool": "", "new-channel": "novo-canal", "Next message": "", @@ -1122,8 +1133,12 @@ "Ollama Version": "Versión de Ollama", "On": "Activado", "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 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 markdown files are allowed": "", "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 Manage Floating Quick Actions": "", "Open Modal To Manage Image Compression": "", + "Open Settings": "", "Open Sidebar": "", "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", @@ -1227,6 +1243,7 @@ "Prefer not to say": "", "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", + "Prevent File Creation": "", "Preview": "", "Previous 30 days": "Últimos 30 días", "Previous 7 days": "Últimos 7 días", @@ -1270,6 +1287,7 @@ "Refused when it shouldn't have": "Rechazado cuando no debería", "Regenerate": "Regenerar", "Regenerate Menu": "", + "Regenerate Response": "", "Register Again": "", "Register Client": "", "Registered": "", @@ -1439,6 +1457,7 @@ "Show Formatting Toolbar": "", "Show image preview": "", "Show Model": "", + "Show Shortcuts": "", "Show your support!": "¡Motra o teu apoio!", "Showcased creativity": "Creatividade mostrada", "Sign in": "Iniciar sesión", @@ -1474,6 +1493,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Detener", + "Stop Generating": "", "Stop Sequence": "Detener secuencia", "Stream Chat Response": "Transmitir resposta de chat", "Stream Delta Chunk Size": "", @@ -1503,6 +1523,7 @@ "Tags Generation": "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.": "", + "Talk to Model": "", "Tap to interrupt": "Toca para interrumpir", "Task List": "", "Task Model": "", @@ -1584,6 +1605,7 @@ "Toast notifications for new updates": "Notificacions emergentes para novas actualizacions", "Today": "Hoxe", "Today at {{LOCALIZED_TIME}}": "", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "", "Token": "Token", "Too verbose": "Demasiado detalliado", diff --git a/src/lib/i18n/locales/he-IL/translation.json b/src/lib/i18n/locales/he-IL/translation.json index 03d6cf9739..abdae3bdd1 100644 --- a/src/lib/i18n/locales/he-IL/translation.json +++ b/src/lib/i18n/locales/he-IL/translation.json @@ -26,6 +26,7 @@ "A task model is used when performing tasks such as generating titles for chats and web search queries": "מודל משימה משמש בעת ביצוע משימות כגון יצירת כותרות עבור צ'אטים ושאילתות חיפוש באינטרנט", "a user": "משתמש", "About": "אודות", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "גישה", "Access Control": "בקרת גישה", "Accessible to all users": "", @@ -50,6 +51,7 @@ "Add Content": "הוסף תוכן", "Add content here": "הוסף תוכן כאן", "Add Custom Parameter": "", + "Add Custom Prompt": "", "Add Details": "", "Add Files": "הוסף קבצים", "Add Group": "הוסף קבוצה", @@ -149,6 +151,7 @@ "Ask": "", "Ask a question": "", "Assistant": "", + "Attach File From Knowledge": "", "Attach Knowledge": "", "Attach Notes": "", "Attach Webpage": "", @@ -268,6 +271,7 @@ "Close Banner": "", "Close Configure Connection Modal": "", "Close modal": "", + "Close Modal": "", "Close settings modal": "", "Close Sidebar": "", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "הועתק ללוח", "Copy": "העתק", "Copy Formatted Text": "", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "", "Copy Link": "העתק קישור", "Copy to clipboard": "", @@ -493,6 +499,7 @@ "Edit Default Permissions": "", "Edit Folder": "", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "", "Edit User": "ערוך משתמש", "Edit User Group": "", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "", "Firecrawl API Key": "", "Floating Quick Actions": "", + "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "", @@ -785,6 +793,7 @@ "Generate": "", "Generate an image": "", "Generate Image": "", + "Generate Message Pair": "", "Generated Image": "", "Generating search query": "יצירת שאילתת חיפוש", "Generating...": "מג'נרט...", @@ -994,6 +1003,7 @@ "Memory updated successfully": "", "Merge Responses": "", "Merged Response": "תגובה ממוזגת", + "Message": "", "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.": "הודעות שתשלח לאחר יצירת הקישור לא ישותפו. משתמשים עם כתובת האתר יוכלו לצפות בצ'אט המשותף.", "Microsoft OneDrive": "", @@ -1056,6 +1066,7 @@ "New Note": "פתק חדש", "New Password": "סיסמה חדשה", "New Prompt": "", + "New Temporary Chat": "", "New Tool": "כלי חדש", "new-channel": "", "Next message": "", @@ -1122,8 +1133,12 @@ "Ollama Version": "גרסת Ollama", "On": "פועל", "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 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 markdown files are allowed": "", "Only select users and groups with permission can access": "", @@ -1137,6 +1152,7 @@ "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Image Compression": "", + "Open Settings": "", "Open Sidebar": "", "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", @@ -1227,6 +1243,7 @@ "Prefer not to say": "", "Prefix ID": "", "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": "", "Previous 30 days": "30 הימים הקודמים", "Previous 7 days": "7 הימים הקודמים", @@ -1270,6 +1287,7 @@ "Refused when it shouldn't have": "נדחה כאשר לא היה צריך", "Regenerate": "הפק מחדש", "Regenerate Menu": "", + "Regenerate Response": "", "Register Again": "", "Register Client": "", "Registered": "", @@ -1440,6 +1458,7 @@ "Show Formatting Toolbar": "", "Show image preview": "", "Show Model": "", + "Show Shortcuts": "", "Show your support!": "", "Showcased creativity": "הצגת יצירתיות", "Sign in": "הירשם", @@ -1475,6 +1494,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "", + "Stop Generating": "", "Stop Sequence": "סידור עצירה", "Stream Chat Response": "", "Stream Delta Chunk Size": "", @@ -1504,6 +1524,7 @@ "Tags Generation": "", "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.": "", + "Talk to Model": "", "Tap to interrupt": "", "Task List": "", "Task Model": "", @@ -1585,6 +1606,7 @@ "Toast notifications for new updates": "", "Today": "היום", "Today at {{LOCALIZED_TIME}}": "", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "", "Token": "", "Too verbose": "", diff --git a/src/lib/i18n/locales/hi-IN/translation.json b/src/lib/i18n/locales/hi-IN/translation.json index 5564784e33..d2272b4505 100644 --- a/src/lib/i18n/locales/hi-IN/translation.json +++ b/src/lib/i18n/locales/hi-IN/translation.json @@ -26,6 +26,7 @@ "A task model is used when performing tasks such as generating titles for chats and web search queries": "चैट और वेब खोज क्वेरी के लिए शीर्षक उत्पन्न करने जैसे कार्य करते समय कार्य मॉडल का उपयोग किया जाता है", "a user": "एक उपयोगकर्ता", "About": "हमारे बारे में", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "", "Access Control": "", "Accessible to all users": "", @@ -50,6 +51,7 @@ "Add Content": "", "Add content here": "", "Add Custom Parameter": "", + "Add Custom Prompt": "", "Add Details": "", "Add Files": "फाइलें जोड़ें", "Add Group": "", @@ -149,6 +151,7 @@ "Ask": "", "Ask a question": "", "Assistant": "", + "Attach File From Knowledge": "", "Attach Knowledge": "", "Attach Notes": "", "Attach Webpage": "", @@ -268,6 +271,7 @@ "Close Banner": "", "Close Configure Connection Modal": "", "Close modal": "", + "Close Modal": "", "Close settings modal": "", "Close Sidebar": "", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "", "Copy": "कॉपी", "Copy Formatted Text": "", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "", "Copy Link": "लिंक को कॉपी करें", "Copy to clipboard": "", @@ -493,6 +499,7 @@ "Edit Default Permissions": "", "Edit Folder": "", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "", "Edit User": "यूजर को संपादित करो", "Edit User Group": "", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "", "Firecrawl API Key": "", "Floating Quick Actions": "", + "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "", @@ -785,6 +793,7 @@ "Generate": "", "Generate an image": "", "Generate Image": "", + "Generate Message Pair": "", "Generated Image": "", "Generating search query": "खोज क्वेरी जनरेट करना", "Generating...": "", @@ -994,6 +1003,7 @@ "Memory updated successfully": "", "Merge Responses": "", "Merged Response": "मिली-जुली प्रतिक्रिया", + "Message": "", "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.": "अपना लिंक बनाने के बाद आपके द्वारा भेजे गए संदेश साझा नहीं किए जाएंगे। यूआरएल वाले यूजर्स शेयर की गई चैट देख पाएंगे।", "Microsoft OneDrive": "", @@ -1056,6 +1066,7 @@ "New Note": "", "New Password": "नया पासवर्ड", "New Prompt": "", + "New Temporary Chat": "", "New Tool": "", "new-channel": "", "Next message": "", @@ -1122,8 +1133,12 @@ "Ollama Version": "Ollama Version", "On": "चालू", "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 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 markdown files are allowed": "", "Only select users and groups with permission can access": "", @@ -1137,6 +1152,7 @@ "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Image Compression": "", + "Open Settings": "", "Open Sidebar": "", "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", @@ -1227,6 +1243,7 @@ "Prefer not to say": "", "Prefix ID": "", "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": "", "Previous 30 days": "पिछले 30 दिन", "Previous 7 days": "पिछले 7 दिन", @@ -1270,6 +1287,7 @@ "Refused when it shouldn't have": "जब ऐसा नहीं होना चाहिए था तो मना कर दिया", "Regenerate": "पुनः जेनरेट", "Regenerate Menu": "", + "Regenerate Response": "", "Register Again": "", "Register Client": "", "Registered": "", @@ -1439,6 +1457,7 @@ "Show Formatting Toolbar": "", "Show image preview": "", "Show Model": "", + "Show Shortcuts": "", "Show your support!": "", "Showcased creativity": "रचनात्मकता का प्रदर्शन किया", "Sign in": "साइन इन", @@ -1474,6 +1493,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "", + "Stop Generating": "", "Stop Sequence": "अनुक्रम रोकें", "Stream Chat Response": "", "Stream Delta Chunk Size": "", @@ -1503,6 +1523,7 @@ "Tags Generation": "", "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.": "", + "Talk to Model": "", "Tap to interrupt": "", "Task List": "", "Task Model": "", @@ -1584,6 +1605,7 @@ "Toast notifications for new updates": "", "Today": "आज", "Today at {{LOCALIZED_TIME}}": "", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "", "Token": "", "Too verbose": "", diff --git a/src/lib/i18n/locales/hr-HR/translation.json b/src/lib/i18n/locales/hr-HR/translation.json index b5428a37ef..55426fc48a 100644 --- a/src/lib/i18n/locales/hr-HR/translation.json +++ b/src/lib/i18n/locales/hr-HR/translation.json @@ -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 user": "korisnik", "About": "O aplikaciji", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "", "Access Control": "", "Accessible to all users": "", @@ -50,6 +51,7 @@ "Add Content": "", "Add content here": "", "Add Custom Parameter": "", + "Add Custom Prompt": "", "Add Details": "", "Add Files": "Dodaj datoteke", "Add Group": "", @@ -149,6 +151,7 @@ "Ask": "", "Ask a question": "", "Assistant": "", + "Attach File From Knowledge": "", "Attach Knowledge": "", "Attach Notes": "", "Attach Webpage": "", @@ -268,6 +271,7 @@ "Close Banner": "", "Close Configure Connection Modal": "", "Close modal": "", + "Close Modal": "", "Close settings modal": "", "Close Sidebar": "", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "", "Copy": "Kopiraj", "Copy Formatted Text": "", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "", "Copy Link": "Kopiraj vezu", "Copy to clipboard": "", @@ -493,6 +499,7 @@ "Edit Default Permissions": "", "Edit Folder": "", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "", "Edit User": "Uredi korisnika", "Edit User Group": "", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "", "Firecrawl API Key": "", "Floating Quick Actions": "", + "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "", @@ -785,6 +793,7 @@ "Generate": "", "Generate an image": "", "Generate Image": "Gneriraj sliku", + "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Generiranje upita za pretraživanje", "Generating...": "", @@ -994,6 +1003,7 @@ "Memory updated successfully": "", "Merge Responses": "", "Merged Response": "Spojeni odgovor", + "Message": "", "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.", "Microsoft OneDrive": "", @@ -1056,6 +1066,7 @@ "New Note": "", "New Password": "Nova lozinka", "New Prompt": "", + "New Temporary Chat": "", "New Tool": "", "new-channel": "", "Next message": "", @@ -1122,8 +1133,12 @@ "Ollama Version": "Ollama verzija", "On": "Uključeno", "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 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 markdown files are allowed": "", "Only select users and groups with permission can access": "", @@ -1137,6 +1152,7 @@ "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Image Compression": "", + "Open Settings": "", "Open Sidebar": "", "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", @@ -1227,6 +1243,7 @@ "Prefer not to say": "", "Prefix ID": "", "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": "", "Previous 30 days": "Prethodnih 30 dana", "Previous 7 days": "Prethodnih 7 dana", @@ -1270,6 +1287,7 @@ "Refused when it shouldn't have": "Odbijen kada nije trebao biti", "Regenerate": "Regeneriraj", "Regenerate Menu": "", + "Regenerate Response": "", "Register Again": "", "Register Client": "", "Registered": "", @@ -1440,6 +1458,7 @@ "Show Formatting Toolbar": "", "Show image preview": "", "Show Model": "", + "Show Shortcuts": "", "Show your support!": "", "Showcased creativity": "Prikazana kreativnost", "Sign in": "Prijava", @@ -1475,6 +1494,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "", + "Stop Generating": "", "Stop Sequence": "Zaustavi sekvencu", "Stream Chat Response": "", "Stream Delta Chunk Size": "", @@ -1504,6 +1524,7 @@ "Tags Generation": "", "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.": "", + "Talk to Model": "", "Tap to interrupt": "", "Task List": "", "Task Model": "", @@ -1585,6 +1606,7 @@ "Toast notifications for new updates": "", "Today": "Danas", "Today at {{LOCALIZED_TIME}}": "", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "", "Token": "", "Too verbose": "", diff --git a/src/lib/i18n/locales/hu-HU/translation.json b/src/lib/i18n/locales/hu-HU/translation.json index 5c8d484b6e..1fb9c3c71b 100644 --- a/src/lib/i18n/locales/hu-HU/translation.json +++ b/src/lib/i18n/locales/hu-HU/translation.json @@ -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 user": "egy felhasználó", "About": "Névjegy", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "Hozzáférés", "Access Control": "Hozzáférés-vezérlés", "Accessible to all users": "Minden felhasználó számára elérhető", @@ -50,6 +51,7 @@ "Add Content": "Tartalom hozzáadása", "Add content here": "Tartalom hozzáadása ide", "Add Custom Parameter": "", + "Add Custom Prompt": "", "Add Details": "", "Add Files": "Fájlok hozzáadása", "Add Group": "Csoport hozzáadása", @@ -149,6 +151,7 @@ "Ask": "Kérdezz", "Ask a question": "Kérdezz valamit", "Assistant": "Asszisztens", + "Attach File From Knowledge": "", "Attach Knowledge": "", "Attach Notes": "", "Attach Webpage": "", @@ -268,6 +271,7 @@ "Close Banner": "", "Close Configure Connection Modal": "", "Close modal": "", + "Close Modal": "", "Close settings modal": "", "Close Sidebar": "", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "Vágólapra másolva", "Copy": "Másolás", "Copy Formatted Text": "", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "", "Copy Link": "Link másolása", "Copy to clipboard": "Másolás a vágólapra", @@ -493,6 +499,7 @@ "Edit Default Permissions": "Alapértelmezett engedélyek szerkesztése", "Edit Folder": "", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "Memória szerkesztése", "Edit User": "Felhasználó szerkesztése", "Edit User Group": "Felhasználói csoport szerkesztése", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "", "Firecrawl API Key": "", "Floating Quick Actions": "", + "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "Mappa sikeresen törölve", @@ -785,6 +793,7 @@ "Generate": "", "Generate an image": "Kép generálása", "Generate Image": "Kép generálása", + "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Keresési lekérdezés generálása", "Generating...": "", @@ -994,6 +1003,7 @@ "Memory updated successfully": "Memória sikeresen frissítve", "Merge Responses": "Válaszok egyesítése", "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", "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": "", @@ -1056,6 +1066,7 @@ "New Note": "", "New Password": "Új jelszó", "New Prompt": "", + "New Temporary Chat": "", "New Tool": "", "new-channel": "új csatorna", "Next message": "", @@ -1122,8 +1133,12 @@ "Ollama Version": "Ollama verzió", "On": "Be", "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 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 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á", @@ -1137,6 +1152,7 @@ "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Image Compression": "", + "Open Settings": "", "Open Sidebar": "", "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.", @@ -1227,6 +1243,7 @@ "Prefer not to say": "", "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", + "Prevent File Creation": "", "Preview": "", "Previous 30 days": "Előző 30 nap", "Previous 7 days": "Előző 7 nap", @@ -1270,6 +1287,7 @@ "Refused when it shouldn't have": "Elutasítva, amikor nem kellett volna", "Regenerate": "Újragenerálás", "Regenerate Menu": "", + "Regenerate Response": "", "Register Again": "", "Register Client": "", "Registered": "", @@ -1439,6 +1457,7 @@ "Show Formatting Toolbar": "", "Show image preview": "", "Show Model": "Modell megjelenítése", + "Show Shortcuts": "", "Show your support!": "Mutassa meg támogatását!", "Showcased creativity": "Kreativitás bemutatva", "Sign in": "Bejelentkezés", @@ -1474,6 +1493,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Leállítás", + "Stop Generating": "", "Stop Sequence": "Leállítási szekvencia", "Stream Chat Response": "Chat válasz streamelése", "Stream Delta Chunk Size": "", @@ -1503,6 +1523,7 @@ "Tags Generation": "Címke generálás", "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.", + "Talk to Model": "", "Tap to interrupt": "Koppintson a megszakításhoz", "Task List": "", "Task Model": "", @@ -1584,6 +1605,7 @@ "Toast notifications for new updates": "Felugró értesítések az új frissítésekről", "Today": "Ma", "Today at {{LOCALIZED_TIME}}": "", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "", "Token": "Token", "Too verbose": "Túl bőbeszédű", diff --git a/src/lib/i18n/locales/id-ID/translation.json b/src/lib/i18n/locales/id-ID/translation.json index 148a2b38f4..ff4dc7804f 100644 --- a/src/lib/i18n/locales/id-ID/translation.json +++ b/src/lib/i18n/locales/id-ID/translation.json @@ -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 user": "seorang pengguna", "About": "Tentang", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "", "Access Control": "", "Accessible to all users": "", @@ -50,6 +51,7 @@ "Add Content": "", "Add content here": "", "Add Custom Parameter": "", + "Add Custom Prompt": "", "Add Details": "", "Add Files": "Menambahkan File", "Add Group": "", @@ -149,6 +151,7 @@ "Ask": "", "Ask a question": "", "Assistant": "", + "Attach File From Knowledge": "", "Attach Knowledge": "", "Attach Notes": "", "Attach Webpage": "", @@ -268,6 +271,7 @@ "Close Banner": "", "Close Configure Connection Modal": "", "Close modal": "", + "Close Modal": "", "Close settings modal": "", "Close Sidebar": "", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "", "Copy": "Menyalin", "Copy Formatted Text": "", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "", "Copy Link": "Salin Tautan", "Copy to clipboard": "", @@ -493,6 +499,7 @@ "Edit Default Permissions": "", "Edit Folder": "", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "Edit Memori", "Edit User": "Edit Pengguna", "Edit User Group": "", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "", "Firecrawl API Key": "", "Floating Quick Actions": "", + "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "", @@ -785,6 +793,7 @@ "Generate": "", "Generate an image": "", "Generate Image": "Menghasilkan Gambar", + "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Membuat kueri penelusuran", "Generating...": "", @@ -994,6 +1003,7 @@ "Memory updated successfully": "Memori berhasil diperbarui", "Merge Responses": "", "Merged Response": "Tanggapan yang Digabungkan", + "Message": "", "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.", "Microsoft OneDrive": "", @@ -1056,6 +1066,7 @@ "New Note": "", "New Password": "Kata Sandi Baru", "New Prompt": "", + "New Temporary Chat": "", "New Tool": "", "new-channel": "", "Next message": "", @@ -1122,8 +1133,12 @@ "Ollama Version": "Versi Ollama", "On": "Aktif", "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 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 markdown files are allowed": "", "Only select users and groups with permission can access": "", @@ -1137,6 +1152,7 @@ "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Image Compression": "", + "Open Settings": "", "Open Sidebar": "", "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", @@ -1227,6 +1243,7 @@ "Prefer not to say": "", "Prefix ID": "", "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": "", "Previous 30 days": "30 hari sebelumnya", "Previous 7 days": "7 hari sebelumnya", @@ -1270,6 +1287,7 @@ "Refused when it shouldn't have": "Menolak ketika seharusnya tidak", "Regenerate": "Regenerasi", "Regenerate Menu": "", + "Regenerate Response": "", "Register Again": "", "Register Client": "", "Registered": "", @@ -1438,6 +1456,7 @@ "Show Formatting Toolbar": "", "Show image preview": "", "Show Model": "", + "Show Shortcuts": "", "Show your support!": "Tunjukkan dukungan Anda!", "Showcased creativity": "Menampilkan kreativitas", "Sign in": "Masuk", @@ -1473,6 +1492,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "", + "Stop Generating": "", "Stop Sequence": "Hentikan Urutan", "Stream Chat Response": "", "Stream Delta Chunk Size": "", @@ -1502,6 +1522,7 @@ "Tags Generation": "", "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.": "", + "Talk to Model": "", "Tap to interrupt": "Ketuk untuk menyela", "Task List": "", "Task Model": "", @@ -1583,6 +1604,7 @@ "Toast notifications for new updates": "", "Today": "Hari ini", "Today at {{LOCALIZED_TIME}}": "", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "", "Token": "", "Too verbose": "", diff --git a/src/lib/i18n/locales/ie-GA/translation.json b/src/lib/i18n/locales/ie-GA/translation.json index 91f6bf82bb..ac15c42520 100644 --- a/src/lib/i18n/locales/ie-GA/translation.json +++ b/src/lib/i18n/locales/ie-GA/translation.json @@ -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 user": "úsáideoir", "About": "Maidir", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "Rochtain", "Access Control": "Rialaithe Rochtana", "Accessible to all users": "Inrochtana do gach úsáideoir", @@ -50,6 +51,7 @@ "Add Content": "Cuir Ábhar leis", "Add content here": "Cuir ábhar anseo", "Add Custom Parameter": "Cuir Paraiméadar Saincheaptha leis", + "Add Custom Prompt": "", "Add Details": "Cuir Sonraí leis", "Add Files": "Cuir Comhaid", "Add Group": "Cuir Grúpa leis", @@ -149,6 +151,7 @@ "Ask": "Fiafraigh", "Ask a question": "Cuir ceist", "Assistant": "Cúntóir", + "Attach File From Knowledge": "", "Attach Knowledge": "Ceangail Eolas", "Attach Notes": "Ceangail Nótaí", "Attach Webpage": "", @@ -268,6 +271,7 @@ "Close Banner": "Dún an Meirge", "Close Configure Connection Modal": "Dún Cumraigh Módúil Nasc", "Close modal": "Dún modúl", + "Close Modal": "", "Close settings modal": "Dún modúl na socruithe", "Close Sidebar": "Dún an Barra Taobh", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "Cóipeáilte go gear", "Copy": "Cóipeáil", "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 to clipboard": "Cóipeáil chuig an ngearrthaisce", @@ -493,6 +499,7 @@ "Edit Default Permissions": "Cuir Ceadanna Réamhshocraithe in Eagar", "Edit Folder": "Cuir Fillteán in Eagar", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "Cuir Cuimhne in eagar", "Edit User": "Cuir Ú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 Key": "Eochair API Firecrawl", "Floating Quick Actions": "Gníomhartha Tapa Snámha", + "Focus Chat Input": "", "Folder": "", "Folder Background Image": "Íomhá Chúlra Fillteáin", "Folder deleted successfully": "Scriosadh an fillteán go rathúil", @@ -785,6 +793,7 @@ "Generate": "Gin", "Generate an image": "Gin íomhá", "Generate Image": "Gin Íomhá", + "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Giniúint ceist cuardaigh", "Generating...": "Ag giniúint...", @@ -994,6 +1003,7 @@ "Memory updated successfully": "Cuimhne nuashonraithe", "Merge Responses": "Cumaisc Freagraí", "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", "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", @@ -1056,6 +1066,7 @@ "New Note": "Nóta Nua", "New Password": "Pasfhocal Nua", "New Prompt": "", + "New Temporary Chat": "", "New Tool": "Uirlis Nua", "new-channel": "nua-chainéil", "Next message": "An chéad teachtaireacht eile", @@ -1122,8 +1133,12 @@ "Ollama Version": "Leagan Ollama", "On": "Ar", "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 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 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", @@ -1137,6 +1152,7 @@ "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 Image Compression": "Oscail Modúl Chun Comhbhrú Íomhá a Bhainistiú", + "Open Settings": "", "Open Sidebar": "Oscail an Barra Taoibh", "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.", @@ -1227,6 +1243,7 @@ "Prefer not to say": "Is fearr liom gan a 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ú", + "Prevent File Creation": "", "Preview": "Réamhamharc", "Previous 30 days": "30 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ó", "Regenerate": "Athghiniúint", "Regenerate Menu": "Athghin an Roghchlár", + "Regenerate Response": "", "Register Again": "", "Register Client": "", "Registered": "", @@ -1439,6 +1457,7 @@ "Show Formatting Toolbar": "Taispeáin Barra Uirlisí Formáidithe", "Show image preview": "Taispeáin réamhamharc íomhá", "Show Model": "Taispeáin Samhail", + "Show Shortcuts": "", "Show your support!": "Taispeáin do thacaíocht!", "Showcased creativity": "Cruthaitheacht léirithe", "Sign in": "Sínigh isteach", @@ -1474,6 +1493,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Stad", + "Stop Generating": "", "Stop Sequence": "Stop Seicheamh", "Stream Chat Response": "Freagra Comhrá Sruth", "Stream Delta Chunk Size": "Sruth Méid Leadhb Delta", @@ -1503,6 +1523,7 @@ "Tags Generation": "Giniúint Clibeanna", "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)", + "Talk to Model": "", "Tap to interrupt": "Tapáil chun cur isteach", "Task List": "Liosta Tascanna", "Task Model": "Samhail Thasc", @@ -1584,6 +1605,7 @@ "Toast notifications for new updates": "Fógraí tósta le haghaidh nuashonruithe nua", "Today": "Inniu", "Today at {{LOCALIZED_TIME}}": "Inniu ag {{LOCALIZED_TIME}}", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "Athraigh an bhfuil an nasc reatha gníomhach.", "Token": "Comhartha", "Too verbose": "Ró-fhocal", diff --git a/src/lib/i18n/locales/it-IT/translation.json b/src/lib/i18n/locales/it-IT/translation.json index fe3e82ffc0..34dfe8383b 100644 --- a/src/lib/i18n/locales/it-IT/translation.json +++ b/src/lib/i18n/locales/it-IT/translation.json @@ -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 user": "un utente", "About": "Informazioni", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "Accesso", "Access Control": "Controllo accessi", "Accessible to all users": "Accessibile a tutti gli utenti", @@ -50,6 +51,7 @@ "Add Content": "Aggiungi contenuto", "Add content here": "Aggiungi un contenuto qui", "Add Custom Parameter": "Aggiungi Parametri Personalizzati", + "Add Custom Prompt": "", "Add Details": "", "Add Files": "Aggiungi dei file", "Add Group": "Aggiungi un gruppo", @@ -149,6 +151,7 @@ "Ask": "Chiedi", "Ask a question": "Fai una domanda", "Assistant": "Assistente", + "Attach File From Knowledge": "", "Attach Knowledge": "", "Attach Notes": "", "Attach Webpage": "", @@ -268,6 +271,7 @@ "Close Banner": "", "Close Configure Connection Modal": "", "Close modal": "Chiudi modale", + "Close Modal": "", "Close settings modal": "", "Close Sidebar": "", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "Copiato negli appunti", "Copy": "Copia", "Copy Formatted Text": "Copia testo formattato", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "", "Copy Link": "Copia link", "Copy to clipboard": "Copia negli appunti", @@ -493,6 +499,7 @@ "Edit Default Permissions": "Modifica Permessi Predefiniti", "Edit Folder": "", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "Modifica Memoria", "Edit User": "Modifica Utente", "Edit User Group": "Modifica Gruppo Utente", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "URL base dell'API Firecrawl", "Firecrawl API Key": "Chiave API Firecrawl", "Floating Quick Actions": "", + "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "Cartella rimossa con successo", @@ -785,6 +793,7 @@ "Generate": "Genera", "Generate an image": "Genera un'immagine", "Generate Image": "Genera Immagine", + "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Generazione query di ricerca", "Generating...": "Generazione in corso...", @@ -994,6 +1003,7 @@ "Memory updated successfully": "Memoria aggiornata con successo", "Merge Responses": "Unisci Risposte", "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à", "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", @@ -1056,6 +1066,7 @@ "New Note": "Nuova nota", "New Password": "Nuova password", "New Prompt": "", + "New Temporary Chat": "", "New Tool": "Nuovo strumento", "new-channel": "nuovo-canale", "Next message": "Messaggio successivo", @@ -1122,8 +1133,12 @@ "Ollama Version": "Versione Ollama", "On": "Attivato", "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 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 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", @@ -1137,6 +1152,7 @@ "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Image Compression": "", + "Open Settings": "", "Open Sidebar": "", "Open User Profile Menu": "", "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": "", "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", + "Prevent File Creation": "", "Preview": "Anteprima", "Previous 30 days": "Ultimi 30 giorni", "Previous 7 days": "Ultimi 7 giorni", @@ -1270,6 +1287,7 @@ "Refused when it shouldn't have": "Rifiutato quando non avrebbe dovuto", "Regenerate": "Rigenera", "Regenerate Menu": "", + "Regenerate Response": "", "Register Again": "", "Register Client": "", "Registered": "", @@ -1440,6 +1458,7 @@ "Show Formatting Toolbar": "", "Show image preview": "", "Show Model": "Mostra Modello", + "Show Shortcuts": "", "Show your support!": "Mostra il tuo supporto!", "Showcased creativity": "Creatività messa in mostra", "Sign in": "Accedi", @@ -1475,6 +1494,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Arresta", + "Stop Generating": "", "Stop Sequence": "Sequenza di arresto", "Stream Chat Response": "Stream risposta chat", "Stream Delta Chunk Size": "", @@ -1504,6 +1524,7 @@ "Tags Generation": "Generazione 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.", + "Talk to Model": "", "Tap to interrupt": "Tocca per interrompere", "Task List": "", "Task Model": "Modello Task", @@ -1585,6 +1606,7 @@ "Toast notifications for new updates": "Notifiche toast per nuovi aggiornamenti", "Today": "Oggi", "Today at {{LOCALIZED_TIME}}": "", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "Attiva/disattiva la connessione attuale quando è attiva", "Token": "Token", "Too verbose": "Troppo prolisso", diff --git a/src/lib/i18n/locales/ja-JP/translation.json b/src/lib/i18n/locales/ja-JP/translation.json index 725d185aca..1b716d3b1a 100644 --- a/src/lib/i18n/locales/ja-JP/translation.json +++ b/src/lib/i18n/locales/ja-JP/translation.json @@ -26,6 +26,7 @@ "A task model is used when performing tasks such as generating titles for chats and web search queries": "タスクモデルは、チャットやウェブ検索クエリのタイトルの生成などのタスクを実行するときに使用されます", "a user": "ユーザー", "About": "概要", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "アクセス", "Access Control": "アクセス制御", "Accessible to all users": "すべてのユーザーにアクセス可能", @@ -50,6 +51,7 @@ "Add Content": "コンテンツを追加", "Add content here": "ここへコンテンツを追加", "Add Custom Parameter": "カスタムパラメータを追加", + "Add Custom Prompt": "", "Add Details": "より詳しく", "Add Files": "ファイルを追加", "Add Group": "グループを追加", @@ -149,6 +151,7 @@ "Ask": "質問する", "Ask a question": "質問する", "Assistant": "アシスタント", + "Attach File From Knowledge": "", "Attach Knowledge": "", "Attach Notes": "", "Attach Webpage": "", @@ -268,6 +271,7 @@ "Close Banner": "バナーを閉じる", "Close Configure Connection Modal": "接続設定モーダルを閉じる", "Close modal": "モーダルを閉じる", + "Close Modal": "", "Close settings modal": "設定モーダルを閉じる", "Close Sidebar": "サイドバーを閉じる", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "クリップボードにコピーしました。", "Copy": "コピー", "Copy Formatted Text": "フォーマットされたテキストをコピー", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "リンクをコピー", "Copy Link": "リンクをコピー", "Copy to clipboard": "クリップボードにコピー", @@ -493,6 +499,7 @@ "Edit Default Permissions": "デフォルトの許可を編集", "Edit Folder": "フォルダを編集", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "メモリを編集", "Edit User": "ユーザーを編集", "Edit User Group": "ユーザーグループを編集", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "Firecrawl API ベースURL", "Firecrawl API Key": "Firecrawl APIキー", "Floating Quick Actions": "フローティング クイックアクション", + "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "フォルダー削除が成功しました。", @@ -785,6 +793,7 @@ "Generate": "生成", "Generate an image": "画像を生成", "Generate Image": "画像生成", + "Generate Message Pair": "", "Generated Image": "", "Generating search query": "検索クエリの生成", "Generating...": "生成中...", @@ -994,6 +1003,7 @@ "Memory updated successfully": "メモリアップデート成功", "Merge Responses": "応答を統合", "Merged Response": "統合された応答", + "Message": "", "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 を持つユーザーは共有チャットを閲覧できます。", "Microsoft OneDrive": "Microsoft OneDrive", @@ -1056,6 +1066,7 @@ "New Note": "新しいノート", "New Password": "新しいパスワード", "New Prompt": "", + "New Temporary Chat": "", "New Tool": "新しいツール", "new-channel": "新しいチャンネル", "Next message": "次のメッセージ", @@ -1122,8 +1133,12 @@ "Ollama Version": "Ollama バージョン", "On": "オン", "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 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 markdown files are allowed": "マークダウンファイルのみが許可されています", "Only select users and groups with permission can access": "許可されたユーザーとグループのみがアクセスできます", @@ -1137,6 +1152,7 @@ "Open modal to configure connection": "接続設定のモーダルを開く", "Open Modal To Manage Floating Quick Actions": "フローティング クイックアクションを管理するモーダルを開く", "Open Modal To Manage Image Compression": "", + "Open Settings": "", "Open Sidebar": "サイドバーを開く", "Open User Profile Menu": "ユーザープロフィールメニューを開く", "Open WebUI can use tools provided by any OpenAPI server.": "OpenWebUI は任意のOpenAPI サーバーが提供するツールを使用できます。", @@ -1227,6 +1243,7 @@ "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 はモデル ID に接頭辞を追加することで、他の接続との競合を避けるために使用されます - 空の場合は無効にします", + "Prevent File Creation": "", "Preview": "プレビュー", "Previous 30 days": "過去30日間", "Previous 7 days": "過去7日間", @@ -1270,6 +1287,7 @@ "Refused when it shouldn't have": "拒否すべきでないのに拒否した", "Regenerate": "再生成", "Regenerate Menu": "再生成メニュー", + "Regenerate Response": "", "Register Again": "", "Register Client": "", "Registered": "", @@ -1438,6 +1456,7 @@ "Show Formatting Toolbar": "フォーマットツールバーを表示", "Show image preview": "画像のプレビューを表示", "Show Model": "モデルを表示", + "Show Shortcuts": "", "Show your support!": "サポートを表示", "Showcased creativity": "創造性を披露", "Sign in": "サインイン", @@ -1473,6 +1492,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "停止", + "Stop Generating": "", "Stop Sequence": "ストップシーケンス", "Stream Chat Response": "チャットレスポンスのストリーム", "Stream Delta Chunk Size": "ストリームの差分チャンクサイズ", @@ -1502,6 +1522,7 @@ "Tags Generation": "タグ生成", "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の場合は無効となります。", + "Talk to Model": "", "Tap to interrupt": "タップして中断", "Task List": "タスクリスト", "Task Model": "タスクモデル", @@ -1583,6 +1604,7 @@ "Toast notifications for new updates": "新しい更新のトースト通知", "Today": "今日", "Today at {{LOCALIZED_TIME}}": "", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "この接続の有効性を切り替える", "Token": "トークン", "Too verbose": "冗長すぎる", diff --git a/src/lib/i18n/locales/ka-GE/translation.json b/src/lib/i18n/locales/ka-GE/translation.json index 47168848d4..d379b63754 100644 --- a/src/lib/i18n/locales/ka-GE/translation.json +++ b/src/lib/i18n/locales/ka-GE/translation.json @@ -26,6 +26,7 @@ "A task model is used when performing tasks such as generating titles for chats and web search queries": "დავალების მოდელი გამოიყენება ისეთი ამოცანების შესრულებისას, როგორიცაა ჩეთების სათაურების გენერირება და ვებ – ძიების მოთხოვნები", "a user": "მომხმარებელი", "About": "შესახებ", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "წვდომა", "Access Control": "წვდომის კონტროლი", "Accessible to all users": "ხელმისაწვდომია ყველა მომხმარებლისთვის", @@ -50,6 +51,7 @@ "Add Content": "შემცველობის დამატება", "Add content here": "შემცველობის აქ დამატება", "Add Custom Parameter": "მორგებული პარამეტრის დამატება", + "Add Custom Prompt": "", "Add Details": "დეტალების დამატება", "Add Files": "ფაილების დამატება", "Add Group": "ჯგუფის დამატება", @@ -149,6 +151,7 @@ "Ask": "კითხვა", "Ask a question": "კითხვის დასმა", "Assistant": "დამხმარე", + "Attach File From Knowledge": "", "Attach Knowledge": "ცოდნის მიმაგრება", "Attach Notes": "შენიშვნების მიმაგრება", "Attach Webpage": "ვებგვერდის მიმაგრება", @@ -268,6 +271,7 @@ "Close Banner": "ბანერის დახურვა", "Close Configure Connection Modal": "", "Close modal": "ფანჯრის დახურვა", + "Close Modal": "", "Close settings modal": "მორგების დიალოგის დახურვა", "Close Sidebar": "გვერდითი ზოლის დახურვა", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "დაკოპირდა გაცვლის ბაფერში", "Copy": "კოპირება", "Copy Formatted Text": "დაფორმატებული ტექსტის კოპირება", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "ბმულის კოპირება", "Copy Link": "ბმულის კოპირება", "Copy to clipboard": "ბუფერში კოპირება", @@ -493,6 +499,7 @@ "Edit Default Permissions": "ნაგულისხმევი წვდომების ჩასწორება", "Edit Folder": "საქაღალდის ჩასწორება", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "მეხსიერების ჩასწორება", "Edit User": "მომხმარებლის ჩასწორება", "Edit User Group": "მომხმარებლის ჯგუფის ჩასწორება", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "Firecrawl API-ის საბაზისო URL", "Firecrawl API Key": "Firecrawl API-ის გასაღები", "Floating Quick Actions": "", + "Focus Chat Input": "", "Folder": "საქაღალდე", "Folder Background Image": "საქაღალდის ფონის სურათი", "Folder deleted successfully": "საქაღალდე წარმატებით წაიშალა", @@ -785,6 +793,7 @@ "Generate": "გენერაცია", "Generate an image": "გამოსახულების გენერაცია", "Generate Image": "სურათის განერაცია", + "Generate Message Pair": "", "Generated Image": "გენერირებული გამოსახულება", "Generating search query": "ძებნის მოთხოვნის გენერაცია", "Generating...": "გენერაცია...", @@ -994,6 +1003,7 @@ "Memory updated successfully": "მოგონება წარმატებით განახლდა", "Merge Responses": "პასუხების შერწყმა", "Merged Response": "შერწყმული პასუხი", + "Message": "", "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– ის მქონე მომხმარებლებს შეეძლებათ ნახონ საერთო ჩატი.", "Microsoft OneDrive": "Microsoft OneDrive", @@ -1056,6 +1066,7 @@ "New Note": "ახალი ჩანაწერი", "New Password": "ახალი პაროლი", "New Prompt": "ახალი შეყვანა", + "New Temporary Chat": "", "New Tool": "ახალი ხელსაწყო", "new-channel": "new-channel", "Next message": "შემდეგი შეტყობინება", @@ -1122,8 +1133,12 @@ "Ollama Version": "Ollama ვერსია", "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 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 markdown files are allowed": "", "Only select users and groups with permission can access": "", @@ -1137,6 +1152,7 @@ "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Image Compression": "", + "Open Settings": "", "Open Sidebar": "გვერდითი ზოლის გახსნა", "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", @@ -1227,6 +1243,7 @@ "Prefer not to say": "მირჩევნია, არ ვთქვა", "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": "", + "Prevent File Creation": "", "Preview": "მინიატურა", "Previous 30 days": "წინა 30 დღე", "Previous 7 days": "წინა 7 დღე", @@ -1270,6 +1287,7 @@ "Refused when it shouldn't have": "უარა, როგორც უნდა იყოს", "Regenerate": "თავიდან გენერაცია", "Regenerate Menu": "მენიუს რეგენერაცია", + "Regenerate Response": "", "Register Again": "თავიდან რეგისტრაცია", "Register Client": "კლიენტის რეგისტრაცია", "Registered": "რეგისტრირებულია", @@ -1439,6 +1457,7 @@ "Show Formatting Toolbar": "დაფორმატების პანელის ჩვენება", "Show image preview": "გამოსახულების გადახედვის ჩვენება", "Show Model": "მოდელის ჩვენება", + "Show Shortcuts": "", "Show your support!": "გვაჩვენეთ მხარდაჭერა!", "Showcased creativity": "გამოკვეთილი კრეატიულობა", "Sign in": "შესვლა", @@ -1474,6 +1493,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "გაჩერება", + "Stop Generating": "", "Stop Sequence": "შეჩერების მიმდევრობა", "Stream Chat Response": "", "Stream Delta Chunk Size": "", @@ -1503,6 +1523,7 @@ "Tags Generation": "ჭდეების გენერაცია", "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.": "", + "Talk to Model": "", "Tap to interrupt": "დაატყაპუნეთ შესაწყვეტად", "Task List": "ამოცანების სია", "Task Model": "დავალების მოდელი", @@ -1584,6 +1605,7 @@ "Toast notifications for new updates": "", "Today": "დღეს", "Today at {{LOCALIZED_TIME}}": "დღეს, {{LOCALIZED_TIME}}", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "გადართვა, აქტიურია, თუ არა მიმდინარე კავშირი.", "Token": "კოდი", "Too verbose": "მეტისმეტად ბევრი სეტყობინება", diff --git a/src/lib/i18n/locales/kab-DZ/translation.json b/src/lib/i18n/locales/kab-DZ/translation.json index 4d2cbc6ad2..388e6cbc5d 100644 --- a/src/lib/i18n/locales/kab-DZ/translation.json +++ b/src/lib/i18n/locales/kab-DZ/translation.json @@ -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 user": "aseqdac", "About": "Awal ɣef", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "Addaf", "Access Control": "Asenqed n unekcum", "Accessible to all users": "Yella i yiseqdacen i meṛṛa", @@ -50,6 +51,7 @@ "Add Content": "Rnu agbur", "Add content here": "Rnu agbur da", "Add Custom Parameter": "Rnu aɣewwar udmawan", + "Add Custom Prompt": "", "Add Details": "Rnu talqayt", "Add Files": "Rnu ifuyla", "Add Group": "Rnu agraw", @@ -149,6 +151,7 @@ "Ask": "Suter", "Ask a question": "Efk-d asteqsi", "Assistant": "Amallal", + "Attach File From Knowledge": "", "Attach Knowledge": "Qqen-as tamessunt", "Attach Notes": "Qqen-as tizmilin", "Attach Webpage": "Qqen-as asebter web", @@ -268,6 +271,7 @@ "Close Banner": "", "Close Configure Connection Modal": "Mdel asfaylu n tawila n tuqqna", "Close modal": "Mdel asfaylu", + "Close Modal": "", "Close settings modal": "Mdel asfaylu n iɣewwaṛen", "Close Sidebar": "Mdel agalis adisan", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "Yettwanɣel ɣer ufus", "Copy": "Nɣel", "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 to clipboard": "Nɣel ɣef afus", @@ -493,6 +499,7 @@ "Edit Default Permissions": "Senfel tisirag timezwar", "Edit Folder": "Ẓreg akaram", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "Ẓreg takatut", "Edit User": "Ẓreg aseqdac", "Edit User Group": "Ẓreg agraw n iseqdacen", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "Tansa URL n taffa n isefka", "Firecrawl API Key": "Tasarut API n Firecrawl", "Floating Quick Actions": "Tigawin tiruradin yettifliwen", + "Focus Chat Input": "", "Folder": "Akaram", "Folder Background Image": "Tugna n ugilal n ukaram", "Folder deleted successfully": "Akaram-nni yettwakkes akken iwata", @@ -785,6 +793,7 @@ "Generate": "Sirew", "Generate an image": "Sarew tugna", "Generate Image": "Sirew-d tugna", + "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Asirew n tuttra n unadi", "Generating...": "Asirew…", @@ -994,6 +1003,7 @@ "Memory updated successfully": "Takatut tettwaleqqem akken iwata", "Merge Responses": "Smezdi tiririyin", "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", "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", @@ -1056,6 +1066,7 @@ "New Note": "Tazmilt tamaynut", "New Password": "Awal n uɛeddi amaynut", "New Prompt": "Aneftaɣ amaynut", + "New Temporary Chat": "", "New Tool": "Afecku amaynut", "new-channel": "abadu amaynut", "Next message": "Izen uḍfir", @@ -1122,8 +1133,12 @@ "Ollama Version": "Lqem n Ollama", "On": "Irmed", "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 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 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", @@ -1137,6 +1152,7 @@ "Open modal to configure connection": "Ldi asfaylu akken ad teswel tuqqna", "Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Image Compression": "", + "Open Settings": "", "Open Sidebar": "Ldi agalis adisan", "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.", @@ -1227,6 +1243,7 @@ "Prefer not to say": "Smenyafeɣ ur d-qqareɣ ara", "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", + "Prevent File Creation": "", "Preview": "Taskant", "Previous 30 days": "30 n wussan yezrin", "Previous 7 days": "7 n wussan yezrin", @@ -1270,6 +1287,7 @@ "Refused when it shouldn't have": "", "Regenerate": "Asirew", "Regenerate Menu": "Sarew-d umuɣ", + "Regenerate Response": "", "Register Again": "", "Register Client": "", "Registered": "", @@ -1439,6 +1457,7 @@ "Show Formatting Toolbar": "Skan amsal n ufeggag n yifecka", "Show image preview": "Sken taskant n tugna", "Show Model": "Sken-d tamudemt", + "Show Shortcuts": "", "Show your support!": "Sken tallalt-ik⋅im!", "Showcased creativity": "", "Sign in": "Qqen", @@ -1474,6 +1493,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Seḥbes", + "Stop Generating": "", "Stop Sequence": "Tagzemt n uḥbas", "Stream Chat Response": "Suddem tiririt n udiwenni", "Stream Delta Chunk Size": "", @@ -1503,6 +1523,7 @@ "Tags Generation": "Asirew 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.": "", + "Talk to Model": "", "Tap to interrupt": "Sit i unegzum", "Task List": "Tabdart n temsekra", "Task Model": "Tamudemt n temsekra", @@ -1584,6 +1605,7 @@ "Toast notifications for new updates": "Ssurfet ilɣa i yileqman imaynuten", "Today": "Ass-a", "Today at {{LOCALIZED_TIME}}": "Ass-a, ɣef {{LOCALIZED_TIME}}", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "Sken ma yella tuqqna tamirant d turmidt.", "Token": "Ajiṭun", "Too verbose": "", diff --git a/src/lib/i18n/locales/ko-KR/translation.json b/src/lib/i18n/locales/ko-KR/translation.json index a5ec0ffcdd..ca06664e7e 100644 --- a/src/lib/i18n/locales/ko-KR/translation.json +++ b/src/lib/i18n/locales/ko-KR/translation.json @@ -26,6 +26,7 @@ "A task model is used when performing tasks such as generating titles for chats and web search queries": "작업 모델은 채팅 및 웹 검색 쿼리에 대한 제목 생성 등의 작업 수행 시 사용됩니다.", "a user": "사용자", "About": "정보", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "접근", "Access Control": "접근 제어", "Accessible to all users": "모든 사용자가 이용할 수 있음", @@ -50,6 +51,7 @@ "Add Content": "내용 추가", "Add content here": "여기에 내용을 추가하세요", "Add Custom Parameter": "사용자 정의 매개변수 추가", + "Add Custom Prompt": "", "Add Details": "디테일 추가", "Add Files": "파일 추가", "Add Group": "그룹 추가", @@ -149,6 +151,7 @@ "Ask": "질문", "Ask a question": "질문하기", "Assistant": "어시스턴트", + "Attach File From Knowledge": "", "Attach Knowledge": "지식 기반 첨부", "Attach Notes": "노트 첨부", "Attach Webpage": "웹페이지 첨부", @@ -268,6 +271,7 @@ "Close Banner": "배너 닫기", "Close Configure Connection Modal": "연결 설정 닫기", "Close modal": "닫기", + "Close Modal": "", "Close settings modal": "설정 닫기", "Close Sidebar": "사이드바 닫기", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "클립보드에 복사되었습니다", "Copy": "복사", "Copy Formatted Text": "서식 있는 텍스트 복사", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "링크 복사", "Copy Link": "링크 복사", "Copy to clipboard": "클립보드에 복사", @@ -493,6 +499,7 @@ "Edit Default Permissions": "기본 권한 편집", "Edit Folder": "폴더 편집", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "메모리 편집", "Edit User": "사용자 편집", "Edit User Group": "사용자 그룹 편집", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "Firecrawl API 기본 URL", "Firecrawl API Key": "Firecrawl API 키", "Floating Quick Actions": "", + "Focus Chat Input": "", "Folder": "폴더", "Folder Background Image": "폴더 배경 이미지", "Folder deleted successfully": "성공적으로 폴더가 삭제되었습니다", @@ -785,6 +793,7 @@ "Generate": "생성", "Generate an image": "이미지 생성", "Generate Image": "이미지 생성", + "Generate Message Pair": "", "Generated Image": "", "Generating search query": "검색 쿼리 생성", "Generating...": "생성 중...", @@ -994,6 +1003,7 @@ "Memory updated successfully": "성공적으로 메모리가 업데이트되었습니다", "Merge Responses": "응답들 결합하기", "Merged Response": "결합된 응답", + "Message": "", "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이 있는 사용자는 공유된 채팅을 볼 수 있습니다.", "Microsoft OneDrive": "", @@ -1056,6 +1066,7 @@ "New Note": "새 노트", "New Password": "새 비밀번호", "New Prompt": "새 프롬프트", + "New Temporary Chat": "", "New Tool": "새 도구", "new-channel": "새 채널", "Next message": "다음 메시지", @@ -1122,8 +1133,12 @@ "Ollama Version": "Ollama 버전", "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 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 markdown files are allowed": "마크다운 파일만 허용됩니다", "Only select users and groups with permission can access": "권한이 있는 사용자와 그룹만 접근 가능합니다.", @@ -1137,6 +1152,7 @@ "Open modal to configure connection": "연결 설정 열기", "Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Image Compression": "", + "Open Settings": "", "Open Sidebar": "사이드바 열기", "Open User Profile Menu": "사용자 프로필 메뉴 열기", "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI는 모든 OpenAPI 서버에서 제공하는 도구를 사용할 수 있습니다.", @@ -1227,6 +1243,7 @@ "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는 모델 ID에 접두사를 추가하여 다른 연결과의 충돌을 방지하는 데 사용됩니다. - 비활성화하려면 비워 둡니다.", + "Prevent File Creation": "", "Preview": "미리보기", "Previous 30 days": "이전 30일", "Previous 7 days": "이전 7일", @@ -1270,6 +1287,7 @@ "Refused when it shouldn't have": "허용되지 않았지만 허용되어야 합니다.", "Regenerate": "재생성", "Regenerate Menu": "메뉴 재생성", + "Regenerate Response": "", "Register Again": "재등록", "Register Client": "클라이언트 등록", "Registered": "등록됨", @@ -1438,6 +1456,7 @@ "Show Formatting Toolbar": "서식 툴바 표시", "Show image preview": "이미지 미리보기", "Show Model": "모델 보기", + "Show Shortcuts": "", "Show your support!": "당신의 응원을 보내주세요!", "Showcased creativity": "창의성 발휘", "Sign in": "로그인", @@ -1473,6 +1492,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "정지", + "Stop Generating": "", "Stop Sequence": "중지 시퀀스", "Stream Chat Response": "스트림 채팅 응답", "Stream Delta Chunk Size": "스트림 델타 청크 크기", @@ -1502,6 +1522,7 @@ "Tags Generation": "태그 생성", "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으로 설정하면 이 기능은 비활성화됩니다.", + "Talk to Model": "", "Tap to interrupt": "탭하여 중단", "Task List": "작업 목록", "Task Model": "작업 모델", @@ -1583,6 +1604,7 @@ "Toast notifications for new updates": "새 업데이트 알림", "Today": "오늘", "Today at {{LOCALIZED_TIME}}": "오늘 {{LOCALIZED_TIME}}", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "현재 연결 활성화 여부 설정", "Token": "토큰", "Too verbose": "너무 장황합니다", diff --git a/src/lib/i18n/locales/lt-LT/translation.json b/src/lib/i18n/locales/lt-LT/translation.json index b4a51c3658..9fef9626dd 100644 --- a/src/lib/i18n/locales/lt-LT/translation.json +++ b/src/lib/i18n/locales/lt-LT/translation.json @@ -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 user": "naudotojas", "About": "Apie", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "", "Access Control": "", "Accessible to all users": "", @@ -50,6 +51,7 @@ "Add Content": "", "Add content here": "", "Add Custom Parameter": "", + "Add Custom Prompt": "", "Add Details": "", "Add Files": "Pridėti failus", "Add Group": "", @@ -149,6 +151,7 @@ "Ask": "", "Ask a question": "", "Assistant": "", + "Attach File From Knowledge": "", "Attach Knowledge": "", "Attach Notes": "", "Attach Webpage": "", @@ -268,6 +271,7 @@ "Close Banner": "", "Close Configure Connection Modal": "", "Close modal": "", + "Close Modal": "", "Close settings modal": "", "Close Sidebar": "", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "", "Copy": "Kopijuoti", "Copy Formatted Text": "", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "", "Copy Link": "Kopijuoti nuorodą", "Copy to clipboard": "", @@ -493,6 +499,7 @@ "Edit Default Permissions": "", "Edit Folder": "", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "Koreguoti atminį", "Edit User": "Redaguoti naudotoją", "Edit User Group": "", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "", "Firecrawl API Key": "", "Floating Quick Actions": "", + "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "", @@ -785,6 +793,7 @@ "Generate": "", "Generate an image": "", "Generate Image": "Generuoti paveikslėlį", + "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Generuoti paieškos užklausą", "Generating...": "", @@ -994,6 +1003,7 @@ "Memory updated successfully": "Atmintis atnaujinta sėkmingai", "Merge Responses": "", "Merged Response": "Sujungtas atsakymas", + "Message": "", "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.", "Microsoft OneDrive": "", @@ -1056,6 +1066,7 @@ "New Note": "", "New Password": "Naujas slaptažodis", "New Prompt": "", + "New Temporary Chat": "", "New Tool": "", "new-channel": "", "Next message": "", @@ -1122,8 +1133,12 @@ "Ollama Version": "Ollama versija", "On": "Aktyvuota", "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 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 markdown files are allowed": "", "Only select users and groups with permission can access": "", @@ -1137,6 +1152,7 @@ "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Image Compression": "", + "Open Settings": "", "Open Sidebar": "", "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", @@ -1227,6 +1243,7 @@ "Prefer not to say": "", "Prefix ID": "", "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": "", "Previous 30 days": "Paskutinės 30 dienų", "Previous 7 days": "Paskutinės 7 dienos", @@ -1270,6 +1287,7 @@ "Refused when it shouldn't have": "Atmesta kai neturėtų būti atmesta", "Regenerate": "Generuoti iš naujo", "Regenerate Menu": "", + "Regenerate Response": "", "Register Again": "", "Register Client": "", "Registered": "", @@ -1441,6 +1459,7 @@ "Show Formatting Toolbar": "", "Show image preview": "", "Show Model": "", + "Show Shortcuts": "", "Show your support!": "Palaikykite", "Showcased creativity": "Kūrybingų užklausų paroda", "Sign in": "Prisijungti", @@ -1476,6 +1495,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "", + "Stop Generating": "", "Stop Sequence": "Baigt sekvenciją", "Stream Chat Response": "", "Stream Delta Chunk Size": "", @@ -1505,6 +1525,7 @@ "Tags Generation": "", "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.": "", + "Talk to Model": "", "Tap to interrupt": "Paspauskite norėdami pertraukti", "Task List": "", "Task Model": "", @@ -1586,6 +1607,7 @@ "Toast notifications for new updates": "", "Today": "Šiandien", "Today at {{LOCALIZED_TIME}}": "", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "", "Token": "", "Too verbose": "", diff --git a/src/lib/i18n/locales/ms-MY/translation.json b/src/lib/i18n/locales/ms-MY/translation.json index 8c3e303532..59ba6696ae 100644 --- a/src/lib/i18n/locales/ms-MY/translation.json +++ b/src/lib/i18n/locales/ms-MY/translation.json @@ -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 user": "seorang pengguna", "About": "Mengenai", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "", "Access Control": "", "Accessible to all users": "", @@ -50,6 +51,7 @@ "Add Content": "", "Add content here": "", "Add Custom Parameter": "", + "Add Custom Prompt": "", "Add Details": "", "Add Files": "Tambah Fail", "Add Group": "", @@ -149,6 +151,7 @@ "Ask": "", "Ask a question": "", "Assistant": "", + "Attach File From Knowledge": "", "Attach Knowledge": "", "Attach Notes": "", "Attach Webpage": "", @@ -268,6 +271,7 @@ "Close Banner": "", "Close Configure Connection Modal": "", "Close modal": "", + "Close Modal": "", "Close settings modal": "", "Close Sidebar": "", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "", "Copy": "Salin", "Copy Formatted Text": "", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "", "Copy Link": "Salin Pautan", "Copy to clipboard": "", @@ -493,6 +499,7 @@ "Edit Default Permissions": "", "Edit Folder": "", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "Edit Memori", "Edit User": "Edit Penggunal", "Edit User Group": "", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "", "Firecrawl API Key": "", "Floating Quick Actions": "", + "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "", @@ -785,6 +793,7 @@ "Generate": "", "Generate an image": "", "Generate Image": "Jana Imej", + "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Jana pertanyaan carian", "Generating...": "", @@ -994,6 +1003,7 @@ "Memory updated successfully": "Memori berjaya dikemaskini", "Merge Responses": "", "Merged Response": "Respons Digabungkan", + "Message": "", "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.", "Microsoft OneDrive": "", @@ -1056,6 +1066,7 @@ "New Note": "", "New Password": "Kata Laluan Baru", "New Prompt": "", + "New Temporary Chat": "", "New Tool": "", "new-channel": "", "Next message": "", @@ -1122,8 +1133,12 @@ "Ollama Version": "Versi Ollama", "On": "Hidup", "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 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 markdown files are allowed": "", "Only select users and groups with permission can access": "", @@ -1137,6 +1152,7 @@ "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Image Compression": "", + "Open Settings": "", "Open Sidebar": "", "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", @@ -1227,6 +1243,7 @@ "Prefer not to say": "", "Prefix ID": "", "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": "", "Previous 30 days": "30 hari sebelumnya", "Previous 7 days": "7 hari sebelumnya", @@ -1270,6 +1287,7 @@ "Refused when it shouldn't have": "Menolak dimana ia tidak sepatutnya", "Regenerate": "Jana semula", "Regenerate Menu": "", + "Regenerate Response": "", "Register Again": "", "Register Client": "", "Registered": "", @@ -1438,6 +1456,7 @@ "Show Formatting Toolbar": "", "Show image preview": "", "Show Model": "", + "Show Shortcuts": "", "Show your support!": "Tunjukkan sokongan anda!", "Showcased creativity": "eativiti yang dipamerkan", "Sign in": "Daftar masuk", @@ -1473,6 +1492,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "", + "Stop Generating": "", "Stop Sequence": "Jujukan Henti", "Stream Chat Response": "", "Stream Delta Chunk Size": "", @@ -1502,6 +1522,7 @@ "Tags Generation": "", "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.": "", + "Talk to Model": "", "Tap to interrupt": "Sentuh untuk mengganggu", "Task List": "", "Task Model": "", @@ -1583,6 +1604,7 @@ "Toast notifications for new updates": "", "Today": "Hari Ini", "Today at {{LOCALIZED_TIME}}": "", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "", "Token": "", "Too verbose": "", diff --git a/src/lib/i18n/locales/nb-NO/translation.json b/src/lib/i18n/locales/nb-NO/translation.json index db5b440575..2cf1e37177 100644 --- a/src/lib/i18n/locales/nb-NO/translation.json +++ b/src/lib/i18n/locales/nb-NO/translation.json @@ -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 user": "en bruker", "About": "Om", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "Tilgang", "Access Control": "Tilgangskontroll", "Accessible to all users": "Tilgjengelig for alle brukere", @@ -50,6 +51,7 @@ "Add Content": "Legg til innhold", "Add content here": "Legg til innhold her", "Add Custom Parameter": "", + "Add Custom Prompt": "", "Add Details": "", "Add Files": "Legg til filer", "Add Group": "Legg til gruppe", @@ -149,6 +151,7 @@ "Ask": "", "Ask a question": "Still et spørsmål", "Assistant": "Assistent", + "Attach File From Knowledge": "", "Attach Knowledge": "", "Attach Notes": "", "Attach Webpage": "", @@ -268,6 +271,7 @@ "Close Banner": "", "Close Configure Connection Modal": "", "Close modal": "", + "Close Modal": "", "Close settings modal": "", "Close Sidebar": "", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "Kopier til utklippstaveln", "Copy": "Kopier", "Copy Formatted Text": "", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "", "Copy Link": "Kopier lenke", "Copy to clipboard": "Kopier til utklippstavle", @@ -493,6 +499,7 @@ "Edit Default Permissions": "Rediger standard tillatelser", "Edit Folder": "", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "Rediger minne", "Edit User": "Rediger bruker", "Edit User Group": "Rediger brukergruppe", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "", "Firecrawl API Key": "", "Floating Quick Actions": "", + "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "Mappe slettet", @@ -785,6 +793,7 @@ "Generate": "", "Generate an image": "Genrer et bilde", "Generate Image": "Generer bilde", + "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Genererer søkespørring", "Generating...": "", @@ -994,6 +1003,7 @@ "Memory updated successfully": "Minne oppdatert", "Merge Responses": "Flette 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", "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": "", @@ -1056,6 +1066,7 @@ "New Note": "", "New Password": "Nytt passord", "New Prompt": "", + "New Temporary Chat": "", "New Tool": "", "new-channel": "ny-kanal", "Next message": "", @@ -1122,8 +1133,12 @@ "Ollama Version": "Ollama-versjon", "On": "Aktivert", "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 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 markdown files are allowed": "", "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 Manage Floating Quick Actions": "", "Open Modal To Manage Image Compression": "", + "Open Settings": "", "Open Sidebar": "", "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", @@ -1227,6 +1243,7 @@ "Prefer not to say": "", "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", + "Prevent File Creation": "", "Preview": "", "Previous 30 days": "Siste 30 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", "Regenerate": "Generer på nytt", "Regenerate Menu": "", + "Regenerate Response": "", "Register Again": "", "Register Client": "", "Registered": "", @@ -1439,6 +1457,7 @@ "Show Formatting Toolbar": "", "Show image preview": "", "Show Model": "", + "Show Shortcuts": "", "Show your support!": "Vis din støtte!", "Showcased creativity": "Fremhevet kreativitet", "Sign in": "Logg inn", @@ -1474,6 +1493,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Stopp", + "Stop Generating": "", "Stop Sequence": "Stoppsekvens", "Stream Chat Response": "Strømme chat-svar", "Stream Delta Chunk Size": "", @@ -1503,6 +1523,7 @@ "Tags Generation": "Genering av etiketter", "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.": "", + "Talk to Model": "", "Tap to interrupt": "Trykk for å avbryte", "Task List": "", "Task Model": "", @@ -1584,6 +1605,7 @@ "Toast notifications for new updates": "Hurtigmelding-notifikasjon for nye oppdateringer", "Today": "I dag", "Today at {{LOCALIZED_TIME}}": "", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "", "Token": "Token", "Too verbose": "For omfattende", diff --git a/src/lib/i18n/locales/nl-NL/translation.json b/src/lib/i18n/locales/nl-NL/translation.json index c3053d560a..a449d67d0a 100644 --- a/src/lib/i18n/locales/nl-NL/translation.json +++ b/src/lib/i18n/locales/nl-NL/translation.json @@ -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 user": "een gebruiker", "About": "Over", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "Toegang", "Access Control": "Toegangsbeheer", "Accessible to all users": "Toegankelijk voor alle gebruikers", @@ -50,6 +51,7 @@ "Add Content": "Voeg content toe", "Add content here": "Voeg hier content toe", "Add Custom Parameter": "", + "Add Custom Prompt": "", "Add Details": "", "Add Files": "Voeg bestanden toe", "Add Group": "Voeg groep toe", @@ -149,6 +151,7 @@ "Ask": "Vraag", "Ask a question": "Stel een vraag", "Assistant": "Assistent", + "Attach File From Knowledge": "", "Attach Knowledge": "", "Attach Notes": "", "Attach Webpage": "", @@ -268,6 +271,7 @@ "Close Banner": "", "Close Configure Connection Modal": "", "Close modal": "", + "Close Modal": "", "Close settings modal": "", "Close Sidebar": "", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "Gekopieerd naar klembord", "Copy": "Kopieer", "Copy Formatted Text": "Kopieer opgemaakte tekst", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "Kopiëer link", "Copy Link": "Kopieer link", "Copy to clipboard": "Kopieer naar klembord", @@ -493,6 +499,7 @@ "Edit Default Permissions": "Bewerk standaardrechten", "Edit Folder": "", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "Bewerk geheugen", "Edit User": "Wijzig gebruiker", "Edit User Group": "Bewerk gebruikergroep", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "", "Firecrawl API Key": "", "Floating Quick Actions": "", + "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "Map succesvol verwijderd", @@ -785,6 +793,7 @@ "Generate": "", "Generate an image": "Genereer een afbeelding", "Generate Image": "Genereer afbeelding", + "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Zoekopdracht genereren", "Generating...": "", @@ -994,6 +1003,7 @@ "Memory updated successfully": "Geheugen succesvol bijgewerkt", "Merge Responses": "Voeg antwoorden samen", "Merged Response": "Samengevoegd antwoord", + "Message": "", "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.", "Microsoft OneDrive": "", @@ -1056,6 +1066,7 @@ "New Note": "", "New Password": "Nieuw Wachtwoord", "New Prompt": "", + "New Temporary Chat": "", "New Tool": "", "new-channel": "nieuw-kanaal", "Next message": "", @@ -1122,8 +1133,12 @@ "Ollama Version": "Ollama Versie", "On": "Aan", "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 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 markdown files are allowed": "", "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 Manage Floating Quick Actions": "", "Open Modal To Manage Image Compression": "", + "Open Settings": "", "Open Sidebar": "", "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", @@ -1227,6 +1243,7 @@ "Prefer not to say": "", "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", + "Prevent File Creation": "", "Preview": "", "Previous 30 days": "Afgelopen 30 dagen", "Previous 7 days": "Afgelopen 7 dagen", @@ -1270,6 +1287,7 @@ "Refused when it shouldn't have": "Geweigerd terwijl het niet had moeten", "Regenerate": "Regenereren", "Regenerate Menu": "", + "Regenerate Response": "", "Register Again": "", "Register Client": "", "Registered": "", @@ -1439,6 +1457,7 @@ "Show Formatting Toolbar": "", "Show image preview": "", "Show Model": "Toon model", + "Show Shortcuts": "", "Show your support!": "Toon je steun", "Showcased creativity": "Toonde creativiteit", "Sign in": "Inloggen", @@ -1474,6 +1493,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Stop", + "Stop Generating": "", "Stop Sequence": "Stopsequentie", "Stream Chat Response": "Stream chat-antwoord", "Stream Delta Chunk Size": "", @@ -1503,6 +1523,7 @@ "Tags Generation": "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.", + "Talk to Model": "", "Tap to interrupt": "Tik om te onderbreken", "Task List": "", "Task Model": "", @@ -1584,6 +1605,7 @@ "Toast notifications for new updates": "Toon notificaties voor nieuwe updates", "Today": "Vandaag", "Today at {{LOCALIZED_TIME}}": "", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "", "Token": "Token", "Too verbose": "Te langdradig", diff --git a/src/lib/i18n/locales/pa-IN/translation.json b/src/lib/i18n/locales/pa-IN/translation.json index 43da11ed72..893d2826d4 100644 --- a/src/lib/i18n/locales/pa-IN/translation.json +++ b/src/lib/i18n/locales/pa-IN/translation.json @@ -26,6 +26,7 @@ "A task model is used when performing tasks such as generating titles for chats and web search queries": "ਚੈਟਾਂ ਅਤੇ ਵੈੱਬ ਖੋਜ ਪੁੱਛਗਿੱਛਾਂ ਵਾਸਤੇ ਸਿਰਲੇਖ ਤਿਆਰ ਕਰਨ ਵਰਗੇ ਕਾਰਜ ਾਂ ਨੂੰ ਕਰਦੇ ਸਮੇਂ ਇੱਕ ਕਾਰਜ ਮਾਡਲ ਦੀ ਵਰਤੋਂ ਕੀਤੀ ਜਾਂਦੀ ਹੈ", "a user": "ਇੱਕ ਉਪਭੋਗਤਾ", "About": "ਬਾਰੇ", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "", "Access Control": "", "Accessible to all users": "", @@ -50,6 +51,7 @@ "Add Content": "", "Add content here": "", "Add Custom Parameter": "", + "Add Custom Prompt": "", "Add Details": "", "Add Files": "ਫਾਈਲਾਂ ਸ਼ਾਮਲ ਕਰੋ", "Add Group": "", @@ -149,6 +151,7 @@ "Ask": "", "Ask a question": "", "Assistant": "", + "Attach File From Knowledge": "", "Attach Knowledge": "", "Attach Notes": "", "Attach Webpage": "", @@ -268,6 +271,7 @@ "Close Banner": "", "Close Configure Connection Modal": "", "Close modal": "", + "Close Modal": "", "Close settings modal": "", "Close Sidebar": "", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "", "Copy": "ਕਾਪੀ ਕਰੋ", "Copy Formatted Text": "", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "", "Copy Link": "ਲਿੰਕ ਕਾਪੀ ਕਰੋ", "Copy to clipboard": "", @@ -493,6 +499,7 @@ "Edit Default Permissions": "", "Edit Folder": "", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "", "Edit User": "ਉਪਭੋਗਤਾ ਸੰਪਾਦਨ ਕਰੋ", "Edit User Group": "", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "", "Firecrawl API Key": "", "Floating Quick Actions": "", + "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "", @@ -785,6 +793,7 @@ "Generate": "", "Generate an image": "", "Generate Image": "", + "Generate Message Pair": "", "Generated Image": "", "Generating search query": "ਖੋਜ ਪੁੱਛਗਿੱਛ ਤਿਆਰ ਕਰਨਾ", "Generating...": "", @@ -994,6 +1003,7 @@ "Memory updated successfully": "", "Merge Responses": "", "Merged Response": "ਮਿਲਾਇਆ ਗਿਆ ਜਵਾਬ", + "Message": "", "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 ਵਾਲੇ ਉਪਭੋਗਤਾ ਸਾਂਝੀ ਚੈਟ ਨੂੰ ਵੇਖ ਸਕਣਗੇ।", "Microsoft OneDrive": "", @@ -1056,6 +1066,7 @@ "New Note": "", "New Password": "ਨਵਾਂ ਪਾਸਵਰਡ", "New Prompt": "", + "New Temporary Chat": "", "New Tool": "", "new-channel": "", "Next message": "", @@ -1122,8 +1133,12 @@ "Ollama Version": "ਓਲਾਮਾ ਵਰਜਨ", "On": "ਚਾਲੂ", "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 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 markdown files are allowed": "", "Only select users and groups with permission can access": "", @@ -1137,6 +1152,7 @@ "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Image Compression": "", + "Open Settings": "", "Open Sidebar": "", "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", @@ -1227,6 +1243,7 @@ "Prefer not to say": "", "Prefix ID": "", "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": "", "Previous 30 days": "ਪਿਛਲੇ 30 ਦਿਨ", "Previous 7 days": "ਪਿਛਲੇ 7 ਦਿਨ", @@ -1270,6 +1287,7 @@ "Refused when it shouldn't have": "ਜਦੋਂ ਇਹ ਨਹੀਂ ਹੋਣਾ ਚਾਹੀਦਾ ਸੀ ਤਾਂ ਇਨਕਾਰ ਕੀਤਾ", "Regenerate": "ਮੁੜ ਬਣਾਓ", "Regenerate Menu": "", + "Regenerate Response": "", "Register Again": "", "Register Client": "", "Registered": "", @@ -1439,6 +1457,7 @@ "Show Formatting Toolbar": "", "Show image preview": "", "Show Model": "", + "Show Shortcuts": "", "Show your support!": "", "Showcased creativity": "ਸਿਰਜਣਾਤਮਕਤਾ ਦਿਖਾਈ", "Sign in": "ਸਾਈਨ ਇਨ ਕਰੋ", @@ -1474,6 +1493,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "", + "Stop Generating": "", "Stop Sequence": "ਰੋਕੋ ਕ੍ਰਮ", "Stream Chat Response": "", "Stream Delta Chunk Size": "", @@ -1503,6 +1523,7 @@ "Tags Generation": "", "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.": "", + "Talk to Model": "", "Tap to interrupt": "", "Task List": "", "Task Model": "", @@ -1584,6 +1605,7 @@ "Toast notifications for new updates": "", "Today": "ਅੱਜ", "Today at {{LOCALIZED_TIME}}": "", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "", "Token": "", "Too verbose": "", diff --git a/src/lib/i18n/locales/pl-PL/translation.json b/src/lib/i18n/locales/pl-PL/translation.json index d94de17a93..299ab2b8fe 100644 --- a/src/lib/i18n/locales/pl-PL/translation.json +++ b/src/lib/i18n/locales/pl-PL/translation.json @@ -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 user": "użytkownik", "About": "O nas", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "Dostęp", "Access Control": "Kontrola dostępu", "Accessible to all users": "Dostępny dla wszystkich użytkowników", @@ -50,6 +51,7 @@ "Add Content": "Dodaj treść", "Add content here": "Dodaj tutaj treść", "Add Custom Parameter": "", + "Add Custom Prompt": "", "Add Details": "", "Add Files": "Dodaj pliki", "Add Group": "Dodaj grupę", @@ -149,6 +151,7 @@ "Ask": "Zapytaj", "Ask a question": "Zadaj pytanie", "Assistant": "Asystent", + "Attach File From Knowledge": "", "Attach Knowledge": "", "Attach Notes": "", "Attach Webpage": "", @@ -268,6 +271,7 @@ "Close Banner": "", "Close Configure Connection Modal": "", "Close modal": "", + "Close Modal": "", "Close settings modal": "", "Close Sidebar": "", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "Skopiowane do schowka", "Copy": "Skopiuj", "Copy Formatted Text": "Skopiuj sformatowany tekst", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "Skopiuj link", "Copy Link": "Skopiuj link", "Copy to clipboard": "Wklej do schowka", @@ -493,6 +499,7 @@ "Edit Default Permissions": "Edytuj domyślne uprawnienia", "Edit Folder": "Edytuj folder", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "Edytuj pamięć", "Edit User": "Edytuj profil użytkownika", "Edit User Group": "Edytuj grupa użytkowników", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "", "Firecrawl API Key": "", "Floating Quick Actions": "", + "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "Folder został usunięty pomyślnie", @@ -785,6 +793,7 @@ "Generate": "Wygeneruj", "Generate an image": "Wygeneruj obraz", "Generate Image": "Wygeneruj obraz", + "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Tworzenie zapytania wyszukiwania", "Generating...": "Generowanie...", @@ -994,6 +1003,7 @@ "Memory updated successfully": "Pamięć zaktualizowana pomyślnie", "Merge Responses": "Scalaj odpowiedzi ", "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.", "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": "", @@ -1056,6 +1066,7 @@ "New Note": "Nowa notatka", "New Password": "Nowe hasło", "New Prompt": "", + "New Temporary Chat": "", "New Tool": "Nowe narzędzie", "new-channel": "nowy-kanał", "Next message": "Następna wiadomość", @@ -1122,8 +1133,12 @@ "Ollama Version": "Wersja Ollama", "On": "Włączone", "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 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 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.", @@ -1137,6 +1152,7 @@ "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Image Compression": "", + "Open Settings": "", "Open Sidebar": "", "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.", @@ -1227,6 +1243,7 @@ "Prefer not to say": "", "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ć", + "Prevent File Creation": "", "Preview": "Podgląd", "Previous 30 days": "Ostatnie 30 dni", "Previous 7 days": "Ostatnie 7 dni", @@ -1270,6 +1287,7 @@ "Refused when it shouldn't have": "Odmówił, gdy nie powinien", "Regenerate": "Wygeneruj ponownie", "Regenerate Menu": "", + "Regenerate Response": "", "Register Again": "", "Register Client": "", "Registered": "", @@ -1441,6 +1459,7 @@ "Show Formatting Toolbar": "", "Show image preview": "", "Show Model": "", + "Show Shortcuts": "", "Show your support!": "Wyraź swoje poparcie!", "Showcased creativity": "Prezentacja kreatywności", "Sign in": "Zaloguj się", @@ -1476,6 +1495,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Zatrzymaj", + "Stop Generating": "", "Stop Sequence": "Zatrzymaj sekwencję", "Stream Chat Response": "Strumieniowanie odpowiedzi z czatu", "Stream Delta Chunk Size": "", @@ -1505,6 +1525,7 @@ "Tags Generation": "Generowanie 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.": "", + "Talk to Model": "", "Tap to interrupt": "Kliknij, aby przerwać", "Task List": "Lista zadań", "Task Model": "", @@ -1586,6 +1607,7 @@ "Toast notifications for new updates": "Powiadomienia o nowych aktualizacjach", "Today": "Dzisiaj", "Today at {{LOCALIZED_TIME}}": "", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "", "Token": "Token", "Too verbose": "Zbyt rozwlekłe", diff --git a/src/lib/i18n/locales/pt-BR/translation.json b/src/lib/i18n/locales/pt-BR/translation.json index 81165a95aa..862e435129 100644 --- a/src/lib/i18n/locales/pt-BR/translation.json +++ b/src/lib/i18n/locales/pt-BR/translation.json @@ -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 user": "um usuário", "About": "Sobre", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "Acesso", "Access Control": "Controle de Acesso", "Accessible to all users": "Acessível para todos os usuários", @@ -50,6 +51,7 @@ "Add Content": "Adicionar Conteúdo", "Add content here": "Adicionar conteúdo aqui", "Add Custom Parameter": "Adicionar parâmetro personalizado", + "Add Custom Prompt": "", "Add Details": "Adicionar detalhes", "Add Files": "Adicionar Arquivos", "Add Group": "Adicionar Grupo", @@ -149,6 +151,7 @@ "Ask": "Perguntar", "Ask a question": "Faça uma pergunta", "Assistant": "Assistente", + "Attach File From Knowledge": "", "Attach Knowledge": "Anexar Base de Conhecimento", "Attach Notes": "Anexar Notas", "Attach Webpage": "Anexar Página Web", @@ -268,6 +271,7 @@ "Close Banner": "Fechar Banner", "Close Configure Connection Modal": "Fechar a Modal de Configuração de Conexão", "Close modal": "Fechar modal", + "Close Modal": "", "Close settings modal": "Fechar configurações modal", "Close Sidebar": "Fechar barra lateral", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "Copiado para a área de transferência", "Copy": "Copiar", "Copy Formatted Text": "Copiar texto formatado", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "Copiar link", "Copy Link": "Copiar Link", "Copy to clipboard": "Copiar para a área de transferência", @@ -493,6 +499,7 @@ "Edit Default Permissions": "Editar Permissões Padrão", "Edit Folder": "Editar Pasta", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "Editar Memória", "Edit User": "Editar Usuário", "Edit User Group": "Editar Grupo de Usuários", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "URL base da API do Firecrawl", "Firecrawl API Key": "Chave de API do Firecrawl", "Floating Quick Actions": "Ações rápidas flutuantes", + "Focus Chat Input": "", "Folder": "Pasta", "Folder Background Image": "Imagem de fundo da pasta", "Folder deleted successfully": "Pasta excluída com sucesso", @@ -785,6 +793,7 @@ "Generate": "Gerar", "Generate an image": "Gerar uma imagem", "Generate Image": "Gerar Imagem", + "Generate Message Pair": "", "Generated Image": "Imagem gerada", "Generating search query": "Gerando consulta de pesquisa", "Generating...": "Gerando...", @@ -994,6 +1003,7 @@ "Memory updated successfully": "Memória atualizada com sucesso", "Merge Responses": "Mesclar respostas", "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", "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": "", @@ -1056,6 +1066,7 @@ "New Note": "Nota Nota", "New Password": "Nova Senha", "New Prompt": "Novo Prompt", + "New Temporary Chat": "", "New Tool": "Nova Ferrameta", "new-channel": "novo-canal", "Next message": "Próxima mensagem", @@ -1122,8 +1133,12 @@ "Ollama Version": "Versão Ollama", "On": "Ligado", "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 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 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.", @@ -1137,6 +1152,7 @@ "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 Image Compression": "Abrir o Modal para gerenciar a compressão de imagens", + "Open Settings": "", "Open Sidebar": "Abrir barra lateral", "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.", @@ -1227,6 +1243,7 @@ "Prefer not to say": "Prefiro não dizer", "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.", + "Prevent File Creation": "", "Preview": "Visualização", "Previous 30 days": "Últimos 30 dias", "Previous 7 days": "Últimos 7 dias", @@ -1270,6 +1287,7 @@ "Refused when it shouldn't have": "Recusado quando não deveria", "Regenerate": "Gerar novamente", "Regenerate Menu": "Regenerar Menu", + "Regenerate Response": "", "Register Again": "Registre-se novamente", "Register Client": "Registrar cliente", "Registered": "Registrado", @@ -1440,6 +1458,7 @@ "Show Formatting Toolbar": "Mostrar barra de ferramentas de formatação", "Show image preview": "Mostrar pré-visualização da imagem", "Show Model": "Mostrar modelo", + "Show Shortcuts": "", "Show your support!": "Mostre seu apoio!", "Showcased creativity": "Criatividade exibida", "Sign in": "Entrar", @@ -1475,6 +1494,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Parar", + "Stop Generating": "", "Stop Sequence": "Sequência de Parada", "Stream Chat Response": "Stream Resposta do Chat", "Stream Delta Chunk Size": "", @@ -1504,6 +1524,7 @@ "Tags Generation": "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.", + "Talk to Model": "", "Tap to interrupt": "Toque para interromper", "Task List": "Lista de tarefas", "Task Model": "Modelo de Tarefa", @@ -1585,6 +1606,7 @@ "Toast notifications for new updates": "Notificações de alerta para novas atualizações", "Today": "Hoje", "Today at {{LOCALIZED_TIME}}": "Hoje às {{LOCALIZED_TIME}}", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "Alterna se a conexão atual está ativa.", "Token": "", "Too verbose": "Muito detalhado", diff --git a/src/lib/i18n/locales/pt-PT/translation.json b/src/lib/i18n/locales/pt-PT/translation.json index cb10cc54b9..9761c6411f 100644 --- a/src/lib/i18n/locales/pt-PT/translation.json +++ b/src/lib/i18n/locales/pt-PT/translation.json @@ -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 user": "um utilizador", "About": "Acerca de", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "", "Access Control": "", "Accessible to all users": "", @@ -50,6 +51,7 @@ "Add Content": "", "Add content here": "", "Add Custom Parameter": "", + "Add Custom Prompt": "", "Add Details": "", "Add Files": "Adicionar Ficheiros", "Add Group": "", @@ -149,6 +151,7 @@ "Ask": "", "Ask a question": "", "Assistant": "", + "Attach File From Knowledge": "", "Attach Knowledge": "", "Attach Notes": "", "Attach Webpage": "", @@ -268,6 +271,7 @@ "Close Banner": "", "Close Configure Connection Modal": "", "Close modal": "", + "Close Modal": "", "Close settings modal": "", "Close Sidebar": "", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "", "Copy": "Copiar", "Copy Formatted Text": "", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "", "Copy Link": "Copiar link", "Copy to clipboard": "", @@ -493,6 +499,7 @@ "Edit Default Permissions": "", "Edit Folder": "", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "", "Edit User": "Editar Utilizador", "Edit User Group": "", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "", "Firecrawl API Key": "", "Floating Quick Actions": "", + "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "", @@ -785,6 +793,7 @@ "Generate": "", "Generate an image": "", "Generate Image": "Gerar imagem", + "Generate Message Pair": "", "Generated Image": "", "Generating search query": "A gerar a consulta da pesquisa", "Generating...": "", @@ -994,6 +1003,7 @@ "Memory updated successfully": "", "Merge Responses": "", "Merged Response": "Resposta Fundida", + "Message": "", "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.", "Microsoft OneDrive": "", @@ -1056,6 +1066,7 @@ "New Note": "", "New Password": "Nova Senha", "New Prompt": "", + "New Temporary Chat": "", "New Tool": "", "new-channel": "", "Next message": "", @@ -1122,8 +1133,12 @@ "Ollama Version": "Versão do Ollama", "On": "Ligado", "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 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 markdown files are allowed": "", "Only select users and groups with permission can access": "", @@ -1137,6 +1152,7 @@ "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Image Compression": "", + "Open Settings": "", "Open Sidebar": "", "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", @@ -1227,6 +1243,7 @@ "Prefer not to say": "", "Prefix ID": "", "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": "", "Previous 30 days": "Últimos 30 dias", "Previous 7 days": "Últimos 7 dias", @@ -1270,6 +1287,7 @@ "Refused when it shouldn't have": "Recusado quando não deveria", "Regenerate": "Regenerar", "Regenerate Menu": "", + "Regenerate Response": "", "Register Again": "", "Register Client": "", "Registered": "", @@ -1440,6 +1458,7 @@ "Show Formatting Toolbar": "", "Show image preview": "", "Show Model": "", + "Show Shortcuts": "", "Show your support!": "", "Showcased creativity": "Criatividade Exibida", "Sign in": "Entrar", @@ -1475,6 +1494,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "", + "Stop Generating": "", "Stop Sequence": "Sequência de Paragem", "Stream Chat Response": "", "Stream Delta Chunk Size": "", @@ -1504,6 +1524,7 @@ "Tags Generation": "", "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.": "", + "Talk to Model": "", "Tap to interrupt": "", "Task List": "", "Task Model": "", @@ -1585,6 +1606,7 @@ "Toast notifications for new updates": "", "Today": "Hoje", "Today at {{LOCALIZED_TIME}}": "", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "", "Token": "", "Too verbose": "", diff --git a/src/lib/i18n/locales/ro-RO/translation.json b/src/lib/i18n/locales/ro-RO/translation.json index 09db60f5b4..0b295e3191 100644 --- a/src/lib/i18n/locales/ro-RO/translation.json +++ b/src/lib/i18n/locales/ro-RO/translation.json @@ -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 user": "un utilizator", "About": "Despre", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "Acces", "Access Control": "Controlul accesului", "Accessible to all users": "Accesibil pentru toți utilizatorii", @@ -50,6 +51,7 @@ "Add Content": "Adăugați conținut", "Add content here": "Adăugați conținut aici", "Add Custom Parameter": "Adaugă parametru personalizat", + "Add Custom Prompt": "", "Add Details": "", "Add Files": "Adaugă fișiere", "Add Group": "Adaugă grup", @@ -149,6 +151,7 @@ "Ask": "Întreabă", "Ask a question": "Pune o întrebare", "Assistant": "Asistent", + "Attach File From Knowledge": "", "Attach Knowledge": "", "Attach Notes": "", "Attach Webpage": "", @@ -268,6 +271,7 @@ "Close Banner": "", "Close Configure Connection Modal": "", "Close modal": "", + "Close Modal": "", "Close settings modal": "", "Close Sidebar": "", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "Copiat în clipboard", "Copy": "Copiază", "Copy Formatted Text": "Copiază text formatat", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "", "Copy Link": "Copiază Link", "Copy to clipboard": "Copiază în clipboard", @@ -493,6 +499,7 @@ "Edit Default Permissions": "Editează permisiunile implicite", "Edit Folder": "", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "Editează Memorie", "Edit User": "Editează Utilizator", "Edit User Group": "Editează grupul de utilizatori", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "", "Firecrawl API Key": "", "Floating Quick Actions": "", + "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "Folder șters cu succes", @@ -785,6 +793,7 @@ "Generate": "", "Generate an image": "", "Generate Image": "Generează Imagine", + "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Se generează interogarea de căutare", "Generating...": "", @@ -994,6 +1003,7 @@ "Memory updated successfully": "Memoria a fost actualizată cu succes", "Merge Responses": "Combină răspunsurile", "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.", "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": "", @@ -1056,6 +1066,7 @@ "New Note": "", "New Password": "Parolă Nouă", "New Prompt": "", + "New Temporary Chat": "", "New Tool": "", "new-channel": "", "Next message": "", @@ -1122,8 +1133,12 @@ "Ollama Version": "Versiune Ollama", "On": "Activat", "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 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 markdown files are allowed": "", "Only select users and groups with permission can access": "", @@ -1137,6 +1152,7 @@ "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Image Compression": "", + "Open Settings": "", "Open Sidebar": "", "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", @@ -1227,6 +1243,7 @@ "Prefer not to say": "", "Prefix ID": "", "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": "", "Previous 30 days": "Ultimele 30 de zile", "Previous 7 days": "Ultimele 7 zile", @@ -1270,6 +1287,7 @@ "Refused when it shouldn't have": "Refuzat când nu ar fi trebuit", "Regenerate": "Regenerare", "Regenerate Menu": "", + "Regenerate Response": "", "Register Again": "", "Register Client": "", "Registered": "", @@ -1440,6 +1458,7 @@ "Show Formatting Toolbar": "", "Show image preview": "", "Show Model": "", + "Show Shortcuts": "", "Show your support!": "Arată-ți susținerea!", "Showcased creativity": "Creativitate expusă", "Sign in": "Autentificare", @@ -1475,6 +1494,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Oprire", + "Stop Generating": "", "Stop Sequence": "Oprește Secvența", "Stream Chat Response": "Răspuns Stream Chat", "Stream Delta Chunk Size": "", @@ -1504,6 +1524,7 @@ "Tags Generation": "", "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.": "", + "Talk to Model": "", "Tap to interrupt": "Apasă pentru a întrerupe", "Task List": "", "Task Model": "", @@ -1585,6 +1606,7 @@ "Toast notifications for new updates": "Notificări toast pentru actualizări noi", "Today": "Astăzi", "Today at {{LOCALIZED_TIME}}": "", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "", "Token": "Token", "Too verbose": "Prea detaliat", diff --git a/src/lib/i18n/locales/ru-RU/translation.json b/src/lib/i18n/locales/ru-RU/translation.json index 6ceac57d97..8a522b88e2 100644 --- a/src/lib/i18n/locales/ru-RU/translation.json +++ b/src/lib/i18n/locales/ru-RU/translation.json @@ -26,6 +26,7 @@ "A task model is used when performing tasks such as generating titles for chats and web search queries": "Модель задач используется при выполнении таких задач, как генерация заголовков для чатов и поисковых запросов в Интернете", "a user": "пользователь", "About": "О программе", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "Доступ", "Access Control": "Контроль доступа", "Accessible to all users": "Доступно всем пользователям", @@ -50,6 +51,7 @@ "Add Content": "Добавить контент", "Add content here": "Добавить контент сюда", "Add Custom Parameter": "Добавить пользовательский параметр", + "Add Custom Prompt": "", "Add Details": "Добавить детали", "Add Files": "Добавить файлы", "Add Group": "Добавить группу", @@ -149,6 +151,7 @@ "Ask": "Спросить", "Ask a question": "Задать вопрос", "Assistant": "Ассистент", + "Attach File From Knowledge": "", "Attach Knowledge": "Прикрепить знания", "Attach Notes": "Прикрепить заметки", "Attach Webpage": "", @@ -268,6 +271,7 @@ "Close Banner": "Закрыть баннер", "Close Configure Connection Modal": "Закрыть модальное окно настройки соединения", "Close modal": "Закрыть окно", + "Close Modal": "", "Close settings modal": "Закрыть окно настроек", "Close Sidebar": "Закрыть боковую панель", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "Скопировано в буфер обмена", "Copy": "Копировать", "Copy Formatted Text": "Копировать форматированный текст", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "Скопировать ссылку", "Copy Link": "Копировать ссылку", "Copy to clipboard": "Скопировать в буфер обмена", @@ -493,6 +499,7 @@ "Edit Default Permissions": "Изменить разрешения по умолчанию", "Edit Folder": "Редактировать папку", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "Редактировать воспоминание", "Edit User": "Редактировать пользователя", "Edit User Group": "Редактировать Пользовательскую Группу", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "Базовый URL-адрес Firecrawl API", "Firecrawl API Key": "Ключ API Firecrawl", "Floating Quick Actions": "Плавающие быстрые действия", + "Focus Chat Input": "", "Folder": "", "Folder Background Image": "Фоновое изображение папки", "Folder deleted successfully": "Папка успешно удалена", @@ -785,6 +793,7 @@ "Generate": "Сгенерировать", "Generate an image": "Сгенерировать изображение", "Generate Image": "Сгенерировать изображение", + "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Генерация поискового запроса", "Generating...": "Генерирую...", @@ -994,6 +1003,7 @@ "Memory updated successfully": "Воспоминание успешно обновлено", "Merge Responses": "Объединить ответы", "Merged Response": "Объединенный ответ", + "Message": "", "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, смогут просматривать общий чат.", "Microsoft OneDrive": "Microsoft OneDrive", @@ -1056,6 +1066,7 @@ "New Note": "Новая заметка", "New Password": "Новый пароль", "New Prompt": "", + "New Temporary Chat": "", "New Tool": "Новый инструмент", "new-channel": "новый-канал", "Next message": "Следующее сообщение", @@ -1122,8 +1133,12 @@ "Ollama Version": "Версия Ollama", "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 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 markdown files are allowed": "Разрешены только файлы markdown", "Only select users and groups with permission can access": "Доступ имеют только избранные пользователи и группы, имеющие разрешение.", @@ -1137,6 +1152,7 @@ "Open modal to configure connection": "Открыть окно настроек подключения", "Open Modal To Manage Floating Quick Actions": "Открыть модальное окно для управления плавающими быстрыми действиями", "Open Modal To Manage Image Compression": "Открыть окно управления сжатием изображений", + "Open Settings": "", "Open Sidebar": "Открыть боковую панель", "Open User Profile Menu": "Открыть меню профиля пользователя", "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI может использовать инструменты, предоставляемые любым сервером OpenAPI.", @@ -1227,6 +1243,7 @@ "Prefer not to say": "Предпочитаю не говорить", "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 префикса используется для предотвращения конфликтов с другими подключениями путем добавления префикса к идентификаторам моделей - оставьте пустым, чтобы отключить", + "Prevent File Creation": "", "Preview": "Предпросмотр", "Previous 30 days": "Предыдущие 30 дней", "Previous 7 days": "Предыдущие 7 дней", @@ -1270,6 +1287,7 @@ "Refused when it shouldn't have": "Отказано в доступе, когда это не должно было произойти", "Regenerate": "Перегенерировать", "Regenerate Menu": "Обновить меню", + "Regenerate Response": "", "Register Again": "", "Register Client": "", "Registered": "", @@ -1441,6 +1459,7 @@ "Show Formatting Toolbar": "Показать панель форматирования", "Show image preview": "Показать предварительный просмотр изображения", "Show Model": "Показать модель", + "Show Shortcuts": "", "Show your support!": "Поддержите нас!", "Showcased creativity": "Продемонстрирован творческий подход", "Sign in": "Войти", @@ -1476,6 +1495,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Остановить", + "Stop Generating": "", "Stop Sequence": "Последовательность останова", "Stream Chat Response": "Потоковый вывод ответа", "Stream Delta Chunk Size": "Размер чанка дельты потока", @@ -1505,6 +1525,7 @@ "Tags Generation": "Генерация тегов", "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 отключает эту настройку.", + "Talk to Model": "", "Tap to interrupt": "Нажмите, чтобы прервать", "Task List": "Список задач", "Task Model": "Модель задачи", @@ -1586,6 +1607,7 @@ "Toast notifications for new updates": "Уведомления о обновлениях", "Today": "Сегодня", "Today at {{LOCALIZED_TIME}}": "Сегодня в {{LOCALIZED_TIME}}", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "Переключить, активно ли текущее соединение.", "Token": "Токен", "Too verbose": "Слишком многословно", diff --git a/src/lib/i18n/locales/sk-SK/translation.json b/src/lib/i18n/locales/sk-SK/translation.json index 65a3b5e3e0..2959d1fb01 100644 --- a/src/lib/i18n/locales/sk-SK/translation.json +++ b/src/lib/i18n/locales/sk-SK/translation.json @@ -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 user": "užívateľ", "About": "O programe", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "Prístup", "Access Control": "", "Accessible to all users": "Prístupné pre všetkých užívateľov", @@ -50,6 +51,7 @@ "Add Content": "Pridať obsah", "Add content here": "Pridať obsah sem", "Add Custom Parameter": "", + "Add Custom Prompt": "", "Add Details": "", "Add Files": "Pridať súbory", "Add Group": "Pridať skupinu", @@ -149,6 +151,7 @@ "Ask": "", "Ask a question": "Opýtajte sa otázku", "Assistant": "Asistent", + "Attach File From Knowledge": "", "Attach Knowledge": "", "Attach Notes": "", "Attach Webpage": "", @@ -268,6 +271,7 @@ "Close Banner": "", "Close Configure Connection Modal": "", "Close modal": "", + "Close Modal": "", "Close settings modal": "", "Close Sidebar": "", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "Skopírované do schránky", "Copy": "Kopírovať", "Copy Formatted Text": "", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "", "Copy Link": "Kopírovať odkaz", "Copy to clipboard": "Kopírovať do schránky", @@ -493,6 +499,7 @@ "Edit Default Permissions": "", "Edit Folder": "", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "Upraviť pamäť", "Edit User": "Upraviť užívateľa", "Edit User Group": "", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "", "Firecrawl API Key": "", "Floating Quick Actions": "", + "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "Priečinok bol úspešne vymazaný", @@ -785,6 +793,7 @@ "Generate": "", "Generate an image": "", "Generate Image": "Vygenerovať obrázok", + "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Generovanie vyhľadávacieho dotazu", "Generating...": "", @@ -994,6 +1003,7 @@ "Memory updated successfully": "Pamäť úspešne aktualizovaná", "Merge Responses": "Zlúčiť odpovede", "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ť.", "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": "", @@ -1056,6 +1066,7 @@ "New Note": "", "New Password": "Nové heslo", "New Prompt": "", + "New Temporary Chat": "", "New Tool": "", "new-channel": "", "Next message": "", @@ -1122,8 +1133,12 @@ "Ollama Version": "Verzia Ollama", "On": "Zapnuté", "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 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 markdown files are allowed": "", "Only select users and groups with permission can access": "", @@ -1137,6 +1152,7 @@ "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Image Compression": "", + "Open Settings": "", "Open Sidebar": "", "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", @@ -1227,6 +1243,7 @@ "Prefer not to say": "", "Prefix ID": "", "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": "", "Previous 30 days": "Predchádzajúcich 30 dní", "Previous 7 days": "Predchádzajúcich 7 dní", @@ -1270,6 +1287,7 @@ "Refused when it shouldn't have": "Odmietnuté, keď nemalo byť.", "Regenerate": "Regenerovať", "Regenerate Menu": "", + "Regenerate Response": "", "Register Again": "", "Register Client": "", "Registered": "", @@ -1441,6 +1459,7 @@ "Show Formatting Toolbar": "", "Show image preview": "", "Show Model": "", + "Show Shortcuts": "", "Show your support!": "Vyjadrite svoju podporu!", "Showcased creativity": "Predvedená kreativita", "Sign in": "Prihlásiť sa", @@ -1476,6 +1495,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Zastaviť", + "Stop Generating": "", "Stop Sequence": "Sekvencia zastavenia", "Stream Chat Response": "Odozva chatu Stream", "Stream Delta Chunk Size": "", @@ -1505,6 +1525,7 @@ "Tags Generation": "", "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.": "", + "Talk to Model": "", "Tap to interrupt": "Klepnite na prerušenie", "Task List": "", "Task Model": "", @@ -1586,6 +1607,7 @@ "Toast notifications for new updates": "Oznámenia vo forme toastov pre nové aktualizácie", "Today": "Dnes", "Today at {{LOCALIZED_TIME}}": "", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "", "Token": "Token", "Too verbose": "Príliš rozvláčne", diff --git a/src/lib/i18n/locales/sr-RS/translation.json b/src/lib/i18n/locales/sr-RS/translation.json index a0a15a6b4d..32a64db14a 100644 --- a/src/lib/i18n/locales/sr-RS/translation.json +++ b/src/lib/i18n/locales/sr-RS/translation.json @@ -26,6 +26,7 @@ "A task model is used when performing tasks such as generating titles for chats and web search queries": "Модел задатка се користи приликом извршавања задатака као што су генерисање наслова за ћаскања и упите за Веб претрагу", "a user": "корисник", "About": "О нама", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "Приступ", "Access Control": "Контрола приступа", "Accessible to all users": "Доступно свим корисницима", @@ -50,6 +51,7 @@ "Add Content": "Додај садржај", "Add content here": "Додај садржај овде", "Add Custom Parameter": "", + "Add Custom Prompt": "", "Add Details": "", "Add Files": "Додај датотеке", "Add Group": "Додај групу", @@ -149,6 +151,7 @@ "Ask": "", "Ask a question": "Постави питање", "Assistant": "Помоћник", + "Attach File From Knowledge": "", "Attach Knowledge": "", "Attach Notes": "", "Attach Webpage": "", @@ -268,6 +271,7 @@ "Close Banner": "", "Close Configure Connection Modal": "", "Close modal": "", + "Close Modal": "", "Close settings modal": "", "Close Sidebar": "", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "Копирано у оставу", "Copy": "Копирај", "Copy Formatted Text": "", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "", "Copy Link": "Копирај везу", "Copy to clipboard": "Копирај у оставу", @@ -493,6 +499,7 @@ "Edit Default Permissions": "Измени подразумевана овлашћења", "Edit Folder": "", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "Измени сећање", "Edit User": "Измени корисника", "Edit User Group": "Измени корисничку групу", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "", "Firecrawl API Key": "", "Floating Quick Actions": "", + "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "", @@ -785,6 +793,7 @@ "Generate": "", "Generate an image": "", "Generate Image": "", + "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Генерисање упита претраге", "Generating...": "", @@ -994,6 +1003,7 @@ "Memory updated successfully": "Сећање успешно измењено", "Merge Responses": "Спој одговоре", "Merged Response": "Спојени одговор", + "Message": "", "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-ом ће моћи да виде дељено ћаскање.", "Microsoft OneDrive": "", @@ -1056,6 +1066,7 @@ "New Note": "", "New Password": "Нова лозинка", "New Prompt": "", + "New Temporary Chat": "", "New Tool": "", "new-channel": "", "Next message": "", @@ -1122,8 +1133,12 @@ "Ollama Version": "Издање Ollama-е", "On": "Укључено", "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 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 markdown files are allowed": "", "Only select users and groups with permission can access": "", @@ -1137,6 +1152,7 @@ "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Image Compression": "", + "Open Settings": "", "Open Sidebar": "", "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", @@ -1227,6 +1243,7 @@ "Prefer not to say": "", "Prefix ID": "", "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": "", "Previous 30 days": "Претходних 30 дана", "Previous 7 days": "Претходних 7 дана", @@ -1270,6 +1287,7 @@ "Refused when it shouldn't have": "Одбијено када није требало", "Regenerate": "Поново створи", "Regenerate Menu": "", + "Regenerate Response": "", "Register Again": "", "Register Client": "", "Registered": "", @@ -1440,6 +1458,7 @@ "Show Formatting Toolbar": "", "Show image preview": "", "Show Model": "", + "Show Shortcuts": "", "Show your support!": "", "Showcased creativity": "Приказана креативност", "Sign in": "Пријави се", @@ -1475,6 +1494,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Заустави", + "Stop Generating": "", "Stop Sequence": "Секвенца заустављања", "Stream Chat Response": "", "Stream Delta Chunk Size": "", @@ -1504,6 +1524,7 @@ "Tags Generation": "Стварање ознака", "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.": "", + "Talk to Model": "", "Tap to interrupt": "", "Task List": "", "Task Model": "", @@ -1585,6 +1606,7 @@ "Toast notifications for new updates": "Тост-обавештења за нове исправке", "Today": "Данас", "Today at {{LOCALIZED_TIME}}": "", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "", "Token": "Жетон", "Too verbose": "Преопширно", diff --git a/src/lib/i18n/locales/sv-SE/translation.json b/src/lib/i18n/locales/sv-SE/translation.json index 6c0c603f06..2df7c0c408 100644 --- a/src/lib/i18n/locales/sv-SE/translation.json +++ b/src/lib/i18n/locales/sv-SE/translation.json @@ -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 user": "en användare", "About": "Om", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "Åtkomst", "Access Control": "Åtkomstkontroll", "Accessible to all users": "Tillgänglig för alla användare", @@ -50,6 +51,7 @@ "Add Content": "Lägg till innehåll", "Add content here": "Lägg till innehåll här", "Add Custom Parameter": "Lägg till anpassad parameter", + "Add Custom Prompt": "", "Add Details": "", "Add Files": "Lägg till filer", "Add Group": "Lägg till grupp", @@ -149,6 +151,7 @@ "Ask": "Fråga", "Ask a question": "Ställ en fråga", "Assistant": "Assistent", + "Attach File From Knowledge": "", "Attach Knowledge": "", "Attach Notes": "", "Attach Webpage": "", @@ -268,6 +271,7 @@ "Close Banner": "", "Close Configure Connection Modal": "", "Close modal": "Stäng modal", + "Close Modal": "", "Close settings modal": "Stäng inställningsmodal", "Close Sidebar": "", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "Kopierad till urklipp", "Copy": "Kopiera", "Copy Formatted Text": "Kopiera formaterad text", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "", "Copy Link": "Kopiera länk", "Copy to clipboard": "Kopiera till urklipp", @@ -493,6 +499,7 @@ "Edit Default Permissions": "Redigera standardbehörigheter", "Edit Folder": "", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "Redigera minne", "Edit User": "Redigera användare", "Edit User Group": "Redigera användargrupp", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "Firecrawl API Base URL", "Firecrawl API Key": "Firecrawl API-nyckel", "Floating Quick Actions": "", + "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "Mappen har tagits bort", @@ -785,6 +793,7 @@ "Generate": "Generera", "Generate an image": "Generera en bild", "Generate Image": "Generera bild", + "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Genererar sökfråga", "Generating...": "Genererar...", @@ -994,6 +1003,7 @@ "Memory updated successfully": "Minnet har uppdaterats", "Merge Responses": "Sammanfoga 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", "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", @@ -1056,6 +1066,7 @@ "New Note": "Ny anteckning", "New Password": "Nytt lösenord", "New Prompt": "", + "New Temporary Chat": "", "New Tool": "Nytt verktyg", "new-channel": "ny-kanal", "Next message": "Nästa meddelande", @@ -1122,8 +1133,12 @@ "Ollama Version": "Ollama-version", "On": "På", "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 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 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", @@ -1137,6 +1152,7 @@ "Open modal to configure connection": "Öppna modal för att konfigurera anslutning", "Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Image Compression": "", + "Open Settings": "", "Open Sidebar": "", "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.", @@ -1227,6 +1243,7 @@ "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 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", "Previous 30 days": "Föregående 30 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", "Regenerate": "Regenerera", "Regenerate Menu": "", + "Regenerate Response": "", "Register Again": "", "Register Client": "", "Registered": "", @@ -1439,6 +1457,7 @@ "Show Formatting Toolbar": "", "Show image preview": "", "Show Model": "Visa modell", + "Show Shortcuts": "", "Show your support!": "Visa ditt stöd!", "Showcased creativity": "Visade kreativitet", "Sign in": "Logga in", @@ -1474,6 +1493,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Stopp", + "Stop Generating": "", "Stop Sequence": "Stoppsekvens", "Stream Chat Response": "Strömma chattsvar", "Stream Delta Chunk Size": "", @@ -1503,6 +1523,7 @@ "Tags Generation": "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.", + "Talk to Model": "", "Tap to interrupt": "Tryck för att avbryta", "Task List": "", "Task Model": "Uppgiftsmodell", @@ -1584,6 +1605,7 @@ "Toast notifications for new updates": "Toast-aviseringar för nya uppdateringar", "Today": "Idag", "Today at {{LOCALIZED_TIME}}": "", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "Växla om aktuell anslutning är aktiv.", "Token": "Token", "Too verbose": "För utförlig", diff --git a/src/lib/i18n/locales/th-TH/translation.json b/src/lib/i18n/locales/th-TH/translation.json index 2976093cef..a2ec5c9fc4 100644 --- a/src/lib/i18n/locales/th-TH/translation.json +++ b/src/lib/i18n/locales/th-TH/translation.json @@ -26,6 +26,7 @@ "A task model is used when performing tasks such as generating titles for chats and web search queries": "ใช้โมเดลงานเมื่อทำงานเช่นการสร้างหัวข้อสำหรับการสนทนาและการค้นหาเว็บ", "a user": "ผู้ใช้", "About": "เกี่ยวกับ", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "", "Access Control": "", "Accessible to all users": "", @@ -50,6 +51,7 @@ "Add Content": "เพิ่มเนื้อหา", "Add content here": "เพิ่มเนื้อหาตรงนี้", "Add Custom Parameter": "", + "Add Custom Prompt": "", "Add Details": "", "Add Files": "เพิ่มไฟล์", "Add Group": "เพิ่มกลุ่ม", @@ -149,6 +151,7 @@ "Ask": "", "Ask a question": "", "Assistant": "", + "Attach File From Knowledge": "", "Attach Knowledge": "", "Attach Notes": "", "Attach Webpage": "", @@ -268,6 +271,7 @@ "Close Banner": "", "Close Configure Connection Modal": "", "Close modal": "", + "Close Modal": "", "Close settings modal": "", "Close Sidebar": "", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "", "Copy": "คัดลอก", "Copy Formatted Text": "", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "", "Copy Link": "คัดลอกลิงก์", "Copy to clipboard": "", @@ -493,6 +499,7 @@ "Edit Default Permissions": "", "Edit Folder": "", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "แก้ไขความจำ", "Edit User": "แก้ไขผู้ใช้", "Edit User Group": "", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "", "Firecrawl API Key": "", "Floating Quick Actions": "", + "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "", @@ -785,6 +793,7 @@ "Generate": "", "Generate an image": "", "Generate Image": "สร้างภาพ", + "Generate Message Pair": "", "Generated Image": "", "Generating search query": "สร้างคำค้นหา", "Generating...": "", @@ -994,6 +1003,7 @@ "Memory updated successfully": "", "Merge Responses": "", "Merged Response": "การตอบกลับที่รวมกัน", + "Message": "", "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 จะสามารถดูแชทที่แชร์ได้", "Microsoft OneDrive": "", @@ -1056,6 +1066,7 @@ "New Note": "", "New Password": "รหัสผ่านใหม่", "New Prompt": "", + "New Temporary Chat": "", "New Tool": "", "new-channel": "", "Next message": "", @@ -1122,8 +1133,12 @@ "Ollama Version": "เวอร์ชั่น Ollama", "On": "เปิด", "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 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 markdown files are allowed": "", "Only select users and groups with permission can access": "", @@ -1137,6 +1152,7 @@ "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Image Compression": "", + "Open Settings": "", "Open Sidebar": "", "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", @@ -1227,6 +1243,7 @@ "Prefer not to say": "", "Prefix ID": "", "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": "", "Previous 30 days": "30 วันที่ผ่านมา", "Previous 7 days": "7 วันที่ผ่านมา", @@ -1270,6 +1287,7 @@ "Refused when it shouldn't have": "ปฏิเสธเมื่อไม่ควรทำ", "Regenerate": "สร้างใหม่", "Regenerate Menu": "", + "Regenerate Response": "", "Register Again": "", "Register Client": "", "Registered": "", @@ -1438,6 +1456,7 @@ "Show Formatting Toolbar": "", "Show image preview": "", "Show Model": "", + "Show Shortcuts": "", "Show your support!": "แสดงการสนับสนุนของคุณ!", "Showcased creativity": "แสดงความคิดสร้างสรรค์", "Sign in": "ลงชื่อเข้าใช้", @@ -1473,6 +1492,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "", + "Stop Generating": "", "Stop Sequence": "หยุดลำดับ", "Stream Chat Response": "", "Stream Delta Chunk Size": "", @@ -1502,6 +1522,7 @@ "Tags Generation": "", "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.": "", + "Talk to Model": "", "Tap to interrupt": "แตะเพื่อขัดจังหวะ", "Task List": "", "Task Model": "", @@ -1583,6 +1604,7 @@ "Toast notifications for new updates": "", "Today": "วันนี้", "Today at {{LOCALIZED_TIME}}": "", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "", "Token": "", "Too verbose": "", diff --git a/src/lib/i18n/locales/tk-TM/translation.json b/src/lib/i18n/locales/tk-TM/translation.json index 32835cbcdb..26d2db7ecb 100644 --- a/src/lib/i18n/locales/tk-TM/translation.json +++ b/src/lib/i18n/locales/tk-TM/translation.json @@ -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 user": "ulanyjy", "About": "Barada", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "", "Access Control": "", "Accessible to all users": "", @@ -50,6 +51,7 @@ "Add Content": "", "Add content here": "", "Add Custom Parameter": "", + "Add Custom Prompt": "", "Add Details": "", "Add Files": "Faýllar goş", "Add Group": "", @@ -149,6 +151,7 @@ "Ask": "", "Ask a question": "", "Assistant": "", + "Attach File From Knowledge": "", "Attach Knowledge": "", "Attach Notes": "", "Attach Webpage": "", @@ -268,6 +271,7 @@ "Close Banner": "", "Close Configure Connection Modal": "", "Close modal": "", + "Close Modal": "", "Close settings modal": "", "Close Sidebar": "", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "", "Copy": "Göçür", "Copy Formatted Text": "", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "", "Copy Link": "Baglanyşygy Göçür", "Copy to clipboard": "", @@ -493,6 +499,7 @@ "Edit Default Permissions": "", "Edit Folder": "", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "", "Edit User": "", "Edit User Group": "", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "", "Firecrawl API Key": "", "Floating Quick Actions": "", + "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "", @@ -785,6 +793,7 @@ "Generate": "Döret", "Generate an image": "", "Generate Image": "", + "Generate Message Pair": "", "Generated Image": "", "Generating search query": "", "Generating...": "Döredilýär...", @@ -994,6 +1003,7 @@ "Memory updated successfully": "", "Merge Responses": "", "Merged Response": "Birleşdirilen jogap", + "Message": "", "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.": "", "Microsoft OneDrive": "", @@ -1056,6 +1066,7 @@ "New Note": "", "New Password": "Täze Parol", "New Prompt": "", + "New Temporary Chat": "", "New Tool": "", "new-channel": "", "Next message": "", @@ -1122,8 +1133,12 @@ "Ollama Version": "", "On": "Işjeň", "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 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 markdown files are allowed": "", "Only select users and groups with permission can access": "", @@ -1137,6 +1152,7 @@ "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Image Compression": "", + "Open Settings": "", "Open Sidebar": "", "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", @@ -1227,6 +1243,7 @@ "Prefer not to say": "", "Prefix ID": "", "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", "Previous 30 days": "", "Previous 7 days": "", @@ -1270,6 +1287,7 @@ "Refused when it shouldn't have": "", "Regenerate": "", "Regenerate Menu": "", + "Regenerate Response": "", "Register Again": "", "Register Client": "", "Registered": "", @@ -1439,6 +1457,7 @@ "Show Formatting Toolbar": "", "Show image preview": "", "Show Model": "Modeli Görkez", + "Show Shortcuts": "", "Show your support!": "", "Showcased creativity": "", "Sign in": "", @@ -1474,6 +1493,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Bes et", + "Stop Generating": "", "Stop Sequence": "", "Stream Chat Response": "", "Stream Delta Chunk Size": "", @@ -1503,6 +1523,7 @@ "Tags Generation": "", "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.": "", + "Talk to Model": "", "Tap to interrupt": "", "Task List": "", "Task Model": "", @@ -1584,6 +1605,7 @@ "Toast notifications for new updates": "", "Today": "Şu gün", "Today at {{LOCALIZED_TIME}}": "", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "", "Token": "Token", "Too verbose": "", diff --git a/src/lib/i18n/locales/tr-TR/translation.json b/src/lib/i18n/locales/tr-TR/translation.json index 19b1c6b8cd..175ef1474e 100644 --- a/src/lib/i18n/locales/tr-TR/translation.json +++ b/src/lib/i18n/locales/tr-TR/translation.json @@ -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 user": "bir kullanıcı", "About": "Hakkında", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "Erişim", "Access Control": "Erişim Kontrolü", "Accessible to all users": "Tüm kullanıcılara erişilebilir", @@ -50,6 +51,7 @@ "Add Content": "İçerik Ekle", "Add content here": "Buraya içerik ekleyin", "Add Custom Parameter": "Özel Parametre Ekle", + "Add Custom Prompt": "", "Add Details": "", "Add Files": "Dosyalar Ekle", "Add Group": "Grup Ekle", @@ -149,6 +151,7 @@ "Ask": "Sor", "Ask a question": "Bir soru sorun", "Assistant": "Asistan", + "Attach File From Knowledge": "", "Attach Knowledge": "", "Attach Notes": "", "Attach Webpage": "", @@ -268,6 +271,7 @@ "Close Banner": "", "Close Configure Connection Modal": "", "Close modal": "", + "Close Modal": "", "Close settings modal": "", "Close Sidebar": "", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "Panoya kopyalandı", "Copy": "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 to clipboard": "Panoya kopyala", @@ -493,6 +499,7 @@ "Edit Default Permissions": "Varsayılan İzinleri Düzenle", "Edit Folder": "", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "Belleği Düzenle", "Edit User": "Kullanıcıyı Düzenle", "Edit User Group": "Kullanıcı Grubunu Düzenle", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "", "Firecrawl API Key": "", "Floating Quick Actions": "", + "Focus Chat Input": "", "Folder": "Klasör", "Folder Background Image": "Klasör Arka Plan Resmi", "Folder deleted successfully": "Klasör başarıyla silindi", @@ -785,6 +793,7 @@ "Generate": "Oluştur", "Generate an image": "Bir Görsel Oluştur", "Generate Image": "Görsel Üret", + "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Arama sorgusu oluşturma", "Generating...": "Oluşturuluyor...", @@ -994,6 +1003,7 @@ "Memory updated successfully": "Bellek başarıyla güncellendi", "Merge Responses": "Yanıtları Birleştir", "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", "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", @@ -1056,6 +1066,7 @@ "New Note": "Yeni Not", "New Password": "Yeni Parola", "New Prompt": "", + "New Temporary Chat": "", "New Tool": "", "new-channel": "yeni-kanal", "Next message": "", @@ -1122,8 +1133,12 @@ "Ollama Version": "Ollama Sürümü", "On": "Açık", "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 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 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", @@ -1137,6 +1152,7 @@ "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Image Compression": "", + "Open Settings": "", "Open Sidebar": "", "Open User Profile Menu": "", "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": "", "Prefix ID": "", "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": "", "Previous 30 days": "Önceki 30 gün", "Previous 7 days": "Önceki 7 gün", @@ -1270,6 +1287,7 @@ "Refused when it shouldn't have": "Reddedilmemesi gerekirken reddedildi", "Regenerate": "Tekrar Oluştur", "Regenerate Menu": "", + "Regenerate Response": "", "Register Again": "", "Register Client": "", "Registered": "", @@ -1439,6 +1457,7 @@ "Show Formatting Toolbar": "", "Show image preview": "", "Show Model": "Modeli Göster", + "Show Shortcuts": "", "Show your support!": "Desteğinizi gösterin!", "Showcased creativity": "Sergilenen yaratıcılık", "Sign in": "Oturum aç", @@ -1474,6 +1493,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Durdur", + "Stop Generating": "", "Stop Sequence": "Diziyi Durdur", "Stream Chat Response": "Akış Sohbet Yanıtı", "Stream Delta Chunk Size": "", @@ -1503,6 +1523,7 @@ "Tags Generation": "Etiketler Oluşturma", "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.": "", + "Talk to Model": "", "Tap to interrupt": "Durdurmak için dokunun", "Task List": "", "Task Model": "", @@ -1584,6 +1605,7 @@ "Toast notifications for new updates": "", "Today": "Bugün", "Today at {{LOCALIZED_TIME}}": "", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "", "Token": "Birim", "Too verbose": "Çok ayrıntılı", diff --git a/src/lib/i18n/locales/ug-CN/translation.json b/src/lib/i18n/locales/ug-CN/translation.json index 04100b02d5..c8d9e5836c 100644 --- a/src/lib/i18n/locales/ug-CN/translation.json +++ b/src/lib/i18n/locales/ug-CN/translation.json @@ -26,6 +26,7 @@ "A task model is used when performing tasks such as generating titles for chats and web search queries": "سۆھبەت ياكى تور ئىزدەش سۇئالىنىڭ تېمىسىنى ھاسىل قىلىشقا ئوخشىغان ۋەزىپىلەر ئۈچۈن ۋەزىپە مودېلى ئىشلىتىلىدۇ", "a user": "ئىشلەتكۈچى", "About": "ھەققىدە", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "زىيارەت", "Access Control": "زىيارەت باشقۇرۇش", "Accessible to all users": "بارلىق ئىشلەتكۈچىلەر كىرەلەيدىغان", @@ -50,6 +51,7 @@ "Add Content": "مەزمۇن قوشۇش", "Add content here": "مەزمۇننى بۇ يەرگە قوشۇڭ", "Add Custom Parameter": "ئۆزلۈك پارامېتىر قوشۇش", + "Add Custom Prompt": "", "Add Details": "", "Add Files": "ھۆججەتلەر قوشۇش", "Add Group": "گۇرۇپپا قوشۇش", @@ -149,6 +151,7 @@ "Ask": "سوراڭ", "Ask a question": "سؤئال سوراڭ", "Assistant": "ياردەمچى", + "Attach File From Knowledge": "", "Attach Knowledge": "", "Attach Notes": "", "Attach Webpage": "", @@ -268,6 +271,7 @@ "Close Banner": "", "Close Configure Connection Modal": "", "Close modal": "مودالنى يېپىش", + "Close Modal": "", "Close settings modal": "تەڭشەك مودالىنى يېپىش", "Close Sidebar": "", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "چاپلاش تاختىسىغا كۆچۈرۈلدى", "Copy": "كۆچۈرۈش", "Copy Formatted Text": "فورماتلانغان تېكستنى كۆچۈرۈش", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "", "Copy Link": "ئۇلانما كۆچۈرۈش", "Copy to clipboard": "چاپلاش تاختىسىغا كۆچۈرۈش", @@ -493,6 +499,7 @@ "Edit Default Permissions": "كۆڭۈلدىكى ھوقۇقلارنى تەھرىرلەش", "Edit Folder": "", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "ئەسلەتمە تەھرىرلەش", "Edit User": "ئىشلەتكۈچى تەھرىرلەش", "Edit User Group": "ئىشلەتكۈچى گۇرۇپپىسى تەھرىرلەش", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "Firecrawl API ئاساسىي URL", "Firecrawl API Key": "Firecrawl API ئاچقۇچى", "Floating Quick Actions": "", + "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "قىسقۇچ مۇۋەپپەقىيەتلىك ئۆچۈرۈلدى", @@ -785,6 +793,7 @@ "Generate": "ھاسىل قىلىش", "Generate an image": "رەسىم ھاسىل قىلىش", "Generate Image": "رەسىم ھاسىل قىلىش", + "Generate Message Pair": "", "Generated Image": "", "Generating search query": "ئىزدەش سۇئالى ھاسىل قىلىنىۋاتىدۇ", "Generating...": "ھاسىل قىلىنىۋاتىدۇ...", @@ -994,6 +1003,7 @@ "Memory updated successfully": "ئەسلەتمە مۇۋەپپەقىيەتلىك يېڭىلاندى", "Merge Responses": "ئىنكاسلارنى بىرلەشتۈرۈش", "Merged Response": "بىرلەشتۈرۈلگەن ئىنكاس", + "Message": "", "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 غا ئىگە ئىشلەتكۈچىلەر ھەمبەھىرلەنگەن سۆھبەتنى كۆرەلەيدۇ.", "Microsoft OneDrive": "Microsoft OneDrive", @@ -1056,6 +1066,7 @@ "New Note": "يېڭى خاتىرە", "New Password": "يېڭى پارول", "New Prompt": "", + "New Temporary Chat": "", "New Tool": "يېڭى قورال", "new-channel": "يېڭى-قانال", "Next message": "كېيىنكى ئۇچۇر", @@ -1122,8 +1133,12 @@ "Ollama Version": "Ollama نەشرى", "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 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 markdown files are allowed": "پەقەت markdown ھۆججىتى ئىشلىتىشكە بولىدۇ", "Only select users and groups with permission can access": "پەقەت ھوقۇقى بار تاللانغان ئىشلەتكۈچى ۋە گۇرۇپپىلارلا زىيارەت قىلالايدۇ", @@ -1137,6 +1152,7 @@ "Open modal to configure connection": "ئۇلىنىش تەڭشەك مودالىنى ئېچىڭ", "Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Image Compression": "", + "Open Settings": "", "Open Sidebar": "", "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI ھەر قانداق OpenAPI مۇلازىمېتىرلىرىدىكى قوراللارنى ئىشلىتەلىدۇ.", @@ -1227,6 +1243,7 @@ "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": "باشقا ئۇلىنىش بىلەن توقۇنۇشنىڭ ئالدىنى ئېلىش ئۈچۈن مودېل ID غا Prefix قوشۇلىدۇ - چەكلەش ئۈچۈن بوش قالدۇرۇڭ", + "Prevent File Creation": "", "Preview": "ئالدىن كۆرۈش", "Previous 30 days": "ئالدىنقى 30 كۈن", "Previous 7 days": "ئالدىنقى 7 كۈن", @@ -1270,6 +1287,7 @@ "Refused when it shouldn't have": "رەت قىلماسلىق كېرەك ئىدى", "Regenerate": "قايتا ھاسىل قىلىش", "Regenerate Menu": "", + "Regenerate Response": "", "Register Again": "", "Register Client": "", "Registered": "", @@ -1439,6 +1457,7 @@ "Show Formatting Toolbar": "", "Show image preview": "", "Show Model": "مودېل كۆرسىتىش", + "Show Shortcuts": "", "Show your support!": "قوللاڭ!", "Showcased creativity": "يېڭىلىق كۆرسىتىلدى", "Sign in": "كىرىش", @@ -1474,6 +1493,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "توختات", + "Stop Generating": "", "Stop Sequence": "توختاش تىزىقى", "Stream Chat Response": "سۆھبەت ئىنكاسىنى ئېقىم قىلىش", "Stream Delta Chunk Size": "", @@ -1503,6 +1523,7 @@ "Tags Generation": "تەغ ھاسىل قىلىش", "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 بولسا چەكلەنگەن.", + "Talk to Model": "", "Tap to interrupt": "توختاتماقچى بولسىڭىز چېكىڭ", "Task List": "", "Task Model": "ۋەزىپە مودېلى", @@ -1584,6 +1605,7 @@ "Toast notifications for new updates": "يېڭىلىق ئۇقتۇرۇشى (toast)", "Today": "بۈگۈن", "Today at {{LOCALIZED_TIME}}": "", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "ھازىرقى ئۇلىنىشنىڭ ئاكتىپ ياكى ئەمەسلىكىنى ئالماشتۇرۇش.", "Token": "ئىم", "Too verbose": "بەك ئۇزۇن", diff --git a/src/lib/i18n/locales/uk-UA/translation.json b/src/lib/i18n/locales/uk-UA/translation.json index 00b0418199..4bb684aa8d 100644 --- a/src/lib/i18n/locales/uk-UA/translation.json +++ b/src/lib/i18n/locales/uk-UA/translation.json @@ -26,6 +26,7 @@ "A task model is used when performing tasks such as generating titles for chats and web search queries": "Модель задач використовується при виконанні таких завдань, як генерація заголовків для чатів та пошукових запитів в Інтернеті", "a user": "користувача", "About": "Про програму", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "Доступ", "Access Control": "Контроль доступу", "Accessible to all users": "Доступно всім користувачам", @@ -50,6 +51,7 @@ "Add Content": "Додати вміст", "Add content here": "Додайте вміст сюди", "Add Custom Parameter": "", + "Add Custom Prompt": "", "Add Details": "", "Add Files": "Додати файли", "Add Group": "Додати групу", @@ -149,6 +151,7 @@ "Ask": "Запитати", "Ask a question": "Задати питання", "Assistant": "Асистент", + "Attach File From Knowledge": "", "Attach Knowledge": "", "Attach Notes": "", "Attach Webpage": "", @@ -268,6 +271,7 @@ "Close Banner": "", "Close Configure Connection Modal": "", "Close modal": "", + "Close Modal": "", "Close settings modal": "", "Close Sidebar": "", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "Скопійовано в буфер обміну", "Copy": "Копіювати", "Copy Formatted Text": "", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "", "Copy Link": "Копіювати посилання", "Copy to clipboard": "Копіювати в буфер обміну", @@ -493,6 +499,7 @@ "Edit Default Permissions": "Редагувати дозволи за замовчуванням", "Edit Folder": "", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "Редагувати пам'ять", "Edit User": "Редагувати користувача", "Edit User Group": "Редагувати групу користувачів", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "", "Firecrawl API Key": "", "Floating Quick Actions": "", + "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "Папку успішно видалено", @@ -785,6 +793,7 @@ "Generate": "", "Generate an image": "Згенерувати зображення", "Generate Image": "Створити зображення", + "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Сформувати пошуковий запит", "Generating...": "", @@ -994,6 +1003,7 @@ "Memory updated successfully": "Пам'ять успішно оновлено", "Merge Responses": "Об'єднати відповіді", "Merged Response": "Об'єднана відповідь", + "Message": "", "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, зможуть переглядати спільний чат.", "Microsoft OneDrive": "", @@ -1056,6 +1066,7 @@ "New Note": "", "New Password": "Новий пароль", "New Prompt": "", + "New Temporary Chat": "", "New Tool": "", "new-channel": "новий-канал", "Next message": "", @@ -1122,8 +1133,12 @@ "Ollama Version": "Версія Ollama", "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 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 markdown files are allowed": "", "Only select users and groups with permission can access": "Тільки вибрані користувачі та групи з дозволом можуть отримати доступ", @@ -1137,6 +1152,7 @@ "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Image Compression": "", + "Open Settings": "", "Open Sidebar": "", "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", @@ -1227,6 +1243,7 @@ "Prefer not to say": "", "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 моделей — залиште порожнім, щоб вимкнути", + "Prevent File Creation": "", "Preview": "", "Previous 30 days": "Попередні 30 днів", "Previous 7 days": "Попередні 7 днів", @@ -1270,6 +1287,7 @@ "Refused when it shouldn't have": "Відмовив, коли не мав би", "Regenerate": "Регенерувати", "Regenerate Menu": "", + "Regenerate Response": "", "Register Again": "", "Register Client": "", "Registered": "", @@ -1441,6 +1459,7 @@ "Show Formatting Toolbar": "", "Show image preview": "", "Show Model": "Показати модель", + "Show Shortcuts": "", "Show your support!": "Підтримайте нас!", "Showcased creativity": "Продемонстрований креатив", "Sign in": "Увійти", @@ -1476,6 +1495,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Зупинити", + "Stop Generating": "", "Stop Sequence": "Символ зупинки", "Stream Chat Response": "Відповідь стрім-чату", "Stream Delta Chunk Size": "", @@ -1505,6 +1525,7 @@ "Tags Generation": "Генерація тегів", "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 вимикає цю опцію.", + "Talk to Model": "", "Tap to interrupt": "Натисніть, щоб перервати", "Task List": "", "Task Model": "", @@ -1586,6 +1607,7 @@ "Toast notifications for new updates": "Сповіщення Toast про нові оновлення", "Today": "Сьогодні", "Today at {{LOCALIZED_TIME}}": "", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "", "Token": "Токен", "Too verbose": "Занадто докладно", diff --git a/src/lib/i18n/locales/ur-PK/translation.json b/src/lib/i18n/locales/ur-PK/translation.json index f5feded175..59a611d6fb 100644 --- a/src/lib/i18n/locales/ur-PK/translation.json +++ b/src/lib/i18n/locales/ur-PK/translation.json @@ -26,6 +26,7 @@ "A task model is used when performing tasks such as generating titles for chats and web search queries": "ٹاسک ماڈل اس وقت استعمال ہوتا ہے جب چیٹس کے عنوانات اور ویب سرچ سوالات تیار کیے جا رہے ہوں", "a user": "ایک صارف", "About": "بارے میں", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "", "Access Control": "", "Accessible to all users": "", @@ -50,6 +51,7 @@ "Add Content": "مواد شامل کریں", "Add content here": "یہاں مواد شامل کریں", "Add Custom Parameter": "", + "Add Custom Prompt": "", "Add Details": "", "Add Files": "فائلیں شامل کریں", "Add Group": "", @@ -149,6 +151,7 @@ "Ask": "", "Ask a question": "سوال پوچھیں", "Assistant": "اسسٹنٹ", + "Attach File From Knowledge": "", "Attach Knowledge": "", "Attach Notes": "", "Attach Webpage": "", @@ -268,6 +271,7 @@ "Close Banner": "", "Close Configure Connection Modal": "", "Close modal": "", + "Close Modal": "", "Close settings modal": "", "Close Sidebar": "", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "کلپ بورڈ پر نقل کر دیا گیا", "Copy": "نقل کریں", "Copy Formatted Text": "", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "", "Copy Link": "لنک کاپی کریں", "Copy to clipboard": "کلپ بورڈ پر کاپی کریں", @@ -493,6 +499,7 @@ "Edit Default Permissions": "", "Edit Folder": "", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "یادداشت میں ترمیم کریں", "Edit User": "صارف میں ترمیم کریں", "Edit User Group": "", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "", "Firecrawl API Key": "", "Floating Quick Actions": "", + "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "پوشہ کامیابی سے حذف ہو گیا", @@ -785,6 +793,7 @@ "Generate": "", "Generate an image": "", "Generate Image": "تصویر بنائیں", + "Generate Message Pair": "", "Generated Image": "", "Generating search query": "تلاش کے لیے سوالیہ عبارت تیار کی جا رہی ہے", "Generating...": "", @@ -994,6 +1003,7 @@ "Memory updated successfully": "حافظہ کامیابی سے اپ ڈیٹ کر دیا گیا", "Merge Responses": "جوابات کو یکجا کریں", "Merged Response": "مرکب جواب", + "Message": "", "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.": "آپ کے لنک بنانے کے بعد بھیجے گئے پیغامات شیئر نہیں کیے جائیں گے یو آر ایل والے صارفین شیئر کیا گیا چیٹ دیکھ سکیں گے", "Microsoft OneDrive": "", @@ -1056,6 +1066,7 @@ "New Note": "", "New Password": "نیا پاس ورڈ", "New Prompt": "", + "New Temporary Chat": "", "New Tool": "", "new-channel": "", "Next message": "", @@ -1122,8 +1133,12 @@ "Ollama Version": "اولاما ورژن", "On": "چالو", "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 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 markdown files are allowed": "", "Only select users and groups with permission can access": "", @@ -1137,6 +1152,7 @@ "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Image Compression": "", + "Open Settings": "", "Open Sidebar": "", "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", @@ -1227,6 +1243,7 @@ "Prefer not to say": "", "Prefix ID": "", "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": "", "Previous 30 days": "پچھلے 30 دن", "Previous 7 days": "پچھلے 7 دن", @@ -1270,6 +1287,7 @@ "Refused when it shouldn't have": "جب انکار نہیں ہونا چاہیے تھا، انکار کر دیا", "Regenerate": "دوبارہ تخلیق کریں", "Regenerate Menu": "", + "Regenerate Response": "", "Register Again": "", "Register Client": "", "Registered": "", @@ -1439,6 +1457,7 @@ "Show Formatting Toolbar": "", "Show image preview": "", "Show Model": "", + "Show Shortcuts": "", "Show your support!": "اپنی حمایت دکھائیں!", "Showcased creativity": "نمائش شدہ تخلیقی صلاحیتیں", "Sign in": "سائن ان کریں", @@ -1474,6 +1493,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "روکیں", + "Stop Generating": "", "Stop Sequence": "ترتیب روکیں", "Stream Chat Response": "اسٹریم چیٹ جواب", "Stream Delta Chunk Size": "", @@ -1503,6 +1523,7 @@ "Tags Generation": "", "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.": "", + "Talk to Model": "", "Tap to interrupt": "رکنے کے لئے ٹچ کریں", "Task List": "", "Task Model": "", @@ -1584,6 +1605,7 @@ "Toast notifications for new updates": "نئے اپڈیٹس کے لئے ٹوسٹ نوٹیفیکیشنز", "Today": "آج", "Today at {{LOCALIZED_TIME}}": "", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "", "Token": "ٹوکَن", "Too verbose": "بہت زیادہ طویل", diff --git a/src/lib/i18n/locales/uz-Cyrl-UZ/translation.json b/src/lib/i18n/locales/uz-Cyrl-UZ/translation.json index d797d23754..ff3028e521 100644 --- a/src/lib/i18n/locales/uz-Cyrl-UZ/translation.json +++ b/src/lib/i18n/locales/uz-Cyrl-UZ/translation.json @@ -26,6 +26,7 @@ "A task model is used when performing tasks such as generating titles for chats and web search queries": "Вазифа модели чатлар ва веб-қидирув сўровлари учун сарлавҳаларни яратиш каби вазифаларни бажаришда ишлатилади", "a user": "фойдаланувчи", "About": "Ҳақида", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "Кириш", "Access Control": "Кириш назорати", "Accessible to all users": "Барча фойдаланувчилар учун очиқ", @@ -50,6 +51,7 @@ "Add Content": "Контент қўшиш", "Add content here": "Бу ерга таркиб қўшинг", "Add Custom Parameter": "Махсус параметр қўшинг", + "Add Custom Prompt": "", "Add Details": "", "Add Files": "Файлларни қўшиш", "Add Group": "Гуруҳ қўшиш", @@ -149,6 +151,7 @@ "Ask": "Сўранг", "Ask a question": "Савол беринг", "Assistant": "Ёрдамчи", + "Attach File From Knowledge": "", "Attach Knowledge": "", "Attach Notes": "", "Attach Webpage": "", @@ -268,6 +271,7 @@ "Close Banner": "", "Close Configure Connection Modal": "", "Close modal": "", + "Close Modal": "", "Close settings modal": "", "Close Sidebar": "", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "Буферга нусхаланди", "Copy": "Нусхалаш", "Copy Formatted Text": "Форматланган матнни нусхалаш", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "", "Copy Link": "Ҳаволани нусхалаш", "Copy to clipboard": "Буферга нусхалаш", @@ -493,6 +499,7 @@ "Edit Default Permissions": "Стандарт рухсатларни таҳрирлаш", "Edit Folder": "", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "Хотирани таҳрирлаш", "Edit User": "Фойдаланувчини таҳрирлаш", "Edit User Group": "Фойдаланувчилар гуруҳини таҳрирлаш", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "Firecrawl АПИ асосий УРЛ манзили", "Firecrawl API Key": "Firecrawl АПИ калити", "Floating Quick Actions": "", + "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "Жилд муваффақиятли ўчирилди", @@ -785,6 +793,7 @@ "Generate": "Яратиш", "Generate an image": "Тасвир яратиш", "Generate Image": "Расм яратиш", + "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Қидирув сўрови яратилмоқда", "Generating...": "Яратилмоқда...", @@ -994,6 +1003,7 @@ "Memory updated successfully": "Хотира муваффақиятли янгиланди", "Merge Responses": "Жавобларни бирлаштириш", "Merged Response": "Бирлаштирилган жавоб", + "Message": "", "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.": "Ҳаволани яратганингиздан кейин юборган хабарларингиз улашилмайди. УРЛ манзили бўлган фойдаланувчилар умумий чатни кўришлари мумкин бўлади.", "Microsoft OneDrive": "Microsoft ОнеДриве", @@ -1056,6 +1066,7 @@ "New Note": "Янги эслатма", "New Password": "Янги парол", "New Prompt": "", + "New Temporary Chat": "", "New Tool": "Янги восита", "new-channel": "янги канал", "Next message": "", @@ -1122,8 +1133,12 @@ "Ollama Version": "Ollama версияси", "On": "Ёниқ", "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 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 markdown files are allowed": "Фақат маркдоwн файлларига рухсат берилади", "Only select users and groups with permission can access": "Фақат рухсати бор танланган фойдаланувчилар ва гуруҳларга кириш мумкин", @@ -1137,6 +1152,7 @@ "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Image Compression": "", + "Open Settings": "", "Open Sidebar": "", "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "Опен WебУИ ҳар қандай ОпенАПИ сервери томонидан тақдим этилган воситалардан фойдаланиши мумкин.", @@ -1227,6 +1243,7 @@ "Prefer not to say": "", "Prefix ID": "Префикс идентификатори", "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": "Кўриб чиқиш", "Previous 30 days": "Олдинги 30 кун", "Previous 7 days": "Олдинги 7 кун", @@ -1270,6 +1287,7 @@ "Refused when it shouldn't have": "Бўлмаслиги керак бўлганда рад этилди", "Regenerate": "Қайта тиклаш", "Regenerate Menu": "", + "Regenerate Response": "", "Register Again": "", "Register Client": "", "Registered": "", @@ -1439,6 +1457,7 @@ "Show Formatting Toolbar": "", "Show image preview": "", "Show Model": "Моделни кўрсатиш", + "Show Shortcuts": "", "Show your support!": "Қўллаб-қувватланг!", "Showcased creativity": "Кўрсатилган ижодкорлик", "Sign in": "тизимга кириш", @@ -1474,6 +1493,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "СТОП", + "Stop Generating": "", "Stop Sequence": "Кетма-кетликни тўхтатиш", "Stream Chat Response": "Chat жавобини юбориш", "Stream Delta Chunk Size": "", @@ -1503,6 +1523,7 @@ "Tags Generation": "Теглар яратиш", "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 қиймати эса бу созламани ўчириб қўяди.", + "Talk to Model": "", "Tap to interrupt": "Тўхтатиш учун босинг", "Task List": "", "Task Model": "Вазифа модели", @@ -1584,6 +1605,7 @@ "Toast notifications for new updates": "Янги янгиланишлар ҳақида билдиришномалар", "Today": "Бугун", "Today at {{LOCALIZED_TIME}}": "", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "", "Token": "Токен", "Too verbose": "Жуда батафсил", diff --git a/src/lib/i18n/locales/uz-Latn-Uz/translation.json b/src/lib/i18n/locales/uz-Latn-Uz/translation.json index 2ddebc1e1a..70fa323cdd 100644 --- a/src/lib/i18n/locales/uz-Latn-Uz/translation.json +++ b/src/lib/i18n/locales/uz-Latn-Uz/translation.json @@ -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 user": "foydalanuvchi", "About": "Haqida", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "Kirish", "Access Control": "Kirish nazorati", "Accessible to all users": "Barcha foydalanuvchilar uchun ochiq", @@ -50,6 +51,7 @@ "Add Content": "Kontent qo'shish", "Add content here": "Bu yerga tarkib qo'shing", "Add Custom Parameter": "Maxsus parametr qo'shing", + "Add Custom Prompt": "", "Add Details": "", "Add Files": "Fayllarni qo'shish", "Add Group": "Guruh qo'shish", @@ -149,6 +151,7 @@ "Ask": "So'rang", "Ask a question": "Savol bering", "Assistant": "Yordamchi", + "Attach File From Knowledge": "", "Attach Knowledge": "", "Attach Notes": "", "Attach Webpage": "", @@ -268,6 +271,7 @@ "Close Banner": "", "Close Configure Connection Modal": "", "Close modal": "", + "Close Modal": "", "Close settings modal": "", "Close Sidebar": "", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "Buferga nusxalandi", "Copy": "Nusxalash", "Copy Formatted Text": "Formatlangan matnni nusxalash", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "", "Copy Link": "Havolani nusxalash", "Copy to clipboard": "Buferga nusxalash", @@ -493,6 +499,7 @@ "Edit Default Permissions": "Standart ruxsatlarni tahrirlash", "Edit Folder": "", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "Xotirani tahrirlash", "Edit User": "Foydalanuvchini tahrirlash", "Edit User Group": "Foydalanuvchilar guruhini tahrirlash", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "Firecrawl API asosiy URL manzili", "Firecrawl API Key": "Firecrawl API kaliti", "Floating Quick Actions": "", + "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "Jild muvaffaqiyatli oʻchirildi", @@ -785,6 +793,7 @@ "Generate": "Yaratish", "Generate an image": "Tasvir yaratish", "Generate Image": "Rasm yaratish", + "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Qidiruv so'rovi yaratilmoqda", "Generating...": "Yaratilmoqda...", @@ -994,6 +1003,7 @@ "Memory updated successfully": "Xotira muvaffaqiyatli yangilandi", "Merge Responses": "Javoblarni birlashtirish", "Merged Response": "Birlashtirilgan javob", + "Message": "", "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.", "Microsoft OneDrive": "Microsoft OneDrive", @@ -1056,6 +1066,7 @@ "New Note": "Yangi eslatma", "New Password": "Yangi parol", "New Prompt": "", + "New Temporary Chat": "", "New Tool": "Yangi vosita", "new-channel": "yangi kanal", "Next message": "", @@ -1122,8 +1133,12 @@ "Ollama Version": "Ollama versiyasi", "On": "Yoniq", "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 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 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", @@ -1137,6 +1152,7 @@ "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Image Compression": "", + "Open Settings": "", "Open Sidebar": "", "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.", @@ -1227,6 +1243,7 @@ "Prefer not to say": "", "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.", + "Prevent File Creation": "", "Preview": "Ko‘rib chiqish", "Previous 30 days": "Oldingi 30 kun", "Previous 7 days": "Oldingi 7 kun", @@ -1270,6 +1287,7 @@ "Refused when it shouldn't have": "Bo'lmasligi kerak bo'lganda rad etildi", "Regenerate": "Qayta tiklash", "Regenerate Menu": "", + "Regenerate Response": "", "Register Again": "", "Register Client": "", "Registered": "", @@ -1439,6 +1457,7 @@ "Show Formatting Toolbar": "", "Show image preview": "", "Show Model": "Modelni ko'rsatish", + "Show Shortcuts": "", "Show your support!": "Qo'llab-quvvatlang!", "Showcased creativity": "Ko'rsatilgan ijodkorlik", "Sign in": "tizimga kirish", @@ -1474,6 +1493,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "STOP", + "Stop Generating": "", "Stop Sequence": "Ketma-ketlikni to'xtatish", "Stream Chat Response": "Stream Chat javobi", "Stream Delta Chunk Size": "", @@ -1503,6 +1523,7 @@ "Tags Generation": "Teglar yaratish", "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.", + "Talk to Model": "", "Tap to interrupt": "To‘xtatish uchun bosing", "Task List": "", "Task Model": "Vazifa modeli", @@ -1584,6 +1605,7 @@ "Toast notifications for new updates": "Yangi yangilanishlar haqida bildirishnomalar", "Today": "Bugun", "Today at {{LOCALIZED_TIME}}": "", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "", "Token": "Token", "Too verbose": "Juda batafsil", diff --git a/src/lib/i18n/locales/vi-VN/translation.json b/src/lib/i18n/locales/vi-VN/translation.json index 2e44431665..4a1cdacac2 100644 --- a/src/lib/i18n/locales/vi-VN/translation.json +++ b/src/lib/i18n/locales/vi-VN/translation.json @@ -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 user": "người sử dụng", "About": "Giới thiệu", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "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", @@ -50,6 +51,7 @@ "Add Content": "Thêm nội dung", "Add content here": "Thêm nội dung tại đây", "Add Custom Parameter": "", + "Add Custom Prompt": "", "Add Details": "", "Add Files": "Thêm tệp", "Add Group": "Thêm Nhóm", @@ -149,6 +151,7 @@ "Ask": "Hỏi", "Ask a question": "Đặt câu hỏi", "Assistant": "Trợ lý", + "Attach File From Knowledge": "", "Attach Knowledge": "", "Attach Notes": "", "Attach Webpage": "", @@ -268,6 +271,7 @@ "Close Banner": "", "Close Configure Connection Modal": "", "Close modal": "", + "Close Modal": "", "Close settings modal": "", "Close Sidebar": "", "cloud": "", @@ -331,6 +335,8 @@ "Copied to clipboard": "Đã sao chép vào clipboard", "Copy": "Sao chép", "Copy Formatted Text": "", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "", "Copy Link": "Sao chép link", "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 Folder": "", "Edit Image": "", + "Edit Last Message": "", "Edit Memory": "Sửa Memory", "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", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "", "Firecrawl API Key": "", "Floating Quick Actions": "", + "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "Xóa thư mục thành công", @@ -785,6 +793,7 @@ "Generate": "", "Generate an image": "Tạo một hình ảnh", "Generate Image": "Sinh ảnh", + "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Tạo truy vấn tìm kiếm", "Generating...": "", @@ -994,6 +1003,7 @@ "Memory updated successfully": "Memory đã cập nhật thành công", "Merge Responses": "Hợp nhất các phản hồi", "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", "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": "", @@ -1056,6 +1066,7 @@ "New Note": "", "New Password": "Mật khẩu mới", "New Prompt": "", + "New Temporary Chat": "", "New Tool": "", "new-channel": "kênh-mới", "Next message": "", @@ -1122,8 +1133,12 @@ "Ollama Version": "Phiên bản Ollama", "On": "Bật", "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 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 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", @@ -1137,6 +1152,7 @@ "Open modal to configure connection": "", "Open Modal To Manage Floating Quick Actions": "", "Open Modal To Manage Image Compression": "", + "Open Settings": "", "Open Sidebar": "", "Open User Profile Menu": "", "Open WebUI can use tools provided by any OpenAPI server.": "", @@ -1227,6 +1243,7 @@ "Prefer not to say": "", "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", + "Prevent File Creation": "", "Preview": "", "Previous 30 days": "30 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", "Regenerate": "Tạo sinh lại câu trả lời", "Regenerate Menu": "", + "Regenerate Response": "", "Register Again": "", "Register Client": "", "Registered": "", @@ -1438,6 +1456,7 @@ "Show Formatting Toolbar": "", "Show image preview": "", "Show Model": "Hiển thị Mô hình", + "Show Shortcuts": "", "Show your support!": "Thể hiện sự ủng hộ của bạn!", "Showcased creativity": "Thể hiện sự sáng tạo", "Sign in": "Đăng nhập", @@ -1473,6 +1492,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Dừng", + "Stop Generating": "", "Stop Sequence": "Trình tự Dừng", "Stream Chat Response": "Truyền trực tiếp Phản hồi Chat", "Stream Delta Chunk Size": "", @@ -1502,6 +1522,7 @@ "Tags Generation": "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.", + "Talk to Model": "", "Tap to interrupt": "Chạm để ngừng", "Task List": "", "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", "Today": "Hôm nay", "Today at {{LOCALIZED_TIME}}": "", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "", "Token": "Token", "Too verbose": "Quá dài dòng", diff --git a/src/lib/i18n/locales/zh-CN/translation.json b/src/lib/i18n/locales/zh-CN/translation.json index 50fd7f8197..a47dde0ef9 100644 --- a/src/lib/i18n/locales/zh-CN/translation.json +++ b/src/lib/i18n/locales/zh-CN/translation.json @@ -26,6 +26,7 @@ "A task model is used when performing tasks such as generating titles for chats and web search queries": "任务模型用于执行生成对话标题和联网搜索查询等任务", "a user": "用户", "About": "关于", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "访问", "Access Control": "访问控制", "Accessible to all users": "对所有用户开放", @@ -50,6 +51,7 @@ "Add Content": "添加内容", "Add content here": "在此添加内容", "Add Custom Parameter": "增加自定义参数", + "Add Custom Prompt": "", "Add Details": "丰富细节", "Add Files": "添加文件", "Add Group": "添加权限组", @@ -149,6 +151,7 @@ "Ask": "提问", "Ask a question": "提问", "Assistant": "助手", + "Attach File From Knowledge": "", "Attach Knowledge": "引用知识库", "Attach Notes": "引用笔记", "Attach Webpage": "引用网页", @@ -268,6 +271,7 @@ "Close Banner": "关闭横幅", "Close Configure Connection Modal": "关闭外部连接配置弹窗", "Close modal": "关闭弹窗", + "Close Modal": "", "Close settings modal": "关闭设置弹窗", "Close Sidebar": "收起侧边栏", "cloud": "云服务", @@ -331,6 +335,8 @@ "Copied to clipboard": "已复制到剪贴板", "Copy": "复制", "Copy Formatted Text": "复制文本时包含特殊格式", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "复制链接", "Copy Link": "复制链接", "Copy to clipboard": "复制到剪贴板", @@ -493,6 +499,7 @@ "Edit Default Permissions": "编辑默认权限", "Edit Folder": "编辑分组", "Edit Image": "图片编辑", + "Edit Last Message": "", "Edit Memory": "编辑记忆", "Edit User": "编辑用户", "Edit User Group": "编辑用户组", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "Firecrawl 接口地址", "Firecrawl API Key": "Firecrawl 接口密钥", "Floating Quick Actions": "快捷操作浮窗", + "Focus Chat Input": "", "Folder": "分组", "Folder Background Image": "分组背景图", "Folder deleted successfully": "分组删除成功", @@ -785,6 +793,7 @@ "Generate": "生成", "Generate an image": "生成图像", "Generate Image": "生成图像", + "Generate Message Pair": "", "Generated Image": "已生成图像", "Generating search query": "生成搜索查询", "Generating...": "生成中...", @@ -994,6 +1003,7 @@ "Memory updated successfully": "记忆更新成功", "Merge Responses": "合并回复", "Merged Response": "合并的回复", + "Message": "", "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.": "创建链接后发送的消息将不会被分享。通过该链接访问的用户可以查看对话记录。", "Microsoft OneDrive": "Microsoft OneDrive", @@ -1056,6 +1066,7 @@ "New Note": "新笔记", "New Password": "新密码", "New Prompt": "创建提示词", + "New Temporary Chat": "", "New Tool": "新工具", "new-channel": "新频道", "Next message": "下一条消息", @@ -1122,8 +1133,12 @@ "Ollama Version": "Ollama 版本", "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": "只允许使用英文字母,数字 (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 markdown files are allowed": "仅允许使用 markdown 文件", "Only select users and groups with permission can access": "只有具有权限的用户和组才能访问", @@ -1137,6 +1152,7 @@ "Open modal to configure connection": "打开外部连接配置弹窗", "Open Modal To Manage Floating Quick Actions": "管理快捷操作浮窗", "Open Modal To Manage Image Compression": "打开图片压缩配置窗口", + "Open Settings": "", "Open Sidebar": "展开侧边栏", "Open User Profile Menu": "打开个人资料菜单", "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI 可使用任何 OpenAPI 服务器提供的工具。", @@ -1227,6 +1243,7 @@ "Prefer not to say": "暂不透露", "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 前添加前缀以避免与其它连接提供的模型冲突。留空则禁用此功能。", + "Prevent File Creation": "", "Preview": "预览", "Previous 30 days": "过去 30 天", "Previous 7 days": "过去 7 天", @@ -1270,6 +1287,7 @@ "Refused when it shouldn't have": "拒绝了我的要求", "Regenerate": "重新生成", "Regenerate Menu": "显示重新生成选项菜单", + "Regenerate Response": "", "Register Again": "重新注册", "Register Client": "注册客户端", "Registered": "已注册", @@ -1438,6 +1456,7 @@ "Show Formatting Toolbar": "显示文本格式工具栏", "Show image preview": "显示图像预览", "Show Model": "显示模型", + "Show Shortcuts": "", "Show your support!": "表达您的支持!", "Showcased creativity": "很有创意", "Sign in": "登录", @@ -1473,6 +1492,7 @@ "STDOUT/STDERR": "标准输出/标准错误", "Steps": "迭代步数", "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 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 则禁用此设置。", + "Talk to Model": "", "Tap to interrupt": "点击以中断", "Task List": "任务列表", "Task Model": "任务模型", @@ -1583,6 +1604,7 @@ "Toast notifications for new updates": "检测到新版本时显示更新通知", "Today": "今天", "Today at {{LOCALIZED_TIME}}": "今天 {{LOCALIZED_TIME}}", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "切换当前连接的启用状态", "Token": "Token", "Too verbose": "过于冗长", diff --git a/src/lib/i18n/locales/zh-TW/translation.json b/src/lib/i18n/locales/zh-TW/translation.json index e9fa35868d..f96898c87e 100644 --- a/src/lib/i18n/locales/zh-TW/translation.json +++ b/src/lib/i18n/locales/zh-TW/translation.json @@ -26,6 +26,7 @@ "A task model is used when performing tasks such as generating titles for chats and web search queries": "執行「產生對話標題」和「網頁搜尋查詢生成」等任務時使用的任務模型", "a user": "使用者", "About": "關於", + "Accept Autocomplete Generation\nJump to Prompt Variable": "", "Access": "存取", "Access Control": "存取控制", "Accessible to all users": "所有使用者皆可存取", @@ -50,6 +51,7 @@ "Add Content": "新增內容", "Add content here": "在此新增內容", "Add Custom Parameter": "新增自訂參數", + "Add Custom Prompt": "", "Add Details": "豐富細節", "Add Files": "新增檔案", "Add Group": "新增群組", @@ -149,6 +151,7 @@ "Ask": "提問", "Ask a question": "提出問題", "Assistant": "助理", + "Attach File From Knowledge": "", "Attach Knowledge": "附加知識庫", "Attach Notes": "附加筆記", "Attach Webpage": "附加網頁", @@ -268,6 +271,7 @@ "Close Banner": "關閉橫幅", "Close Configure Connection Modal": "關閉外部連線設定彈出視窗", "Close modal": "關閉彈出視窗", + "Close Modal": "", "Close settings modal": "關閉設定彈出視窗", "Close Sidebar": "收起側邊欄", "cloud": "雲端服務", @@ -331,6 +335,8 @@ "Copied to clipboard": "已複製到剪貼簿", "Copy": "複製", "Copy Formatted Text": "複製格式化文字", + "Copy Last Code Block": "", + "Copy Last Response": "", "Copy link": "複製連結", "Copy Link": "複製連結", "Copy to clipboard": "複製到剪貼簿", @@ -493,6 +499,7 @@ "Edit Default Permissions": "編輯預設權限", "Edit Folder": "編輯分組", "Edit Image": "編輯圖片", + "Edit Last Message": "", "Edit Memory": "編輯記憶", "Edit User": "編輯使用者", "Edit User Group": "編輯使用者群組", @@ -737,6 +744,7 @@ "Firecrawl API Base URL": "Firecrawl API 基底 URL", "Firecrawl API Key": "Firecrawl API 金鑰", "Floating Quick Actions": "浮動快速操作", + "Focus Chat Input": "", "Folder": "分組", "Folder Background Image": "分組背景圖", "Folder deleted successfully": "成功刪除分組", @@ -785,6 +793,7 @@ "Generate": "生成", "Generate an image": "生成圖片", "Generate Image": "生成圖片", + "Generate Message Pair": "", "Generated Image": "生成圖片", "Generating search query": "正在生成搜尋查詢", "Generating...": "正在生成...", @@ -994,6 +1003,7 @@ "Memory updated successfully": "成功更新記憶", "Merge Responses": "合併回應", "Merged Response": "整合回應結果", + "Message": "", "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.": "建立連結後傳送的訊息不會被分享。擁有網址的使用者可檢視分享的對話內容。", "Microsoft OneDrive": "Microsoft OneDrive", @@ -1056,6 +1066,7 @@ "New Note": "新增筆記", "New Password": "新密碼", "New Prompt": "新增提示詞", + "New Temporary Chat": "", "New Tool": "新增工具", "new-channel": "new-channel", "Next message": "下一條訊息", @@ -1122,8 +1133,12 @@ "Ollama Version": "Ollama 版本", "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 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 markdown files are allowed": "僅允許 Markdown 檔案", "Only select users and groups with permission can access": "只有具有權限的選定使用者和群組可以存取", @@ -1137,6 +1152,7 @@ "Open modal to configure connection": "開啟外部連線設定彈出視窗", "Open Modal To Manage Floating Quick Actions": "開啟管理浮動快速操作的彈出視窗", "Open Modal To Manage Image Compression": "打開圖片壓縮設定視窗", + "Open Settings": "", "Open Sidebar": "展開側邊欄", "Open User Profile Menu": "開啟個人資料選單", "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI 可使用任何 OpenAPI 伺服器提供的工具。", @@ -1227,6 +1243,7 @@ "Prefer not to say": "不想透露", "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 新增字首以避免與其他連線衝突 - 留空以停用", + "Prevent File Creation": "", "Preview": "預覽", "Previous 30 days": "過去 30 天", "Previous 7 days": "過去 7 天", @@ -1270,6 +1287,7 @@ "Refused when it shouldn't have": "不應拒絕時拒絕了", "Regenerate": "重新產生回應", "Regenerate Menu": "重新產生前顯示選單", + "Regenerate Response": "", "Register Again": "重新登錄", "Register Client": "登錄用戶端", "Registered": "已登錄", @@ -1438,6 +1456,7 @@ "Show Formatting Toolbar": "顯示文字格式工具列", "Show image preview": "顯示圖片預覽", "Show Model": "顯示模型", + "Show Shortcuts": "", "Show your support!": "表達您的支持!", "Showcased creativity": "展現創意", "Sign in": "登入", @@ -1473,6 +1492,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "迭代步數", "Stop": "停止", + "Stop Generating": "", "Stop Sequence": "停止序列", "Stream Chat Response": "串流式對話回應", "Stream Delta Chunk Size": "串流增量輸出的分塊大小(Stream Delta Chunk Size)", @@ -1502,6 +1522,7 @@ "Tags Generation": "標籤生成", "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 時會停用此設定。", + "Talk to Model": "", "Tap to interrupt": "點選以中斷", "Task List": "工作清單", "Task Model": "任務模型", @@ -1583,6 +1604,7 @@ "Toast notifications for new updates": "快顯通知新的更新", "Today": "今天", "Today at {{LOCALIZED_TIME}}": "今天 {{LOCALIZED_TIME}}", + "Toggle Sidebar": "", "Toggle whether current connection is active.": "切換當前連接的啟用狀態", "Token": "Token", "Too verbose": "太過冗長",