coolmanx commited on
Commit
2780a47
·
verified ·
1 Parent(s): c29ae51
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. CHANGELOG.md +14 -4
  2. README.md +3 -1
  3. backend/open_webui/apps/openai/main.py +3 -1
  4. backend/open_webui/apps/retrieval/loaders/youtube.py +98 -0
  5. backend/open_webui/apps/retrieval/main.py +4 -8
  6. backend/open_webui/apps/retrieval/vector/dbs/opensearch.py +1 -1
  7. backend/open_webui/apps/webui/routers/knowledge.py +14 -9
  8. backend/open_webui/apps/webui/routers/models.py +5 -4
  9. backend/open_webui/main.py +5 -0
  10. backend/requirements.txt +3 -3
  11. package-lock.json +2 -2
  12. package.json +1 -1
  13. pyproject.toml +3 -3
  14. src/lib/apis/models/index.ts +4 -4
  15. src/lib/components/admin/Settings/Evaluations/ArenaModelModal.svelte +1 -1
  16. src/lib/components/chat/Messages/RateComment.svelte +92 -49
  17. src/lib/components/chat/Messages/ResponseMessage.svelte +5 -10
  18. src/lib/components/workspace/Models/ModelEditor.svelte +0 -3
  19. src/lib/i18n/locales/ar-BH/translation.json +4 -0
  20. src/lib/i18n/locales/bg-BG/translation.json +4 -0
  21. src/lib/i18n/locales/bn-BD/translation.json +4 -0
  22. src/lib/i18n/locales/ca-ES/translation.json +4 -0
  23. src/lib/i18n/locales/ceb-PH/translation.json +4 -0
  24. src/lib/i18n/locales/cs-CZ/translation.json +4 -0
  25. src/lib/i18n/locales/da-DK/translation.json +4 -0
  26. src/lib/i18n/locales/de-DE/translation.json +4 -0
  27. src/lib/i18n/locales/dg-DG/translation.json +4 -0
  28. src/lib/i18n/locales/en-GB/translation.json +4 -0
  29. src/lib/i18n/locales/en-US/translation.json +4 -0
  30. src/lib/i18n/locales/es-ES/translation.json +4 -0
  31. src/lib/i18n/locales/fa-IR/translation.json +4 -0
  32. src/lib/i18n/locales/fi-FI/translation.json +4 -0
  33. src/lib/i18n/locales/fr-CA/translation.json +4 -0
  34. src/lib/i18n/locales/fr-FR/translation.json +4 -0
  35. src/lib/i18n/locales/he-IL/translation.json +4 -0
  36. src/lib/i18n/locales/hi-IN/translation.json +4 -0
  37. src/lib/i18n/locales/hr-HR/translation.json +4 -0
  38. src/lib/i18n/locales/hu-HU/translation.json +4 -0
  39. src/lib/i18n/locales/id-ID/translation.json +4 -0
  40. src/lib/i18n/locales/ie-GA/translation.json +4 -0
  41. src/lib/i18n/locales/it-IT/translation.json +4 -0
  42. src/lib/i18n/locales/ja-JP/translation.json +4 -0
  43. src/lib/i18n/locales/ka-GE/translation.json +4 -0
  44. src/lib/i18n/locales/ko-KR/translation.json +4 -0
  45. src/lib/i18n/locales/lt-LT/translation.json +4 -0
  46. src/lib/i18n/locales/ms-MY/translation.json +4 -0
  47. src/lib/i18n/locales/nb-NO/translation.json +4 -0
  48. src/lib/i18n/locales/nl-NL/translation.json +294 -290
  49. src/lib/i18n/locales/pa-IN/translation.json +4 -0
  50. src/lib/i18n/locales/pl-PL/translation.json +4 -0
CHANGELOG.md CHANGED
@@ -5,17 +5,27 @@ All notable changes to this project will be documented in this file.
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
 
 
 
 
 
 
 
 
 
 
8
  ## [0.4.1] - 2024-11-19
9
 
10
  ### Added
11
 
12
- - **🛠️ Tool Descriptions on Hover**: When enabled, tool descriptions now appear upon hovering over the tool icon in the message input, giving you more context instantly and improving workflow fluidity.
 
13
 
14
  ### Fixed
15
 
16
- - **🚫 Graceful Handling of Deleted Users**: Resolved an issue where deleted users caused models, knowledge, prompts, or tools to fail loading in the workspace, ensuring smoother operation and fewer interruptions.
17
- - **🔗 Proxy Fix for HTTPS Models Endpoint**: Fixed issues with proxies affecting the secure `/api/v1/models/` endpoint, ensuring stable connections and reliable access.
18
- - **🔒 API Key Creation**: Addressed a bug that previously prevented API keys from being created.
19
 
20
  ## [0.4.0] - 2024-11-19
21
 
 
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
 
8
+ ## [0.4.2] - 2024-11-20
9
+
10
+ ### Fixed
11
+
12
+ - **📁 Knowledge Files Visibility Issue**: Resolved the bug preventing individual files in knowledge collections from displaying when referenced with '#'.
13
+ - **🔗 OpenAI Endpoint Prefix**: Fixed the issue where certain OpenAI connections that deviate from the official API spec weren’t working correctly with prefixes.
14
+ - **⚔️ Arena Model Access Control**: Corrected an issue where arena model access control settings were not being saved.
15
+ - **🔧 Usage Capability Selector**: Fixed the broken usage capabilities selector in the model editor.
16
+
17
  ## [0.4.1] - 2024-11-19
18
 
19
  ### Added
20
 
21
+ - **📊 Enhanced Feedback System**: Introduced a detailed 1-10 rating scale for feedback alongside thumbs up/down, preparing for more precise model fine-tuning and improving feedback quality.
22
+ - **ℹ️ Tool Descriptions on Hover**: Easily access tool descriptions by hovering over the message input, providing a smoother workflow with more context when utilizing tools.
23
 
24
  ### Fixed
25
 
26
+ - **🗑️ Graceful Handling of Deleted Users**: Resolved an issue where deleted users caused workspace items (models, knowledge, prompts, tools) to fail, ensuring reliable workspace loading.
27
+ - **🔑 API Key Creation**: Fixed an issue preventing users from creating new API keys, restoring secure and seamless API management.
28
+ - **🔗 HTTPS Proxy Fix**: Corrected HTTPS proxy issues affecting the '/api/v1/models/' endpoint, ensuring smoother, uninterrupted model management.
29
 
30
  ## [0.4.0] - 2024-11-19
31
 
README.md CHANGED
@@ -29,7 +29,7 @@ Open WebUI is an [extensible](https://github.com/open-webui/pipelines), feature-
29
 
30
  - 🤝 **Ollama/OpenAI API Integration**: Effortlessly integrate OpenAI-compatible APIs for versatile conversations alongside Ollama models. Customize the OpenAI API URL to link with **LMStudio, GroqCloud, Mistral, OpenRouter, and more**.
31
 
32
- - 🧩 **Pipelines, Open WebUI Plugin Support**: Seamlessly integrate custom logic and Python libraries into Open WebUI using [Pipelines Plugin Framework](https://github.com/open-webui/pipelines). Launch your Pipelines instance, set the OpenAI URL to the Pipelines URL, and explore endless possibilities. [Examples](https://github.com/open-webui/pipelines/tree/main/examples) include **Function Calling**, User **Rate Limiting** to control access, **Usage Monitoring** with tools like Langfuse, **Live Translation with LibreTranslate** for multilingual support, **Toxic Message Filtering** and much more.
33
 
34
  - 📱 **Responsive Design**: Enjoy a seamless experience across Desktop PC, Laptop, and Mobile devices.
35
 
@@ -57,6 +57,8 @@ Open WebUI is an [extensible](https://github.com/open-webui/pipelines), feature-
57
 
58
  - 🌐🌍 **Multilingual Support**: Experience Open WebUI in your preferred language with our internationalization (i18n) support. Join us in expanding our supported languages! We're actively seeking contributors!
59
 
 
 
60
  - 🌟 **Continuous Updates**: We are committed to improving Open WebUI with regular updates, fixes, and new features.
61
 
62
  Want to learn more about Open WebUI's features? Check out our [Open WebUI documentation](https://docs.openwebui.com/features) for a comprehensive overview!
 
29
 
30
  - 🤝 **Ollama/OpenAI API Integration**: Effortlessly integrate OpenAI-compatible APIs for versatile conversations alongside Ollama models. Customize the OpenAI API URL to link with **LMStudio, GroqCloud, Mistral, OpenRouter, and more**.
31
 
32
+ - 🛡️ **Granular Permissions and User Groups**: By allowing administrators to create detailed user roles and permissions, we ensure a secure user environment. This granularity not only enhances security but also allows for customized user experiences, fostering a sense of ownership and responsibility amongst users.
33
 
34
  - 📱 **Responsive Design**: Enjoy a seamless experience across Desktop PC, Laptop, and Mobile devices.
35
 
 
57
 
58
  - 🌐🌍 **Multilingual Support**: Experience Open WebUI in your preferred language with our internationalization (i18n) support. Join us in expanding our supported languages! We're actively seeking contributors!
59
 
60
+ - 🧩 **Pipelines, Open WebUI Plugin Support**: Seamlessly integrate custom logic and Python libraries into Open WebUI using [Pipelines Plugin Framework](https://github.com/open-webui/pipelines). Launch your Pipelines instance, set the OpenAI URL to the Pipelines URL, and explore endless possibilities. [Examples](https://github.com/open-webui/pipelines/tree/main/examples) include **Function Calling**, User **Rate Limiting** to control access, **Usage Monitoring** with tools like Langfuse, **Live Translation with LibreTranslate** for multilingual support, **Toxic Message Filtering** and much more.
61
+
62
  - 🌟 **Continuous Updates**: We are committed to improving Open WebUI with regular updates, fixes, and new features.
63
 
64
  Want to learn more about Open WebUI's features? Check out our [Open WebUI documentation](https://docs.openwebui.com/features) for a comprehensive overview!
backend/open_webui/apps/openai/main.py CHANGED
@@ -313,7 +313,9 @@ async def get_all_models_responses() -> list:
313
  prefix_id = api_config.get("prefix_id", None)
314
 
315
  if prefix_id:
316
- for model in response["data"]:
 
 
317
  model["id"] = f"{prefix_id}.{model['id']}"
318
 
319
  log.debug(f"get_all_models:responses() {responses}")
 
313
  prefix_id = api_config.get("prefix_id", None)
314
 
315
  if prefix_id:
316
+ for model in (
317
+ response if isinstance(response, list) else response.get("data", [])
318
+ ):
319
  model["id"] = f"{prefix_id}.{model['id']}"
320
 
321
  log.debug(f"get_all_models:responses() {responses}")
backend/open_webui/apps/retrieval/loaders/youtube.py ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from typing import Any, Dict, Generator, List, Optional, Sequence, Union
2
+ from urllib.parse import parse_qs, urlparse
3
+ from langchain_core.documents import Document
4
+
5
+
6
+ ALLOWED_SCHEMES = {"http", "https"}
7
+ ALLOWED_NETLOCS = {
8
+ "youtu.be",
9
+ "m.youtube.com",
10
+ "youtube.com",
11
+ "www.youtube.com",
12
+ "www.youtube-nocookie.com",
13
+ "vid.plus",
14
+ }
15
+
16
+
17
+ def _parse_video_id(url: str) -> Optional[str]:
18
+ """Parse a YouTube URL and return the video ID if valid, otherwise None."""
19
+ parsed_url = urlparse(url)
20
+
21
+ if parsed_url.scheme not in ALLOWED_SCHEMES:
22
+ return None
23
+
24
+ if parsed_url.netloc not in ALLOWED_NETLOCS:
25
+ return None
26
+
27
+ path = parsed_url.path
28
+
29
+ if path.endswith("/watch"):
30
+ query = parsed_url.query
31
+ parsed_query = parse_qs(query)
32
+ if "v" in parsed_query:
33
+ ids = parsed_query["v"]
34
+ video_id = ids if isinstance(ids, str) else ids[0]
35
+ else:
36
+ return None
37
+ else:
38
+ path = parsed_url.path.lstrip("/")
39
+ video_id = path.split("/")[-1]
40
+
41
+ if len(video_id) != 11: # Video IDs are 11 characters long
42
+ return None
43
+
44
+ return video_id
45
+
46
+
47
+ class YoutubeLoader:
48
+ """Load `YouTube` video transcripts."""
49
+
50
+ def __init__(
51
+ self,
52
+ video_id: str,
53
+ language: Union[str, Sequence[str]] = "en",
54
+ ):
55
+ """Initialize with YouTube video ID."""
56
+ _video_id = _parse_video_id(video_id)
57
+ self.video_id = _video_id if _video_id is not None else video_id
58
+ self._metadata = {"source": video_id}
59
+ self.language = language
60
+ if isinstance(language, str):
61
+ self.language = [language]
62
+ else:
63
+ self.language = language
64
+
65
+ def load(self) -> List[Document]:
66
+ """Load YouTube transcripts into `Document` objects."""
67
+ try:
68
+ from youtube_transcript_api import (
69
+ NoTranscriptFound,
70
+ TranscriptsDisabled,
71
+ YouTubeTranscriptApi,
72
+ )
73
+ except ImportError:
74
+ raise ImportError(
75
+ 'Could not import "youtube_transcript_api" Python package. '
76
+ "Please install it with `pip install youtube-transcript-api`."
77
+ )
78
+
79
+ try:
80
+ transcript_list = YouTubeTranscriptApi.list_transcripts(self.video_id)
81
+ except Exception as e:
82
+ print(e)
83
+ return []
84
+
85
+ try:
86
+ transcript = transcript_list.find_transcript(self.language)
87
+ except NoTranscriptFound:
88
+ transcript = transcript_list.find_transcript(["en"])
89
+
90
+ transcript_pieces: List[Dict[str, Any]] = transcript.fetch()
91
+
92
+ transcript = " ".join(
93
+ map(
94
+ lambda transcript_piece: transcript_piece["text"].strip(" "),
95
+ transcript_pieces,
96
+ )
97
+ )
98
+ return [Document(page_content=transcript, metadata=self._metadata)]
backend/open_webui/apps/retrieval/main.py CHANGED
@@ -23,6 +23,7 @@ from open_webui.apps.retrieval.vector.connector import VECTOR_DB_CLIENT
23
 
24
  # Document loaders
25
  from open_webui.apps.retrieval.loaders.main import Loader
 
26
 
27
  # Web search engines
28
  from open_webui.apps.retrieval.web.main import SearchResult
@@ -120,9 +121,6 @@ from open_webui.utils.misc import (
120
  from open_webui.utils.utils import get_admin_user, get_verified_user
121
 
122
  from langchain.text_splitter import RecursiveCharacterTextSplitter, TokenTextSplitter
123
- from langchain_community.document_loaders import (
124
- YoutubeLoader,
125
- )
126
  from langchain_core.documents import Document
127
 
128
 
@@ -1059,12 +1057,10 @@ def process_youtube_video(form_data: ProcessUrlForm, user=Depends(get_verified_u
1059
  if not collection_name:
1060
  collection_name = calculate_sha256_string(form_data.url)[:63]
1061
 
1062
- loader = YoutubeLoader.from_youtube_url(
1063
- form_data.url,
1064
- add_video_info=False,
1065
- language=app.state.config.YOUTUBE_LOADER_LANGUAGE,
1066
- translation=app.state.YOUTUBE_LOADER_TRANSLATION,
1067
  )
 
1068
  docs = loader.load()
1069
  content = " ".join([doc.page_content for doc in docs])
1070
  log.debug(f"text_content: {content}")
 
23
 
24
  # Document loaders
25
  from open_webui.apps.retrieval.loaders.main import Loader
26
+ from open_webui.apps.retrieval.loaders.youtube import YoutubeLoader
27
 
28
  # Web search engines
29
  from open_webui.apps.retrieval.web.main import SearchResult
 
121
  from open_webui.utils.utils import get_admin_user, get_verified_user
122
 
123
  from langchain.text_splitter import RecursiveCharacterTextSplitter, TokenTextSplitter
 
 
 
124
  from langchain_core.documents import Document
125
 
126
 
 
1057
  if not collection_name:
1058
  collection_name = calculate_sha256_string(form_data.url)[:63]
1059
 
1060
+ loader = YoutubeLoader(
1061
+ form_data.url, language=app.state.config.YOUTUBE_LOADER_LANGUAGE
 
 
 
1062
  )
1063
+
1064
  docs = loader.load()
1065
  content = " ".join([doc.page_content for doc in docs])
1066
  log.debug(f"text_content: {content}")
backend/open_webui/apps/retrieval/vector/dbs/opensearch.py CHANGED
@@ -1,7 +1,7 @@
1
  from opensearchpy import OpenSearch
2
  from typing import Optional
3
 
4
- from open_webui.apps.rag.vector.main import VectorItem, SearchResult, GetResult
5
  from open_webui.config import (
6
  OPENSEARCH_URI,
7
  OPENSEARCH_SSL,
 
1
  from opensearchpy import OpenSearch
2
  from typing import Optional
3
 
4
+ from open_webui.apps.retrieval.vector.main import VectorItem, SearchResult, GetResult
5
  from open_webui.config import (
6
  OPENSEARCH_URI,
7
  OPENSEARCH_SSL,
backend/open_webui/apps/webui/routers/knowledge.py CHANGED
@@ -43,6 +43,7 @@ async def get_knowledge(user=Depends(get_verified_user)):
43
  knowledge_bases = Knowledges.get_knowledge_bases_by_user_id(user.id, "read")
44
 
45
  # Get files for each knowledge base
 
46
  for knowledge_base in knowledge_bases:
47
  files = []
48
  if knowledge_base.data:
@@ -70,12 +71,14 @@ async def get_knowledge(user=Depends(get_verified_user)):
70
 
71
  files = Files.get_file_metadatas_by_ids(file_ids)
72
 
73
- knowledge_base = KnowledgeResponse(
74
- **knowledge_base.model_dump(),
75
- files=files,
 
 
76
  )
77
 
78
- return knowledge_bases
79
 
80
 
81
  @router.get("/list", response_model=list[KnowledgeUserResponse])
@@ -88,6 +91,7 @@ async def get_knowledge_list(user=Depends(get_verified_user)):
88
  knowledge_bases = Knowledges.get_knowledge_bases_by_user_id(user.id, "write")
89
 
90
  # Get files for each knowledge base
 
91
  for knowledge_base in knowledge_bases:
92
  files = []
93
  if knowledge_base.data:
@@ -115,12 +119,13 @@ async def get_knowledge_list(user=Depends(get_verified_user)):
115
 
116
  files = Files.get_file_metadatas_by_ids(file_ids)
117
 
118
- knowledge_base = KnowledgeResponse(
119
- **knowledge_base.model_dump(),
120
- files=files,
 
 
121
  )
122
-
123
- return knowledge_bases
124
 
125
 
126
  ############################
 
43
  knowledge_bases = Knowledges.get_knowledge_bases_by_user_id(user.id, "read")
44
 
45
  # Get files for each knowledge base
46
+ knowledge_with_files = []
47
  for knowledge_base in knowledge_bases:
48
  files = []
49
  if knowledge_base.data:
 
71
 
72
  files = Files.get_file_metadatas_by_ids(file_ids)
73
 
74
+ knowledge_with_files.append(
75
+ KnowledgeUserResponse(
76
+ **knowledge_base.model_dump(),
77
+ files=files,
78
+ )
79
  )
80
 
81
+ return knowledge_with_files
82
 
83
 
84
  @router.get("/list", response_model=list[KnowledgeUserResponse])
 
91
  knowledge_bases = Knowledges.get_knowledge_bases_by_user_id(user.id, "write")
92
 
93
  # Get files for each knowledge base
94
+ knowledge_with_files = []
95
  for knowledge_base in knowledge_bases:
96
  files = []
97
  if knowledge_base.data:
 
119
 
120
  files = Files.get_file_metadatas_by_ids(file_ids)
121
 
122
+ knowledge_with_files.append(
123
+ KnowledgeUserResponse(
124
+ **knowledge_base.model_dump(),
125
+ files=files,
126
+ )
127
  )
128
+ return knowledge_with_files
 
129
 
130
 
131
  ############################
backend/open_webui/apps/webui/routers/models.py CHANGED
@@ -83,7 +83,8 @@ async def create_new_model(
83
  ###########################
84
 
85
 
86
- @router.get("/id/{id}", response_model=Optional[ModelResponse])
 
87
  async def get_model_by_id(id: str, user=Depends(get_verified_user)):
88
  model = Models.get_model_by_id(id)
89
  if model:
@@ -105,7 +106,7 @@ async def get_model_by_id(id: str, user=Depends(get_verified_user)):
105
  ############################
106
 
107
 
108
- @router.post("/id/{id}/toggle", response_model=Optional[ModelResponse])
109
  async def toggle_model_by_id(id: str, user=Depends(get_verified_user)):
110
  model = Models.get_model_by_id(id)
111
  if model:
@@ -140,7 +141,7 @@ async def toggle_model_by_id(id: str, user=Depends(get_verified_user)):
140
  ############################
141
 
142
 
143
- @router.post("/id/{id}/update", response_model=Optional[ModelModel])
144
  async def update_model_by_id(
145
  id: str,
146
  form_data: ModelForm,
@@ -163,7 +164,7 @@ async def update_model_by_id(
163
  ############################
164
 
165
 
166
- @router.delete("/id/{id}/delete", response_model=bool)
167
  async def delete_model_by_id(id: str, user=Depends(get_verified_user)):
168
  model = Models.get_model_by_id(id)
169
  if not model:
 
83
  ###########################
84
 
85
 
86
+ # Note: We're not using the typical url path param here, but instead using a query parameter to allow '/' in the id
87
+ @router.get("/model", response_model=Optional[ModelResponse])
88
  async def get_model_by_id(id: str, user=Depends(get_verified_user)):
89
  model = Models.get_model_by_id(id)
90
  if model:
 
106
  ############################
107
 
108
 
109
+ @router.post("/model/toggle", response_model=Optional[ModelResponse])
110
  async def toggle_model_by_id(id: str, user=Depends(get_verified_user)):
111
  model = Models.get_model_by_id(id)
112
  if model:
 
141
  ############################
142
 
143
 
144
+ @router.post("/model/update", response_model=Optional[ModelModel])
145
  async def update_model_by_id(
146
  id: str,
147
  form_data: ModelForm,
 
164
  ############################
165
 
166
 
167
+ @router.delete("/model/delete", response_model=bool)
168
  async def delete_model_by_id(id: str, user=Depends(get_verified_user)):
169
  model = Models.get_model_by_id(id)
170
  if not model:
backend/open_webui/main.py CHANGED
@@ -855,6 +855,11 @@ class PipelineMiddleware(BaseHTTPMiddleware):
855
  status_code=status.HTTP_401_UNAUTHORIZED,
856
  content={"detail": "Not authenticated"},
857
  )
 
 
 
 
 
858
 
859
  model_list = await get_all_models()
860
  models = {model["id"]: model for model in model_list}
 
855
  status_code=status.HTTP_401_UNAUTHORIZED,
856
  content={"detail": "Not authenticated"},
857
  )
858
+ except HTTPException as e:
859
+ return JSONResponse(
860
+ status_code=e.status_code,
861
+ content={"detail": e.detail},
862
+ )
863
 
864
  model_list = await get_all_models()
865
  models = {model["id"]: model for model in model_list}
backend/requirements.txt CHANGED
@@ -37,8 +37,8 @@ anthropic
37
  google-generativeai==0.7.2
38
  tiktoken
39
 
40
- langchain==0.3.5
41
- langchain-community==0.3.3
42
  langchain-chroma==0.1.4
43
 
44
  fake-useragent==1.5.1
@@ -82,7 +82,7 @@ authlib==1.3.2
82
 
83
  black==24.8.0
84
  langfuse==2.44.0
85
- youtube-transcript-api==0.6.2
86
  pytube==15.0.0
87
 
88
  extract_msg
 
37
  google-generativeai==0.7.2
38
  tiktoken
39
 
40
+ langchain==0.3.7
41
+ langchain-community==0.3.7
42
  langchain-chroma==0.1.4
43
 
44
  fake-useragent==1.5.1
 
82
 
83
  black==24.8.0
84
  langfuse==2.44.0
85
+ youtube-transcript-api==0.6.3
86
  pytube==15.0.0
87
 
88
  extract_msg
package-lock.json CHANGED
@@ -1,12 +1,12 @@
1
  {
2
  "name": "open-webui",
3
- "version": "0.4.1",
4
  "lockfileVersion": 3,
5
  "requires": true,
6
  "packages": {
7
  "": {
8
  "name": "open-webui",
9
- "version": "0.4.1",
10
  "dependencies": {
11
  "@codemirror/lang-javascript": "^6.2.2",
12
  "@codemirror/lang-python": "^6.1.6",
 
1
  {
2
  "name": "open-webui",
3
+ "version": "0.4.2",
4
  "lockfileVersion": 3,
5
  "requires": true,
6
  "packages": {
7
  "": {
8
  "name": "open-webui",
9
+ "version": "0.4.2",
10
  "dependencies": {
11
  "@codemirror/lang-javascript": "^6.2.2",
12
  "@codemirror/lang-python": "^6.1.6",
package.json CHANGED
@@ -1,6 +1,6 @@
1
  {
2
  "name": "open-webui",
3
- "version": "0.4.1",
4
  "private": true,
5
  "scripts": {
6
  "dev": "npm run pyodide:fetch && vite dev --host",
 
1
  {
2
  "name": "open-webui",
3
+ "version": "0.4.2",
4
  "private": true,
5
  "scripts": {
6
  "dev": "npm run pyodide:fetch && vite dev --host",
pyproject.toml CHANGED
@@ -44,8 +44,8 @@ dependencies = [
44
  "google-generativeai==0.7.2",
45
  "tiktoken",
46
 
47
- "langchain==0.3.5",
48
- "langchain-community==0.3.3",
49
  "langchain-chroma==0.1.4",
50
 
51
  "fake-useragent==1.5.1",
@@ -88,7 +88,7 @@ dependencies = [
88
 
89
  "black==24.8.0",
90
  "langfuse==2.44.0",
91
- "youtube-transcript-api==0.6.2",
92
  "pytube==15.0.0",
93
 
94
  "extract_msg",
 
44
  "google-generativeai==0.7.2",
45
  "tiktoken",
46
 
47
+ "langchain==0.3.7",
48
+ "langchain-community==0.3.7",
49
  "langchain-chroma==0.1.4",
50
 
51
  "fake-useragent==1.5.1",
 
88
 
89
  "black==24.8.0",
90
  "langfuse==2.44.0",
91
+ "youtube-transcript-api==0.6.3",
92
  "pytube==15.0.0",
93
 
94
  "extract_msg",
src/lib/apis/models/index.ts CHANGED
@@ -97,7 +97,7 @@ export const getModelById = async (token: string, id: string) => {
97
  const searchParams = new URLSearchParams();
98
  searchParams.append('id', id);
99
 
100
- const res = await fetch(`${WEBUI_API_BASE_URL}/models/id/${id}`, {
101
  method: 'GET',
102
  headers: {
103
  Accept: 'application/json',
@@ -132,7 +132,7 @@ export const toggleModelById = async (token: string, id: string) => {
132
  const searchParams = new URLSearchParams();
133
  searchParams.append('id', id);
134
 
135
- const res = await fetch(`${WEBUI_API_BASE_URL}/models/id/${id}/toggle`, {
136
  method: 'POST',
137
  headers: {
138
  Accept: 'application/json',
@@ -167,7 +167,7 @@ export const updateModelById = async (token: string, id: string, model: object)
167
  const searchParams = new URLSearchParams();
168
  searchParams.append('id', id);
169
 
170
- const res = await fetch(`${WEBUI_API_BASE_URL}/models/id/${id}/update`, {
171
  method: 'POST',
172
  headers: {
173
  Accept: 'application/json',
@@ -203,7 +203,7 @@ export const deleteModelById = async (token: string, id: string) => {
203
  const searchParams = new URLSearchParams();
204
  searchParams.append('id', id);
205
 
206
- const res = await fetch(`${WEBUI_API_BASE_URL}/models/id/${id}/delete`, {
207
  method: 'DELETE',
208
  headers: {
209
  Accept: 'application/json',
 
97
  const searchParams = new URLSearchParams();
98
  searchParams.append('id', id);
99
 
100
+ const res = await fetch(`${WEBUI_API_BASE_URL}/models/model?${searchParams.toString()}`, {
101
  method: 'GET',
102
  headers: {
103
  Accept: 'application/json',
 
132
  const searchParams = new URLSearchParams();
133
  searchParams.append('id', id);
134
 
135
+ const res = await fetch(`${WEBUI_API_BASE_URL}/models/model/toggle?${searchParams.toString()}`, {
136
  method: 'POST',
137
  headers: {
138
  Accept: 'application/json',
 
167
  const searchParams = new URLSearchParams();
168
  searchParams.append('id', id);
169
 
170
+ const res = await fetch(`${WEBUI_API_BASE_URL}/models/model/update?${searchParams.toString()}`, {
171
  method: 'POST',
172
  headers: {
173
  Accept: 'application/json',
 
203
  const searchParams = new URLSearchParams();
204
  searchParams.append('id', id);
205
 
206
+ const res = await fetch(`${WEBUI_API_BASE_URL}/models/model/delete?${searchParams.toString()}`, {
207
  method: 'DELETE',
208
  headers: {
209
  Accept: 'application/json',
src/lib/components/admin/Settings/Evaluations/ArenaModelModal.svelte CHANGED
@@ -102,7 +102,7 @@
102
  description = model.meta.description;
103
  modelIds = model.meta.model_ids || [];
104
  filterMode = model.meta?.filter_mode ?? 'include';
105
- accessControl = model.meta?.access_control ?? {};
106
  }
107
  };
108
 
 
102
  description = model.meta.description;
103
  modelIds = model.meta.model_ids || [];
104
  filterMode = model.meta?.filter_mode ?? 'include';
105
+ accessControl = 'access_control' in model.meta ? model.meta.access_control : {};
106
  }
107
  };
108
 
src/lib/components/chat/Messages/RateComment.svelte CHANGED
@@ -38,6 +38,7 @@
38
  let selectedReason = null;
39
  let comment = '';
40
 
 
41
  let selectedModel = null;
42
 
43
  $: if (message?.annotation?.rating === 1) {
@@ -56,6 +57,7 @@
56
  tags = (message?.annotation?.tags ?? []).map((tag) => ({
57
  name: tag
58
  }));
 
59
  };
60
 
61
  onMount(() => {
@@ -79,7 +81,10 @@
79
  dispatch('save', {
80
  reason: selectedReason,
81
  comment: comment,
82
- tags: tags.map((tag) => tag.name)
 
 
 
83
  });
84
 
85
  toast.success($i18n.t('Thanks for your feedback!'));
@@ -100,7 +105,9 @@
100
  id="message-feedback-{message.id}"
101
  >
102
  <div class="flex justify-between items-center">
103
- <div class=" text-sm">{$i18n.t('Tell us more:')}</div>
 
 
104
 
105
  <button
106
  on:click={() => {
@@ -120,53 +127,89 @@
120
  </button>
121
  </div>
122
 
123
- {#if reasons.length > 0}
124
- <div class="flex flex-wrap gap-1.5 text-sm mt-2.5">
125
- {#each reasons as reason}
126
- <button
127
- class="px-3 py-0.5 border border-gray-50 dark:border-gray-850 hover:bg-gray-100 dark:hover:bg-gray-850 {selectedReason ===
128
- reason
129
- ? 'bg-gray-200 dark:bg-gray-800'
130
- : ''} transition rounded-lg"
131
- on:click={() => {
132
- selectedReason = reason;
133
- }}
134
- >
135
- {#if reason === 'accurate_information'}
136
- {$i18n.t('Accurate information')}
137
- {:else if reason === 'followed_instructions_perfectly'}
138
- {$i18n.t('Followed instructions perfectly')}
139
- {:else if reason === 'showcased_creativity'}
140
- {$i18n.t('Showcased creativity')}
141
- {:else if reason === 'positive_attitude'}
142
- {$i18n.t('Positive attitude')}
143
- {:else if reason === 'attention_to_detail'}
144
- {$i18n.t('Attention to detail')}
145
- {:else if reason === 'thorough_explanation'}
146
- {$i18n.t('Thorough explanation')}
147
- {:else if reason === 'dont_like_the_style'}
148
- {$i18n.t("Don't like the style")}
149
- {:else if reason === 'too_verbose'}
150
- {$i18n.t('Too verbose')}
151
- {:else if reason === 'not_helpful'}
152
- {$i18n.t('Not helpful')}
153
- {:else if reason === 'not_factually_correct'}
154
- {$i18n.t('Not factually correct')}
155
- {:else if reason === 'didnt_fully_follow_instructions'}
156
- {$i18n.t("Didn't fully follow instructions")}
157
- {:else if reason === 'refused_when_it_shouldnt_have'}
158
- {$i18n.t("Refused when it shouldn't have")}
159
- {:else if reason === 'being_lazy'}
160
- {$i18n.t('Being lazy')}
161
- {:else if reason === 'other'}
162
- {$i18n.t('Other')}
163
- {:else}
164
- {reason}
165
- {/if}
166
- </button>
167
- {/each}
168
  </div>
169
- {/if}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
170
 
171
  <div class="mt-2">
172
  <textarea
@@ -195,7 +238,7 @@
195
  </div>
196
 
197
  <button
198
- class=" bg-emerald-700 hover:bg-emerald-800 transition text-white text-sm font-medium rounded-xl px-3.5 py-1.5"
199
  on:click={() => {
200
  saveHandler();
201
  }}
 
38
  let selectedReason = null;
39
  let comment = '';
40
 
41
+ let detailedRating = null;
42
  let selectedModel = null;
43
 
44
  $: if (message?.annotation?.rating === 1) {
 
57
  tags = (message?.annotation?.tags ?? []).map((tag) => ({
58
  name: tag
59
  }));
60
+ detailedRating = message?.annotation?.details?.rating ?? null;
61
  };
62
 
63
  onMount(() => {
 
81
  dispatch('save', {
82
  reason: selectedReason,
83
  comment: comment,
84
+ tags: tags.map((tag) => tag.name),
85
+ details: {
86
+ rating: detailedRating
87
+ }
88
  });
89
 
90
  toast.success($i18n.t('Thanks for your feedback!'));
 
105
  id="message-feedback-{message.id}"
106
  >
107
  <div class="flex justify-between items-center">
108
+ <div class="text-sm font-medium">{$i18n.t('How would you rate this response?')}</div>
109
+
110
+ <!-- <div class=" text-sm">{$i18n.t('Tell us more:')}</div> -->
111
 
112
  <button
113
  on:click={() => {
 
127
  </button>
128
  </div>
129
 
130
+ <div class="w-full flex justify-center">
131
+ <div class=" relative w-fit">
132
+ <div class="mt-1.5 w-fit flex gap-1 pb-5">
133
+ <!-- 1-10 scale -->
134
+ {#each Array.from({ length: 10 }).map((_, i) => i + 1) as rating}
135
+ <button
136
+ class="size-7 text-sm border border-gray-50 dark:border-gray-850 hover:bg-gray-50 dark:hover:bg-gray-850 {detailedRating ===
137
+ rating
138
+ ? 'bg-gray-100 dark:bg-gray-800'
139
+ : ''} transition rounded-full disabled:cursor-not-allowed disabled:bg-white disabled:dark:bg-gray-900"
140
+ on:click={() => {
141
+ detailedRating = rating;
142
+ }}
143
+ disabled={message?.annotation?.rating === -1 ? rating > 5 : rating < 6}
144
+ >
145
+ {rating}
146
+ </button>
147
+ {/each}
148
+ </div>
149
+
150
+ <div class="absolute bottom-0 left-0 right-0 flex justify-between text-xs">
151
+ <div>
152
+ 1 - {$i18n.t('Awful')}
153
+ </div>
154
+
155
+ <div>
156
+ 10 - {$i18n.t('Amazing')}
157
+ </div>
158
+ </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
159
  </div>
160
+ </div>
161
+
162
+ <div>
163
+ {#if reasons.length > 0}
164
+ <div class="text-sm mt-1.5 font-medium">{$i18n.t('Why?')}</div>
165
+
166
+ <div class="flex flex-wrap gap-1.5 text-sm mt-1.5">
167
+ {#each reasons as reason}
168
+ <button
169
+ class="px-3 py-0.5 border border-gray-50 dark:border-gray-850 hover:bg-gray-50 dark:hover:bg-gray-850 {selectedReason ===
170
+ reason
171
+ ? 'bg-gray-100 dark:bg-gray-800'
172
+ : ''} transition rounded-xl"
173
+ on:click={() => {
174
+ selectedReason = reason;
175
+ }}
176
+ >
177
+ {#if reason === 'accurate_information'}
178
+ {$i18n.t('Accurate information')}
179
+ {:else if reason === 'followed_instructions_perfectly'}
180
+ {$i18n.t('Followed instructions perfectly')}
181
+ {:else if reason === 'showcased_creativity'}
182
+ {$i18n.t('Showcased creativity')}
183
+ {:else if reason === 'positive_attitude'}
184
+ {$i18n.t('Positive attitude')}
185
+ {:else if reason === 'attention_to_detail'}
186
+ {$i18n.t('Attention to detail')}
187
+ {:else if reason === 'thorough_explanation'}
188
+ {$i18n.t('Thorough explanation')}
189
+ {:else if reason === 'dont_like_the_style'}
190
+ {$i18n.t("Don't like the style")}
191
+ {:else if reason === 'too_verbose'}
192
+ {$i18n.t('Too verbose')}
193
+ {:else if reason === 'not_helpful'}
194
+ {$i18n.t('Not helpful')}
195
+ {:else if reason === 'not_factually_correct'}
196
+ {$i18n.t('Not factually correct')}
197
+ {:else if reason === 'didnt_fully_follow_instructions'}
198
+ {$i18n.t("Didn't fully follow instructions")}
199
+ {:else if reason === 'refused_when_it_shouldnt_have'}
200
+ {$i18n.t("Refused when it shouldn't have")}
201
+ {:else if reason === 'being_lazy'}
202
+ {$i18n.t('Being lazy')}
203
+ {:else if reason === 'other'}
204
+ {$i18n.t('Other')}
205
+ {:else}
206
+ {reason}
207
+ {/if}
208
+ </button>
209
+ {/each}
210
+ </div>
211
+ {/if}
212
+ </div>
213
 
214
  <div class="mt-2">
215
  <textarea
 
238
  </div>
239
 
240
  <button
241
+ class="px-3.5 py-1.5 text-sm font-medium bg-black hover:bg-gray-900 text-white dark:bg-white dark:text-black dark:hover:bg-gray-100 transition rounded-full"
242
  on:click={() => {
243
  saveHandler();
244
  }}
src/lib/components/chat/Messages/ResponseMessage.svelte CHANGED
@@ -340,19 +340,16 @@
340
 
341
  let feedbackLoading = false;
342
 
343
- const feedbackHandler = async (
344
- rating: number | null = null,
345
- annotation: object | null = null
346
- ) => {
347
  feedbackLoading = true;
348
- console.log('Feedback', rating, annotation);
349
 
350
  const updatedMessage = {
351
  ...message,
352
  annotation: {
353
  ...(message?.annotation ?? {}),
354
  ...(rating !== null ? { rating: rating } : {}),
355
- ...(annotation ? annotation : {})
356
  }
357
  };
358
 
@@ -429,7 +426,7 @@
429
 
430
  await tick();
431
 
432
- if (!annotation) {
433
  showRateComment = true;
434
 
435
  if (!updatedMessage.annotation?.tags) {
@@ -1194,9 +1191,7 @@
1194
  bind:show={showRateComment}
1195
  on:save={async (e) => {
1196
  await feedbackHandler(null, {
1197
- tags: e.detail.tags,
1198
- comment: e.detail.comment,
1199
- reason: e.detail.reason
1200
  });
1201
  }}
1202
  />
 
340
 
341
  let feedbackLoading = false;
342
 
343
+ const feedbackHandler = async (rating: number | null = null, details: object | null = null) => {
 
 
 
344
  feedbackLoading = true;
345
+ console.log('Feedback', rating, details);
346
 
347
  const updatedMessage = {
348
  ...message,
349
  annotation: {
350
  ...(message?.annotation ?? {}),
351
  ...(rating !== null ? { rating: rating } : {}),
352
+ ...(details ? details : {})
353
  }
354
  };
355
 
 
426
 
427
  await tick();
428
 
429
+ if (!details) {
430
  showRateComment = true;
431
 
432
  if (!updatedMessage.annotation?.tags) {
 
1191
  bind:show={showRateComment}
1192
  on:save={async (e) => {
1193
  await feedbackHandler(null, {
1194
+ ...e.detail
 
 
1195
  });
1196
  }}
1197
  />
src/lib/components/workspace/Models/ModelEditor.svelte CHANGED
@@ -210,9 +210,6 @@
210
  }
211
  });
212
  capabilities = { ...capabilities, ...(model?.meta?.capabilities ?? {}) };
213
- if (model?.owned_by === 'openai') {
214
- capabilities.usage = false;
215
- }
216
 
217
  if ('access_control' in model) {
218
  accessControl = model.access_control;
 
210
  }
211
  });
212
  capabilities = { ...capabilities, ...(model?.meta?.capabilities ?? {}) };
 
 
 
213
 
214
  if ('access_control' in model) {
215
  accessControl = model.access_control;
src/lib/i18n/locales/ar-BH/translation.json CHANGED
@@ -59,6 +59,7 @@
59
  "Allow Voice Interruption in Call": "",
60
  "Already have an account?": "هل تملك حساب ؟",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 
62
  "an assistant": "مساعد",
63
  "and": "و",
64
  "and {{COUNT}} more": "",
@@ -95,6 +96,7 @@
95
  "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 الرابط مطلوب",
96
  "Available list": "",
97
  "available!": "متاح",
 
98
  "Azure AI Speech": "",
99
  "Azure Region": "",
100
  "Back": "خلف",
@@ -450,6 +452,7 @@
450
  "Hide": "أخفاء",
451
  "Host": "",
452
  "How can I help you today?": "كيف استطيع مساعدتك اليوم؟",
 
453
  "Hybrid Search": "البحث الهجين",
454
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
455
  "ID": "",
@@ -982,6 +985,7 @@
982
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
983
  "wherever you are": "",
984
  "Whisper (Local)": "",
 
985
  "Widescreen Mode": "",
986
  "Won": "",
987
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 
59
  "Allow Voice Interruption in Call": "",
60
  "Already have an account?": "هل تملك حساب ؟",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
62
+ "Amazing": "",
63
  "an assistant": "مساعد",
64
  "and": "و",
65
  "and {{COUNT}} more": "",
 
96
  "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 الرابط مطلوب",
97
  "Available list": "",
98
  "available!": "متاح",
99
+ "Awful": "",
100
  "Azure AI Speech": "",
101
  "Azure Region": "",
102
  "Back": "خلف",
 
452
  "Hide": "أخفاء",
453
  "Host": "",
454
  "How can I help you today?": "كيف استطيع مساعدتك اليوم؟",
455
+ "How would you rate this response?": "",
456
  "Hybrid Search": "البحث الهجين",
457
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
458
  "ID": "",
 
985
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
986
  "wherever you are": "",
987
  "Whisper (Local)": "",
988
+ "Why?": "",
989
  "Widescreen Mode": "",
990
  "Won": "",
991
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
src/lib/i18n/locales/bg-BG/translation.json CHANGED
@@ -59,6 +59,7 @@
59
  "Allow Voice Interruption in Call": "",
60
  "Already have an account?": "Вече имате акаунт? ",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 
62
  "an assistant": "асистент",
63
  "and": "и",
64
  "and {{COUNT}} more": "",
@@ -95,6 +96,7 @@
95
  "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Базов URL е задължителен.",
96
  "Available list": "",
97
  "available!": "наличен!",
 
98
  "Azure AI Speech": "",
99
  "Azure Region": "",
100
  "Back": "Назад",
@@ -450,6 +452,7 @@
450
  "Hide": "Скрий",
451
  "Host": "",
452
  "How can I help you today?": "Как мога да ви помогна днес?",
 
453
  "Hybrid Search": "Hybrid Search",
454
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
455
  "ID": "",
@@ -978,6 +981,7 @@
978
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
979
  "wherever you are": "",
980
  "Whisper (Local)": "",
 
981
  "Widescreen Mode": "",
982
  "Won": "",
983
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 
59
  "Allow Voice Interruption in Call": "",
60
  "Already have an account?": "Вече имате акаунт? ",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
62
+ "Amazing": "",
63
  "an assistant": "асистент",
64
  "and": "и",
65
  "and {{COUNT}} more": "",
 
96
  "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Базов URL е задължителен.",
97
  "Available list": "",
98
  "available!": "наличен!",
99
+ "Awful": "",
100
  "Azure AI Speech": "",
101
  "Azure Region": "",
102
  "Back": "Назад",
 
452
  "Hide": "Скрий",
453
  "Host": "",
454
  "How can I help you today?": "Как мога да ви помогна днес?",
455
+ "How would you rate this response?": "",
456
  "Hybrid Search": "Hybrid Search",
457
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
458
  "ID": "",
 
981
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
982
  "wherever you are": "",
983
  "Whisper (Local)": "",
984
+ "Why?": "",
985
  "Widescreen Mode": "",
986
  "Won": "",
987
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
src/lib/i18n/locales/bn-BD/translation.json CHANGED
@@ -59,6 +59,7 @@
59
  "Allow Voice Interruption in Call": "",
60
  "Already have an account?": "আগে থেকেই একাউন্ট আছে?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 
62
  "an assistant": "একটা এসিস্ট্যান্ট",
63
  "and": "এবং",
64
  "and {{COUNT}} more": "",
@@ -95,6 +96,7 @@
95
  "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 বেজ ইউআরএল আবশ্যক",
96
  "Available list": "",
97
  "available!": "উপলব্ধ!",
 
98
  "Azure AI Speech": "",
99
  "Azure Region": "",
100
  "Back": "পেছনে",
@@ -450,6 +452,7 @@
450
  "Hide": "লুকান",
451
  "Host": "",
452
  "How can I help you today?": "আপনাকে আজ কিভাবে সাহায্য করতে পারি?",
 
453
  "Hybrid Search": "হাইব্রিড অনুসন্ধান",
454
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
455
  "ID": "",
@@ -978,6 +981,7 @@
978
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
979
  "wherever you are": "",
980
  "Whisper (Local)": "",
 
981
  "Widescreen Mode": "",
982
  "Won": "",
983
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 
59
  "Allow Voice Interruption in Call": "",
60
  "Already have an account?": "আগে থেকেই একাউন্ট আছে?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
62
+ "Amazing": "",
63
  "an assistant": "একটা এসিস্ট্যান্ট",
64
  "and": "এবং",
65
  "and {{COUNT}} more": "",
 
96
  "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 বেজ ইউআরএল আবশ্যক",
97
  "Available list": "",
98
  "available!": "উপলব্ধ!",
99
+ "Awful": "",
100
  "Azure AI Speech": "",
101
  "Azure Region": "",
102
  "Back": "পেছনে",
 
452
  "Hide": "লুকান",
453
  "Host": "",
454
  "How can I help you today?": "আপনাকে আজ কিভাবে সাহায্য করতে পারি?",
455
+ "How would you rate this response?": "",
456
  "Hybrid Search": "হাইব্রিড অনুসন্ধান",
457
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
458
  "ID": "",
 
981
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
982
  "wherever you are": "",
983
  "Whisper (Local)": "",
984
+ "Why?": "",
985
  "Widescreen Mode": "",
986
  "Won": "",
987
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
src/lib/i18n/locales/ca-ES/translation.json CHANGED
@@ -59,6 +59,7 @@
59
  "Allow Voice Interruption in Call": "Permetre la interrupció de la veu en una trucada",
60
  "Already have an account?": "Ja tens un compte?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Alternativa al top_p, i pretén garantir un equilibri de qualitat i varietat. El paràmetre p representa la probabilitat mínima que es consideri un token, en relació amb la probabilitat del token més probable. Per exemple, amb p=0,05 i el token més probable amb una probabilitat de 0,9, es filtren els logits amb un valor inferior a 0,045. (Per defecte: 0.0)",
 
62
  "an assistant": "un assistent",
63
  "and": "i",
64
  "and {{COUNT}} more": "i {{COUNT}} més",
@@ -95,6 +96,7 @@
95
  "AUTOMATIC1111 Base URL is required.": "Es requereix l'URL Base d'AUTOMATIC1111.",
96
  "Available list": "Llista de disponibles",
97
  "available!": "disponible!",
 
98
  "Azure AI Speech": "Azure AI Speech",
99
  "Azure Region": "Regió d'Azure",
100
  "Back": "Enrere",
@@ -450,6 +452,7 @@
450
  "Hide": "Amaga",
451
  "Host": "Servidor",
452
  "How can I help you today?": "Com et puc ajudar avui?",
 
453
  "Hybrid Search": "Cerca híbrida",
454
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Afirmo que he llegit i entenc les implicacions de la meva acció. Soc conscient dels riscos associats a l'execució de codi arbitrari i he verificat la fiabilitat de la font.",
455
  "ID": "ID",
@@ -979,6 +982,7 @@
979
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Quan està activat, el model respondrà a cada missatge de xat en temps real, generant una resposta tan bon punt l'usuari envia un missatge. Aquest mode és útil per a aplicacions de xat en directe, però pot afectar el rendiment en maquinari més lent.",
980
  "wherever you are": "allà on estiguis",
981
  "Whisper (Local)": "Whisper (local)",
 
982
  "Widescreen Mode": "Mode de pantalla ampla",
983
  "Won": "Ha guanyat",
984
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "Funciona juntament amb top-k. Un valor més alt (p. ex., 0,95) donarà lloc a un text més divers, mentre que un valor més baix (p. ex., 0,5) generarà un text més concentrat i conservador. (Per defecte: 0,9)",
 
59
  "Allow Voice Interruption in Call": "Permetre la interrupció de la veu en una trucada",
60
  "Already have an account?": "Ja tens un compte?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Alternativa al top_p, i pretén garantir un equilibri de qualitat i varietat. El paràmetre p representa la probabilitat mínima que es consideri un token, en relació amb la probabilitat del token més probable. Per exemple, amb p=0,05 i el token més probable amb una probabilitat de 0,9, es filtren els logits amb un valor inferior a 0,045. (Per defecte: 0.0)",
62
+ "Amazing": "",
63
  "an assistant": "un assistent",
64
  "and": "i",
65
  "and {{COUNT}} more": "i {{COUNT}} més",
 
96
  "AUTOMATIC1111 Base URL is required.": "Es requereix l'URL Base d'AUTOMATIC1111.",
97
  "Available list": "Llista de disponibles",
98
  "available!": "disponible!",
99
+ "Awful": "",
100
  "Azure AI Speech": "Azure AI Speech",
101
  "Azure Region": "Regió d'Azure",
102
  "Back": "Enrere",
 
452
  "Hide": "Amaga",
453
  "Host": "Servidor",
454
  "How can I help you today?": "Com et puc ajudar avui?",
455
+ "How would you rate this response?": "",
456
  "Hybrid Search": "Cerca híbrida",
457
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Afirmo que he llegit i entenc les implicacions de la meva acció. Soc conscient dels riscos associats a l'execució de codi arbitrari i he verificat la fiabilitat de la font.",
458
  "ID": "ID",
 
982
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Quan està activat, el model respondrà a cada missatge de xat en temps real, generant una resposta tan bon punt l'usuari envia un missatge. Aquest mode és útil per a aplicacions de xat en directe, però pot afectar el rendiment en maquinari més lent.",
983
  "wherever you are": "allà on estiguis",
984
  "Whisper (Local)": "Whisper (local)",
985
+ "Why?": "",
986
  "Widescreen Mode": "Mode de pantalla ampla",
987
  "Won": "Ha guanyat",
988
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "Funciona juntament amb top-k. Un valor més alt (p. ex., 0,95) donarà lloc a un text més divers, mentre que un valor més baix (p. ex., 0,5) generarà un text més concentrat i conservador. (Per defecte: 0,9)",
src/lib/i18n/locales/ceb-PH/translation.json CHANGED
@@ -59,6 +59,7 @@
59
  "Allow Voice Interruption in Call": "",
60
  "Already have an account?": "Naa na kay account ?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 
62
  "an assistant": "usa ka katabang",
63
  "and": "Ug",
64
  "and {{COUNT}} more": "",
@@ -95,6 +96,7 @@
95
  "AUTOMATIC1111 Base URL is required.": "Ang AUTOMATIC1111 base URL gikinahanglan.",
96
  "Available list": "",
97
  "available!": "magamit!",
 
98
  "Azure AI Speech": "",
99
  "Azure Region": "",
100
  "Back": "Balik",
@@ -450,6 +452,7 @@
450
  "Hide": "Tagoa",
451
  "Host": "",
452
  "How can I help you today?": "Unsaon nako pagtabang kanimo karon?",
 
453
  "Hybrid Search": "",
454
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
455
  "ID": "",
@@ -978,6 +981,7 @@
978
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
979
  "wherever you are": "",
980
  "Whisper (Local)": "",
 
981
  "Widescreen Mode": "",
982
  "Won": "",
983
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 
59
  "Allow Voice Interruption in Call": "",
60
  "Already have an account?": "Naa na kay account ?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
62
+ "Amazing": "",
63
  "an assistant": "usa ka katabang",
64
  "and": "Ug",
65
  "and {{COUNT}} more": "",
 
96
  "AUTOMATIC1111 Base URL is required.": "Ang AUTOMATIC1111 base URL gikinahanglan.",
97
  "Available list": "",
98
  "available!": "magamit!",
99
+ "Awful": "",
100
  "Azure AI Speech": "",
101
  "Azure Region": "",
102
  "Back": "Balik",
 
452
  "Hide": "Tagoa",
453
  "Host": "",
454
  "How can I help you today?": "Unsaon nako pagtabang kanimo karon?",
455
+ "How would you rate this response?": "",
456
  "Hybrid Search": "",
457
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
458
  "ID": "",
 
981
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
982
  "wherever you are": "",
983
  "Whisper (Local)": "",
984
+ "Why?": "",
985
  "Widescreen Mode": "",
986
  "Won": "",
987
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
src/lib/i18n/locales/cs-CZ/translation.json CHANGED
@@ -59,6 +59,7 @@
59
  "Allow Voice Interruption in Call": "Povolit přerušení hlasu při hovoru",
60
  "Already have an account?": "Už máte účet?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 
62
  "an assistant": "asistent",
63
  "and": "a",
64
  "and {{COUNT}} more": "a {{COUNT}} dalších",
@@ -95,6 +96,7 @@
95
  "AUTOMATIC1111 Base URL is required.": "Vyžaduje se základní URL pro AUTOMATIC1111.",
96
  "Available list": "Dostupný seznam",
97
  "available!": "k dispozici!",
 
98
  "Azure AI Speech": "Azure AI syntéza řeči",
99
  "Azure Region": "Azure oblast",
100
  "Back": "Zpět",
@@ -450,6 +452,7 @@
450
  "Hide": "Schovej",
451
  "Host": "",
452
  "How can I help you today?": "Jak vám mohu dnes pomoci?",
 
453
  "Hybrid Search": "Hybridní vyhledávání",
454
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Beru na vědomí, že jsem si přečetl a chápu důsledky svých činů. Jsem si vědom rizik spojených s vykonáváním libovolného kódu a ověřil jsem důvěryhodnost zdroje.",
455
  "ID": "ID",
@@ -980,6 +983,7 @@
980
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
981
  "wherever you are": "",
982
  "Whisper (Local)": "Whisper (Lokálně)",
 
983
  "Widescreen Mode": "Režim širokoúhlého zobrazení",
984
  "Won": "Vyhrál",
985
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 
59
  "Allow Voice Interruption in Call": "Povolit přerušení hlasu při hovoru",
60
  "Already have an account?": "Už máte účet?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
62
+ "Amazing": "",
63
  "an assistant": "asistent",
64
  "and": "a",
65
  "and {{COUNT}} more": "a {{COUNT}} dalších",
 
96
  "AUTOMATIC1111 Base URL is required.": "Vyžaduje se základní URL pro AUTOMATIC1111.",
97
  "Available list": "Dostupný seznam",
98
  "available!": "k dispozici!",
99
+ "Awful": "",
100
  "Azure AI Speech": "Azure AI syntéza řeči",
101
  "Azure Region": "Azure oblast",
102
  "Back": "Zpět",
 
452
  "Hide": "Schovej",
453
  "Host": "",
454
  "How can I help you today?": "Jak vám mohu dnes pomoci?",
455
+ "How would you rate this response?": "",
456
  "Hybrid Search": "Hybridní vyhledávání",
457
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Beru na vědomí, že jsem si přečetl a chápu důsledky svých činů. Jsem si vědom rizik spojených s vykonáváním libovolného kódu a ověřil jsem důvěryhodnost zdroje.",
458
  "ID": "ID",
 
983
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
984
  "wherever you are": "",
985
  "Whisper (Local)": "Whisper (Lokálně)",
986
+ "Why?": "",
987
  "Widescreen Mode": "Režim širokoúhlého zobrazení",
988
  "Won": "Vyhrál",
989
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
src/lib/i18n/locales/da-DK/translation.json CHANGED
@@ -59,6 +59,7 @@
59
  "Allow Voice Interruption in Call": "Tillad afbrydelser i stemme i opkald",
60
  "Already have an account?": "Har du allerede en profil?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 
62
  "an assistant": "en assistent",
63
  "and": "og",
64
  "and {{COUNT}} more": "",
@@ -95,6 +96,7 @@
95
  "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Base URL er påkrævet.",
96
  "Available list": "Tilgængelige lister",
97
  "available!": "tilgængelig!",
 
98
  "Azure AI Speech": "Azure AI Speech",
99
  "Azure Region": "Azure Region",
100
  "Back": "Tilbage",
@@ -450,6 +452,7 @@
450
  "Hide": "Skjul",
451
  "Host": "",
452
  "How can I help you today?": "Hvordan kan jeg hjælpe dig i dag?",
 
453
  "Hybrid Search": "Hybrid søgning",
454
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Jeg anerkender, at jeg har læst og forstået konsekvenserne af min handling. Jeg er opmærksom på de risici, der er forbundet med at udføre vilkårlig kode, og jeg har verificeret kildens troværdighed.",
455
  "ID": "",
@@ -978,6 +981,7 @@
978
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
979
  "wherever you are": "",
980
  "Whisper (Local)": "Whisper (lokal)",
 
981
  "Widescreen Mode": "Widescreen-tilstand",
982
  "Won": "",
983
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 
59
  "Allow Voice Interruption in Call": "Tillad afbrydelser i stemme i opkald",
60
  "Already have an account?": "Har du allerede en profil?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
62
+ "Amazing": "",
63
  "an assistant": "en assistent",
64
  "and": "og",
65
  "and {{COUNT}} more": "",
 
96
  "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Base URL er påkrævet.",
97
  "Available list": "Tilgængelige lister",
98
  "available!": "tilgængelig!",
99
+ "Awful": "",
100
  "Azure AI Speech": "Azure AI Speech",
101
  "Azure Region": "Azure Region",
102
  "Back": "Tilbage",
 
452
  "Hide": "Skjul",
453
  "Host": "",
454
  "How can I help you today?": "Hvordan kan jeg hjælpe dig i dag?",
455
+ "How would you rate this response?": "",
456
  "Hybrid Search": "Hybrid søgning",
457
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Jeg anerkender, at jeg har læst og forstået konsekvenserne af min handling. Jeg er opmærksom på de risici, der er forbundet med at udføre vilkårlig kode, og jeg har verificeret kildens troværdighed.",
458
  "ID": "",
 
981
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
982
  "wherever you are": "",
983
  "Whisper (Local)": "Whisper (lokal)",
984
+ "Why?": "",
985
  "Widescreen Mode": "Widescreen-tilstand",
986
  "Won": "",
987
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
src/lib/i18n/locales/de-DE/translation.json CHANGED
@@ -59,6 +59,7 @@
59
  "Allow Voice Interruption in Call": "Unterbrechung durch Stimme im Anruf zulassen",
60
  "Already have an account?": "Haben Sie bereits einen Account?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 
62
  "an assistant": "ein Assistent",
63
  "and": "und",
64
  "and {{COUNT}} more": "und {{COUNT}} mehr",
@@ -95,6 +96,7 @@
95
  "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111-Basis-URL ist erforderlich.",
96
  "Available list": "Verfügbare Liste",
97
  "available!": "Verfügbar!",
 
98
  "Azure AI Speech": "Azure AI Speech",
99
  "Azure Region": "Azure-Region",
100
  "Back": "Zurück",
@@ -450,6 +452,7 @@
450
  "Hide": "Verbergen",
451
  "Host": "",
452
  "How can I help you today?": "Wie kann ich Ihnen heute helfen?",
 
453
  "Hybrid Search": "Hybride Suche",
454
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Ich bestätige, dass ich gelesen habe und die Auswirkungen meiner Aktion verstehe. Mir sind die Risiken bewusst, die mit der Ausführung beliebigen Codes verbunden sind, und ich habe die Vertrauenswürdigkeit der Quelle überprüft.",
455
  "ID": "ID",
@@ -978,6 +981,7 @@
978
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
979
  "wherever you are": "",
980
  "Whisper (Local)": "Whisper (lokal)",
 
981
  "Widescreen Mode": "Breitbildmodus",
982
  "Won": "Gewonnen",
983
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 
59
  "Allow Voice Interruption in Call": "Unterbrechung durch Stimme im Anruf zulassen",
60
  "Already have an account?": "Haben Sie bereits einen Account?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
62
+ "Amazing": "",
63
  "an assistant": "ein Assistent",
64
  "and": "und",
65
  "and {{COUNT}} more": "und {{COUNT}} mehr",
 
96
  "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111-Basis-URL ist erforderlich.",
97
  "Available list": "Verfügbare Liste",
98
  "available!": "Verfügbar!",
99
+ "Awful": "",
100
  "Azure AI Speech": "Azure AI Speech",
101
  "Azure Region": "Azure-Region",
102
  "Back": "Zurück",
 
452
  "Hide": "Verbergen",
453
  "Host": "",
454
  "How can I help you today?": "Wie kann ich Ihnen heute helfen?",
455
+ "How would you rate this response?": "",
456
  "Hybrid Search": "Hybride Suche",
457
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Ich bestätige, dass ich gelesen habe und die Auswirkungen meiner Aktion verstehe. Mir sind die Risiken bewusst, die mit der Ausführung beliebigen Codes verbunden sind, und ich habe die Vertrauenswürdigkeit der Quelle überprüft.",
458
  "ID": "ID",
 
981
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
982
  "wherever you are": "",
983
  "Whisper (Local)": "Whisper (lokal)",
984
+ "Why?": "",
985
  "Widescreen Mode": "Breitbildmodus",
986
  "Won": "Gewonnen",
987
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
src/lib/i18n/locales/dg-DG/translation.json CHANGED
@@ -59,6 +59,7 @@
59
  "Allow Voice Interruption in Call": "",
60
  "Already have an account?": "Such account exists?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 
62
  "an assistant": "such assistant",
63
  "and": "and",
64
  "and {{COUNT}} more": "",
@@ -95,6 +96,7 @@
95
  "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Base URL is required.",
96
  "Available list": "",
97
  "available!": "available! So excite!",
 
98
  "Azure AI Speech": "",
99
  "Azure Region": "",
100
  "Back": "Back",
@@ -450,6 +452,7 @@
450
  "Hide": "Hide",
451
  "Host": "",
452
  "How can I help you today?": "How can I halp u today?",
 
453
  "Hybrid Search": "",
454
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
455
  "ID": "",
@@ -980,6 +983,7 @@
980
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
981
  "wherever you are": "",
982
  "Whisper (Local)": "",
 
983
  "Widescreen Mode": "",
984
  "Won": "",
985
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 
59
  "Allow Voice Interruption in Call": "",
60
  "Already have an account?": "Such account exists?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
62
+ "Amazing": "",
63
  "an assistant": "such assistant",
64
  "and": "and",
65
  "and {{COUNT}} more": "",
 
96
  "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Base URL is required.",
97
  "Available list": "",
98
  "available!": "available! So excite!",
99
+ "Awful": "",
100
  "Azure AI Speech": "",
101
  "Azure Region": "",
102
  "Back": "Back",
 
452
  "Hide": "Hide",
453
  "Host": "",
454
  "How can I help you today?": "How can I halp u today?",
455
+ "How would you rate this response?": "",
456
  "Hybrid Search": "",
457
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
458
  "ID": "",
 
983
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
984
  "wherever you are": "",
985
  "Whisper (Local)": "",
986
+ "Why?": "",
987
  "Widescreen Mode": "",
988
  "Won": "",
989
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
src/lib/i18n/locales/en-GB/translation.json CHANGED
@@ -59,6 +59,7 @@
59
  "Allow Voice Interruption in Call": "",
60
  "Already have an account?": "",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 
62
  "an assistant": "",
63
  "and": "",
64
  "and {{COUNT}} more": "",
@@ -95,6 +96,7 @@
95
  "AUTOMATIC1111 Base URL is required.": "",
96
  "Available list": "",
97
  "available!": "",
 
98
  "Azure AI Speech": "",
99
  "Azure Region": "",
100
  "Back": "",
@@ -450,6 +452,7 @@
450
  "Hide": "",
451
  "Host": "",
452
  "How can I help you today?": "",
 
453
  "Hybrid Search": "",
454
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
455
  "ID": "",
@@ -978,6 +981,7 @@
978
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
979
  "wherever you are": "",
980
  "Whisper (Local)": "",
 
981
  "Widescreen Mode": "",
982
  "Won": "",
983
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 
59
  "Allow Voice Interruption in Call": "",
60
  "Already have an account?": "",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
62
+ "Amazing": "",
63
  "an assistant": "",
64
  "and": "",
65
  "and {{COUNT}} more": "",
 
96
  "AUTOMATIC1111 Base URL is required.": "",
97
  "Available list": "",
98
  "available!": "",
99
+ "Awful": "",
100
  "Azure AI Speech": "",
101
  "Azure Region": "",
102
  "Back": "",
 
452
  "Hide": "",
453
  "Host": "",
454
  "How can I help you today?": "",
455
+ "How would you rate this response?": "",
456
  "Hybrid Search": "",
457
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
458
  "ID": "",
 
981
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
982
  "wherever you are": "",
983
  "Whisper (Local)": "",
984
+ "Why?": "",
985
  "Widescreen Mode": "",
986
  "Won": "",
987
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
src/lib/i18n/locales/en-US/translation.json CHANGED
@@ -59,6 +59,7 @@
59
  "Allow Voice Interruption in Call": "",
60
  "Already have an account?": "",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 
62
  "an assistant": "",
63
  "and": "",
64
  "and {{COUNT}} more": "",
@@ -95,6 +96,7 @@
95
  "AUTOMATIC1111 Base URL is required.": "",
96
  "Available list": "",
97
  "available!": "",
 
98
  "Azure AI Speech": "",
99
  "Azure Region": "",
100
  "Back": "",
@@ -450,6 +452,7 @@
450
  "Hide": "",
451
  "Host": "",
452
  "How can I help you today?": "",
 
453
  "Hybrid Search": "",
454
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
455
  "ID": "",
@@ -978,6 +981,7 @@
978
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
979
  "wherever you are": "",
980
  "Whisper (Local)": "",
 
981
  "Widescreen Mode": "",
982
  "Won": "",
983
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 
59
  "Allow Voice Interruption in Call": "",
60
  "Already have an account?": "",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
62
+ "Amazing": "",
63
  "an assistant": "",
64
  "and": "",
65
  "and {{COUNT}} more": "",
 
96
  "AUTOMATIC1111 Base URL is required.": "",
97
  "Available list": "",
98
  "available!": "",
99
+ "Awful": "",
100
  "Azure AI Speech": "",
101
  "Azure Region": "",
102
  "Back": "",
 
452
  "Hide": "",
453
  "Host": "",
454
  "How can I help you today?": "",
455
+ "How would you rate this response?": "",
456
  "Hybrid Search": "",
457
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
458
  "ID": "",
 
981
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
982
  "wherever you are": "",
983
  "Whisper (Local)": "",
984
+ "Why?": "",
985
  "Widescreen Mode": "",
986
  "Won": "",
987
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
src/lib/i18n/locales/es-ES/translation.json CHANGED
@@ -59,6 +59,7 @@
59
  "Allow Voice Interruption in Call": "Permitir interrupción de voz en llamada",
60
  "Already have an account?": "¿Ya tienes una cuenta?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 
62
  "an assistant": "un asistente",
63
  "and": "y",
64
  "and {{COUNT}} more": "",
@@ -95,6 +96,7 @@
95
  "AUTOMATIC1111 Base URL is required.": "La dirección URL de AUTOMATIC1111 es requerida.",
96
  "Available list": "Lista disponible",
97
  "available!": "¡disponible!",
 
98
  "Azure AI Speech": "",
99
  "Azure Region": "Región de Azure",
100
  "Back": "Volver",
@@ -450,6 +452,7 @@
450
  "Hide": "Esconder",
451
  "Host": "",
452
  "How can I help you today?": "¿Cómo puedo ayudarte hoy?",
 
453
  "Hybrid Search": "Búsqueda Híbrida",
454
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Aseguro que he leído y entiendo las implicaciones de mi acción. Estoy consciente de los riesgos asociados con la ejecución de código arbitrario y he verificado la confianza de la fuente.",
455
  "ID": "",
@@ -979,6 +982,7 @@
979
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
980
  "wherever you are": "",
981
  "Whisper (Local)": "Whisper (Local)",
 
982
  "Widescreen Mode": "Modo de pantalla ancha",
983
  "Won": "",
984
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 
59
  "Allow Voice Interruption in Call": "Permitir interrupción de voz en llamada",
60
  "Already have an account?": "¿Ya tienes una cuenta?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
62
+ "Amazing": "",
63
  "an assistant": "un asistente",
64
  "and": "y",
65
  "and {{COUNT}} more": "",
 
96
  "AUTOMATIC1111 Base URL is required.": "La dirección URL de AUTOMATIC1111 es requerida.",
97
  "Available list": "Lista disponible",
98
  "available!": "¡disponible!",
99
+ "Awful": "",
100
  "Azure AI Speech": "",
101
  "Azure Region": "Región de Azure",
102
  "Back": "Volver",
 
452
  "Hide": "Esconder",
453
  "Host": "",
454
  "How can I help you today?": "¿Cómo puedo ayudarte hoy?",
455
+ "How would you rate this response?": "",
456
  "Hybrid Search": "Búsqueda Híbrida",
457
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Aseguro que he leído y entiendo las implicaciones de mi acción. Estoy consciente de los riesgos asociados con la ejecución de código arbitrario y he verificado la confianza de la fuente.",
458
  "ID": "",
 
982
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
983
  "wherever you are": "",
984
  "Whisper (Local)": "Whisper (Local)",
985
+ "Why?": "",
986
  "Widescreen Mode": "Modo de pantalla ancha",
987
  "Won": "",
988
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
src/lib/i18n/locales/fa-IR/translation.json CHANGED
@@ -59,6 +59,7 @@
59
  "Allow Voice Interruption in Call": "",
60
  "Already have an account?": "از قبل حساب کاربری دارید؟",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 
62
  "an assistant": "یک دستیار",
63
  "and": "و",
64
  "and {{COUNT}} more": "و {{COUNT}} مورد دیگر",
@@ -95,6 +96,7 @@
95
  "AUTOMATIC1111 Base URL is required.": "به URL پایه AUTOMATIC1111 مورد نیاز است.",
96
  "Available list": "فهرست دردسترس",
97
  "available!": "در دسترس!",
 
98
  "Azure AI Speech": "سخنگوی هوش\u200cمصنوعی Azure",
99
  "Azure Region": "منطقهٔ Azure",
100
  "Back": "بازگشت",
@@ -450,6 +452,7 @@
450
  "Hide": "پنهان\u200cسازی",
451
  "Host": "",
452
  "How can I help you today?": "امروز چطور می توانم کمک تان کنم؟",
 
453
  "Hybrid Search": "جستجوی همزمان",
454
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
455
  "ID": "",
@@ -978,6 +981,7 @@
978
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
979
  "wherever you are": "",
980
  "Whisper (Local)": "",
 
981
  "Widescreen Mode": "حالت صفحهٔ عریض",
982
  "Won": "",
983
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 
59
  "Allow Voice Interruption in Call": "",
60
  "Already have an account?": "از قبل حساب کاربری دارید؟",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
62
+ "Amazing": "",
63
  "an assistant": "یک دستیار",
64
  "and": "و",
65
  "and {{COUNT}} more": "و {{COUNT}} مورد دیگر",
 
96
  "AUTOMATIC1111 Base URL is required.": "به URL پایه AUTOMATIC1111 مورد نیاز است.",
97
  "Available list": "فهرست دردسترس",
98
  "available!": "در دسترس!",
99
+ "Awful": "",
100
  "Azure AI Speech": "سخنگوی هوش\u200cمصنوعی Azure",
101
  "Azure Region": "منطقهٔ Azure",
102
  "Back": "بازگشت",
 
452
  "Hide": "پنهان\u200cسازی",
453
  "Host": "",
454
  "How can I help you today?": "امروز چطور می توانم کمک تان کنم؟",
455
+ "How would you rate this response?": "",
456
  "Hybrid Search": "جستجوی همزمان",
457
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
458
  "ID": "",
 
981
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
982
  "wherever you are": "",
983
  "Whisper (Local)": "",
984
+ "Why?": "",
985
  "Widescreen Mode": "حالت صفحهٔ عریض",
986
  "Won": "",
987
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
src/lib/i18n/locales/fi-FI/translation.json CHANGED
@@ -59,6 +59,7 @@
59
  "Allow Voice Interruption in Call": "",
60
  "Already have an account?": "Onko sinulla jo tili?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 
62
  "an assistant": "avustaja",
63
  "and": "ja",
64
  "and {{COUNT}} more": "",
@@ -95,6 +96,7 @@
95
  "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111-perus-URL vaaditaan.",
96
  "Available list": "",
97
  "available!": "saatavilla!",
 
98
  "Azure AI Speech": "",
99
  "Azure Region": "",
100
  "Back": "Takaisin",
@@ -450,6 +452,7 @@
450
  "Hide": "Piilota",
451
  "Host": "",
452
  "How can I help you today?": "Kuinka voin auttaa tänään?",
 
453
  "Hybrid Search": "Hybridihaku",
454
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
455
  "ID": "",
@@ -978,6 +981,7 @@
978
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
979
  "wherever you are": "",
980
  "Whisper (Local)": "",
 
981
  "Widescreen Mode": "",
982
  "Won": "",
983
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 
59
  "Allow Voice Interruption in Call": "",
60
  "Already have an account?": "Onko sinulla jo tili?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
62
+ "Amazing": "",
63
  "an assistant": "avustaja",
64
  "and": "ja",
65
  "and {{COUNT}} more": "",
 
96
  "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111-perus-URL vaaditaan.",
97
  "Available list": "",
98
  "available!": "saatavilla!",
99
+ "Awful": "",
100
  "Azure AI Speech": "",
101
  "Azure Region": "",
102
  "Back": "Takaisin",
 
452
  "Hide": "Piilota",
453
  "Host": "",
454
  "How can I help you today?": "Kuinka voin auttaa tänään?",
455
+ "How would you rate this response?": "",
456
  "Hybrid Search": "Hybridihaku",
457
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
458
  "ID": "",
 
981
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
982
  "wherever you are": "",
983
  "Whisper (Local)": "",
984
+ "Why?": "",
985
  "Widescreen Mode": "",
986
  "Won": "",
987
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
src/lib/i18n/locales/fr-CA/translation.json CHANGED
@@ -59,6 +59,7 @@
59
  "Allow Voice Interruption in Call": "Autoriser l'interruption vocale pendant un appel",
60
  "Already have an account?": "Avez-vous déjà un compte ?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 
62
  "an assistant": "un assistant",
63
  "and": "et",
64
  "and {{COUNT}} more": "",
@@ -95,6 +96,7 @@
95
  "AUTOMATIC1111 Base URL is required.": "L'URL de base {AUTOMATIC1111} est requise.",
96
  "Available list": "",
97
  "available!": "disponible !",
 
98
  "Azure AI Speech": "",
99
  "Azure Region": "",
100
  "Back": "Retour en arrière",
@@ -450,6 +452,7 @@
450
  "Hide": "Cacher",
451
  "Host": "",
452
  "How can I help you today?": "Comment puis-je vous être utile aujourd'hui ?",
 
453
  "Hybrid Search": "Recherche hybride",
454
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
455
  "ID": "",
@@ -979,6 +982,7 @@
979
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
980
  "wherever you are": "",
981
  "Whisper (Local)": "Whisper (local)",
 
982
  "Widescreen Mode": "Mode Grand Écran",
983
  "Won": "",
984
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 
59
  "Allow Voice Interruption in Call": "Autoriser l'interruption vocale pendant un appel",
60
  "Already have an account?": "Avez-vous déjà un compte ?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
62
+ "Amazing": "",
63
  "an assistant": "un assistant",
64
  "and": "et",
65
  "and {{COUNT}} more": "",
 
96
  "AUTOMATIC1111 Base URL is required.": "L'URL de base {AUTOMATIC1111} est requise.",
97
  "Available list": "",
98
  "available!": "disponible !",
99
+ "Awful": "",
100
  "Azure AI Speech": "",
101
  "Azure Region": "",
102
  "Back": "Retour en arrière",
 
452
  "Hide": "Cacher",
453
  "Host": "",
454
  "How can I help you today?": "Comment puis-je vous être utile aujourd'hui ?",
455
+ "How would you rate this response?": "",
456
  "Hybrid Search": "Recherche hybride",
457
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
458
  "ID": "",
 
982
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
983
  "wherever you are": "",
984
  "Whisper (Local)": "Whisper (local)",
985
+ "Why?": "",
986
  "Widescreen Mode": "Mode Grand Écran",
987
  "Won": "",
988
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
src/lib/i18n/locales/fr-FR/translation.json CHANGED
@@ -59,6 +59,7 @@
59
  "Allow Voice Interruption in Call": "Autoriser l'interruption vocale pendant un appel",
60
  "Already have an account?": "Avez-vous déjà un compte ?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 
62
  "an assistant": "un assistant",
63
  "and": "et",
64
  "and {{COUNT}} more": "et {{COUNT}} autres",
@@ -95,6 +96,7 @@
95
  "AUTOMATIC1111 Base URL is required.": "L'URL de base {AUTOMATIC1111} est requise.",
96
  "Available list": "Liste disponible",
97
  "available!": "disponible !",
 
98
  "Azure AI Speech": "Azure AI Speech",
99
  "Azure Region": "Région Azure",
100
  "Back": "Retour en arrière",
@@ -450,6 +452,7 @@
450
  "Hide": "Cacher",
451
  "Host": "",
452
  "How can I help you today?": "Comment puis-je vous aider aujourd'hui ?",
 
453
  "Hybrid Search": "Recherche hybride",
454
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Je reconnais avoir lu et compris les implications de mes actions. Je suis conscient des risques associés à l'exécution d'un code arbitraire et j'ai vérifié la fiabilité de la source.",
455
  "ID": "ID",
@@ -979,6 +982,7 @@
979
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
980
  "wherever you are": "",
981
  "Whisper (Local)": "Whisper (local)",
 
982
  "Widescreen Mode": "Mode grand écran",
983
  "Won": "Gagné",
984
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 
59
  "Allow Voice Interruption in Call": "Autoriser l'interruption vocale pendant un appel",
60
  "Already have an account?": "Avez-vous déjà un compte ?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
62
+ "Amazing": "",
63
  "an assistant": "un assistant",
64
  "and": "et",
65
  "and {{COUNT}} more": "et {{COUNT}} autres",
 
96
  "AUTOMATIC1111 Base URL is required.": "L'URL de base {AUTOMATIC1111} est requise.",
97
  "Available list": "Liste disponible",
98
  "available!": "disponible !",
99
+ "Awful": "",
100
  "Azure AI Speech": "Azure AI Speech",
101
  "Azure Region": "Région Azure",
102
  "Back": "Retour en arrière",
 
452
  "Hide": "Cacher",
453
  "Host": "",
454
  "How can I help you today?": "Comment puis-je vous aider aujourd'hui ?",
455
+ "How would you rate this response?": "",
456
  "Hybrid Search": "Recherche hybride",
457
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Je reconnais avoir lu et compris les implications de mes actions. Je suis conscient des risques associés à l'exécution d'un code arbitraire et j'ai vérifié la fiabilité de la source.",
458
  "ID": "ID",
 
982
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
983
  "wherever you are": "",
984
  "Whisper (Local)": "Whisper (local)",
985
+ "Why?": "",
986
  "Widescreen Mode": "Mode grand écran",
987
  "Won": "Gagné",
988
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
src/lib/i18n/locales/he-IL/translation.json CHANGED
@@ -59,6 +59,7 @@
59
  "Allow Voice Interruption in Call": "",
60
  "Already have an account?": "כבר יש לך חשבון?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 
62
  "an assistant": "עוזר",
63
  "and": "וגם",
64
  "and {{COUNT}} more": "",
@@ -95,6 +96,7 @@
95
  "AUTOMATIC1111 Base URL is required.": "נדרשת כתובת URL בסיסית של AUTOMATIC1111",
96
  "Available list": "",
97
  "available!": "זמין!",
 
98
  "Azure AI Speech": "",
99
  "Azure Region": "",
100
  "Back": "חזור",
@@ -450,6 +452,7 @@
450
  "Hide": "הסתר",
451
  "Host": "",
452
  "How can I help you today?": "כיצד אוכל לעזור לך היום?",
 
453
  "Hybrid Search": "חיפוש היברידי",
454
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
455
  "ID": "",
@@ -979,6 +982,7 @@
979
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
980
  "wherever you are": "",
981
  "Whisper (Local)": "",
 
982
  "Widescreen Mode": "",
983
  "Won": "",
984
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 
59
  "Allow Voice Interruption in Call": "",
60
  "Already have an account?": "כבר יש לך חשבון?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
62
+ "Amazing": "",
63
  "an assistant": "עוזר",
64
  "and": "וגם",
65
  "and {{COUNT}} more": "",
 
96
  "AUTOMATIC1111 Base URL is required.": "נדרשת כתובת URL בסיסית של AUTOMATIC1111",
97
  "Available list": "",
98
  "available!": "זמין!",
99
+ "Awful": "",
100
  "Azure AI Speech": "",
101
  "Azure Region": "",
102
  "Back": "חזור",
 
452
  "Hide": "הסתר",
453
  "Host": "",
454
  "How can I help you today?": "כיצד אוכל לעזור לך היום?",
455
+ "How would you rate this response?": "",
456
  "Hybrid Search": "חיפוש היברידי",
457
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
458
  "ID": "",
 
982
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
983
  "wherever you are": "",
984
  "Whisper (Local)": "",
985
+ "Why?": "",
986
  "Widescreen Mode": "",
987
  "Won": "",
988
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
src/lib/i18n/locales/hi-IN/translation.json CHANGED
@@ -59,6 +59,7 @@
59
  "Allow Voice Interruption in Call": "",
60
  "Already have an account?": "क्या आपके पास पहले से एक खाता मौजूद है?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 
62
  "an assistant": "एक सहायक",
63
  "and": "और",
64
  "and {{COUNT}} more": "",
@@ -95,6 +96,7 @@
95
  "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 का बेस यूआरएल आवश्यक है।",
96
  "Available list": "",
97
  "available!": "उपलब्ध!",
 
98
  "Azure AI Speech": "",
99
  "Azure Region": "",
100
  "Back": "पीछे",
@@ -450,6 +452,7 @@
450
  "Hide": "छुपाएं",
451
  "Host": "",
452
  "How can I help you today?": "आज मैं आपकी कैसे मदद कर सकता हूँ?",
 
453
  "Hybrid Search": "हाइब्रिड खोज",
454
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
455
  "ID": "",
@@ -978,6 +981,7 @@
978
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
979
  "wherever you are": "",
980
  "Whisper (Local)": "",
 
981
  "Widescreen Mode": "",
982
  "Won": "",
983
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 
59
  "Allow Voice Interruption in Call": "",
60
  "Already have an account?": "क्या आपके पास पहले से एक खाता मौजूद है?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
62
+ "Amazing": "",
63
  "an assistant": "एक सहायक",
64
  "and": "और",
65
  "and {{COUNT}} more": "",
 
96
  "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 का बेस यूआरएल आवश्यक है।",
97
  "Available list": "",
98
  "available!": "उपलब्ध!",
99
+ "Awful": "",
100
  "Azure AI Speech": "",
101
  "Azure Region": "",
102
  "Back": "पीछे",
 
452
  "Hide": "छुपाएं",
453
  "Host": "",
454
  "How can I help you today?": "आज मैं आपकी कैसे मदद कर सकता हूँ?",
455
+ "How would you rate this response?": "",
456
  "Hybrid Search": "हाइब्रिड खोज",
457
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
458
  "ID": "",
 
981
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
982
  "wherever you are": "",
983
  "Whisper (Local)": "",
984
+ "Why?": "",
985
  "Widescreen Mode": "",
986
  "Won": "",
987
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
src/lib/i18n/locales/hr-HR/translation.json CHANGED
@@ -59,6 +59,7 @@
59
  "Allow Voice Interruption in Call": "",
60
  "Already have an account?": "Već imate račun?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 
62
  "an assistant": "asistent",
63
  "and": "i",
64
  "and {{COUNT}} more": "",
@@ -95,6 +96,7 @@
95
  "AUTOMATIC1111 Base URL is required.": "Potreban je AUTOMATIC1111 osnovni URL.",
96
  "Available list": "",
97
  "available!": "dostupno!",
 
98
  "Azure AI Speech": "",
99
  "Azure Region": "",
100
  "Back": "Natrag",
@@ -450,6 +452,7 @@
450
  "Hide": "Sakrij",
451
  "Host": "",
452
  "How can I help you today?": "Kako vam mogu pomoći danas?",
 
453
  "Hybrid Search": "Hibridna pretraga",
454
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
455
  "ID": "",
@@ -979,6 +982,7 @@
979
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
980
  "wherever you are": "",
981
  "Whisper (Local)": "Whisper (lokalno)",
 
982
  "Widescreen Mode": "Mod širokog zaslona",
983
  "Won": "",
984
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 
59
  "Allow Voice Interruption in Call": "",
60
  "Already have an account?": "Već imate račun?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
62
+ "Amazing": "",
63
  "an assistant": "asistent",
64
  "and": "i",
65
  "and {{COUNT}} more": "",
 
96
  "AUTOMATIC1111 Base URL is required.": "Potreban je AUTOMATIC1111 osnovni URL.",
97
  "Available list": "",
98
  "available!": "dostupno!",
99
+ "Awful": "",
100
  "Azure AI Speech": "",
101
  "Azure Region": "",
102
  "Back": "Natrag",
 
452
  "Hide": "Sakrij",
453
  "Host": "",
454
  "How can I help you today?": "Kako vam mogu pomoći danas?",
455
+ "How would you rate this response?": "",
456
  "Hybrid Search": "Hibridna pretraga",
457
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
458
  "ID": "",
 
982
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
983
  "wherever you are": "",
984
  "Whisper (Local)": "Whisper (lokalno)",
985
+ "Why?": "",
986
  "Widescreen Mode": "Mod širokog zaslona",
987
  "Won": "",
988
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
src/lib/i18n/locales/hu-HU/translation.json CHANGED
@@ -59,6 +59,7 @@
59
  "Allow Voice Interruption in Call": "Hang megszakítás engedélyezése hívás közben",
60
  "Already have an account?": "Már van fiókod?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 
62
  "an assistant": "egy asszisztens",
63
  "and": "és",
64
  "and {{COUNT}} more": "és még {{COUNT}} db",
@@ -95,6 +96,7 @@
95
  "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 alap URL szükséges.",
96
  "Available list": "Elérhető lista",
97
  "available!": "elérhető!",
 
98
  "Azure AI Speech": "Azure AI beszéd",
99
  "Azure Region": "Azure régió",
100
  "Back": "Vissza",
@@ -450,6 +452,7 @@
450
  "Hide": "Elrejtés",
451
  "Host": "",
452
  "How can I help you today?": "Hogyan segíthetek ma?",
 
453
  "Hybrid Search": "Hibrid keresés",
454
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Elismerem, hogy elolvastam és megértem a cselekedetem következményeit. Tisztában vagyok a tetszőleges kód végrehajtásával járó kockázatokkal, és ellenőriztem a forrás megbízhatóságát.",
455
  "ID": "Azonosító",
@@ -978,6 +981,7 @@
978
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
979
  "wherever you are": "",
980
  "Whisper (Local)": "Whisper (helyi)",
 
981
  "Widescreen Mode": "Szélesvásznú mód",
982
  "Won": "Nyert",
983
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 
59
  "Allow Voice Interruption in Call": "Hang megszakítás engedélyezése hívás közben",
60
  "Already have an account?": "Már van fiókod?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
62
+ "Amazing": "",
63
  "an assistant": "egy asszisztens",
64
  "and": "és",
65
  "and {{COUNT}} more": "és még {{COUNT}} db",
 
96
  "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 alap URL szükséges.",
97
  "Available list": "Elérhető lista",
98
  "available!": "elérhető!",
99
+ "Awful": "",
100
  "Azure AI Speech": "Azure AI beszéd",
101
  "Azure Region": "Azure régió",
102
  "Back": "Vissza",
 
452
  "Hide": "Elrejtés",
453
  "Host": "",
454
  "How can I help you today?": "Hogyan segíthetek ma?",
455
+ "How would you rate this response?": "",
456
  "Hybrid Search": "Hibrid keresés",
457
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Elismerem, hogy elolvastam és megértem a cselekedetem következményeit. Tisztában vagyok a tetszőleges kód végrehajtásával járó kockázatokkal, és ellenőriztem a forrás megbízhatóságát.",
458
  "ID": "Azonosító",
 
981
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
982
  "wherever you are": "",
983
  "Whisper (Local)": "Whisper (helyi)",
984
+ "Why?": "",
985
  "Widescreen Mode": "Szélesvásznú mód",
986
  "Won": "Nyert",
987
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
src/lib/i18n/locales/id-ID/translation.json CHANGED
@@ -59,6 +59,7 @@
59
  "Allow Voice Interruption in Call": "Izinkan Gangguan Suara dalam Panggilan",
60
  "Already have an account?": "Sudah memiliki akun?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 
62
  "an assistant": "asisten",
63
  "and": "dan",
64
  "and {{COUNT}} more": "",
@@ -95,6 +96,7 @@
95
  "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 URL Dasar diperlukan.",
96
  "Available list": "",
97
  "available!": "tersedia!",
 
98
  "Azure AI Speech": "",
99
  "Azure Region": "",
100
  "Back": "Kembali",
@@ -450,6 +452,7 @@
450
  "Hide": "Sembunyikan",
451
  "Host": "",
452
  "How can I help you today?": "Ada yang bisa saya bantu hari ini?",
 
453
  "Hybrid Search": "Pencarian Hibrida",
454
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
455
  "ID": "",
@@ -978,6 +981,7 @@
978
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
979
  "wherever you are": "",
980
  "Whisper (Local)": "Bisikan (Lokal)",
 
981
  "Widescreen Mode": "Mode Layar Lebar",
982
  "Won": "",
983
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 
59
  "Allow Voice Interruption in Call": "Izinkan Gangguan Suara dalam Panggilan",
60
  "Already have an account?": "Sudah memiliki akun?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
62
+ "Amazing": "",
63
  "an assistant": "asisten",
64
  "and": "dan",
65
  "and {{COUNT}} more": "",
 
96
  "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 URL Dasar diperlukan.",
97
  "Available list": "",
98
  "available!": "tersedia!",
99
+ "Awful": "",
100
  "Azure AI Speech": "",
101
  "Azure Region": "",
102
  "Back": "Kembali",
 
452
  "Hide": "Sembunyikan",
453
  "Host": "",
454
  "How can I help you today?": "Ada yang bisa saya bantu hari ini?",
455
+ "How would you rate this response?": "",
456
  "Hybrid Search": "Pencarian Hibrida",
457
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
458
  "ID": "",
 
981
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
982
  "wherever you are": "",
983
  "Whisper (Local)": "Bisikan (Lokal)",
984
+ "Why?": "",
985
  "Widescreen Mode": "Mode Layar Lebar",
986
  "Won": "",
987
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
src/lib/i18n/locales/ie-GA/translation.json CHANGED
@@ -59,6 +59,7 @@
59
  "Allow Voice Interruption in Call": "Ceadaigh Briseadh Guth i nGlao",
60
  "Already have an account?": "Tá cuntas agat cheana féin?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 
62
  "an assistant": "cúntóir",
63
  "and": "agus",
64
  "and {{COUNT}} more": "agus {{COUNT}} eile",
@@ -95,6 +96,7 @@
95
  "AUTOMATIC1111 Base URL is required.": "Tá URL bonn UATHOMATIC1111 ag teastáil.",
96
  "Available list": "Liosta atá ar fáil",
97
  "available!": "ar fáil!",
 
98
  "Azure AI Speech": "Óráid Azure AI",
99
  "Azure Region": "Réigiún Azure",
100
  "Back": "Ar ais",
@@ -450,6 +452,7 @@
450
  "Hide": "Folaigh",
451
  "Host": "",
452
  "How can I help you today?": "Conas is féidir liom cabhrú leat inniu?",
 
453
  "Hybrid Search": "Cuardach Hibrideach",
454
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Admhaím gur léigh mé agus tuigim impleachtaí mo ghníomhaíochta. Táim ar an eolas faoi na rioscaí a bhaineann le cód treallach a fhorghníomhú agus tá iontaofacht na foinse fíoraithe agam.",
455
  "ID": "ID",
@@ -978,6 +981,7 @@
978
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
979
  "wherever you are": "",
980
  "Whisper (Local)": "Whisper (Áitiúil)",
 
981
  "Widescreen Mode": "Mód Leathanscáileán",
982
  "Won": "Bhuaigh",
983
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 
59
  "Allow Voice Interruption in Call": "Ceadaigh Briseadh Guth i nGlao",
60
  "Already have an account?": "Tá cuntas agat cheana féin?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
62
+ "Amazing": "",
63
  "an assistant": "cúntóir",
64
  "and": "agus",
65
  "and {{COUNT}} more": "agus {{COUNT}} eile",
 
96
  "AUTOMATIC1111 Base URL is required.": "Tá URL bonn UATHOMATIC1111 ag teastáil.",
97
  "Available list": "Liosta atá ar fáil",
98
  "available!": "ar fáil!",
99
+ "Awful": "",
100
  "Azure AI Speech": "Óráid Azure AI",
101
  "Azure Region": "Réigiún Azure",
102
  "Back": "Ar ais",
 
452
  "Hide": "Folaigh",
453
  "Host": "",
454
  "How can I help you today?": "Conas is féidir liom cabhrú leat inniu?",
455
+ "How would you rate this response?": "",
456
  "Hybrid Search": "Cuardach Hibrideach",
457
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Admhaím gur léigh mé agus tuigim impleachtaí mo ghníomhaíochta. Táim ar an eolas faoi na rioscaí a bhaineann le cód treallach a fhorghníomhú agus tá iontaofacht na foinse fíoraithe agam.",
458
  "ID": "ID",
 
981
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
982
  "wherever you are": "",
983
  "Whisper (Local)": "Whisper (Áitiúil)",
984
+ "Why?": "",
985
  "Widescreen Mode": "Mód Leathanscáileán",
986
  "Won": "Bhuaigh",
987
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
src/lib/i18n/locales/it-IT/translation.json CHANGED
@@ -59,6 +59,7 @@
59
  "Allow Voice Interruption in Call": "",
60
  "Already have an account?": "Hai già un account?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 
62
  "an assistant": "un assistente",
63
  "and": "e",
64
  "and {{COUNT}} more": "",
@@ -95,6 +96,7 @@
95
  "AUTOMATIC1111 Base URL is required.": "L'URL base AUTOMATIC1111 è obbligatorio.",
96
  "Available list": "",
97
  "available!": "disponibile!",
 
98
  "Azure AI Speech": "",
99
  "Azure Region": "",
100
  "Back": "Indietro",
@@ -450,6 +452,7 @@
450
  "Hide": "Nascondi",
451
  "Host": "",
452
  "How can I help you today?": "Come posso aiutarti oggi?",
 
453
  "Hybrid Search": "Ricerca ibrida",
454
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
455
  "ID": "",
@@ -979,6 +982,7 @@
979
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
980
  "wherever you are": "",
981
  "Whisper (Local)": "",
 
982
  "Widescreen Mode": "",
983
  "Won": "",
984
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 
59
  "Allow Voice Interruption in Call": "",
60
  "Already have an account?": "Hai già un account?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
62
+ "Amazing": "",
63
  "an assistant": "un assistente",
64
  "and": "e",
65
  "and {{COUNT}} more": "",
 
96
  "AUTOMATIC1111 Base URL is required.": "L'URL base AUTOMATIC1111 è obbligatorio.",
97
  "Available list": "",
98
  "available!": "disponibile!",
99
+ "Awful": "",
100
  "Azure AI Speech": "",
101
  "Azure Region": "",
102
  "Back": "Indietro",
 
452
  "Hide": "Nascondi",
453
  "Host": "",
454
  "How can I help you today?": "Come posso aiutarti oggi?",
455
+ "How would you rate this response?": "",
456
  "Hybrid Search": "Ricerca ibrida",
457
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
458
  "ID": "",
 
982
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
983
  "wherever you are": "",
984
  "Whisper (Local)": "",
985
+ "Why?": "",
986
  "Widescreen Mode": "",
987
  "Won": "",
988
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
src/lib/i18n/locales/ja-JP/translation.json CHANGED
@@ -59,6 +59,7 @@
59
  "Allow Voice Interruption in Call": "通話中に音声の割り込みを許可",
60
  "Already have an account?": "すでにアカウントをお持ちですか?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 
62
  "an assistant": "アシスタント",
63
  "and": "および",
64
  "and {{COUNT}} more": "",
@@ -95,6 +96,7 @@
95
  "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 ベース URL が必要です。",
96
  "Available list": "利用可能リスト",
97
  "available!": "利用可能!",
 
98
  "Azure AI Speech": "AzureAIスピーチ",
99
  "Azure Region": "Azureリージョン",
100
  "Back": "戻る",
@@ -450,6 +452,7 @@
450
  "Hide": "非表示",
451
  "Host": "",
452
  "How can I help you today?": "今日はどのようにお手伝いしましょうか?",
 
453
  "Hybrid Search": "ブリッジ検索",
454
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
455
  "ID": "",
@@ -977,6 +980,7 @@
977
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
978
  "wherever you are": "",
979
  "Whisper (Local)": "",
 
980
  "Widescreen Mode": "ワイドスクリーンモード",
981
  "Won": "",
982
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 
59
  "Allow Voice Interruption in Call": "通話中に音声の割り込みを許可",
60
  "Already have an account?": "すでにアカウントをお持ちですか?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
62
+ "Amazing": "",
63
  "an assistant": "アシスタント",
64
  "and": "および",
65
  "and {{COUNT}} more": "",
 
96
  "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 ベース URL が必要です。",
97
  "Available list": "利用可能リスト",
98
  "available!": "利用可能!",
99
+ "Awful": "",
100
  "Azure AI Speech": "AzureAIスピーチ",
101
  "Azure Region": "Azureリージョン",
102
  "Back": "戻る",
 
452
  "Hide": "非表示",
453
  "Host": "",
454
  "How can I help you today?": "今日はどのようにお手伝いしましょうか?",
455
+ "How would you rate this response?": "",
456
  "Hybrid Search": "ブリッジ検索",
457
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
458
  "ID": "",
 
980
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
981
  "wherever you are": "",
982
  "Whisper (Local)": "",
983
+ "Why?": "",
984
  "Widescreen Mode": "ワイドスクリーンモード",
985
  "Won": "",
986
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
src/lib/i18n/locales/ka-GE/translation.json CHANGED
@@ -59,6 +59,7 @@
59
  "Allow Voice Interruption in Call": "",
60
  "Already have an account?": "უკვე გაქვს ანგარიში?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 
62
  "an assistant": "ასისტენტი",
63
  "and": "და",
64
  "and {{COUNT}} more": "",
@@ -95,6 +96,7 @@
95
  "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 საბაზისო მისამართი აუცილებელია",
96
  "Available list": "",
97
  "available!": "ხელმისაწვდომია!",
 
98
  "Azure AI Speech": "",
99
  "Azure Region": "",
100
  "Back": "უკან",
@@ -450,6 +452,7 @@
450
  "Hide": "დამალვა",
451
  "Host": "",
452
  "How can I help you today?": "როგორ შემიძლია დაგეხმარო დღეს?",
 
453
  "Hybrid Search": "ჰიბრიდური ძებნა",
454
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
455
  "ID": "",
@@ -978,6 +981,7 @@
978
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
979
  "wherever you are": "",
980
  "Whisper (Local)": "",
 
981
  "Widescreen Mode": "",
982
  "Won": "",
983
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 
59
  "Allow Voice Interruption in Call": "",
60
  "Already have an account?": "უკვე გაქვს ანგარიში?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
62
+ "Amazing": "",
63
  "an assistant": "ასისტენტი",
64
  "and": "და",
65
  "and {{COUNT}} more": "",
 
96
  "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 საბაზისო მისამართი აუცილებელია",
97
  "Available list": "",
98
  "available!": "ხელმისაწვდომია!",
99
+ "Awful": "",
100
  "Azure AI Speech": "",
101
  "Azure Region": "",
102
  "Back": "უკან",
 
452
  "Hide": "დამალვა",
453
  "Host": "",
454
  "How can I help you today?": "როგორ შემიძლია დაგეხმარო დღეს?",
455
+ "How would you rate this response?": "",
456
  "Hybrid Search": "ჰიბრიდური ძებნა",
457
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
458
  "ID": "",
 
981
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
982
  "wherever you are": "",
983
  "Whisper (Local)": "",
984
+ "Why?": "",
985
  "Widescreen Mode": "",
986
  "Won": "",
987
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
src/lib/i18n/locales/ko-KR/translation.json CHANGED
@@ -59,6 +59,7 @@
59
  "Allow Voice Interruption in Call": "음성 기능에서 음성 방해 허용",
60
  "Already have an account?": "이미 계정이 있으신가요?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 
62
  "an assistant": "어시스턴트",
63
  "and": "그리고",
64
  "and {{COUNT}} more": "그리고 {{COUNT}} 더",
@@ -95,6 +96,7 @@
95
  "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 기본 URL 설정이 필요합니다.",
96
  "Available list": "가능한 목록",
97
  "available!": "사용 가능!",
 
98
  "Azure AI Speech": "Azure AI 음성",
99
  "Azure Region": "Azure 지역",
100
  "Back": "뒤로가기",
@@ -450,6 +452,7 @@
450
  "Hide": "숨기기",
451
  "Host": "",
452
  "How can I help you today?": "오늘 어떻게 도와드릴까요?",
 
453
  "Hybrid Search": "하이브리드 검색",
454
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
455
  "ID": "ID",
@@ -978,6 +981,7 @@
978
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
979
  "wherever you are": "",
980
  "Whisper (Local)": "Whisper (로컬)",
 
981
  "Widescreen Mode": "와이드스크린 모드",
982
  "Won": "이김",
983
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 
59
  "Allow Voice Interruption in Call": "음성 기능에서 음성 방해 허용",
60
  "Already have an account?": "이미 계정이 있으신가요?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
62
+ "Amazing": "",
63
  "an assistant": "어시스턴트",
64
  "and": "그리고",
65
  "and {{COUNT}} more": "그리고 {{COUNT}} 더",
 
96
  "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 기본 URL 설정이 필요합니다.",
97
  "Available list": "가능한 목록",
98
  "available!": "사용 가능!",
99
+ "Awful": "",
100
  "Azure AI Speech": "Azure AI 음성",
101
  "Azure Region": "Azure 지역",
102
  "Back": "뒤로가기",
 
452
  "Hide": "숨기기",
453
  "Host": "",
454
  "How can I help you today?": "오늘 어떻게 도와드릴까요?",
455
+ "How would you rate this response?": "",
456
  "Hybrid Search": "하이브리드 검색",
457
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
458
  "ID": "ID",
 
981
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
982
  "wherever you are": "",
983
  "Whisper (Local)": "Whisper (로컬)",
984
+ "Why?": "",
985
  "Widescreen Mode": "와이드스크린 모드",
986
  "Won": "이김",
987
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
src/lib/i18n/locales/lt-LT/translation.json CHANGED
@@ -59,6 +59,7 @@
59
  "Allow Voice Interruption in Call": "Leisti pertraukimą skambučio metu",
60
  "Already have an account?": "Ar jau turite paskyrą?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 
62
  "an assistant": "assistentas",
63
  "and": "ir",
64
  "and {{COUNT}} more": "",
@@ -95,6 +96,7 @@
95
  "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 bazės nuoroda reikalinga.",
96
  "Available list": "",
97
  "available!": "prieinama!",
 
98
  "Azure AI Speech": "",
99
  "Azure Region": "",
100
  "Back": "Atgal",
@@ -450,6 +452,7 @@
450
  "Hide": "Paslėpti",
451
  "Host": "",
452
  "How can I help you today?": "Kuo galėčiau Jums padėti ?",
 
453
  "Hybrid Search": "Hibridinė paieška",
454
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Suprantu veiksmų ir kodo vykdymo rizikas.",
455
  "ID": "",
@@ -980,6 +983,7 @@
980
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
981
  "wherever you are": "",
982
  "Whisper (Local)": "Whisper (lokalus)",
 
983
  "Widescreen Mode": "Plataus ekrano rėžimas",
984
  "Won": "",
985
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 
59
  "Allow Voice Interruption in Call": "Leisti pertraukimą skambučio metu",
60
  "Already have an account?": "Ar jau turite paskyrą?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
62
+ "Amazing": "",
63
  "an assistant": "assistentas",
64
  "and": "ir",
65
  "and {{COUNT}} more": "",
 
96
  "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 bazės nuoroda reikalinga.",
97
  "Available list": "",
98
  "available!": "prieinama!",
99
+ "Awful": "",
100
  "Azure AI Speech": "",
101
  "Azure Region": "",
102
  "Back": "Atgal",
 
452
  "Hide": "Paslėpti",
453
  "Host": "",
454
  "How can I help you today?": "Kuo galėčiau Jums padėti ?",
455
+ "How would you rate this response?": "",
456
  "Hybrid Search": "Hibridinė paieška",
457
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Suprantu veiksmų ir kodo vykdymo rizikas.",
458
  "ID": "",
 
983
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
984
  "wherever you are": "",
985
  "Whisper (Local)": "Whisper (lokalus)",
986
+ "Why?": "",
987
  "Widescreen Mode": "Plataus ekrano rėžimas",
988
  "Won": "",
989
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
src/lib/i18n/locales/ms-MY/translation.json CHANGED
@@ -59,6 +59,7 @@
59
  "Allow Voice Interruption in Call": "Benarkan gangguan suara dalam panggilan",
60
  "Already have an account?": "Telah mempunyai akaun?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 
62
  "an assistant": "seorang pembantu",
63
  "and": "dan",
64
  "and {{COUNT}} more": "",
@@ -95,6 +96,7 @@
95
  "AUTOMATIC1111 Base URL is required.": "URL Asas AUTOMATIC1111 diperlukan.",
96
  "Available list": "",
97
  "available!": "tersedia!",
 
98
  "Azure AI Speech": "",
99
  "Azure Region": "",
100
  "Back": "Kembali",
@@ -450,6 +452,7 @@
450
  "Hide": "Sembunyi",
451
  "Host": "",
452
  "How can I help you today?": "Bagaimana saya boleh membantu anda hari ini?",
 
453
  "Hybrid Search": "Carian Hibrid",
454
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Saya mengakui bahawa saya telah membaca dan saya memahami implikasi tindakan saya. Saya sedar tentang risiko yang berkaitan dengan melaksanakan kod sewenang-wenangnya dan saya telah mengesahkan kebolehpercayaan sumber tersebut.",
455
  "ID": "",
@@ -978,6 +981,7 @@
978
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
979
  "wherever you are": "",
980
  "Whisper (Local)": "Whisper (Local)",
 
981
  "Widescreen Mode": "Mod Skrin Lebar",
982
  "Won": "",
983
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 
59
  "Allow Voice Interruption in Call": "Benarkan gangguan suara dalam panggilan",
60
  "Already have an account?": "Telah mempunyai akaun?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
62
+ "Amazing": "",
63
  "an assistant": "seorang pembantu",
64
  "and": "dan",
65
  "and {{COUNT}} more": "",
 
96
  "AUTOMATIC1111 Base URL is required.": "URL Asas AUTOMATIC1111 diperlukan.",
97
  "Available list": "",
98
  "available!": "tersedia!",
99
+ "Awful": "",
100
  "Azure AI Speech": "",
101
  "Azure Region": "",
102
  "Back": "Kembali",
 
452
  "Hide": "Sembunyi",
453
  "Host": "",
454
  "How can I help you today?": "Bagaimana saya boleh membantu anda hari ini?",
455
+ "How would you rate this response?": "",
456
  "Hybrid Search": "Carian Hibrid",
457
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Saya mengakui bahawa saya telah membaca dan saya memahami implikasi tindakan saya. Saya sedar tentang risiko yang berkaitan dengan melaksanakan kod sewenang-wenangnya dan saya telah mengesahkan kebolehpercayaan sumber tersebut.",
458
  "ID": "",
 
981
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
982
  "wherever you are": "",
983
  "Whisper (Local)": "Whisper (Local)",
984
+ "Why?": "",
985
  "Widescreen Mode": "Mod Skrin Lebar",
986
  "Won": "",
987
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
src/lib/i18n/locales/nb-NO/translation.json CHANGED
@@ -59,6 +59,7 @@
59
  "Allow Voice Interruption in Call": "Muliggjør stemmeavbrytelse i samtaler",
60
  "Already have an account?": "Har du allerede en konto?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Alternativ til top_p, og har som mål å sikre en balanse mellom kvalitet og variasjon. Parameteren p representerer minimumssannsynligheten for at et token skal vurderes, i forhold til sannsynligheten for det mest sannsynlige tokenet. Hvis p for eksempel er 0,05 og det mest sannsynlige tokenet har en sannsynlighet på 0,9, filtreres logits med en verdi på mindre enn 0,045 bort. (Standard: 0,0)",
 
62
  "an assistant": "en assistent",
63
  "and": "og",
64
  "and {{COUNT}} more": "og {{COUNT}} til",
@@ -95,6 +96,7 @@
95
  "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Grunn-URL kreves.",
96
  "Available list": "Tilgjengelig liste",
97
  "available!": "tilgjengelig!",
 
98
  "Azure AI Speech": "Azure AI-tale",
99
  "Azure Region": "Azure område",
100
  "Back": "Tilbake",
@@ -450,6 +452,7 @@
450
  "Hide": "Skjul",
451
  "Host": "Host",
452
  "How can I help you today?": "Hva kan jeg hjelpe deg med i dag?",
 
453
  "Hybrid Search": "Hybrid-søk",
454
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Jeg bekrefter at jeg har lest og forstår konsekvensene av mine handlinger. Jeg er klar over risikoen forbundet med å kjøre vilkårlig kode, og jeg har verifisert kildens pålitelighet.",
455
  "ID": "ID",
@@ -978,6 +981,7 @@
978
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Hvis denne modusen er aktivert, svarer modellen på alle chattemeldinger i sanntid, og genererer et svar så snart brukeren sender en melding. Denne modusen er nyttig for live chat-applikasjoner, men kan påvirke ytelsen på tregere maskinvare.",
979
  "wherever you are": "uansett hvor du er",
980
  "Whisper (Local)": "Whisper (Lokal)",
 
981
  "Widescreen Mode": "Bredskjermmodus",
982
  "Won": "Vant",
983
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "Fungerer sammen med top-k. En høyere verdi (f.eks. 0,95) vil føre til mer mangfoldig tekst, mens en lavere verdi (f.eks. 0,5) vil generere mer fokusert og konservativ tekst. (Standard: 0,9)",
 
59
  "Allow Voice Interruption in Call": "Muliggjør stemmeavbrytelse i samtaler",
60
  "Already have an account?": "Har du allerede en konto?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Alternativ til top_p, og har som mål å sikre en balanse mellom kvalitet og variasjon. Parameteren p representerer minimumssannsynligheten for at et token skal vurderes, i forhold til sannsynligheten for det mest sannsynlige tokenet. Hvis p for eksempel er 0,05 og det mest sannsynlige tokenet har en sannsynlighet på 0,9, filtreres logits med en verdi på mindre enn 0,045 bort. (Standard: 0,0)",
62
+ "Amazing": "",
63
  "an assistant": "en assistent",
64
  "and": "og",
65
  "and {{COUNT}} more": "og {{COUNT}} til",
 
96
  "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Grunn-URL kreves.",
97
  "Available list": "Tilgjengelig liste",
98
  "available!": "tilgjengelig!",
99
+ "Awful": "",
100
  "Azure AI Speech": "Azure AI-tale",
101
  "Azure Region": "Azure område",
102
  "Back": "Tilbake",
 
452
  "Hide": "Skjul",
453
  "Host": "Host",
454
  "How can I help you today?": "Hva kan jeg hjelpe deg med i dag?",
455
+ "How would you rate this response?": "",
456
  "Hybrid Search": "Hybrid-søk",
457
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Jeg bekrefter at jeg har lest og forstår konsekvensene av mine handlinger. Jeg er klar over risikoen forbundet med å kjøre vilkårlig kode, og jeg har verifisert kildens pålitelighet.",
458
  "ID": "ID",
 
981
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Hvis denne modusen er aktivert, svarer modellen på alle chattemeldinger i sanntid, og genererer et svar så snart brukeren sender en melding. Denne modusen er nyttig for live chat-applikasjoner, men kan påvirke ytelsen på tregere maskinvare.",
982
  "wherever you are": "uansett hvor du er",
983
  "Whisper (Local)": "Whisper (Lokal)",
984
+ "Why?": "",
985
  "Widescreen Mode": "Bredskjermmodus",
986
  "Won": "Vant",
987
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "Fungerer sammen med top-k. En høyere verdi (f.eks. 0,95) vil føre til mer mangfoldig tekst, mens en lavere verdi (f.eks. 0,5) vil generere mer fokusert og konservativ tekst. (Standard: 0,9)",
src/lib/i18n/locales/nl-NL/translation.json CHANGED
@@ -1,64 +1,65 @@
1
  {
2
  "'s', 'm', 'h', 'd', 'w' or '-1' for no expiration.": "'s', 'm', 'h', 'd', 'w', of '-1' for geen vervaldatum.",
3
- "(e.g. `sh webui.sh --api --api-auth username_password`)": "(bv. `sh webui.sh --api --api-auth username_password`)",
4
  "(e.g. `sh webui.sh --api`)": "(bv. `sh webui.sh --api`)",
5
  "(latest)": "(nieuwste)",
6
  "{{ models }}": "{{ modellen }}",
7
- "{{user}}'s Chats": "{{user}}'s Chats",
8
  "{{webUIName}} Backend Required": "{{webUIName}} Backend Verplicht",
9
  "*Prompt node ID(s) are required for image generation": "*Prompt node ID('s) zijn vereist voor het genereren van afbeeldingen",
10
- "A new version (v{{LATEST_VERSION}}) is now available.": "Een nieuwe versie(v{{LATEST_VERSION}}) is nu beschikbaar",
11
- "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 internet",
12
  "a user": "een gebruiker",
13
  "About": "Over",
14
- "Access": "",
15
- "Access Control": "",
16
- "Accessible to all users": "",
17
  "Account": "Account",
18
  "Account Activation Pending": "Accountactivatie in afwachting",
19
  "Accurate information": "Accurate informatie",
20
  "Actions": "Acties",
21
- "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "",
22
- "Active Users": "Actieve Gebruikers",
23
  "Add": "Toevoegen",
24
- "Add a model ID": "",
25
  "Add a short description about what this model does": "Voeg een korte beschrijving toe over wat dit model doet",
26
  "Add a tag": "Voeg een tag toe",
27
- "Add Arena Model": "Voeg Arena Model toe",
28
- "Add Connection": "",
29
- "Add Content": "Voeg Content toe",
30
  "Add content here": "Voeg hier content toe",
31
  "Add custom prompt": "Voeg een aangepaste prompt toe",
32
- "Add Files": "Voege Bestanden toe",
33
- "Add Group": "",
34
- "Add Memory": "Voeg Geheugen toe",
35
- "Add Model": "Voeg Model toe",
36
- "Add Tag": "Voeg Tag toe",
37
- "Add Tags": "Voeg Tags toe",
38
- "Add text content": "Voeg Text inhoud toe",
39
- "Add User": "Voeg Gebruiker toe",
40
- "Add User Group": "",
41
  "Adjusting these settings will apply changes universally to all users.": "Het aanpassen van deze instellingen zal universeel worden toegepast op alle gebruikers.",
42
- "admin": "admin",
43
- "Admin": "Admin",
44
- "Admin Panel": "Administratief Paneel",
45
- "Admin Settings": "Administratieve Instellingen",
46
- "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Admins hebben altijd toegang tot alle gereedschappen; gebruikers moeten gereedschap toegewezen krijgen per model in de werkruimte.",
47
- "Advanced Parameters": "Geavanceerde Parameters",
48
- "Advanced Params": "Geavanceerde Parameters",
49
  "All chats": "Alle chats",
50
- "All Documents": "Alle Documenten",
51
- "All models deleted successfully": "",
52
- "Allow Chat Delete": "",
53
- "Allow Chat Deletion": "Sta Chat Verwijdering toe",
54
- "Allow Chat Edit": "",
55
- "Allow File Upload": "",
56
  "Allow non-local voices": "Niet-lokale stemmen toestaan",
57
  "Allow Temporary Chat": "Tijdelijke chat toestaan",
58
  "Allow User Location": "Gebruikerslocatie toestaan",
59
  "Allow Voice Interruption in Call": "Stemonderbreking tijdens gesprek toestaan",
60
  "Already have an account?": "Heb je al een account?",
61
- "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 
62
  "an assistant": "een assistent",
63
  "and": "en",
64
  "and {{COUNT}} more": "en {{COUNT}} meer",
@@ -67,78 +68,79 @@
67
  "API Key": "API Key",
68
  "API Key created.": "API Key gemaakt.",
69
  "API keys": "API keys",
70
- "Application DN": "",
71
- "Application DN Password": "",
72
- "applies to all users with the \"user\" role": "",
73
  "April": "April",
74
  "Archive": "Archief",
75
  "Archive All Chats": "Archiveer alle chats",
76
  "Archived Chats": "chatrecord",
77
- "archived-chat-export": "",
78
- "Are you sure you want to unarchive all archived chats?": "",
79
  "Are you sure?": "Weet je het zeker?",
80
- "Arena Models": "Arena Modellen",
81
  "Artifacts": "Artefacten",
82
  "Ask a question": "Stel een vraag",
83
  "Assistant": "Assistent",
84
  "Attach file": "Voeg een bestand toe",
85
  "Attention to detail": "Attention to detail",
86
- "Attribute for Username": "",
87
  "Audio": "Audio",
88
  "August": "Augustus",
89
- "Authenticate": "",
90
- "Auto-Copy Response to Clipboard": "Antwoord Automatisch Kopiëren naar Klembord",
91
  "Auto-playback response": "Automatisch afspelen van antwoord",
92
  "Automatic1111": "Automatic1111",
93
  "AUTOMATIC1111 Api Auth String": "Automatic1111 Api Auth String",
94
- "AUTOMATIC1111 Base URL": "AUTOMATIC1111 Base URL",
95
- "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Basis URL is verplicht",
96
  "Available list": "Beschikbare lijst",
97
  "available!": "beschikbaar!",
98
- "Azure AI Speech": "Azure AI Spraak",
99
- "Azure Region": "Azure Regio",
 
100
  "Back": "Terug",
101
  "Bad Response": "Ongeldig antwoord",
102
  "Banners": "Banners",
103
- "Base Model (From)": "Basismodel (vanaf)",
104
  "Batch Size (num_batch)": "Batchgrootte (num_batch)",
105
  "before": "voor",
106
  "Being lazy": "Lui zijn",
107
- "Bing Search V7 Endpoint": "",
108
- "Bing Search V7 Subscription Key": "",
109
  "Brave Search API Key": "Brave Search API-sleutel",
110
- "By {{name}}": "",
111
  "Bypass SSL verification for Websites": "SSL-verificatie omzeilen voor websites",
112
  "Call": "Oproep",
113
  "Call feature is not supported when using Web STT engine": "Belfunctie wordt niet ondersteund bij gebruik van de Web STT engine",
114
  "Camera": "Camera",
115
  "Cancel": "Annuleren",
116
  "Capabilities": "Mogelijkheden",
117
- "Certificate Path": "",
118
  "Change Password": "Wijzig Wachtwoord",
119
  "Character": "Karakter",
120
- "Chart new frontiers": "",
121
  "Chat": "Chat",
122
  "Chat Background Image": "Chatachtergrond",
123
- "Chat Bubble UI": "Chat Bubble UI",
124
  "Chat Controls": "Chatbesturing",
125
  "Chat direction": "Chatrichting",
126
  "Chat Overview": "Chatoverzicht",
127
- "Chat Permissions": "",
128
  "Chat Tags Auto-Generation": "Chatlabels automatisch genereren",
129
  "Chats": "Chats",
130
  "Check Again": "Controleer Opnieuw",
131
  "Check for updates": "Controleer op updates",
132
  "Checking for updates...": "Controleren op updates...",
133
  "Choose a model before saving...": "Kies een model voordat je opslaat...",
134
- "Chunk Overlap": "Chunk Overlap",
135
- "Chunk Params": "Chunk Params",
136
- "Chunk Size": "Chunk Grootte",
137
- "Ciphers": "",
138
  "Citation": "Citaat",
139
  "Clear memory": "Geheugen wissen",
140
- "click here": "",
141
- "Click here for filter guides.": "",
142
  "Click here for help.": "Klik hier voor hulp.",
143
  "Click here to": "Klik hier om",
144
  "Click here to download user import template file.": "Klik hier om het sjabloonbestand voor gebruikersimport te downloaden.",
@@ -155,7 +157,7 @@
155
  "Code execution": "Code uitvoeren",
156
  "Code formatted successfully": "Code succesvol geformateerd",
157
  "Collection": "Verzameling",
158
- "Color": "",
159
  "ComfyUI": "ComfyUI",
160
  "ComfyUI Base URL": "ComfyUI Base URL",
161
  "ComfyUI Base URL is required.": "ComfyUI Base URL is required.",
@@ -164,37 +166,37 @@
164
  "Command": "Commando",
165
  "Completions": "Voltooiingen",
166
  "Concurrent Requests": "Gelijktijdige verzoeken",
167
- "Configure": "",
168
  "Confirm": "Bevestigen",
169
- "Confirm Password": "Bevestig Wachtwoord",
170
  "Confirm your action": "Bevestig uw actie",
171
  "Connections": "Verbindingen",
172
  "Contact Admin for WebUI Access": "Neem contact op met de beheerder voor WebUI-toegang",
173
  "Content": "Inhoud",
174
  "Content Extraction": "Inhoudsextractie",
175
- "Context Length": "Context Lengte",
176
- "Continue Response": "Doorgaan met Antwoord",
177
  "Continue with {{provider}}": "Ga verder met {{provider}}",
178
- "Continue with Email": "",
179
- "Continue with LDAP": "",
180
  "Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "Bepaal hoe berichttekst wordt opgesplitst voor TTS-verzoeken. 'Leestekens' splitst op in zinnen, 'alinea's' splitst op in paragrafen en 'geen' houdt het bericht als een enkele string.",
181
  "Controls": "Besturingselementen",
182
- "Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "",
183
  "Copied": "Gekopieerd",
184
  "Copied shared chat URL to clipboard!": "URL van gedeelde gesprekspagina gekopieerd naar klembord!",
185
  "Copied to clipboard": "Gekopieerd naar klembord",
186
  "Copy": "Kopieer",
187
  "Copy last code block": "Kopieer laatste codeblok",
188
  "Copy last response": "Kopieer laatste antwoord",
189
- "Copy Link": "Kopieer Link",
190
  "Copy to clipboard": "Kopier naar klembord",
191
  "Copying to clipboard was successful!": "Kopiëren naar klembord was succesvol!",
192
- "Create": "",
193
- "Create a knowledge base": "",
194
  "Create a model": "Een model maken",
195
- "Create Account": "Maak Account",
196
- "Create Admin Account": "",
197
- "Create Group": "",
198
  "Create Knowledge": "Creër kennis",
199
  "Create new key": "Maak nieuwe sleutel",
200
  "Create new secret key": "Maak nieuwe geheim sleutel",
@@ -202,8 +204,8 @@
202
  "Created At": "Gemaakt op",
203
  "Created by": "Gemaakt door",
204
  "CSV Import": "CSV import",
205
- "Current Model": "Huidig Model",
206
- "Current Password": "Huidig Wachtwoord",
207
  "Custom": "Aangepast",
208
  "Dark": "Donker",
209
  "Database": "Database",
@@ -213,29 +215,29 @@
213
  "Default (SentenceTransformers)": "Standaard (SentenceTransformers)",
214
  "Default Model": "Standaard model",
215
  "Default model updated": "Standaard model bijgewerkt",
216
- "Default permissions": "",
217
- "Default permissions updated successfully": "",
218
  "Default Prompt Suggestions": "Standaard Prompt Suggesties",
219
- "Default to 389 or 636 if TLS is enabled": "",
220
- "Default to ALL": "",
221
- "Default User Role": "Standaard Gebruikersrol",
222
  "Delete": "Verwijderen",
223
  "Delete a model": "Verwijder een model",
224
  "Delete All Chats": "Verwijder alle chats",
225
- "Delete All Models": "",
226
  "Delete chat": "Verwijder chat",
227
- "Delete Chat": "Verwijder Chat",
228
  "Delete chat?": "Verwijder chat?",
229
  "Delete folder?": "Verwijder map?",
230
  "Delete function?": "Verwijder functie?",
231
  "Delete prompt?": "Verwijder prompt?",
232
  "delete this link": "verwijder deze link",
233
  "Delete tool?": "Verwijder tool?",
234
- "Delete User": "Verwijder Gebruiker",
235
  "Deleted {{deleteModelTag}}": "{{deleteModelTag}} is verwijderd",
236
  "Deleted {{name}}": "{{name}} verwijderd",
237
- "Deleted User": "",
238
- "Describe your knowledge base and objectives": "",
239
  "Description": "Beschrijving",
240
  "Didn't fully follow instructions": "Heeft niet alle instructies gevolgt",
241
  "Disabled": "Uitgeschakeld",
@@ -243,17 +245,17 @@
243
  "Discover a model": "Ontdek een model",
244
  "Discover a prompt": "Ontdek een prompt",
245
  "Discover a tool": "Ontdek een tool",
246
- "Discover wonders": "",
247
  "Discover, download, and explore custom functions": "Ontdek, download en verken aangepaste functies",
248
  "Discover, download, and explore custom prompts": "Ontdek, download en verken aangepaste prompts",
249
  "Discover, download, and explore custom tools": "Ontdek, download en verken aangepaste gereedschappen",
250
  "Discover, download, and explore model presets": "Ontdek, download en verken model presets",
251
  "Dismissible": "Afwijsbaar",
252
- "Display": "",
253
- "Display Emoji in Call": "Emoji weergeven tijdens gesprek",
254
  "Display the username instead of You in the Chat": "Toon de gebruikersnaam in plaats van Jij in de Chat",
255
- "Displays citations in the response": "",
256
- "Dive into knowledge": "",
257
  "Do not install functions from sources you do not fully trust.": "Installeer geen functies vanuit bronnen die je niet volledig vertrouwt",
258
  "Do not install tools from sources you do not fully trust.": "Installeer geen tools vanuit bronnen die je niet volledig vertrouwt.",
259
  "Document": "Document",
@@ -267,40 +269,40 @@
267
  "Done": "Voltooid",
268
  "Download": "Download",
269
  "Download canceled": "Download geannuleerd",
270
- "Download Database": "Download Database",
271
- "Drag and drop a file to upload or select a file to view": "",
272
  "Draw": "Teken",
273
  "Drop any files here to add to the conversation": "Sleep hier bestanden om toe te voegen aan het gesprek",
274
  "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "bijv. '30s', '10m'. Geldige tijdseenheden zijn 's', 'm', 'h'.",
275
- "e.g. A filter to remove profanity from text": "",
276
- "e.g. My Filter": "",
277
- "e.g. My Tools": "",
278
- "e.g. my_filter": "",
279
- "e.g. my_tools": "",
280
- "e.g. Tools for performing various operations": "",
281
  "Edit": "Wijzig",
282
- "Edit Arena Model": "Bewerk Arena Model",
283
- "Edit Connection": "",
284
- "Edit Default Permissions": "",
285
- "Edit Memory": "Bewerk Geheugen",
286
- "Edit User": "Wijzig Gebruiker",
287
- "Edit User Group": "",
288
  "ElevenLabs": "ElevenLabs",
289
- "Email": "Email",
290
- "Embark on adventures": "",
291
- "Embedding Batch Size": "Embedding Batchgrootte",
292
  "Embedding Model": "Embedding Model",
293
  "Embedding Model Engine": "Embedding Model Engine",
294
  "Embedding model set to \"{{embedding_model}}\"": "Embedding model ingesteld op \"{{embedding_model}}\"",
295
- "Enable API Key Auth": "",
296
  "Enable Community Sharing": "Delen via de community inschakelen",
297
- "Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "",
298
- "Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "",
299
  "Enable Message Rating": "Schakel berichtbeoordeling in",
300
- "Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "",
301
- "Enable New Sign Ups": "Schakel Nieuwe Registraties in",
302
- "Enable Retrieval Query Generation": "",
303
- "Enable Tags Generation": "",
304
  "Enable Web Search": "Zoeken op het web inschakelen",
305
  "Enable Web Search Query Generation": "Schakel zoekopdrachtgeneratie in",
306
  "Enabled": "Ingeschakeld",
@@ -309,12 +311,12 @@
309
  "Enter {{role}} message here": "Voeg {{role}} bericht hier toe",
310
  "Enter a detail about yourself for your LLMs to recall": "Voer een detail over jezelf in zodat LLM's het kunnen onthouden",
311
  "Enter api auth string (e.g. username:password)": "Voer api auth string in (bv. gebruikersnaam:wachtwoord)",
312
- "Enter Application DN": "",
313
- "Enter Application DN Password": "",
314
- "Enter Bing Search V7 Endpoint": "",
315
- "Enter Bing Search V7 Subscription Key": "",
316
  "Enter Brave Search API Key": "Voer de Brave Search API-sleutel in",
317
- "Enter certificate path": "",
318
  "Enter CFG Scale (e.g. 7.0)": "Voer CFG schaal in (bv. 7.0)",
319
  "Enter Chunk Overlap": "Voeg Chunk Overlap toe",
320
  "Enter Chunk Size": "Voeg Chunk Size toe",
@@ -323,25 +325,25 @@
323
  "Enter Google PSE API Key": "Voer de Google PSE API-sleutel in",
324
  "Enter Google PSE Engine Id": "Voer Google PSE Engine-ID in",
325
  "Enter Image Size (e.g. 512x512)": "Voeg afbeelding formaat toe (Bijv. 512x512)",
326
- "Enter Jina API Key": "",
327
  "Enter language codes": "Voeg taal codes toe",
328
- "Enter Model ID": "Voer Model ID in",
329
  "Enter model tag (e.g. {{modelTag}})": "Voeg model tag toe (Bijv. {{modelTag}})",
330
  "Enter Number of Steps (e.g. 50)": "Voeg aantal stappen toe (Bijv. 50)",
331
  "Enter Sampler (e.g. Euler a)": "Voer Sampler in (bv. Euler a)",
332
  "Enter Scheduler (e.g. Karras)": "Voer Scheduler in (bv. Karras)",
333
  "Enter Score": "Voeg score toe",
334
- "Enter SearchApi API Key": "voer SearchApi API-sleutel in",
335
  "Enter SearchApi Engine": "Voer SearchApi-Engine in",
336
  "Enter Searxng Query URL": "Voer de URL van de Searxng-query in",
337
- "Enter Seed": "",
338
  "Enter Serper API Key": "Voer de Serper API-sleutel in",
339
  "Enter Serply API Key": "Voer Serply API-sleutel in",
340
  "Enter Serpstack API Key": "Voer de Serpstack API-sleutel in",
341
- "Enter server host": "",
342
- "Enter server label": "",
343
- "Enter server port": "",
344
- "Enter stop sequence": "Zet stop sequentie",
345
  "Enter system prompt": "Voer systeem prompt in",
346
  "Enter Tavily API Key": "Voer Tavily API-sleutel in",
347
  "Enter Tika Server URL": "Voer Tika Server URL in",
@@ -353,28 +355,28 @@
353
  "Enter your message": "Voer je bericht in",
354
  "Enter Your Password": "Voer je Wachtwoord in",
355
  "Enter Your Role": "Voer je Rol in",
356
- "Enter Your Username": "",
357
  "Error": "Fout",
358
  "ERROR": "ERROR",
359
  "Evaluations": "Beoordelingen",
360
- "Example: (&(objectClass=inetOrgPerson)(uid=%s))": "",
361
- "Example: ALL": "",
362
- "Example: ou=users,dc=foo,dc=example": "",
363
- "Example: sAMAccountName or uid or userPrincipalName": "",
364
  "Exclude": "Sluit uit",
365
  "Experimental": "Experimenteel",
366
- "Explore the cosmos": "",
367
  "Export": "Exporteren",
368
- "Export All Archived Chats": "",
369
- "Export All Chats (All Users)": "Exporteer Alle Chats (Alle Gebruikers)",
370
  "Export chat (.json)": "Exporteer chat (.json)",
371
- "Export Chats": "Exporteer Chats",
372
- "Export Config to JSON File": "Exporteer configuratie naar JSON bestand",
373
  "Export Functions": "Exporteer functies",
374
  "Export Models": "Modellen exporteren",
375
- "Export Presets": "",
376
  "Export Prompts": "Exporteer Prompts",
377
- "Export to CSV": "",
378
  "Export Tools": "Exporteer gereedschappen",
379
  "External Models": "Externe modules",
380
  "Failed to add file.": "Het is niet gelukt om het bestand toe te voegen.",
@@ -384,7 +386,7 @@
384
  "Failed to upload file.": "Bestand kon niet worden geüpload.",
385
  "February": "Februari",
386
  "Feedback History": "Feedback geschiedenis",
387
- "Feedbacks": "",
388
  "Feel free to add specific details": "Voeg specifieke details toe",
389
  "File": "Bestand",
390
  "File added successfully.": "Bestand succesvol toegevoegd.",
@@ -405,18 +407,18 @@
405
  "Folder name cannot be empty.": "Mapnaam kan niet leeg zijn",
406
  "Folder name updated successfully": "Mapnaam succesvol aangepast",
407
  "Followed instructions perfectly": "Volgde instructies perfect",
408
- "Forge new paths": "",
409
  "Form": "Formulier",
410
  "Format your variables using brackets like this:": "Formateer je variabelen met haken zoals dit:",
411
  "Frequency Penalty": "Frequentiestraf",
412
  "Function": "Functie",
413
  "Function created successfully": "Functie succesvol aangemaakt",
414
  "Function deleted successfully": "Functie succesvol verwijderd",
415
- "Function Description": "",
416
- "Function ID": "",
417
  "Function is now globally disabled": "Functie is nu globaal uitgeschakeld",
418
  "Function is now globally enabled": "Functie is nu globaal ingeschakeld",
419
- "Function Name": "",
420
  "Function updated successfully": "Functienaam succesvol aangepast",
421
  "Functions": "Functies",
422
  "Functions allow arbitrary code execution": "Functies staan willekeurige code-uitvoering toe",
@@ -427,33 +429,34 @@
427
  "Generate Image": "Genereer afbeelding",
428
  "Generating search query": "Zoekopdracht genereren",
429
  "Generation Info": "Generatie Info",
430
- "Get started": "",
431
- "Get started with {{WEBUI_NAME}}": "",
432
  "Global": "Globaal",
433
- "Good Response": "Goed Antwoord",
434
  "Google PSE API Key": "Google PSE API-sleutel",
435
  "Google PSE Engine Id": "Google PSE-engine-ID",
436
- "Group created successfully": "",
437
- "Group deleted successfully": "",
438
- "Group Description": "",
439
- "Group Name": "",
440
- "Group updated successfully": "",
441
- "Groups": "",
442
  "h:mm a": "h:mm a",
443
  "Haptic Feedback": "Haptische feedback",
444
  "has no conversations.": "heeft geen gesprekken.",
445
  "Hello, {{name}}": "Hallo, {{name}}",
446
  "Help": "Help",
447
  "Help us create the best community leaderboard by sharing your feedback history!": "Help ons het beste community leaderboard te maken door je feedbackgeschiedenis te delen!",
448
- "Hex Color": "",
449
- "Hex Color - Leave empty for default color": "",
450
  "Hide": "Verberg",
451
- "Host": "",
452
  "How can I help you today?": "Hoe kan ik je vandaag helpen?",
 
453
  "Hybrid Search": "Hybride Zoeken",
454
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Ik bevestig dat ik de implicaties van mijn actie heb gelezen en begrepen. Ik ben me bewust van de risico's die gepaard gaan met het uitvoeren van willekeurige code en ik heb de betrouwbaarheid van de bron gecontroleerd.",
455
  "ID": "ID",
456
- "Ignite curiosity": "",
457
  "Image Generation (Experimental)": "Afbeelding Generatie (Experimenteel)",
458
  "Image Generation Engine": "Afbeelding Generatie Engine",
459
  "Image Settings": "Afbeelding Instellingen",
@@ -462,13 +465,13 @@
462
  "Import Config from JSON File": "Importeer configuratie vanuit JSON-bestand",
463
  "Import Functions": "Importeer Functies",
464
  "Import Models": "Modellen importeren",
465
- "Import Presets": "",
466
  "Import Prompts": "Importeer Prompts",
467
  "Import Tools": "Importeer Gereedschappen",
468
  "Include": "Voeg toe",
469
  "Include `--api-auth` flag when running stable-diffusion-webui": "Voeg '--api-auth` toe bij het uitvoeren van stable-diffusion-webui",
470
  "Include `--api` flag when running stable-diffusion-webui": "Voeg `--api` vlag toe bij het uitvoeren van stable-diffusion-webui",
471
- "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "",
472
  "Info": "Info",
473
  "Input commands": "Voer commando's in",
474
  "Install from Github URL": "Installeren vanaf Github-URL",
@@ -477,7 +480,7 @@
477
  "Invalid file format.": "Ongeldig bestandsformaat",
478
  "Invalid Tag": "Ongeldige Tag",
479
  "January": "Januari",
480
- "Jina API Key": "",
481
  "join our Discord for help.": "join onze Discord voor hulp.",
482
  "JSON": "JSON",
483
  "JSON Preview": "JSON-voorbeeld",
@@ -486,31 +489,31 @@
486
  "JWT Expiration": "JWT Expiration",
487
  "JWT Token": "JWT Token",
488
  "Keep Alive": "Houd Actief",
489
- "Key": "",
490
  "Keyboard shortcuts": "Toetsenbord snelkoppelingen",
491
  "Knowledge": "Kennis",
492
- "Knowledge Access": "",
493
  "Knowledge created successfully.": "Kennis succesvol aangemaakt",
494
  "Knowledge deleted successfully.": "Kennis succesvol verwijderd",
495
  "Knowledge reset successfully.": "Kennis succesvol gereset",
496
  "Knowledge updated successfully": "Kennis succesvol bijgewerkt",
497
- "Label": "",
498
  "Landing Page Mode": "Landingspaginamodus",
499
  "Language": "Taal",
500
  "Last Active": "Laatst Actief",
501
  "Last Modified": "Laatst aangepast",
502
- "LDAP": "",
503
- "LDAP server updated": "",
504
  "Leaderboard": "Klassement",
505
  "Leave empty for unlimited": "Laat leeg voor ongelimiteerd",
506
- "Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "",
507
- "Leave empty to include all models from \"{{URL}}/models\" endpoint": "",
508
  "Leave empty to include all models or select specific models": "Laat leeg om alle modellen mee te nemen, of selecteer specifieke modellen",
509
  "Leave empty to use the default prompt, or enter a custom prompt": "Laat leeg om de standaard prompt te gebruiken, of selecteer een aangepaste prompt",
510
  "Light": "Licht",
511
  "Listening...": "Aan het luisteren...",
512
  "LLMs can make mistakes. Verify important information.": "LLMs kunnen fouten maken. Verifieer belangrijke informatie.",
513
- "Local": "",
514
  "Local Models": "Lokale modellen",
515
  "Lost": "Verloren",
516
  "LTR": "LTR",
@@ -519,9 +522,9 @@
519
  "Make sure to export a workflow.json file as API format from ComfyUI.": "Zorg ervoor dat je een workflow.json-bestand als API-formaat exporteert vanuit ComfyUI.",
520
  "Manage": "Beheren",
521
  "Manage Arena Models": "Beheer Arenamodellen",
522
- "Manage Ollama": "",
523
- "Manage Ollama API Connections": "",
524
- "Manage OpenAI API Connections": "",
525
  "Manage Pipelines": "Pijplijnen beheren",
526
  "March": "Maart",
527
  "Max Tokens (num_predict)": "Max Tokens (num_predict)",
@@ -539,7 +542,7 @@
539
  "Message rating should be enabled to use this feature": "Berichtbeoordeling moet ingeschakeld zijn om deze functie te gebruiken",
540
  "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.",
541
  "Min P": "Min P",
542
- "Minimum Score": "Minimale Score",
543
  "Mirostat": "Mirostat",
544
  "Mirostat Eta": "Mirostat Eta",
545
  "Mirostat Tau": "Mirostat Tau",
@@ -555,21 +558,21 @@
555
  "Model accepts image inputs": "Model accepteerd afbeeldingsinvoer",
556
  "Model created successfully!": "Model succesvol gecreëerd",
557
  "Model filesystem path detected. Model shortname is required for update, cannot continue.": "Model filesystem path gedetecteerd. Model shortname is vereist voor update, kan niet doorgaan.",
558
- "Model Filtering": "",
559
  "Model ID": "Model-ID",
560
- "Model IDs": "",
561
- "Model Name": "Model naam",
562
  "Model not selected": "Model niet geselecteerd",
563
- "Model Params": "Model Params",
564
- "Model Permissions": "",
565
  "Model updated successfully": "Model succesvol bijgewerkt",
566
  "Modelfile Content": "Modelfile Inhoud",
567
  "Models": "Modellen",
568
- "Models Access": "",
569
  "more": "Meer",
570
  "More": "Meer",
571
  "Name": "Naam",
572
- "Name your knowledge base": "",
573
  "New Chat": "Nieuwe Chat",
574
  "New folder": "Nieuwe map",
575
  "New Password": "Nieuw Wachtwoord",
@@ -579,20 +582,20 @@
579
  "No feedbacks found": "Geen feedback gevonden",
580
  "No file selected": "Geen bestand geselecteerd",
581
  "No files found.": "Geen bestanden gevonden",
582
- "No groups with access, add a group to grant access": "",
583
  "No HTML, CSS, or JavaScript content found.": "Geen HTML, CSS, of JavaScript inhoud gevonden",
584
  "No knowledge found": "Geen kennis gevonden",
585
- "No model IDs": "",
586
  "No models found": "Geen modellen gevonden",
587
  "No results found": "Geen resultaten gevonden",
588
  "No search query generated": "Geen zoekopdracht gegenereerd",
589
  "No source available": "Geen bron beschikbaar",
590
- "No users were found.": "",
591
  "No valves to update": "Geen kleppen om bij te werken",
592
  "None": "Geen",
593
  "Not factually correct": "Niet feitelijk juist",
594
  "Not helpful": "Niet nuttig",
595
- "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Opmerking: Als u een minimumscore instelt, levert de zoekopdracht alleen documenten op met een score groter dan of gelijk aan de minimumscore.",
596
  "Notes": "Aantekeningen",
597
  "Notifications": "Desktop Notificaties",
598
  "November": "November",
@@ -601,18 +604,18 @@
601
  "OAuth ID": "OAuth ID",
602
  "October": "Oktober",
603
  "Off": "Uit",
604
- "Okay, Let's Go!": "Oké, Laten we gaan!",
605
  "OLED Dark": "OLED Donker",
606
  "Ollama": "Ollama",
607
  "Ollama API": "Ollama API",
608
  "Ollama API disabled": "Ollama API uitgeschakeld",
609
- "Ollama API settings updated": "",
610
  "Ollama Version": "Ollama Versie",
611
  "On": "Aan",
612
- "Only alphanumeric characters and hyphens are allowed": "",
613
  "Only alphanumeric characters and hyphens are allowed in the command string.": "Alleen alfanumerieke karakters en streepjes zijn toegestaan in de commando string.",
614
  "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",
615
- "Only select users and groups with permission can access": "",
616
  "Oops! Looks like the URL is invalid. Please double-check and try again.": "Oeps! Het lijkt erop dat de URL ongeldig is. Controleer het nogmaals en probeer opnieuw.",
617
  "Oops! There are files still uploading. Please wait for the upload to complete.": "Oeps! Er zijn nog bestanden aan het uploaden. Wacht tot het uploaden voltooid is.",
618
  "Oops! There was an error in the previous response.": "Oeps! Er was een fout in de vorige reactie.",
@@ -621,34 +624,34 @@
621
  "Open in full screen": "Open in volledig scherm",
622
  "Open new chat": "Open nieuwe chat",
623
  "Open WebUI uses faster-whisper internally.": "Open WebUI gebruikt faster-whisper intern",
624
- "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "",
625
  "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Open WebUI versie (v{{OPEN_WEBUI_VERSION}}) is kleiner dan de benodigde versie (v{{REQUIRED_VERSION}})",
626
  "OpenAI": "OpenAI",
627
  "OpenAI API": "OpenAI API",
628
- "OpenAI API Config": "OpenAI API Config",
629
- "OpenAI API Key is required.": "OpenAI API Sleutel is verplicht",
630
- "OpenAI API settings updated": "",
631
  "OpenAI URL/Key required.": "OpenAI URL/Sleutel vereist.",
632
  "or": "of",
633
- "Organize your users": "",
634
  "Other": "Andere",
635
  "OUTPUT": "UITVOER",
636
  "Output format": "Uitvoerformaat",
637
  "Overview": "Overzicht",
638
- "page": "Pagina",
639
  "Password": "Wachtwoord",
640
- "Paste Large Text as File": "",
641
  "PDF document (.pdf)": "PDF document (.pdf)",
642
- "PDF Extract Images (OCR)": "PDF Extract Afbeeldingen (OCR)",
643
  "pending": "wachtend",
644
  "Permission denied when accessing media devices": "Toegang geweigerd bij het toegang krijgen tot media-apparaten",
645
  "Permission denied when accessing microphone": "Toegang geweigerd bij het toegang krijgen tot de microfoon",
646
  "Permission denied when accessing microphone: {{error}}": "Toestemming geweigerd bij toegang tot microfoon: {{error}}",
647
- "Permissions": "",
648
  "Personalization": "Personalisatie",
649
- "Pin": "Speld",
650
  "Pinned": "Vastgezet",
651
- "Pioneer insights": "",
652
  "Pipeline deleted successfully": "Pijpleiding succesvol verwijderd",
653
  "Pipeline downloaded successfully": "Pijpleiding succesvol gedownload",
654
  "Pipelines": "Pijpleidingen",
@@ -660,39 +663,39 @@
660
  "Please enter a prompt": "Voer een prompt in",
661
  "Please fill in all fields.": "Voer alle velden in",
662
  "Please select a reason": "Voer een reden in",
663
- "Port": "",
664
  "Positive attitude": "Positieve positie",
665
- "Prefix ID": "",
666
- "Prefix ID is used to avoid conflicts with other connections by adding a prefix to the model IDs - leave empty to disable": "",
667
  "Previous 30 days": "Vorige 30 dagen",
668
  "Previous 7 days": "Vorige 7 dagen",
669
  "Profile Image": "Profielafbeelding",
670
  "Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (bv. Vertel me een leuke gebeurtenis over het Romeinse Rijk)",
671
- "Prompt Content": "Prompt Inhoud",
672
- "Prompt created successfully": "",
673
- "Prompt suggestions": "Prompt suggesties",
674
- "Prompt updated successfully": "",
675
  "Prompts": "Prompts",
676
- "Prompts Access": "",
677
  "Pull \"{{searchValue}}\" from Ollama.com": "Haal \"{{searchValue}}\" uit Ollama.com",
678
  "Pull a model from Ollama.com": "Haal een model van Ollama.com",
679
- "Query Generation Prompt": "",
680
- "Query Params": "Query Params",
681
- "RAG Template": "RAG Template",
682
  "Rating": "Beoordeling",
683
  "Re-rank models by topic similarity": "Herrangschik modellen op basis van onderwerpsovereenkomst",
684
  "Read Aloud": "Voorlezen",
685
  "Record voice": "Neem stem op",
686
  "Redirecting you to OpenWebUI Community": "Je wordt doorgestuurd naar OpenWebUI Community",
687
- "Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "",
688
  "Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Refereer naar jezelf als \"user\" (bv. \"User is Spaans aan het leren\"",
689
  "References from": "Referenties van",
690
  "Refused when it shouldn't have": "Geweigerd terwijl het niet had moeten",
691
  "Regenerate": "Regenereren",
692
- "Release Notes": "Release Notes",
693
  "Relevance": "Relevantie",
694
  "Remove": "Verwijderen",
695
- "Remove Model": "Verwijder Model",
696
  "Rename": "Hernoemen",
697
  "Repeat Last N": "Herhaal Laatste N",
698
  "Request Mode": "Request Modus",
@@ -723,18 +726,18 @@
723
  "Scroll to bottom when switching between branches": "Scroll naar onderen bij het wisselen tussen takken",
724
  "Search": "Zoeken",
725
  "Search a model": "Zoek een model",
726
- "Search Base": "",
727
  "Search Chats": "Chats zoeken",
728
  "Search Collection": "Zoek naar verzamelingen",
729
- "Search Filters": "",
730
  "search for tags": "Zoek naar tags",
731
  "Search Functions": "Zoek naar functie",
732
  "Search Knowledge": "Zoek naar Kennis",
733
  "Search Models": "Modellen zoeken",
734
- "Search options": "",
735
- "Search Prompts": "Zoek Prompts",
736
  "Search Result Count": "Aantal zoekresultaten",
737
- "Search the web": "",
738
  "Search Tools": "Zoek gereedschappen",
739
  "SearchApi API Key": "SearchApi API-sleutel",
740
  "SearchApi Engine": "SearchApi Engine",
@@ -749,19 +752,19 @@
749
  "Select a base model": "Selecteer een basismodel",
750
  "Select a engine": "Selecteer een engine",
751
  "Select a function": "Selecteer een functie",
752
- "Select a group": "",
753
  "Select a model": "Selecteer een model",
754
  "Select a pipeline": "Selecteer een pijplijn",
755
  "Select a pipeline url": "Selecteer een pijplijn-URL",
756
  "Select a tool": "Selecteer een tool",
757
  "Select Engine": "Selecteer Engine",
758
- "Select Knowledge": "Selecteer Kennis",
759
  "Select model": "Selecteer een model",
760
  "Select only one model to call": "Selecteer maar één model om aan te roepen",
761
  "Selected model(s) do not support image inputs": "Geselecteerde modellen ondersteunen geen beeldinvoer",
762
  "Semantic distance to query": "Semantische afstand tot query",
763
  "Send": "Verzenden",
764
- "Send a Message": "Stuur een Bericht",
765
  "Send message": "Stuur bericht",
766
  "Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "Stuurt `stream_options: { include_usage: true }` in het verzoek. \nOndersteunde providers zullen informatie over tokengebruik in het antwoord terugsturen als dit aan staat.",
767
  "September": "September",
@@ -772,37 +775,37 @@
772
  "Set as default": "Stel in als standaard",
773
  "Set CFG Scale": "Stel CFG-schaal in",
774
  "Set Default Model": "Stel Standaard Model in",
775
- "Set embedding model": "",
776
- "Set embedding model (e.g. {{model}})": "Stel embedding model in (bv. {{model}})",
777
- "Set Image Size": "Stel Afbeelding Grootte in",
778
- "Set reranking model (e.g. {{model}})": "Stel reranking model in (bv. {{model}})",
779
  "Set Sampler": "Stel Sampler in",
780
  "Set Scheduler": "Stel planner in",
781
- "Set Steps": "Stel Stappen in",
782
  "Set Task Model": "Taakmodel instellen",
783
- "Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "",
784
- "Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "",
785
- "Set Voice": "Stel Stem in",
786
- "Set whisper model": "Stel Whisper model in",
787
- "Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "",
788
- "Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "",
789
- "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "",
790
- "Sets the size of the context window used to generate the next token. (Default: 2048)": "",
791
- "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "",
792
  "Settings": "Instellingen",
793
  "Settings saved successfully!": "Instellingen succesvol opgeslagen!",
794
- "Share": "Deel Chat",
795
- "Share Chat": "Deel Chat",
796
- "Share to OpenWebUI Community": "Deel naar OpenWebUI Community",
797
  "Show": "Toon",
798
- "Show \"What's New\" modal on login": "",
799
  "Show Admin Details in Account Pending Overlay": "Admin-details weergeven in overlay in afwachting van account",
800
  "Show shortcuts": "Toon snelkoppelingen",
801
  "Show your support!": "Toon je steun",
802
- "Showcased creativity": "Tooncase creativiteit",
803
  "Sign in": "Inloggen",
804
  "Sign in to {{WEBUI_NAME}}": "Log in bij {{WEBUI_NAME}}",
805
- "Sign in to {{WEBUI_NAME}} with LDAP": "",
806
  "Sign Out": "Uitloggen",
807
  "Sign up": "Registreren",
808
  "Sign up to {{WEBUI_NAME}}": "Meld je aan bij {{WEBUI_NAME}}",
@@ -812,8 +815,8 @@
812
  "Speech recognition error: {{error}}": "Spraakherkenning fout: {{error}}",
813
  "Speech-to-Text Engine": "Spraak-naar-tekst Engine",
814
  "Stop": "Stop",
815
- "Stop Sequence": "Stop Sequentie",
816
- "Stream Chat Response": "Stream chat antwoord",
817
  "STT Model": "STT Model",
818
  "STT Settings": "STT Instellingen",
819
  "Subtitle (e.g. about the Roman Empire)": "Ondertitel (bijv. over de Romeinse Empire)",
@@ -825,9 +828,9 @@
825
  "Sync directory": "Synchroniseer map",
826
  "System": "Systeem",
827
  "System Instructions": "Systeem instructies",
828
- "System Prompt": "Systeem Prompt",
829
  "Tags Generation Prompt": "Prompt voor taggeneratie",
830
- "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. (default: 1)": "",
831
  "Tap to interrupt": "Tik om te onderbreken",
832
  "Tavily API Key": "Tavily API-sleutel",
833
  "Tell us more:": "Vertel ons meer:",
@@ -837,31 +840,31 @@
837
  "Text Splitter": "Tekst splitser",
838
  "Text-to-Speech Engine": "Tekst-naar-Spraak Engine",
839
  "Tfs Z": "Tfs Z",
840
- "Thanks for your feedback!": "Bedankt voor uw feedback!",
841
- "The Application Account DN you bind with for search": "",
842
- "The base to search for users": "",
843
- "The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "",
844
  "The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "De ontwikkelaars achter deze plugin zijn gepassioneerde vrijwilligers uit de gemeenschap. Als je deze plugin nuttig vindt, overweeg dan om bij te dragen aan de ontwikkeling ervan.",
845
  "The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "Het beoordelingsklassement is gebaseerd op het Elo-classificatiesysteem en wordt in realtime bijgewerkt.",
846
- "The LDAP attribute that maps to the username that users use to sign in.": "",
847
  "The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "Het leaderboard is momenteel in bèta en we kunnen de ratingberekeningen aanpassen naarmate we het algoritme verfijnen.",
848
  "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "De maximale bestandsgrootte in MB. Als het bestand groter is dan deze limiet, wordt het bestand niet geüpload.",
849
  "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Het maximum aantal bestanden dat in één keer kan worden gebruikt in de chat. Als het aantal bestanden deze limiet overschrijdt, worden de bestanden niet geüpload.",
850
  "The score should be a value between 0.0 (0%) and 1.0 (100%).": "Het score moet een waarde zijn tussen 0.0 (0%) en 1.0 (100%).",
851
- "The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "",
852
  "Theme": "Thema",
853
  "Thinking...": "Aan het denken...",
854
  "This action cannot be undone. Do you wish to continue?": "Deze actie kan niet ongedaan worden gemaakt. Wilt u doorgaan?",
855
  "This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Dit zorgt ervoor dat je waardevolle gesprekken veilig worden opgeslagen in je backend database. Dank je wel!",
856
  "This is an experimental feature, it may not function as expected and is subject to change at any time.": "Dit is een experimentele functie, het kan functioneren zoals verwacht en kan op elk moment veranderen.",
857
- "This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "",
858
- "This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated. (Default: 128)": "",
859
  "This option will delete all existing files in the collection and replace them with newly uploaded files.": "Deze optie verwijdert alle bestaande bestanden in de collectie en vervangt ze door nieuw geüploade bestanden.",
860
  "This response was generated by \"{{model}}\"": "Dit antwoord is gegenereerd door \"{{model}}\"",
861
  "This will delete": "Dit zal verwijderen",
862
  "This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Dit zal <strong>{{NAME}}</strong> verwijderen en <strong>al zijn inhoud</strong>.",
863
- "This will delete all models including custom models": "",
864
- "This will delete all models including custom models and cannot be undone.": "",
865
  "This will reset the knowledge base and sync all files. Do you wish to continue?": "Dit zal de kennisdatabase resetten en alle bestanden synchroniseren. Wilt u doorgaan?",
866
  "Thorough explanation": "Gevorderde uitleg",
867
  "Tika": "Tika",
@@ -873,7 +876,7 @@
873
  "Title Auto-Generation": "Titel Auto-Generatie",
874
  "Title cannot be an empty string.": "Titel kan niet leeg zijn.",
875
  "Title Generation Prompt": "Titel Generatie Prompt",
876
- "TLS": "",
877
  "To access the available model names for downloading,": "Om de beschikbare modelnamen voor downloaden te openen,",
878
  "To access the GGUF models available for downloading,": "Om toegang te krijgen tot de GGUF modellen die beschikbaar zijn voor downloaden,",
879
  "To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "Om toegang te krijgen tot de WebUI, neem contact op met de administrator. Beheerders kunnen de gebruikersstatussen beheren vanuit het Beheerderspaneel.",
@@ -891,13 +894,13 @@
891
  "Too verbose": "Te langdradig",
892
  "Tool created successfully": "Gereedschap succesvol aangemaakt",
893
  "Tool deleted successfully": "Gereedschap succesvol verwijderd",
894
- "Tool Description": "",
895
- "Tool ID": "",
896
  "Tool imported successfully": "Gereedschap succesvol geïmporteerd",
897
- "Tool Name": "",
898
  "Tool updated successfully": "Gereedschap succesvol bijgewerkt",
899
  "Tools": "Gereedschappen",
900
- "Tools Access": "",
901
  "Tools are a function calling system with arbitrary code execution": "Gereedschappen zijn een systeem voor het aanroepen van functies met willekeurige code-uitvoering",
902
  "Tools have a function calling system that allows arbitrary code execution": "Gereedschappen hebben een systeem voor het aanroepen van functies waarmee willekeurige code kan worden uitgevoerd",
903
  "Tools have a function calling system that allows arbitrary code execution.": "Gereedschappen hebben een systeem voor het aanroepen van functies waarmee willekeurige code kan worden uitgevoerd",
@@ -912,12 +915,12 @@
912
  "Type Hugging Face Resolve (Download) URL": "Type Hugging Face Resolve (Download) URL",
913
  "Uh-oh! There was an issue connecting to {{provider}}.": "Uh-oh! Er was een probleem met verbinden met {{provider}}.",
914
  "UI": "UI",
915
- "Unarchive All": "",
916
- "Unarchive All Archived Chats": "",
917
- "Unarchive Chat": "",
918
- "Unlock mysteries": "",
919
  "Unpin": "Losmaken",
920
- "Unravel secrets": "",
921
  "Untagged": "Ongemarkeerd",
922
  "Update": "Bijwerken",
923
  "Update and Copy Link": "Bijwerken en kopieer link",
@@ -927,24 +930,24 @@
927
  "Updated at": "Bijgewerkt om",
928
  "Updated At": "Bijgewerkt om",
929
  "Upload": "Uploaden",
930
- "Upload a GGUF model": "Upload een GGUF model",
931
  "Upload directory": "Upload map",
932
  "Upload files": "Bestanden uploaden",
933
  "Upload Files": "Bestanden uploaden",
934
  "Upload Pipeline": "Upload Pijpleiding",
935
  "Upload Progress": "Upload Voortgang",
936
- "URL": "",
937
- "URL Mode": "URL Modus",
938
  "Use '#' in the prompt input to load and include your knowledge.": "Gebruik '#' in de promptinvoer om je kennis te laden en op te nemen.",
939
  "Use Gravatar": "Gebruik Gravatar",
940
- "Use groups to group your users and assign permissions.": "",
941
- "Use Initials": "Gebruik Initials",
942
  "use_mlock (Ollama)": "use_mlock (Ollama)",
943
  "use_mmap (Ollama)": "use_mmap (Ollama)",
944
  "user": "user",
945
  "User": "User",
946
  "User location successfully retrieved.": "Gebruikerslocatie succesvol opgehaald",
947
- "Username": "",
948
  "Users": "Gebruikers",
949
  "Using the default arena model with all models. Click the plus button to add custom models.": "Het standaard arena-model gebruiken met alle modellen. Klik op de plusknop om aangepaste modellen toe te voegen.",
950
  "Utilize": "Utilize",
@@ -956,12 +959,12 @@
956
  "variable to have them replaced with clipboard content.": "variabele om ze te laten vervangen door klembord inhoud.",
957
  "Version": "Versie",
958
  "Version {{selectedVersion}} of {{totalVersions}}": "Versie {{selectedVersion}} van {{totalVersions}}",
959
- "Visibility": "",
960
  "Voice": "Stem",
961
  "Voice Input": "Steminvoer",
962
  "Warning": "Waarschuwing",
963
  "Warning:": "Waarschuwing",
964
- "Warning: Enabling this will allow users to upload arbitrary code on the server.": "",
965
  "Warning: If you update or change your embedding model, you will need to re-import all documents.": "Warning: Als je de embedding model bijwerkt of wijzigt, moet je alle documenten opnieuw importeren.",
966
  "Web": "Web",
967
  "Web API": "Web-API",
@@ -970,32 +973,33 @@
970
  "Web Search Engine": "Zoekmachine op het web",
971
  "Webhook URL": "Webhook URL",
972
  "WebUI Settings": "WebUI Instellingen",
973
- "WebUI will make requests to \"{{url}}/api/chat\"": "",
974
- "WebUI will make requests to \"{{url}}/chat/completions\"": "",
975
- "What are you trying to achieve?": "",
976
- "What are you working on?": "",
977
  "What’s New in": "Wat is nieuw in",
978
- "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
979
- "wherever you are": "",
980
  "Whisper (Local)": "Whisper (Lokaal)",
 
981
  "Widescreen Mode": "Breedschermmodus",
982
  "Won": "Gewonnen",
983
- "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
984
  "Workspace": "Werkruimte",
985
- "Workspace Permissions": "",
986
  "Write a prompt suggestion (e.g. Who are you?)": "Schrijf een prompt suggestie (bijv. Wie ben je?)",
987
  "Write a summary in 50 words that summarizes [topic or keyword].": "Schrijf een samenvatting in 50 woorden die [onderwerp of trefwoord] samenvat.",
988
  "Write something...": "Schrijf iets...",
989
- "Write your model template content here": "",
990
- "Yesterday": "gisteren",
991
  "You": "Jij",
992
  "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Je kunt slechts met maximaal {{maxCount}} bestand(en) tegelijk chatten",
993
  "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Je kunt je interacties met LLM's personaliseren door herinneringen toe te voegen via de 'Beheer'-knop hieronder, waardoor ze nuttiger en op maat gemaakt voor jou worden.",
994
  "You cannot upload an empty file.": "Je kunt een leeg bestand niet uploaden.",
995
- "You do not have permission to upload files.": "",
996
- "You have no archived conversations.": "U heeft geen gearchiveerde gesprekken.",
997
- "You have shared this chat": "U heeft dit gesprek gedeeld",
998
- "You're a helpful assistant.": "Jij bent een behulpzame assistent.",
999
  "You're now logged in.": "Je bent nu ingelogd.",
1000
  "Your account status is currently pending activation.": "Je accountstatus wacht nu op activatie",
1001
  "Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Je volledige bijdrage gaat direct naar de ontwikkelaar van de plugin; Open WebUI neemt hier geen deel van. Het gekozen financieringsplatform kan echter wel zijn eigen kosten hebben.",
 
1
  {
2
  "'s', 'm', 'h', 'd', 'w' or '-1' for no expiration.": "'s', 'm', 'h', 'd', 'w', of '-1' for geen vervaldatum.",
3
+ "(e.g. `sh webui.sh --api --api-auth username_password`)": "(bv. `sh webui.sh --api --api-auth gebruikersnaam_wachtwoord`)",
4
  "(e.g. `sh webui.sh --api`)": "(bv. `sh webui.sh --api`)",
5
  "(latest)": "(nieuwste)",
6
  "{{ models }}": "{{ modellen }}",
7
+ "{{user}}'s Chats": "{{user}}'s chats",
8
  "{{webUIName}} Backend Required": "{{webUIName}} Backend Verplicht",
9
  "*Prompt node ID(s) are required for image generation": "*Prompt node ID('s) zijn vereist voor het genereren van afbeeldingen",
10
+ "A new version (v{{LATEST_VERSION}}) is now available.": "Een nieuwe versie (v{{LATEST_VERSION}}) is nu beschikbaar",
11
+ "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",
12
  "a user": "een gebruiker",
13
  "About": "Over",
14
+ "Access": "Toegang",
15
+ "Access Control": "Toegangsbeheer",
16
+ "Accessible to all users": "Toegankelijk voor alle gebruikers",
17
  "Account": "Account",
18
  "Account Activation Pending": "Accountactivatie in afwachting",
19
  "Accurate information": "Accurate informatie",
20
  "Actions": "Acties",
21
+ "Activate this command by typing \"/{{COMMAND}}\" to chat input.": "Activeer dit commando door \"/{{COMMAND}}\" in de chat te typen",
22
+ "Active Users": "Actieve gebruikers",
23
  "Add": "Toevoegen",
24
+ "Add a model ID": "Voeg een model-ID toe",
25
  "Add a short description about what this model does": "Voeg een korte beschrijving toe over wat dit model doet",
26
  "Add a tag": "Voeg een tag toe",
27
+ "Add Arena Model": "Voeg arenamodel toe",
28
+ "Add Connection": "Voeg verbinding toe",
29
+ "Add Content": "Voeg content toe",
30
  "Add content here": "Voeg hier content toe",
31
  "Add custom prompt": "Voeg een aangepaste prompt toe",
32
+ "Add Files": "Voege bestanden toe",
33
+ "Add Group": "Voeg groep toe",
34
+ "Add Memory": "Voeg geheugen toe",
35
+ "Add Model": "Voeg model toe",
36
+ "Add Tag": "Voeg tag toe",
37
+ "Add Tags": "Voeg tags toe",
38
+ "Add text content": "Voeg tekstinhoud toe",
39
+ "Add User": "Voeg gebruiker toe",
40
+ "Add User Group": "Voeg gebruikersgroep toe",
41
  "Adjusting these settings will apply changes universally to all users.": "Het aanpassen van deze instellingen zal universeel worden toegepast op alle gebruikers.",
42
+ "admin": "beheerder",
43
+ "Admin": "Beheerder",
44
+ "Admin Panel": "Beheerderspaneel",
45
+ "Admin Settings": "Beheerdersinstellingen",
46
+ "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Beheerders hebben altijd toegang tot alle gereedschappen; gebruikers moeten gereedschap toegewezen krijgen per model in de werkruimte.",
47
+ "Advanced Parameters": "Geavanceerde parameters",
48
+ "Advanced Params": "Geavanceerde params",
49
  "All chats": "Alle chats",
50
+ "All Documents": "Alle documenten",
51
+ "All models deleted successfully": "Alle modellen zijn succesvol verwijderd",
52
+ "Allow Chat Delete": "Sta chatverwijdering toe",
53
+ "Allow Chat Deletion": "Sta chatverwijdering toe",
54
+ "Allow Chat Edit": "Sta chatwijziging toe",
55
+ "Allow File Upload": "Sta bestandenupload toe",
56
  "Allow non-local voices": "Niet-lokale stemmen toestaan",
57
  "Allow Temporary Chat": "Tijdelijke chat toestaan",
58
  "Allow User Location": "Gebruikerslocatie toestaan",
59
  "Allow Voice Interruption in Call": "Stemonderbreking tijdens gesprek toestaan",
60
  "Already have an account?": "Heb je al een account?",
61
+ "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "Alternatief voor de top_p, en streeft naar een evenwicht tussen kwaliteit en variatie. De parameter p vertegenwoordigt de minimumwaarschijnlijkheid dat een token in aanmerking wordt genomen, in verhouding tot de waarschijnlijkheid van het meest waarschijnlijke token. Bijvoorbeeld, met p=0.05 en de meest waarschijnlijke token met een waarschijnlijkheid van 0.9, worden logits met een waarde kleiner dan 0.045 uitgefilterd. (Standaard: 0,0)",
62
+ "Amazing": "Geweldig",
63
  "an assistant": "een assistent",
64
  "and": "en",
65
  "and {{COUNT}} more": "en {{COUNT}} meer",
 
68
  "API Key": "API Key",
69
  "API Key created.": "API Key gemaakt.",
70
  "API keys": "API keys",
71
+ "Application DN": "Applicatie DN",
72
+ "Application DN Password": "Applicatie",
73
+ "applies to all users with the \"user\" role": "wordt op alle gebruikers met de \"gebruiker\" toegepast",
74
  "April": "April",
75
  "Archive": "Archief",
76
  "Archive All Chats": "Archiveer alle chats",
77
  "Archived Chats": "chatrecord",
78
+ "archived-chat-export": "gearchiveerde-chat-export",
79
+ "Are you sure you want to unarchive all archived chats?": "Weet je zeker dat je alle gearchiveerde chats wil onarchiveren?",
80
  "Are you sure?": "Weet je het zeker?",
81
+ "Arena Models": "Arenamodellen",
82
  "Artifacts": "Artefacten",
83
  "Ask a question": "Stel een vraag",
84
  "Assistant": "Assistent",
85
  "Attach file": "Voeg een bestand toe",
86
  "Attention to detail": "Attention to detail",
87
+ "Attribute for Username": "Attribuut voor gebruikersnaam",
88
  "Audio": "Audio",
89
  "August": "Augustus",
90
+ "Authenticate": "Authenticeer",
91
+ "Auto-Copy Response to Clipboard": "Antwoord automatisch kopiëren naar klembord",
92
  "Auto-playback response": "Automatisch afspelen van antwoord",
93
  "Automatic1111": "Automatic1111",
94
  "AUTOMATIC1111 Api Auth String": "Automatic1111 Api Auth String",
95
+ "AUTOMATIC1111 Base URL": "AUTOMATIC1111 Basis-URL",
96
+ "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Basis-URL is verplicht",
97
  "Available list": "Beschikbare lijst",
98
  "available!": "beschikbaar!",
99
+ "Awful": "Verschrikkelijk",
100
+ "Azure AI Speech": "Azure AI-spraak",
101
+ "Azure Region": "Azure regio",
102
  "Back": "Terug",
103
  "Bad Response": "Ongeldig antwoord",
104
  "Banners": "Banners",
105
+ "Base Model (From)": "Basismodel (Vanaf)",
106
  "Batch Size (num_batch)": "Batchgrootte (num_batch)",
107
  "before": "voor",
108
  "Being lazy": "Lui zijn",
109
+ "Bing Search V7 Endpoint": "Bing Search V7 Endpoint",
110
+ "Bing Search V7 Subscription Key": "Bing Search V7 Subscription Key",
111
  "Brave Search API Key": "Brave Search API-sleutel",
112
+ "By {{name}}": "Op {{name}}",
113
  "Bypass SSL verification for Websites": "SSL-verificatie omzeilen voor websites",
114
  "Call": "Oproep",
115
  "Call feature is not supported when using Web STT engine": "Belfunctie wordt niet ondersteund bij gebruik van de Web STT engine",
116
  "Camera": "Camera",
117
  "Cancel": "Annuleren",
118
  "Capabilities": "Mogelijkheden",
119
+ "Certificate Path": "Certificaatpad",
120
  "Change Password": "Wijzig Wachtwoord",
121
  "Character": "Karakter",
122
+ "Chart new frontiers": "Verken nieuwe grenzen",
123
  "Chat": "Chat",
124
  "Chat Background Image": "Chatachtergrond",
125
+ "Chat Bubble UI": "Chatbubble UI",
126
  "Chat Controls": "Chatbesturing",
127
  "Chat direction": "Chatrichting",
128
  "Chat Overview": "Chatoverzicht",
129
+ "Chat Permissions": "Chattoestemmingen",
130
  "Chat Tags Auto-Generation": "Chatlabels automatisch genereren",
131
  "Chats": "Chats",
132
  "Check Again": "Controleer Opnieuw",
133
  "Check for updates": "Controleer op updates",
134
  "Checking for updates...": "Controleren op updates...",
135
  "Choose a model before saving...": "Kies een model voordat je opslaat...",
136
+ "Chunk Overlap": "Chunkoverlap",
137
+ "Chunk Params": "Chunkparams",
138
+ "Chunk Size": "Chunkgrootte",
139
+ "Ciphers": "Versleutelingen",
140
  "Citation": "Citaat",
141
  "Clear memory": "Geheugen wissen",
142
+ "click here": "klik hier",
143
+ "Click here for filter guides.": "Klik hier voor filterhulp",
144
  "Click here for help.": "Klik hier voor hulp.",
145
  "Click here to": "Klik hier om",
146
  "Click here to download user import template file.": "Klik hier om het sjabloonbestand voor gebruikersimport te downloaden.",
 
157
  "Code execution": "Code uitvoeren",
158
  "Code formatted successfully": "Code succesvol geformateerd",
159
  "Collection": "Verzameling",
160
+ "Color": "Kleur",
161
  "ComfyUI": "ComfyUI",
162
  "ComfyUI Base URL": "ComfyUI Base URL",
163
  "ComfyUI Base URL is required.": "ComfyUI Base URL is required.",
 
166
  "Command": "Commando",
167
  "Completions": "Voltooiingen",
168
  "Concurrent Requests": "Gelijktijdige verzoeken",
169
+ "Configure": "Configureer",
170
  "Confirm": "Bevestigen",
171
+ "Confirm Password": "Bevestig wachtwoord",
172
  "Confirm your action": "Bevestig uw actie",
173
  "Connections": "Verbindingen",
174
  "Contact Admin for WebUI Access": "Neem contact op met de beheerder voor WebUI-toegang",
175
  "Content": "Inhoud",
176
  "Content Extraction": "Inhoudsextractie",
177
+ "Context Length": "Contextlengte",
178
+ "Continue Response": "Doorgaan met antwoord",
179
  "Continue with {{provider}}": "Ga verder met {{provider}}",
180
+ "Continue with Email": "Ga door met E-mail",
181
+ "Continue with LDAP": "Ga door met LDAP",
182
  "Control how message text is split for TTS requests. 'Punctuation' splits into sentences, 'paragraphs' splits into paragraphs, and 'none' keeps the message as a single string.": "Bepaal hoe berichttekst wordt opgesplitst voor TTS-verzoeken. 'Leestekens' splitst op in zinnen, 'alinea's' splitst op in paragrafen en 'geen' houdt het bericht als een enkele string.",
183
  "Controls": "Besturingselementen",
184
+ "Controls the balance between coherence and diversity of the output. A lower value will result in more focused and coherent text. (Default: 5.0)": "Regelt de balans tussen coherentie en diversiteit van de uitvoer. Een lagere waarde resulteert in meer gerichte en coherente tekst. (Standaard: 5.0)",
185
  "Copied": "Gekopieerd",
186
  "Copied shared chat URL to clipboard!": "URL van gedeelde gesprekspagina gekopieerd naar klembord!",
187
  "Copied to clipboard": "Gekopieerd naar klembord",
188
  "Copy": "Kopieer",
189
  "Copy last code block": "Kopieer laatste codeblok",
190
  "Copy last response": "Kopieer laatste antwoord",
191
+ "Copy Link": "Kopieer link",
192
  "Copy to clipboard": "Kopier naar klembord",
193
  "Copying to clipboard was successful!": "Kopiëren naar klembord was succesvol!",
194
+ "Create": "Aanmaken",
195
+ "Create a knowledge base": "Maak een kennisbasis aan",
196
  "Create a model": "Een model maken",
197
+ "Create Account": "Maak account",
198
+ "Create Admin Account": "Maak admin-account",
199
+ "Create Group": "Maak groep",
200
  "Create Knowledge": "Creër kennis",
201
  "Create new key": "Maak nieuwe sleutel",
202
  "Create new secret key": "Maak nieuwe geheim sleutel",
 
204
  "Created At": "Gemaakt op",
205
  "Created by": "Gemaakt door",
206
  "CSV Import": "CSV import",
207
+ "Current Model": "Huidig model",
208
+ "Current Password": "Huidig wachtwoord",
209
  "Custom": "Aangepast",
210
  "Dark": "Donker",
211
  "Database": "Database",
 
215
  "Default (SentenceTransformers)": "Standaard (SentenceTransformers)",
216
  "Default Model": "Standaard model",
217
  "Default model updated": "Standaard model bijgewerkt",
218
+ "Default permissions": "Standaardrechten",
219
+ "Default permissions updated successfully": "Standaardrechten succesvol bijgewerkt",
220
  "Default Prompt Suggestions": "Standaard Prompt Suggesties",
221
+ "Default to 389 or 636 if TLS is enabled": "Standaard 389 of 636 als TLS is ingeschakeld",
222
+ "Default to ALL": "Standaar op ALL",
223
+ "Default User Role": "Standaard gebruikersrol",
224
  "Delete": "Verwijderen",
225
  "Delete a model": "Verwijder een model",
226
  "Delete All Chats": "Verwijder alle chats",
227
+ "Delete All Models": "Verwijder alle modellen",
228
  "Delete chat": "Verwijder chat",
229
+ "Delete Chat": "Verwijder chat",
230
  "Delete chat?": "Verwijder chat?",
231
  "Delete folder?": "Verwijder map?",
232
  "Delete function?": "Verwijder functie?",
233
  "Delete prompt?": "Verwijder prompt?",
234
  "delete this link": "verwijder deze link",
235
  "Delete tool?": "Verwijder tool?",
236
+ "Delete User": "Verwijder gebruiker",
237
  "Deleted {{deleteModelTag}}": "{{deleteModelTag}} is verwijderd",
238
  "Deleted {{name}}": "{{name}} verwijderd",
239
+ "Deleted User": "Gebruiker verwijderd",
240
+ "Describe your knowledge base and objectives": "Beschrijf je kennisbasis en doelstellingen",
241
  "Description": "Beschrijving",
242
  "Didn't fully follow instructions": "Heeft niet alle instructies gevolgt",
243
  "Disabled": "Uitgeschakeld",
 
245
  "Discover a model": "Ontdek een model",
246
  "Discover a prompt": "Ontdek een prompt",
247
  "Discover a tool": "Ontdek een tool",
248
+ "Discover wonders": "Ontdek wonderen",
249
  "Discover, download, and explore custom functions": "Ontdek, download en verken aangepaste functies",
250
  "Discover, download, and explore custom prompts": "Ontdek, download en verken aangepaste prompts",
251
  "Discover, download, and explore custom tools": "Ontdek, download en verken aangepaste gereedschappen",
252
  "Discover, download, and explore model presets": "Ontdek, download en verken model presets",
253
  "Dismissible": "Afwijsbaar",
254
+ "Display": "Toon",
255
+ "Display Emoji in Call": "Emoji tonen tijdens gesprek",
256
  "Display the username instead of You in the Chat": "Toon de gebruikersnaam in plaats van Jij in de Chat",
257
+ "Displays citations in the response": "Toon citaten in het antwoord",
258
+ "Dive into knowledge": "Duik in kennis",
259
  "Do not install functions from sources you do not fully trust.": "Installeer geen functies vanuit bronnen die je niet volledig vertrouwt",
260
  "Do not install tools from sources you do not fully trust.": "Installeer geen tools vanuit bronnen die je niet volledig vertrouwt.",
261
  "Document": "Document",
 
269
  "Done": "Voltooid",
270
  "Download": "Download",
271
  "Download canceled": "Download geannuleerd",
272
+ "Download Database": "Download database",
273
+ "Drag and drop a file to upload or select a file to view": "Sleep een bestand om te uploaden of selecteer een bestand om te bekijken",
274
  "Draw": "Teken",
275
  "Drop any files here to add to the conversation": "Sleep hier bestanden om toe te voegen aan het gesprek",
276
  "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "bijv. '30s', '10m'. Geldige tijdseenheden zijn 's', 'm', 'h'.",
277
+ "e.g. A filter to remove profanity from text": "bijv. Een filter om gevloek uit tekst te verwijderen",
278
+ "e.g. My Filter": "bijv. Mijn filter",
279
+ "e.g. My Tools": "bijv. Mijn gereedschappen",
280
+ "e.g. my_filter": "bijv. mijn_filter",
281
+ "e.g. my_tools": "bijv. mijn_gereedschappen",
282
+ "e.g. Tools for performing various operations": "Gereedschappen om verschillende bewerkingen uit te voeren",
283
  "Edit": "Wijzig",
284
+ "Edit Arena Model": "Bewerk arenamodel",
285
+ "Edit Connection": "Bewerk connectie",
286
+ "Edit Default Permissions": "Standaardrechten bewerken",
287
+ "Edit Memory": "Bewerk geheugen",
288
+ "Edit User": "Wijzig gebruiker",
289
+ "Edit User Group": "Bewerk gebruikergroep",
290
  "ElevenLabs": "ElevenLabs",
291
+ "Email": "E-mail",
292
+ "Embark on adventures": "Ga op avonturen",
293
+ "Embedding Batch Size": "Embedding batchgrootte",
294
  "Embedding Model": "Embedding Model",
295
  "Embedding Model Engine": "Embedding Model Engine",
296
  "Embedding model set to \"{{embedding_model}}\"": "Embedding model ingesteld op \"{{embedding_model}}\"",
297
+ "Enable API Key Auth": "Schakel API-sleutel authenticatie in",
298
  "Enable Community Sharing": "Delen via de community inschakelen",
299
+ "Enable Memory Locking (mlock) to prevent model data from being swapped out of RAM. This option locks the model's working set of pages into RAM, ensuring that they will not be swapped out to disk. This can help maintain performance by avoiding page faults and ensuring fast data access.": "Schakel Memory Locking (mlock) in om te voorkomen dat modelgegevens uit het RAM worden verwisseld. Deze optie vergrendelt de werkset pagina's van het model in het RAM, zodat ze niet naar de schijf worden uitgewisseld. Dit kan helpen om de prestaties op peil te houden door paginafouten te voorkomen en snelle gegevenstoegang te garanderen.",
300
+ "Enable Memory Mapping (mmap) to load model data. This option allows the system to use disk storage as an extension of RAM by treating disk files as if they were in RAM. This can improve model performance by allowing for faster data access. However, it may not work correctly with all systems and can consume a significant amount of disk space.": "Schakel Memory Mapping (mmap) in om modelgegevens te laden. Deze optie laat het systeem schijfopslag gebruiken als een uitbreiding van RAM door schijfbestanden te behandelen alsof ze in RAM zitten. Dit kan de prestaties van het model verbeteren door snellere gegevenstoegang mogelijk te maken. Het is echter mogelijk dat deze optie niet op alle systemen correct werkt en een aanzienlijke hoeveelheid schijfruimte in beslag kan nemen.",
301
  "Enable Message Rating": "Schakel berichtbeoordeling in",
302
+ "Enable Mirostat sampling for controlling perplexity. (Default: 0, 0 = Disabled, 1 = Mirostat, 2 = Mirostat 2.0)": "Mirostat-sampling inschakelen voor het regelen van de perplexiteit. (Standaard: 0, 0 = uitgeschakeld, 1 = Mirostat, 2 = Mirostat 2.0)",
303
+ "Enable New Sign Ups": "Schakel nieuwe registraties in",
304
+ "Enable Retrieval Query Generation": "Opvraaggeneratie inschakelen",
305
+ "Enable Tags Generation": "Tags genereren inschakelen",
306
  "Enable Web Search": "Zoeken op het web inschakelen",
307
  "Enable Web Search Query Generation": "Schakel zoekopdrachtgeneratie in",
308
  "Enabled": "Ingeschakeld",
 
311
  "Enter {{role}} message here": "Voeg {{role}} bericht hier toe",
312
  "Enter a detail about yourself for your LLMs to recall": "Voer een detail over jezelf in zodat LLM's het kunnen onthouden",
313
  "Enter api auth string (e.g. username:password)": "Voer api auth string in (bv. gebruikersnaam:wachtwoord)",
314
+ "Enter Application DN": "Voer applicatie-DN in",
315
+ "Enter Application DN Password": "Voer applicatie-DN wachtwoord in",
316
+ "Enter Bing Search V7 Endpoint": "Voer Bing Search V7 Endpoint in",
317
+ "Enter Bing Search V7 Subscription Key": "Voer Bing Search V7 abonnementscode in",
318
  "Enter Brave Search API Key": "Voer de Brave Search API-sleutel in",
319
+ "Enter certificate path": "Voer certificaatpad in",
320
  "Enter CFG Scale (e.g. 7.0)": "Voer CFG schaal in (bv. 7.0)",
321
  "Enter Chunk Overlap": "Voeg Chunk Overlap toe",
322
  "Enter Chunk Size": "Voeg Chunk Size toe",
 
325
  "Enter Google PSE API Key": "Voer de Google PSE API-sleutel in",
326
  "Enter Google PSE Engine Id": "Voer Google PSE Engine-ID in",
327
  "Enter Image Size (e.g. 512x512)": "Voeg afbeelding formaat toe (Bijv. 512x512)",
328
+ "Enter Jina API Key": "Voer Jina API-sleutel in",
329
  "Enter language codes": "Voeg taal codes toe",
330
+ "Enter Model ID": "Voer model-ID in",
331
  "Enter model tag (e.g. {{modelTag}})": "Voeg model tag toe (Bijv. {{modelTag}})",
332
  "Enter Number of Steps (e.g. 50)": "Voeg aantal stappen toe (Bijv. 50)",
333
  "Enter Sampler (e.g. Euler a)": "Voer Sampler in (bv. Euler a)",
334
  "Enter Scheduler (e.g. Karras)": "Voer Scheduler in (bv. Karras)",
335
  "Enter Score": "Voeg score toe",
336
+ "Enter SearchApi API Key": "Voer SearchApi API-sleutel in",
337
  "Enter SearchApi Engine": "Voer SearchApi-Engine in",
338
  "Enter Searxng Query URL": "Voer de URL van de Searxng-query in",
339
+ "Enter Seed": "Voer Seed in",
340
  "Enter Serper API Key": "Voer de Serper API-sleutel in",
341
  "Enter Serply API Key": "Voer Serply API-sleutel in",
342
  "Enter Serpstack API Key": "Voer de Serpstack API-sleutel in",
343
+ "Enter server host": "Voer serverhost in",
344
+ "Enter server label": "Voer serverlabel in",
345
+ "Enter server port": "Voer serverpoort in",
346
+ "Enter stop sequence": "Voer stopsequentie in",
347
  "Enter system prompt": "Voer systeem prompt in",
348
  "Enter Tavily API Key": "Voer Tavily API-sleutel in",
349
  "Enter Tika Server URL": "Voer Tika Server URL in",
 
355
  "Enter your message": "Voer je bericht in",
356
  "Enter Your Password": "Voer je Wachtwoord in",
357
  "Enter Your Role": "Voer je Rol in",
358
+ "Enter Your Username": "Voer je gebruikersnaam in",
359
  "Error": "Fout",
360
  "ERROR": "ERROR",
361
  "Evaluations": "Beoordelingen",
362
+ "Example: (&(objectClass=inetOrgPerson)(uid=%s))": "Voorbeeld: (&(objectClass=inetOrgPerson)(uid=%s))",
363
+ "Example: ALL": "Voorbeeld: ALL",
364
+ "Example: ou=users,dc=foo,dc=example": "Voorbeeld: ou=users,dc=foo,dc=example",
365
+ "Example: sAMAccountName or uid or userPrincipalName": "Voorbeeld: sAMAccountName or uid or userPrincipalName",
366
  "Exclude": "Sluit uit",
367
  "Experimental": "Experimenteel",
368
+ "Explore the cosmos": "Ontdek de kosmos",
369
  "Export": "Exporteren",
370
+ "Export All Archived Chats": "Exporteer alle gearchiveerde chats",
371
+ "Export All Chats (All Users)": "Exporteer alle chats (Alle gebruikers)",
372
  "Export chat (.json)": "Exporteer chat (.json)",
373
+ "Export Chats": "Exporteer chats",
374
+ "Export Config to JSON File": "Exporteer configuratie naar JSON-bestand",
375
  "Export Functions": "Exporteer functies",
376
  "Export Models": "Modellen exporteren",
377
+ "Export Presets": "Voorinstellingen exporteren",
378
  "Export Prompts": "Exporteer Prompts",
379
+ "Export to CSV": "Exporteer naar CSV",
380
  "Export Tools": "Exporteer gereedschappen",
381
  "External Models": "Externe modules",
382
  "Failed to add file.": "Het is niet gelukt om het bestand toe te voegen.",
 
386
  "Failed to upload file.": "Bestand kon niet worden geüpload.",
387
  "February": "Februari",
388
  "Feedback History": "Feedback geschiedenis",
389
+ "Feedbacks": "Feedback",
390
  "Feel free to add specific details": "Voeg specifieke details toe",
391
  "File": "Bestand",
392
  "File added successfully.": "Bestand succesvol toegevoegd.",
 
407
  "Folder name cannot be empty.": "Mapnaam kan niet leeg zijn",
408
  "Folder name updated successfully": "Mapnaam succesvol aangepast",
409
  "Followed instructions perfectly": "Volgde instructies perfect",
410
+ "Forge new paths": "Smeed nieuwe paden",
411
  "Form": "Formulier",
412
  "Format your variables using brackets like this:": "Formateer je variabelen met haken zoals dit:",
413
  "Frequency Penalty": "Frequentiestraf",
414
  "Function": "Functie",
415
  "Function created successfully": "Functie succesvol aangemaakt",
416
  "Function deleted successfully": "Functie succesvol verwijderd",
417
+ "Function Description": "Functiebeschrijving",
418
+ "Function ID": "Functie-ID",
419
  "Function is now globally disabled": "Functie is nu globaal uitgeschakeld",
420
  "Function is now globally enabled": "Functie is nu globaal ingeschakeld",
421
+ "Function Name": "Functienaam",
422
  "Function updated successfully": "Functienaam succesvol aangepast",
423
  "Functions": "Functies",
424
  "Functions allow arbitrary code execution": "Functies staan willekeurige code-uitvoering toe",
 
429
  "Generate Image": "Genereer afbeelding",
430
  "Generating search query": "Zoekopdracht genereren",
431
  "Generation Info": "Generatie Info",
432
+ "Get started": "Begin",
433
+ "Get started with {{WEBUI_NAME}}": "Begin met {{WEBUI_NAME}}",
434
  "Global": "Globaal",
435
+ "Good Response": "Goed antwoord",
436
  "Google PSE API Key": "Google PSE API-sleutel",
437
  "Google PSE Engine Id": "Google PSE-engine-ID",
438
+ "Group created successfully": "Groep succesvol aangemaakt",
439
+ "Group deleted successfully": "Groep succesvol verwijderd",
440
+ "Group Description": "Groepsbeschrijving",
441
+ "Group Name": "Groepsnaam",
442
+ "Group updated successfully": "Groep succesvol bijgewerkt",
443
+ "Groups": "GRoepen",
444
  "h:mm a": "h:mm a",
445
  "Haptic Feedback": "Haptische feedback",
446
  "has no conversations.": "heeft geen gesprekken.",
447
  "Hello, {{name}}": "Hallo, {{name}}",
448
  "Help": "Help",
449
  "Help us create the best community leaderboard by sharing your feedback history!": "Help ons het beste community leaderboard te maken door je feedbackgeschiedenis te delen!",
450
+ "Hex Color": "Hex-kleur",
451
+ "Hex Color - Leave empty for default color": "Hex-kleur - laat leeg voor standaardkleur",
452
  "Hide": "Verberg",
453
+ "Host": "Host",
454
  "How can I help you today?": "Hoe kan ik je vandaag helpen?",
455
+ "How would you rate this response?": "Hoe zou je dit antwoord beoordelen?",
456
  "Hybrid Search": "Hybride Zoeken",
457
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "Ik bevestig dat ik de implicaties van mijn actie heb gelezen en begrepen. Ik ben me bewust van de risico's die gepaard gaan met het uitvoeren van willekeurige code en ik heb de betrouwbaarheid van de bron gecontroleerd.",
458
  "ID": "ID",
459
+ "Ignite curiosity": "Wakker nieuwsgierigheid aan",
460
  "Image Generation (Experimental)": "Afbeelding Generatie (Experimenteel)",
461
  "Image Generation Engine": "Afbeelding Generatie Engine",
462
  "Image Settings": "Afbeelding Instellingen",
 
465
  "Import Config from JSON File": "Importeer configuratie vanuit JSON-bestand",
466
  "Import Functions": "Importeer Functies",
467
  "Import Models": "Modellen importeren",
468
+ "Import Presets": "Importeer voorinstellingen",
469
  "Import Prompts": "Importeer Prompts",
470
  "Import Tools": "Importeer Gereedschappen",
471
  "Include": "Voeg toe",
472
  "Include `--api-auth` flag when running stable-diffusion-webui": "Voeg '--api-auth` toe bij het uitvoeren van stable-diffusion-webui",
473
  "Include `--api` flag when running stable-diffusion-webui": "Voeg `--api` vlag toe bij het uitvoeren van stable-diffusion-webui",
474
+ "Influences how quickly the algorithm responds to feedback from the generated text. A lower learning rate will result in slower adjustments, while a higher learning rate will make the algorithm more responsive. (Default: 0.1)": "Beïnvloedt hoe snel het algoritme reageert op feedback van de gegenereerde tekst. Een lagere leersnelheid resulteert in langzamere aanpassingen, terwijl een hogere leersnelheid het algoritme gevoeliger maakt. (Standaard: 0,1)",
475
  "Info": "Info",
476
  "Input commands": "Voer commando's in",
477
  "Install from Github URL": "Installeren vanaf Github-URL",
 
480
  "Invalid file format.": "Ongeldig bestandsformaat",
481
  "Invalid Tag": "Ongeldige Tag",
482
  "January": "Januari",
483
+ "Jina API Key": "Jina API-sleutel",
484
  "join our Discord for help.": "join onze Discord voor hulp.",
485
  "JSON": "JSON",
486
  "JSON Preview": "JSON-voorbeeld",
 
489
  "JWT Expiration": "JWT Expiration",
490
  "JWT Token": "JWT Token",
491
  "Keep Alive": "Houd Actief",
492
+ "Key": "Sleutel",
493
  "Keyboard shortcuts": "Toetsenbord snelkoppelingen",
494
  "Knowledge": "Kennis",
495
+ "Knowledge Access": "Kennistoegang",
496
  "Knowledge created successfully.": "Kennis succesvol aangemaakt",
497
  "Knowledge deleted successfully.": "Kennis succesvol verwijderd",
498
  "Knowledge reset successfully.": "Kennis succesvol gereset",
499
  "Knowledge updated successfully": "Kennis succesvol bijgewerkt",
500
+ "Label": "Label",
501
  "Landing Page Mode": "Landingspaginamodus",
502
  "Language": "Taal",
503
  "Last Active": "Laatst Actief",
504
  "Last Modified": "Laatst aangepast",
505
+ "LDAP": "LDAP",
506
+ "LDAP server updated": "LDAP-server bijgewerkt",
507
  "Leaderboard": "Klassement",
508
  "Leave empty for unlimited": "Laat leeg voor ongelimiteerd",
509
+ "Leave empty to include all models from \"{{URL}}/api/tags\" endpoint": "Laat leeg om alle modellen van het \"{{URL}}/api/tags\" endpoint toe te voegen",
510
+ "Leave empty to include all models from \"{{URL}}/models\" endpoint": "Laat leeg om alle modellen van het \"{{URL}}/models\" endpoint toe te voegen",
511
  "Leave empty to include all models or select specific models": "Laat leeg om alle modellen mee te nemen, of selecteer specifieke modellen",
512
  "Leave empty to use the default prompt, or enter a custom prompt": "Laat leeg om de standaard prompt te gebruiken, of selecteer een aangepaste prompt",
513
  "Light": "Licht",
514
  "Listening...": "Aan het luisteren...",
515
  "LLMs can make mistakes. Verify important information.": "LLMs kunnen fouten maken. Verifieer belangrijke informatie.",
516
+ "Local": "Lokaal",
517
  "Local Models": "Lokale modellen",
518
  "Lost": "Verloren",
519
  "LTR": "LTR",
 
522
  "Make sure to export a workflow.json file as API format from ComfyUI.": "Zorg ervoor dat je een workflow.json-bestand als API-formaat exporteert vanuit ComfyUI.",
523
  "Manage": "Beheren",
524
  "Manage Arena Models": "Beheer Arenamodellen",
525
+ "Manage Ollama": "Beheer Ollama",
526
+ "Manage Ollama API Connections": "Beheer Ollama API-verbindingen",
527
+ "Manage OpenAI API Connections": "Beheer OpenAI API-verbindingen",
528
  "Manage Pipelines": "Pijplijnen beheren",
529
  "March": "Maart",
530
  "Max Tokens (num_predict)": "Max Tokens (num_predict)",
 
542
  "Message rating should be enabled to use this feature": "Berichtbeoordeling moet ingeschakeld zijn om deze functie te gebruiken",
543
  "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.",
544
  "Min P": "Min P",
545
+ "Minimum Score": "Minimale score",
546
  "Mirostat": "Mirostat",
547
  "Mirostat Eta": "Mirostat Eta",
548
  "Mirostat Tau": "Mirostat Tau",
 
558
  "Model accepts image inputs": "Model accepteerd afbeeldingsinvoer",
559
  "Model created successfully!": "Model succesvol gecreëerd",
560
  "Model filesystem path detected. Model shortname is required for update, cannot continue.": "Model filesystem path gedetecteerd. Model shortname is vereist voor update, kan niet doorgaan.",
561
+ "Model Filtering": "Modelfiltratie",
562
  "Model ID": "Model-ID",
563
+ "Model IDs": "Model-IDs",
564
+ "Model Name": "Modelnaam",
565
  "Model not selected": "Model niet geselecteerd",
566
+ "Model Params": "Modelparams",
567
+ "Model Permissions": "Modeltoestemmingen",
568
  "Model updated successfully": "Model succesvol bijgewerkt",
569
  "Modelfile Content": "Modelfile Inhoud",
570
  "Models": "Modellen",
571
+ "Models Access": "Modellentoegang",
572
  "more": "Meer",
573
  "More": "Meer",
574
  "Name": "Naam",
575
+ "Name your knowledge base": "Geef je kennisbasis een naam",
576
  "New Chat": "Nieuwe Chat",
577
  "New folder": "Nieuwe map",
578
  "New Password": "Nieuw Wachtwoord",
 
582
  "No feedbacks found": "Geen feedback gevonden",
583
  "No file selected": "Geen bestand geselecteerd",
584
  "No files found.": "Geen bestanden gevonden",
585
+ "No groups with access, add a group to grant access": "Geen groepen met toegang, voeg een groep toe om toegang te geven",
586
  "No HTML, CSS, or JavaScript content found.": "Geen HTML, CSS, of JavaScript inhoud gevonden",
587
  "No knowledge found": "Geen kennis gevonden",
588
+ "No model IDs": "Geen model-ID's",
589
  "No models found": "Geen modellen gevonden",
590
  "No results found": "Geen resultaten gevonden",
591
  "No search query generated": "Geen zoekopdracht gegenereerd",
592
  "No source available": "Geen bron beschikbaar",
593
+ "No users were found.": "Geen gebruikers gevonden",
594
  "No valves to update": "Geen kleppen om bij te werken",
595
  "None": "Geen",
596
  "Not factually correct": "Niet feitelijk juist",
597
  "Not helpful": "Niet nuttig",
598
+ "Note: If you set a minimum score, the search will only return documents with a score greater than or equal to the minimum score.": "Opmerking: Als je een minimumscore instelt, levert de zoekopdracht alleen documenten op met een score groter dan of gelijk aan de minimumscore.",
599
  "Notes": "Aantekeningen",
600
  "Notifications": "Desktop Notificaties",
601
  "November": "November",
 
604
  "OAuth ID": "OAuth ID",
605
  "October": "Oktober",
606
  "Off": "Uit",
607
+ "Okay, Let's Go!": "Oké, laten we gaan!",
608
  "OLED Dark": "OLED Donker",
609
  "Ollama": "Ollama",
610
  "Ollama API": "Ollama API",
611
  "Ollama API disabled": "Ollama API uitgeschakeld",
612
+ "Ollama API settings updated": "Ollama API-instellingen bijgewerkt",
613
  "Ollama Version": "Ollama Versie",
614
  "On": "Aan",
615
+ "Only alphanumeric characters and hyphens are allowed": "Alleen alfanumerieke tekens en koppeltekens zijn toegestaan",
616
  "Only alphanumeric characters and hyphens are allowed in the command string.": "Alleen alfanumerieke karakters en streepjes zijn toegestaan in de commando string.",
617
  "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",
618
+ "Only select users and groups with permission can access": "Alleen geselecteerde gebruikers en groepen met toestemming hebben toegang",
619
  "Oops! Looks like the URL is invalid. Please double-check and try again.": "Oeps! Het lijkt erop dat de URL ongeldig is. Controleer het nogmaals en probeer opnieuw.",
620
  "Oops! There are files still uploading. Please wait for the upload to complete.": "Oeps! Er zijn nog bestanden aan het uploaden. Wacht tot het uploaden voltooid is.",
621
  "Oops! There was an error in the previous response.": "Oeps! Er was een fout in de vorige reactie.",
 
624
  "Open in full screen": "Open in volledig scherm",
625
  "Open new chat": "Open nieuwe chat",
626
  "Open WebUI uses faster-whisper internally.": "Open WebUI gebruikt faster-whisper intern",
627
+ "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI gebruikt SpeechT5 en CMU Arctic spreker-embeddings",
628
  "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Open WebUI versie (v{{OPEN_WEBUI_VERSION}}) is kleiner dan de benodigde versie (v{{REQUIRED_VERSION}})",
629
  "OpenAI": "OpenAI",
630
  "OpenAI API": "OpenAI API",
631
+ "OpenAI API Config": "OpenAI API-configuratie",
632
+ "OpenAI API Key is required.": "OpenAI API-sleutel is verplicht",
633
+ "OpenAI API settings updated": "OpenAI API-sleutel bijgewerkt",
634
  "OpenAI URL/Key required.": "OpenAI URL/Sleutel vereist.",
635
  "or": "of",
636
+ "Organize your users": "Orden je gebruikers",
637
  "Other": "Andere",
638
  "OUTPUT": "UITVOER",
639
  "Output format": "Uitvoerformaat",
640
  "Overview": "Overzicht",
641
+ "page": "pagina",
642
  "Password": "Wachtwoord",
643
+ "Paste Large Text as File": "Plak grote tekst als bestand",
644
  "PDF document (.pdf)": "PDF document (.pdf)",
645
+ "PDF Extract Images (OCR)": "PDF extraheer afbeeldingen (OCR)",
646
  "pending": "wachtend",
647
  "Permission denied when accessing media devices": "Toegang geweigerd bij het toegang krijgen tot media-apparaten",
648
  "Permission denied when accessing microphone": "Toegang geweigerd bij het toegang krijgen tot de microfoon",
649
  "Permission denied when accessing microphone: {{error}}": "Toestemming geweigerd bij toegang tot microfoon: {{error}}",
650
+ "Permissions": "Toestemmingen",
651
  "Personalization": "Personalisatie",
652
+ "Pin": "Zet vast",
653
  "Pinned": "Vastgezet",
654
+ "Pioneer insights": "Verken inzichten",
655
  "Pipeline deleted successfully": "Pijpleiding succesvol verwijderd",
656
  "Pipeline downloaded successfully": "Pijpleiding succesvol gedownload",
657
  "Pipelines": "Pijpleidingen",
 
663
  "Please enter a prompt": "Voer een prompt in",
664
  "Please fill in all fields.": "Voer alle velden in",
665
  "Please select a reason": "Voer een reden in",
666
+ "Port": "Poort",
667
  "Positive attitude": "Positieve positie",
668
+ "Prefix ID": "Voorvoegsel-ID",
669
+ "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",
670
  "Previous 30 days": "Vorige 30 dagen",
671
  "Previous 7 days": "Vorige 7 dagen",
672
  "Profile Image": "Profielafbeelding",
673
  "Prompt (e.g. Tell me a fun fact about the Roman Empire)": "Prompt (bv. Vertel me een leuke gebeurtenis over het Romeinse Rijk)",
674
+ "Prompt Content": "Promptinhoud",
675
+ "Prompt created successfully": "Prompt succesvol aangemaakt",
676
+ "Prompt suggestions": "Promptsuggesties",
677
+ "Prompt updated successfully": "Prompt succesvol bijgewerkt",
678
  "Prompts": "Prompts",
679
+ "Prompts Access": "Prompttoegang",
680
  "Pull \"{{searchValue}}\" from Ollama.com": "Haal \"{{searchValue}}\" uit Ollama.com",
681
  "Pull a model from Ollama.com": "Haal een model van Ollama.com",
682
+ "Query Generation Prompt": "Vraaggeneratieprompt",
683
+ "Query Params": "Vraagparameters",
684
+ "RAG Template": "RAG-sjabloon",
685
  "Rating": "Beoordeling",
686
  "Re-rank models by topic similarity": "Herrangschik modellen op basis van onderwerpsovereenkomst",
687
  "Read Aloud": "Voorlezen",
688
  "Record voice": "Neem stem op",
689
  "Redirecting you to OpenWebUI Community": "Je wordt doorgestuurd naar OpenWebUI Community",
690
+ "Reduces the probability of generating nonsense. A higher value (e.g. 100) will give more diverse answers, while a lower value (e.g. 10) will be more conservative. (Default: 40)": "Vermindert de kans op het genereren van onzin. Een hogere waarde (bijv. 100) zal meer diverse antwoorden geven, terwijl een lagere waarde (bijv. 10) conservatiever zal zijn. (Standaard: 40)",
691
  "Refer to yourself as \"User\" (e.g., \"User is learning Spanish\")": "Refereer naar jezelf als \"user\" (bv. \"User is Spaans aan het leren\"",
692
  "References from": "Referenties van",
693
  "Refused when it shouldn't have": "Geweigerd terwijl het niet had moeten",
694
  "Regenerate": "Regenereren",
695
+ "Release Notes": "Release-opmerkingen",
696
  "Relevance": "Relevantie",
697
  "Remove": "Verwijderen",
698
+ "Remove Model": "Verwijder model",
699
  "Rename": "Hernoemen",
700
  "Repeat Last N": "Herhaal Laatste N",
701
  "Request Mode": "Request Modus",
 
726
  "Scroll to bottom when switching between branches": "Scroll naar onderen bij het wisselen tussen takken",
727
  "Search": "Zoeken",
728
  "Search a model": "Zoek een model",
729
+ "Search Base": "Zoeken naar basis",
730
  "Search Chats": "Chats zoeken",
731
  "Search Collection": "Zoek naar verzamelingen",
732
+ "Search Filters": "Zoek naar filters",
733
  "search for tags": "Zoek naar tags",
734
  "Search Functions": "Zoek naar functie",
735
  "Search Knowledge": "Zoek naar Kennis",
736
  "Search Models": "Modellen zoeken",
737
+ "Search options": "Opties zoeken",
738
+ "Search Prompts": "Prompts zoeken",
739
  "Search Result Count": "Aantal zoekresultaten",
740
+ "Search the web": "Zoek op het internet",
741
  "Search Tools": "Zoek gereedschappen",
742
  "SearchApi API Key": "SearchApi API-sleutel",
743
  "SearchApi Engine": "SearchApi Engine",
 
752
  "Select a base model": "Selecteer een basismodel",
753
  "Select a engine": "Selecteer een engine",
754
  "Select a function": "Selecteer een functie",
755
+ "Select a group": "Selecteer een groep",
756
  "Select a model": "Selecteer een model",
757
  "Select a pipeline": "Selecteer een pijplijn",
758
  "Select a pipeline url": "Selecteer een pijplijn-URL",
759
  "Select a tool": "Selecteer een tool",
760
  "Select Engine": "Selecteer Engine",
761
+ "Select Knowledge": "Selecteer kennis",
762
  "Select model": "Selecteer een model",
763
  "Select only one model to call": "Selecteer maar één model om aan te roepen",
764
  "Selected model(s) do not support image inputs": "Geselecteerde modellen ondersteunen geen beeldinvoer",
765
  "Semantic distance to query": "Semantische afstand tot query",
766
  "Send": "Verzenden",
767
+ "Send a Message": "Stuur een bericht",
768
  "Send message": "Stuur bericht",
769
  "Sends `stream_options: { include_usage: true }` in the request.\nSupported providers will return token usage information in the response when set.": "Stuurt `stream_options: { include_usage: true }` in het verzoek. \nOndersteunde providers zullen informatie over tokengebruik in het antwoord terugsturen als dit aan staat.",
770
  "September": "September",
 
775
  "Set as default": "Stel in als standaard",
776
  "Set CFG Scale": "Stel CFG-schaal in",
777
  "Set Default Model": "Stel Standaard Model in",
778
+ "Set embedding model": "Stel embedding-model in",
779
+ "Set embedding model (e.g. {{model}})": "Stel embedding-model in (bv. {{model}})",
780
+ "Set Image Size": "Stel afbeeldingsgrootte in",
781
+ "Set reranking model (e.g. {{model}})": "Stel reranking-model in (bv. {{model}})",
782
  "Set Sampler": "Stel Sampler in",
783
  "Set Scheduler": "Stel planner in",
784
+ "Set Steps": "Stel stappen in",
785
  "Set Task Model": "Taakmodel instellen",
786
+ "Set the number of GPU devices used for computation. This option controls how many GPU devices (if available) are used to process incoming requests. Increasing this value can significantly improve performance for models that are optimized for GPU acceleration but may also consume more power and GPU resources.": "Stel het aantal GPU apparaten in dat gebruikt wordt voor berekeningen. Deze optie bepaalt hoeveel GPU-apparaten (indien beschikbaar) worden gebruikt om binnenkomende aanvragen te verwerken. Het verhogen van deze waarde kan de prestaties aanzienlijk verbeteren voor modellen die geoptimaliseerd zijn voor GPU-versnelling, maar kan ook meer stroom en GPU-bronnen verbruiken.",
787
+ "Set the number of worker threads used for computation. This option controls how many threads are used to process incoming requests concurrently. Increasing this value can improve performance under high concurrency workloads but may also consume more CPU resources.": "Stel het aantal threads in dat wordt gebruikt voor berekeningen. Deze optie bepaalt hoeveel threads worden gebruikt om gelijktijdig binnenkomende verzoeken te verwerken. Het verhogen van deze waarde kan de prestaties verbeteren onder hoge concurrency werklasten, maar kan ook meer CPU-bronnen verbruiken.",
788
+ "Set Voice": "Stel stem in",
789
+ "Set whisper model": "Stel Whisper-model in",
790
+ "Sets how far back for the model to look back to prevent repetition. (Default: 64, 0 = disabled, -1 = num_ctx)": "Stelt in hoe ver het model terug moet kijken om herhaling te voorkomen. (Standaard: 64, 0 = uitgeschakeld, -1 = num_ctx)",
791
+ "Sets how strongly to penalize repetitions. A higher value (e.g., 1.5) will penalize repetitions more strongly, while a lower value (e.g., 0.9) will be more lenient. (Default: 1.1)": "Stelt in hoe sterk herhalingen bestraft moeten worden. Een hogere waarde (bijv. 1,5) zal herhalingen sterker bestraffen, terwijl een lagere waarde (bijv. 0,9) milder zal zijn. (Standaard: 1.1)",
792
+ "Sets the random number seed to use for generation. Setting this to a specific number will make the model generate the same text for the same prompt. (Default: random)": "Stelt de willekeurigheid in om te gebruiken voor het genereren. Als je dit op een specifiek getal instelt, genereert het model dezelfde tekst voor dezelfde prompt. (Standaard: willekeurig)",
793
+ "Sets the size of the context window used to generate the next token. (Default: 2048)": "Stelt de grootte in van het contextvenster dat wordt gebruikt om het volgende token te genereren. (Standaard: 2048)",
794
+ "Sets the stop sequences to use. When this pattern is encountered, the LLM will stop generating text and return. Multiple stop patterns may be set by specifying multiple separate stop parameters in a modelfile.": "Stelt de te gebruiken stopreeksen in. Als dit patroon wordt gevonden, stopt de LLM met het genereren van tekst en keert terug. Er kunnen meerdere stoppatronen worden ingesteld door meerdere afzonderlijke stopparameters op te geven in een modelbestand.",
795
  "Settings": "Instellingen",
796
  "Settings saved successfully!": "Instellingen succesvol opgeslagen!",
797
+ "Share": "Delen",
798
+ "Share Chat": "Deel chat",
799
+ "Share to OpenWebUI Community": "Deel naar OpenWebUI-community",
800
  "Show": "Toon",
801
+ "Show \"What's New\" modal on login": "Toon \"Wat is nieuw\" bij inloggen",
802
  "Show Admin Details in Account Pending Overlay": "Admin-details weergeven in overlay in afwachting van account",
803
  "Show shortcuts": "Toon snelkoppelingen",
804
  "Show your support!": "Toon je steun",
805
+ "Showcased creativity": "Toonde creativiteit",
806
  "Sign in": "Inloggen",
807
  "Sign in to {{WEBUI_NAME}}": "Log in bij {{WEBUI_NAME}}",
808
+ "Sign in to {{WEBUI_NAME}} with LDAP": "Log in bij {{WEBUI_NAME}} met LDAP",
809
  "Sign Out": "Uitloggen",
810
  "Sign up": "Registreren",
811
  "Sign up to {{WEBUI_NAME}}": "Meld je aan bij {{WEBUI_NAME}}",
 
815
  "Speech recognition error: {{error}}": "Spraakherkenning fout: {{error}}",
816
  "Speech-to-Text Engine": "Spraak-naar-tekst Engine",
817
  "Stop": "Stop",
818
+ "Stop Sequence": "Stop sequentie",
819
+ "Stream Chat Response": "Stream chat-antwoord",
820
  "STT Model": "STT Model",
821
  "STT Settings": "STT Instellingen",
822
  "Subtitle (e.g. about the Roman Empire)": "Ondertitel (bijv. over de Romeinse Empire)",
 
828
  "Sync directory": "Synchroniseer map",
829
  "System": "Systeem",
830
  "System Instructions": "Systeem instructies",
831
+ "System Prompt": "Systeem prompt",
832
  "Tags Generation Prompt": "Prompt voor taggeneratie",
833
+ "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. (default: 1)": "Tail free sampling wordt gebruikt om de impact van minder waarschijnlijke tokens uit de uitvoer te verminderen. Een hogere waarde (bv. 2,0) zal de impact meer verminderen, terwijl een waarde van 1,0 deze instelling uitschakelt. (standaard: 1)",
834
  "Tap to interrupt": "Tik om te onderbreken",
835
  "Tavily API Key": "Tavily API-sleutel",
836
  "Tell us more:": "Vertel ons meer:",
 
840
  "Text Splitter": "Tekst splitser",
841
  "Text-to-Speech Engine": "Tekst-naar-Spraak Engine",
842
  "Tfs Z": "Tfs Z",
843
+ "Thanks for your feedback!": "Bedankt voor je feedback!",
844
+ "The Application Account DN you bind with for search": "Het applicatieaccount DN waarmee je zoekt",
845
+ "The base to search for users": "De basis om gebruikers te zoeken",
846
+ "The batch size determines how many text requests are processed together at once. A higher batch size can increase the performance and speed of the model, but it also requires more memory. (Default: 512)": "De batchgrootte bepaalt hoeveel tekstverzoeken tegelijk worden verwerkt. Een hogere batchgrootte kan de prestaties en snelheid van het model verhogen, maar vereist ook meer geheugen. (Standaard: 512)",
847
  "The developers behind this plugin are passionate volunteers from the community. If you find this plugin helpful, please consider contributing to its development.": "De ontwikkelaars achter deze plugin zijn gepassioneerde vrijwilligers uit de gemeenschap. Als je deze plugin nuttig vindt, overweeg dan om bij te dragen aan de ontwikkeling ervan.",
848
  "The evaluation leaderboard is based on the Elo rating system and is updated in real-time.": "Het beoordelingsklassement is gebaseerd op het Elo-classificatiesysteem en wordt in realtime bijgewerkt.",
849
+ "The LDAP attribute that maps to the username that users use to sign in.": "Het LDAP-attribuut dat de gebruikersnaam koppelt die gebruikers gebruiken om in te loggen.",
850
  "The leaderboard is currently in beta, and we may adjust the rating calculations as we refine the algorithm.": "Het leaderboard is momenteel in bèta en we kunnen de ratingberekeningen aanpassen naarmate we het algoritme verfijnen.",
851
  "The maximum file size in MB. If the file size exceeds this limit, the file will not be uploaded.": "De maximale bestandsgrootte in MB. Als het bestand groter is dan deze limiet, wordt het bestand niet geüpload.",
852
  "The maximum number of files that can be used at once in chat. If the number of files exceeds this limit, the files will not be uploaded.": "Het maximum aantal bestanden dat in één keer kan worden gebruikt in de chat. Als het aantal bestanden deze limiet overschrijdt, worden de bestanden niet geüpload.",
853
  "The score should be a value between 0.0 (0%) and 1.0 (100%).": "Het score moet een waarde zijn tussen 0.0 (0%) en 1.0 (100%).",
854
+ "The temperature of the model. Increasing the temperature will make the model answer more creatively. (Default: 0.8)": "De temperatuur van het model. Als je de temperatuur verhoogt, zal het model creatiever antwoorden. (Standaard: 0,8)",
855
  "Theme": "Thema",
856
  "Thinking...": "Aan het denken...",
857
  "This action cannot be undone. Do you wish to continue?": "Deze actie kan niet ongedaan worden gemaakt. Wilt u doorgaan?",
858
  "This ensures that your valuable conversations are securely saved to your backend database. Thank you!": "Dit zorgt ervoor dat je waardevolle gesprekken veilig worden opgeslagen in je backend database. Dank je wel!",
859
  "This is an experimental feature, it may not function as expected and is subject to change at any time.": "Dit is een experimentele functie, het kan functioneren zoals verwacht en kan op elk moment veranderen.",
860
+ "This option controls how many tokens are preserved when refreshing the context. For example, if set to 2, the last 2 tokens of the conversation context will be retained. Preserving context can help maintain the continuity of a conversation, but it may reduce the ability to respond to new topics. (Default: 24)": "Deze optie bepaalt hoeveel tokens bewaard blijven bij het verversen van de context. Als deze bijvoorbeeld op 2 staat, worden de laatste 2 tekens van de context van het gesprek bewaard. Het behouden van de context kan helpen om de continuïteit van een gesprek te behouden, maar het kan de mogelijkheid om te reageren op nieuwe onderwerpen verminderen. (Standaard: 24)",
861
+ "This option sets the maximum number of tokens the model can generate in its response. Increasing this limit allows the model to provide longer answers, but it may also increase the likelihood of unhelpful or irrelevant content being generated. (Default: 128)": "Deze optie stelt het maximum aantal tokens in dat het model kan genereren in zijn antwoord. Door deze limiet te verhogen, kan het model langere antwoorden geven, maar het kan ook de kans vergroten dat er onbehulpzame of irrelevante inhoud wordt gegenereerd. (Standaard: 128)",
862
  "This option will delete all existing files in the collection and replace them with newly uploaded files.": "Deze optie verwijdert alle bestaande bestanden in de collectie en vervangt ze door nieuw geüploade bestanden.",
863
  "This response was generated by \"{{model}}\"": "Dit antwoord is gegenereerd door \"{{model}}\"",
864
  "This will delete": "Dit zal verwijderen",
865
  "This will delete <strong>{{NAME}}</strong> and <strong>all its contents</strong>.": "Dit zal <strong>{{NAME}}</strong> verwijderen en <strong>al zijn inhoud</strong>.",
866
+ "This will delete all models including custom models": "Dit zal alle modellen, ook aangepaste modellen, verwijderen",
867
+ "This will delete all models including custom models and cannot be undone.": "Dit zal alle modellen, ook aangepaste modellen, verwijderen en kan niet ontdaan worden",
868
  "This will reset the knowledge base and sync all files. Do you wish to continue?": "Dit zal de kennisdatabase resetten en alle bestanden synchroniseren. Wilt u doorgaan?",
869
  "Thorough explanation": "Gevorderde uitleg",
870
  "Tika": "Tika",
 
876
  "Title Auto-Generation": "Titel Auto-Generatie",
877
  "Title cannot be an empty string.": "Titel kan niet leeg zijn.",
878
  "Title Generation Prompt": "Titel Generatie Prompt",
879
+ "TLS": "TLS",
880
  "To access the available model names for downloading,": "Om de beschikbare modelnamen voor downloaden te openen,",
881
  "To access the GGUF models available for downloading,": "Om toegang te krijgen tot de GGUF modellen die beschikbaar zijn voor downloaden,",
882
  "To access the WebUI, please reach out to the administrator. Admins can manage user statuses from the Admin Panel.": "Om toegang te krijgen tot de WebUI, neem contact op met de administrator. Beheerders kunnen de gebruikersstatussen beheren vanuit het Beheerderspaneel.",
 
894
  "Too verbose": "Te langdradig",
895
  "Tool created successfully": "Gereedschap succesvol aangemaakt",
896
  "Tool deleted successfully": "Gereedschap succesvol verwijderd",
897
+ "Tool Description": "Gereedschapbeschrijving",
898
+ "Tool ID": "Gereedschaps-ID",
899
  "Tool imported successfully": "Gereedschap succesvol geïmporteerd",
900
+ "Tool Name": "Gereedschapsnaam",
901
  "Tool updated successfully": "Gereedschap succesvol bijgewerkt",
902
  "Tools": "Gereedschappen",
903
+ "Tools Access": "Gereedschaptoegang",
904
  "Tools are a function calling system with arbitrary code execution": "Gereedschappen zijn een systeem voor het aanroepen van functies met willekeurige code-uitvoering",
905
  "Tools have a function calling system that allows arbitrary code execution": "Gereedschappen hebben een systeem voor het aanroepen van functies waarmee willekeurige code kan worden uitgevoerd",
906
  "Tools have a function calling system that allows arbitrary code execution.": "Gereedschappen hebben een systeem voor het aanroepen van functies waarmee willekeurige code kan worden uitgevoerd",
 
915
  "Type Hugging Face Resolve (Download) URL": "Type Hugging Face Resolve (Download) URL",
916
  "Uh-oh! There was an issue connecting to {{provider}}.": "Uh-oh! Er was een probleem met verbinden met {{provider}}.",
917
  "UI": "UI",
918
+ "Unarchive All": "Onarchiveer alles",
919
+ "Unarchive All Archived Chats": "Onarchiveer alle gearchiveerde chats",
920
+ "Unarchive Chat": "Onarchiveer chat",
921
+ "Unlock mysteries": "Ontsleutel mysteries",
922
  "Unpin": "Losmaken",
923
+ "Unravel secrets": "Ontrafel geheimen",
924
  "Untagged": "Ongemarkeerd",
925
  "Update": "Bijwerken",
926
  "Update and Copy Link": "Bijwerken en kopieer link",
 
930
  "Updated at": "Bijgewerkt om",
931
  "Updated At": "Bijgewerkt om",
932
  "Upload": "Uploaden",
933
+ "Upload a GGUF model": "Upload een GGUF-model",
934
  "Upload directory": "Upload map",
935
  "Upload files": "Bestanden uploaden",
936
  "Upload Files": "Bestanden uploaden",
937
  "Upload Pipeline": "Upload Pijpleiding",
938
  "Upload Progress": "Upload Voortgang",
939
+ "URL": "URL",
940
+ "URL Mode": "URL-modus",
941
  "Use '#' in the prompt input to load and include your knowledge.": "Gebruik '#' in de promptinvoer om je kennis te laden en op te nemen.",
942
  "Use Gravatar": "Gebruik Gravatar",
943
+ "Use groups to group your users and assign permissions.": "Gebruik groepen om gebruikers te groeperen en rechten aan te wijzen",
944
+ "Use Initials": "Gebruik initialen",
945
  "use_mlock (Ollama)": "use_mlock (Ollama)",
946
  "use_mmap (Ollama)": "use_mmap (Ollama)",
947
  "user": "user",
948
  "User": "User",
949
  "User location successfully retrieved.": "Gebruikerslocatie succesvol opgehaald",
950
+ "Username": "Gebruikersnaam",
951
  "Users": "Gebruikers",
952
  "Using the default arena model with all models. Click the plus button to add custom models.": "Het standaard arena-model gebruiken met alle modellen. Klik op de plusknop om aangepaste modellen toe te voegen.",
953
  "Utilize": "Utilize",
 
959
  "variable to have them replaced with clipboard content.": "variabele om ze te laten vervangen door klembord inhoud.",
960
  "Version": "Versie",
961
  "Version {{selectedVersion}} of {{totalVersions}}": "Versie {{selectedVersion}} van {{totalVersions}}",
962
+ "Visibility": "Zichtbaarheid",
963
  "Voice": "Stem",
964
  "Voice Input": "Steminvoer",
965
  "Warning": "Waarschuwing",
966
  "Warning:": "Waarschuwing",
967
+ "Warning: Enabling this will allow users to upload arbitrary code on the server.": "Waarschuwing: Door dit in te schakelen kunnen gebruikers willekeurige code uploaden naar de server.",
968
  "Warning: If you update or change your embedding model, you will need to re-import all documents.": "Warning: Als je de embedding model bijwerkt of wijzigt, moet je alle documenten opnieuw importeren.",
969
  "Web": "Web",
970
  "Web API": "Web-API",
 
973
  "Web Search Engine": "Zoekmachine op het web",
974
  "Webhook URL": "Webhook URL",
975
  "WebUI Settings": "WebUI Instellingen",
976
+ "WebUI will make requests to \"{{url}}/api/chat\"": "WebUI zal verzoeken doen aan \"{{url}}/api/chat\"",
977
+ "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI zal verzoeken doen aan \"{{url}}/chat/completions\"",
978
+ "What are you trying to achieve?": "Wat probeer je te bereiken?",
979
+ "What are you working on?": "Waar werk je aan?",
980
  "What’s New in": "Wat is nieuw in",
981
+ "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "Als dit is ingeschakeld, reageert het model op elk chatbericht in real-time, waarbij een reactie wordt gegenereerd zodra de gebruiker een bericht stuurt. Deze modus is handig voor live chat-toepassingen, maar kan de prestaties op langzamere hardware beïnvloeden.",
982
+ "wherever you are": "waar je ook bent",
983
  "Whisper (Local)": "Whisper (Lokaal)",
984
+ "Why?": "Waarom?",
985
  "Widescreen Mode": "Breedschermmodus",
986
  "Won": "Gewonnen",
987
+ "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "Werkt samen met top-k. Een hogere waarde (bijv. 0,95) zal leiden tot meer diverse tekst, terwijl een lagere waarde (bijv. 0,5) meer gerichte en conservatieve tekst zal genereren. (Standaard: 0,9)",
988
  "Workspace": "Werkruimte",
989
+ "Workspace Permissions": "Werkruimtemachtigingen",
990
  "Write a prompt suggestion (e.g. Who are you?)": "Schrijf een prompt suggestie (bijv. Wie ben je?)",
991
  "Write a summary in 50 words that summarizes [topic or keyword].": "Schrijf een samenvatting in 50 woorden die [onderwerp of trefwoord] samenvat.",
992
  "Write something...": "Schrijf iets...",
993
+ "Write your model template content here": "Schrijf je modelsjablooninhoud hier",
994
+ "Yesterday": "Gisteren",
995
  "You": "Jij",
996
  "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Je kunt slechts met maximaal {{maxCount}} bestand(en) tegelijk chatten",
997
  "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Je kunt je interacties met LLM's personaliseren door herinneringen toe te voegen via de 'Beheer'-knop hieronder, waardoor ze nuttiger en op maat gemaakt voor jou worden.",
998
  "You cannot upload an empty file.": "Je kunt een leeg bestand niet uploaden.",
999
+ "You do not have permission to upload files.": "Je hebt geen toestemming om bestanden up te loaden",
1000
+ "You have no archived conversations.": "Je hebt geen gearchiveerde gesprekken.",
1001
+ "You have shared this chat": "Je hebt dit gesprek gedeeld",
1002
+ "You're a helpful assistant.": "Je bent een behulpzame assistent.",
1003
  "You're now logged in.": "Je bent nu ingelogd.",
1004
  "Your account status is currently pending activation.": "Je accountstatus wacht nu op activatie",
1005
  "Your entire contribution will go directly to the plugin developer; Open WebUI does not take any percentage. However, the chosen funding platform might have its own fees.": "Je volledige bijdrage gaat direct naar de ontwikkelaar van de plugin; Open WebUI neemt hier geen deel van. Het gekozen financieringsplatform kan echter wel zijn eigen kosten hebben.",
src/lib/i18n/locales/pa-IN/translation.json CHANGED
@@ -59,6 +59,7 @@
59
  "Allow Voice Interruption in Call": "",
60
  "Already have an account?": "ਪਹਿਲਾਂ ਹੀ ਖਾਤਾ ਹੈ?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 
62
  "an assistant": "ਇੱਕ ਸਹਾਇਕ",
63
  "and": "ਅਤੇ",
64
  "and {{COUNT}} more": "",
@@ -95,6 +96,7 @@
95
  "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 ਬੇਸ URL ਦੀ ਲੋੜ ਹੈ।",
96
  "Available list": "",
97
  "available!": "ਉਪਲਬਧ ਹੈ!",
 
98
  "Azure AI Speech": "",
99
  "Azure Region": "",
100
  "Back": "ਵਾਪਸ",
@@ -450,6 +452,7 @@
450
  "Hide": "ਲੁਕਾਓ",
451
  "Host": "",
452
  "How can I help you today?": "ਮੈਂ ਅੱਜ ਤੁਹਾਡੀ ਕਿਵੇਂ ਮਦਦ ਕਰ ਸਕਦਾ ਹਾਂ?",
 
453
  "Hybrid Search": "ਹਾਈਬ੍ਰਿਡ ਖੋਜ",
454
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
455
  "ID": "",
@@ -978,6 +981,7 @@
978
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
979
  "wherever you are": "",
980
  "Whisper (Local)": "",
 
981
  "Widescreen Mode": "",
982
  "Won": "",
983
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 
59
  "Allow Voice Interruption in Call": "",
60
  "Already have an account?": "ਪਹਿਲਾਂ ਹੀ ਖਾਤਾ ਹੈ?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
62
+ "Amazing": "",
63
  "an assistant": "ਇੱਕ ਸਹਾਇਕ",
64
  "and": "ਅਤੇ",
65
  "and {{COUNT}} more": "",
 
96
  "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 ਬੇਸ URL ਦੀ ਲੋੜ ਹੈ।",
97
  "Available list": "",
98
  "available!": "ਉਪਲਬਧ ਹੈ!",
99
+ "Awful": "",
100
  "Azure AI Speech": "",
101
  "Azure Region": "",
102
  "Back": "ਵਾਪਸ",
 
452
  "Hide": "ਲੁਕਾਓ",
453
  "Host": "",
454
  "How can I help you today?": "ਮੈਂ ਅੱਜ ਤੁਹਾਡੀ ਕਿਵੇਂ ਮਦਦ ਕਰ ਸਕਦਾ ਹਾਂ?",
455
+ "How would you rate this response?": "",
456
  "Hybrid Search": "ਹਾਈਬ੍ਰਿਡ ਖੋਜ",
457
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
458
  "ID": "",
 
981
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
982
  "wherever you are": "",
983
  "Whisper (Local)": "",
984
+ "Why?": "",
985
  "Widescreen Mode": "",
986
  "Won": "",
987
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
src/lib/i18n/locales/pl-PL/translation.json CHANGED
@@ -59,6 +59,7 @@
59
  "Allow Voice Interruption in Call": "",
60
  "Already have an account?": "Masz już konto?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
 
62
  "an assistant": "asystent",
63
  "and": "i",
64
  "and {{COUNT}} more": "",
@@ -95,6 +96,7 @@
95
  "AUTOMATIC1111 Base URL is required.": "Podstawowy adres URL AUTOMATIC1111 jest wymagany.",
96
  "Available list": "",
97
  "available!": "dostępny!",
 
98
  "Azure AI Speech": "",
99
  "Azure Region": "",
100
  "Back": "Wstecz",
@@ -450,6 +452,7 @@
450
  "Hide": "Ukryj",
451
  "Host": "",
452
  "How can I help you today?": "Jak mogę Ci dzisiaj pomóc?",
 
453
  "Hybrid Search": "Szukanie hybrydowe",
454
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
455
  "ID": "",
@@ -980,6 +983,7 @@
980
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
981
  "wherever you are": "",
982
  "Whisper (Local)": "",
 
983
  "Widescreen Mode": "",
984
  "Won": "",
985
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",
 
59
  "Allow Voice Interruption in Call": "",
60
  "Already have an account?": "Masz już konto?",
61
  "Alternative to the top_p, and aims to ensure a balance of quality and variety. The parameter p represents the minimum probability for a token to be considered, relative to the probability of the most likely token. For example, with p=0.05 and the most likely token having a probability of 0.9, logits with a value less than 0.045 are filtered out. (Default: 0.0)": "",
62
+ "Amazing": "",
63
  "an assistant": "asystent",
64
  "and": "i",
65
  "and {{COUNT}} more": "",
 
96
  "AUTOMATIC1111 Base URL is required.": "Podstawowy adres URL AUTOMATIC1111 jest wymagany.",
97
  "Available list": "",
98
  "available!": "dostępny!",
99
+ "Awful": "",
100
  "Azure AI Speech": "",
101
  "Azure Region": "",
102
  "Back": "Wstecz",
 
452
  "Hide": "Ukryj",
453
  "Host": "",
454
  "How can I help you today?": "Jak mogę Ci dzisiaj pomóc?",
455
+ "How would you rate this response?": "",
456
  "Hybrid Search": "Szukanie hybrydowe",
457
  "I acknowledge that I have read and I understand the implications of my action. I am aware of the risks associated with executing arbitrary code and I have verified the trustworthiness of the source.": "",
458
  "ID": "",
 
983
  "When enabled, the model will respond to each chat message in real-time, generating a response as soon as the user sends a message. This mode is useful for live chat applications, but may impact performance on slower hardware.": "",
984
  "wherever you are": "",
985
  "Whisper (Local)": "",
986
+ "Why?": "",
987
  "Widescreen Mode": "",
988
  "Won": "",
989
  "Works together with top-k. A higher value (e.g., 0.95) will lead to more diverse text, while a lower value (e.g., 0.5) will generate more focused and conservative text. (Default: 0.9)": "",