diff --git a/backend/open_webui/env.py b/backend/open_webui/env.py index 51f62b7ff..b934462dc 100644 --- a/backend/open_webui/env.py +++ b/backend/open_webui/env.py @@ -356,9 +356,7 @@ ENABLE_REALTIME_CHAT_SAVE = ( ENABLE_QUERIES_CACHE = os.environ.get("ENABLE_QUERIES_CACHE", "False").lower() == "true" -RAG_SYSTEM_CONTEXT = ( - os.environ.get("RAG_SYSTEM_CONTEXT", "False").lower() == "true" -) +RAG_SYSTEM_CONTEXT = os.environ.get("RAG_SYSTEM_CONTEXT", "False").lower() == "true" #################################### # REDIS diff --git a/backend/open_webui/models/auths.py b/backend/open_webui/models/auths.py index bb74fb7de..93f17dff1 100644 --- a/backend/open_webui/models/auths.py +++ b/backend/open_webui/models/auths.py @@ -135,7 +135,9 @@ class AuthsTable: except Exception: return None - def authenticate_user_by_api_key(self, api_key: str, db: Optional[Session] = None) -> Optional[UserModel]: + def authenticate_user_by_api_key( + self, api_key: str, db: Optional[Session] = None + ) -> Optional[UserModel]: log.info(f"authenticate_user_by_api_key: {api_key}") # if no api_key, return None if not api_key: @@ -147,7 +149,9 @@ class AuthsTable: except Exception: return False - def authenticate_user_by_email(self, email: str, db: Optional[Session] = None) -> Optional[UserModel]: + def authenticate_user_by_email( + self, email: str, db: Optional[Session] = None + ) -> Optional[UserModel]: log.info(f"authenticate_user_by_email: {email}") try: with get_db_context(db) as db: @@ -158,7 +162,9 @@ class AuthsTable: except Exception: return None - def update_user_password_by_id(self, id: str, new_password: str, db: Optional[Session] = None) -> bool: + def update_user_password_by_id( + self, id: str, new_password: str, db: Optional[Session] = None + ) -> bool: try: with get_db_context(db) as db: result = ( @@ -169,7 +175,9 @@ class AuthsTable: except Exception: return False - def update_email_by_id(self, id: str, email: str, db: Optional[Session] = None) -> bool: + def update_email_by_id( + self, id: str, email: str, db: Optional[Session] = None + ) -> bool: try: with get_db_context(db) as db: result = db.query(Auth).filter_by(id=id).update({"email": email}) diff --git a/backend/open_webui/models/feedbacks.py b/backend/open_webui/models/feedbacks.py index fa2629a68..02379cd87 100644 --- a/backend/open_webui/models/feedbacks.py +++ b/backend/open_webui/models/feedbacks.py @@ -149,7 +149,9 @@ class FeedbackTable: log.exception(f"Error creating a new feedback: {e}") return None - def get_feedback_by_id(self, id: str, db: Optional[Session] = None) -> Optional[FeedbackModel]: + def get_feedback_by_id( + self, id: str, db: Optional[Session] = None + ) -> Optional[FeedbackModel]: try: with get_db_context(db) as db: feedback = db.query(Feedback).filter_by(id=id).first() @@ -172,7 +174,11 @@ class FeedbackTable: return None def get_feedback_items( - self, filter: dict = {}, skip: int = 0, limit: int = 30, db: Optional[Session] = None + self, + filter: dict = {}, + skip: int = 0, + limit: int = 30, + db: Optional[Session] = None, ) -> FeedbackListResponse: with get_db_context(db) as db: query = db.query(Feedback, User).join(User, Feedback.user_id == User.id) @@ -244,7 +250,9 @@ class FeedbackTable: .all() ] - def get_feedbacks_by_type(self, type: str, db: Optional[Session] = None) -> list[FeedbackModel]: + def get_feedbacks_by_type( + self, type: str, db: Optional[Session] = None + ) -> list[FeedbackModel]: with get_db_context(db) as db: return [ FeedbackModel.model_validate(feedback) @@ -254,7 +262,9 @@ class FeedbackTable: .all() ] - def get_feedbacks_by_user_id(self, user_id: str, db: Optional[Session] = None) -> list[FeedbackModel]: + def get_feedbacks_by_user_id( + self, user_id: str, db: Optional[Session] = None + ) -> list[FeedbackModel]: with get_db_context(db) as db: return [ FeedbackModel.model_validate(feedback) @@ -285,7 +295,11 @@ class FeedbackTable: return FeedbackModel.model_validate(feedback) def update_feedback_by_id_and_user_id( - self, id: str, user_id: str, form_data: FeedbackForm, db: Optional[Session] = None + self, + id: str, + user_id: str, + form_data: FeedbackForm, + db: Optional[Session] = None, ) -> Optional[FeedbackModel]: with get_db_context(db) as db: feedback = db.query(Feedback).filter_by(id=id, user_id=user_id).first() @@ -313,7 +327,9 @@ class FeedbackTable: db.commit() return True - def delete_feedback_by_id_and_user_id(self, id: str, user_id: str, db: Optional[Session] = None) -> bool: + def delete_feedback_by_id_and_user_id( + self, id: str, user_id: str, db: Optional[Session] = None + ) -> bool: with get_db_context(db) as db: feedback = db.query(Feedback).filter_by(id=id, user_id=user_id).first() if not feedback: @@ -322,7 +338,9 @@ class FeedbackTable: db.commit() return True - def delete_feedbacks_by_user_id(self, user_id: str, db: Optional[Session] = None) -> bool: + def delete_feedbacks_by_user_id( + self, user_id: str, db: Optional[Session] = None + ) -> bool: with get_db_context(db) as db: feedbacks = db.query(Feedback).filter_by(user_id=user_id).all() if not feedbacks: diff --git a/backend/open_webui/models/folders.py b/backend/open_webui/models/folders.py index 1744c2945..345520894 100644 --- a/backend/open_webui/models/folders.py +++ b/backend/open_webui/models/folders.py @@ -84,7 +84,11 @@ class FolderUpdateForm(BaseModel): class FolderTable: def insert_new_folder( - self, user_id: str, form_data: FolderForm, parent_id: Optional[str] = None, db: Optional[Session] = None + self, + user_id: str, + form_data: FolderForm, + parent_id: Optional[str] = None, + db: Optional[Session] = None, ) -> Optional[FolderModel]: with get_db_context(db) as db: id = str(uuid.uuid4()) @@ -149,7 +153,9 @@ class FolderTable: except Exception: return None - def get_folders_by_user_id(self, user_id: str, db: Optional[Session] = None) -> list[FolderModel]: + def get_folders_by_user_id( + self, user_id: str, db: Optional[Session] = None + ) -> list[FolderModel]: with get_db_context(db) as db: return [ FolderModel.model_validate(folder) @@ -157,7 +163,11 @@ class FolderTable: ] def get_folder_by_parent_id_and_user_id_and_name( - self, parent_id: Optional[str], user_id: str, name: str, db: Optional[Session] = None + self, + parent_id: Optional[str], + user_id: str, + name: str, + db: Optional[Session] = None, ) -> Optional[FolderModel]: try: with get_db_context(db) as db: @@ -213,7 +223,11 @@ class FolderTable: return def update_folder_by_id_and_user_id( - self, id: str, user_id: str, form_data: FolderUpdateForm, db: Optional[Session] = None + self, + id: str, + user_id: str, + form_data: FolderUpdateForm, + db: Optional[Session] = None, ) -> Optional[FolderModel]: try: with get_db_context(db) as db: @@ -278,7 +292,9 @@ class FolderTable: log.error(f"update_folder: {e}") return - def delete_folder_by_id_and_user_id(self, id: str, user_id: str, db: Optional[Session] = None) -> list[str]: + def delete_folder_by_id_and_user_id( + self, id: str, user_id: str, db: Optional[Session] = None + ) -> list[str]: try: folder_ids = [] with get_db_context(db) as db: diff --git a/backend/open_webui/models/functions.py b/backend/open_webui/models/functions.py index f6d2aa337..8e23bac09 100644 --- a/backend/open_webui/models/functions.py +++ b/backend/open_webui/models/functions.py @@ -104,7 +104,11 @@ class FunctionValves(BaseModel): class FunctionsTable: def insert_new_function( - self, user_id: str, type: str, form_data: FunctionForm, db: Optional[Session] = None + self, + user_id: str, + type: str, + form_data: FunctionForm, + db: Optional[Session] = None, ) -> Optional[FunctionModel]: function = FunctionModel( **{ @@ -131,7 +135,10 @@ class FunctionsTable: return None def sync_functions( - self, user_id: str, functions: list[FunctionWithValvesModel], db: Optional[Session] = None + self, + user_id: str, + functions: list[FunctionWithValvesModel], + db: Optional[Session] = None, ) -> list[FunctionWithValvesModel]: # Synchronize functions for a user by updating existing ones, inserting new ones, and removing those that are no longer present. try: @@ -178,7 +185,9 @@ class FunctionsTable: log.exception(f"Error syncing functions for user {user_id}: {e}") return [] - def get_function_by_id(self, id: str, db: Optional[Session] = None) -> Optional[FunctionModel]: + def get_function_by_id( + self, id: str, db: Optional[Session] = None + ) -> Optional[FunctionModel]: try: with get_db_context(db) as db: function = db.get(Function, id) @@ -206,7 +215,9 @@ class FunctionsTable: FunctionModel.model_validate(function) for function in functions ] - def get_function_list(self, db: Optional[Session] = None) -> list[FunctionUserResponse]: + def get_function_list( + self, db: Optional[Session] = None + ) -> list[FunctionUserResponse]: with get_db_context(db) as db: functions = db.query(Function).order_by(Function.updated_at.desc()).all() user_ids = list(set(func.user_id for func in functions)) @@ -245,7 +256,9 @@ class FunctionsTable: for function in db.query(Function).filter_by(type=type).all() ] - def get_global_filter_functions(self, db: Optional[Session] = None) -> list[FunctionModel]: + def get_global_filter_functions( + self, db: Optional[Session] = None + ) -> list[FunctionModel]: with get_db_context(db) as db: return [ FunctionModel.model_validate(function) @@ -254,7 +267,9 @@ class FunctionsTable: .all() ] - def get_global_action_functions(self, db: Optional[Session] = None) -> list[FunctionModel]: + def get_global_action_functions( + self, db: Optional[Session] = None + ) -> list[FunctionModel]: with get_db_context(db) as db: return [ FunctionModel.model_validate(function) @@ -263,7 +278,9 @@ class FunctionsTable: .all() ] - def get_function_valves_by_id(self, id: str, db: Optional[Session] = None) -> Optional[dict]: + def get_function_valves_by_id( + self, id: str, db: Optional[Session] = None + ) -> Optional[dict]: with get_db_context(db) as db: try: function = db.get(Function, id) @@ -352,7 +369,9 @@ class FunctionsTable: ) return None - def update_function_by_id(self, id: str, updated: dict, db: Optional[Session] = None) -> Optional[FunctionModel]: + def update_function_by_id( + self, id: str, updated: dict, db: Optional[Session] = None + ) -> Optional[FunctionModel]: with get_db_context(db) as db: try: db.query(Function).filter_by(id=id).update( diff --git a/backend/open_webui/models/knowledge.py b/backend/open_webui/models/knowledge.py index 724936d46..7f99f828c 100644 --- a/backend/open_webui/models/knowledge.py +++ b/backend/open_webui/models/knowledge.py @@ -1,4 +1,3 @@ - import json import logging import time @@ -210,7 +209,12 @@ class KnowledgeTable: return knowledge_bases def search_knowledge_bases( - self, user_id: str, filter: dict, skip: int = 0, limit: int = 30, db: Optional[Session] = None + self, + user_id: str, + filter: dict, + skip: int = 0, + limit: int = 30, + db: Optional[Session] = None, ) -> KnowledgeListResponse: try: with get_db_context(db) as db: @@ -320,7 +324,9 @@ class KnowledgeTable: if user else None ), - collection=KnowledgeModel.model_validate(knowledge).model_dump(), + collection=KnowledgeModel.model_validate( + knowledge + ).model_dump(), ) ) @@ -330,20 +336,26 @@ class KnowledgeTable: print("search_knowledge_files error:", e) return KnowledgeFileListResponse(items=[], total=0) - def check_access_by_user_id(self, id, user_id, permission="write", db: Optional[Session] = None) -> bool: + def check_access_by_user_id( + self, id, user_id, permission="write", db: Optional[Session] = None + ) -> bool: knowledge = self.get_knowledge_by_id(id, db=db) if not knowledge: return False if knowledge.user_id == user_id: return True - user_group_ids = {group.id for group in Groups.get_groups_by_member_id(user_id, db=db)} + user_group_ids = { + group.id for group in Groups.get_groups_by_member_id(user_id, db=db) + } return has_access(user_id, permission, knowledge.access_control, user_group_ids) def get_knowledge_bases_by_user_id( self, user_id: str, permission: str = "write", db: Optional[Session] = None ) -> list[KnowledgeUserModel]: knowledge_bases = self.get_knowledge_bases(db=db) - user_group_ids = {group.id for group in Groups.get_groups_by_member_id(user_id, db=db)} + user_group_ids = { + group.id for group in Groups.get_groups_by_member_id(user_id, db=db) + } return [ knowledge_base for knowledge_base in knowledge_bases @@ -353,7 +365,9 @@ class KnowledgeTable: ) ] - def get_knowledge_by_id(self, id: str, db: Optional[Session] = None) -> Optional[KnowledgeModel]: + def get_knowledge_by_id( + self, id: str, db: Optional[Session] = None + ) -> Optional[KnowledgeModel]: try: with get_db_context(db) as db: knowledge = db.query(Knowledge).filter_by(id=id).first() @@ -371,12 +385,16 @@ class KnowledgeTable: if knowledge.user_id == user_id: return knowledge - user_group_ids = {group.id for group in Groups.get_groups_by_member_id(user_id, db=db)} + user_group_ids = { + group.id for group in Groups.get_groups_by_member_id(user_id, db=db) + } if has_access(user_id, "write", knowledge.access_control, user_group_ids): return knowledge return None - def get_knowledges_by_file_id(self, file_id: str, db: Optional[Session] = None) -> list[KnowledgeModel]: + def get_knowledges_by_file_id( + self, file_id: str, db: Optional[Session] = None + ) -> list[KnowledgeModel]: try: with get_db_context(db) as db: knowledges = ( @@ -474,7 +492,9 @@ class KnowledgeTable: print(e) return KnowledgeFileListResponse(items=[], total=0) - def get_files_by_id(self, knowledge_id: str, db: Optional[Session] = None) -> list[FileModel]: + def get_files_by_id( + self, knowledge_id: str, db: Optional[Session] = None + ) -> list[FileModel]: try: with get_db_context(db) as db: files = ( @@ -487,7 +507,9 @@ class KnowledgeTable: except Exception: return [] - def get_file_metadatas_by_id(self, knowledge_id: str, db: Optional[Session] = None) -> list[FileMetadataResponse]: + def get_file_metadatas_by_id( + self, knowledge_id: str, db: Optional[Session] = None + ) -> list[FileMetadataResponse]: try: with get_db_context(db) as db: files = self.get_files_by_id(knowledge_id, db=db) @@ -496,7 +518,11 @@ class KnowledgeTable: return [] def add_file_to_knowledge_by_id( - self, knowledge_id: str, file_id: str, user_id: str, db: Optional[Session] = None + self, + knowledge_id: str, + file_id: str, + user_id: str, + db: Optional[Session] = None, ) -> Optional[KnowledgeFileModel]: with get_db_context(db) as db: knowledge_file = KnowledgeFileModel( @@ -522,7 +548,9 @@ class KnowledgeTable: except Exception: return None - def remove_file_from_knowledge_by_id(self, knowledge_id: str, file_id: str, db: Optional[Session] = None) -> bool: + def remove_file_from_knowledge_by_id( + self, knowledge_id: str, file_id: str, db: Optional[Session] = None + ) -> bool: try: with get_db_context(db) as db: db.query(KnowledgeFile).filter_by( @@ -533,7 +561,9 @@ class KnowledgeTable: except Exception: return False - def reset_knowledge_by_id(self, id: str, db: Optional[Session] = None) -> Optional[KnowledgeModel]: + def reset_knowledge_by_id( + self, id: str, db: Optional[Session] = None + ) -> Optional[KnowledgeModel]: try: with get_db_context(db) as db: # Delete all knowledge_file entries for this knowledge_id @@ -554,7 +584,11 @@ class KnowledgeTable: return None def update_knowledge_by_id( - self, id: str, form_data: KnowledgeForm, overwrite: bool = False, db: Optional[Session] = None + self, + id: str, + form_data: KnowledgeForm, + overwrite: bool = False, + db: Optional[Session] = None, ) -> Optional[KnowledgeModel]: try: with get_db_context(db) as db: diff --git a/backend/open_webui/models/memories.py b/backend/open_webui/models/memories.py index c0faed2c6..2dc965685 100644 --- a/backend/open_webui/models/memories.py +++ b/backend/open_webui/models/memories.py @@ -94,7 +94,9 @@ class MemoriesTable: except Exception: return None - def get_memories_by_user_id(self, user_id: str, db: Optional[Session] = None) -> list[MemoryModel]: + def get_memories_by_user_id( + self, user_id: str, db: Optional[Session] = None + ) -> list[MemoryModel]: with get_db_context(db) as db: try: memories = db.query(Memory).filter_by(user_id=user_id).all() @@ -102,7 +104,9 @@ class MemoriesTable: except Exception: return None - def get_memory_by_id(self, id: str, db: Optional[Session] = None) -> Optional[MemoryModel]: + def get_memory_by_id( + self, id: str, db: Optional[Session] = None + ) -> Optional[MemoryModel]: with get_db_context(db) as db: try: memory = db.get(Memory, id) @@ -121,7 +125,9 @@ class MemoriesTable: except Exception: return False - def delete_memories_by_user_id(self, user_id: str, db: Optional[Session] = None) -> bool: + def delete_memories_by_user_id( + self, user_id: str, db: Optional[Session] = None + ) -> bool: with get_db_context(db) as db: try: db.query(Memory).filter_by(user_id=user_id).delete() @@ -131,7 +137,9 @@ class MemoriesTable: except Exception: return False - def delete_memory_by_id_and_user_id(self, id: str, user_id: str, db: Optional[Session] = None) -> bool: + def delete_memory_by_id_and_user_id( + self, id: str, user_id: str, db: Optional[Session] = None + ) -> bool: with get_db_context(db) as db: try: memory = db.get(Memory, id) diff --git a/backend/open_webui/models/messages.py b/backend/open_webui/models/messages.py index 3a27069f3..a4c91f3ac 100644 --- a/backend/open_webui/models/messages.py +++ b/backend/open_webui/models/messages.py @@ -538,15 +538,16 @@ class MessageTable: ) if start_timestamp: - query_builder = query_builder.filter(Message.created_at >= start_timestamp) + query_builder = query_builder.filter( + Message.created_at >= start_timestamp + ) if end_timestamp: - query_builder = query_builder.filter(Message.created_at <= end_timestamp) + query_builder = query_builder.filter( + Message.created_at <= end_timestamp + ) messages = ( - query_builder - .order_by(Message.created_at.desc()) - .limit(limit) - .all() + query_builder.order_by(Message.created_at.desc()).limit(limit).all() ) return [MessageModel.model_validate(msg) for msg in messages] diff --git a/backend/open_webui/models/models.py b/backend/open_webui/models/models.py index d8ac589d7..5457413f0 100755 --- a/backend/open_webui/models/models.py +++ b/backend/open_webui/models/models.py @@ -222,7 +222,9 @@ class ModelsTable: self, user_id: str, permission: str = "write", db: Optional[Session] = None ) -> list[ModelUserResponse]: models = self.get_models(db=db) - user_group_ids = {group.id for group in Groups.get_groups_by_member_id(user_id, db=db)} + user_group_ids = { + group.id for group in Groups.get_groups_by_member_id(user_id, db=db) + } return [ model for model in models @@ -273,7 +275,12 @@ class ModelsTable: return query def search_models( - self, user_id: str, filter: dict = {}, skip: int = 0, limit: int = 30, db: Optional[Session] = None + self, + user_id: str, + filter: dict = {}, + skip: int = 0, + limit: int = 30, + db: Optional[Session] = None, ) -> ModelListResponse: with get_db_context(db) as db: # Join GroupMember so we can order by group_id when requested @@ -359,7 +366,9 @@ class ModelsTable: return ModelListResponse(items=models, total=total) - def get_model_by_id(self, id: str, db: Optional[Session] = None) -> Optional[ModelModel]: + def get_model_by_id( + self, id: str, db: Optional[Session] = None + ) -> Optional[ModelModel]: try: with get_db_context(db) as db: model = db.get(Model, id) @@ -367,7 +376,9 @@ class ModelsTable: except Exception: return None - def get_models_by_ids(self, ids: list[str], db: Optional[Session] = None) -> list[ModelModel]: + def get_models_by_ids( + self, ids: list[str], db: Optional[Session] = None + ) -> list[ModelModel]: try: with get_db_context(db) as db: models = db.query(Model).filter(Model.id.in_(ids)).all() @@ -375,7 +386,9 @@ class ModelsTable: except Exception: return [] - def toggle_model_by_id(self, id: str, db: Optional[Session] = None) -> Optional[ModelModel]: + def toggle_model_by_id( + self, id: str, db: Optional[Session] = None + ) -> Optional[ModelModel]: with get_db_context(db) as db: try: is_active = db.query(Model).filter_by(id=id).first().is_active @@ -392,7 +405,9 @@ class ModelsTable: except Exception: return None - def update_model_by_id(self, id: str, model: ModelForm, db: Optional[Session] = None) -> Optional[ModelModel]: + def update_model_by_id( + self, id: str, model: ModelForm, db: Optional[Session] = None + ) -> Optional[ModelModel]: try: with get_db_context(db) as db: # update only the fields that are present in the model @@ -428,7 +443,9 @@ class ModelsTable: except Exception: return False - def sync_models(self, user_id: str, models: list[ModelModel], db: Optional[Session] = None) -> list[ModelModel]: + def sync_models( + self, user_id: str, models: list[ModelModel], db: Optional[Session] = None + ) -> list[ModelModel]: try: with get_db_context(db) as db: # Get existing models diff --git a/backend/open_webui/models/notes.py b/backend/open_webui/models/notes.py index 425cd9e2c..bd2353078 100644 --- a/backend/open_webui/models/notes.py +++ b/backend/open_webui/models/notes.py @@ -260,8 +260,16 @@ class NoteTable: normalized_query = query_key.replace("-", "").replace(" ", "") query = query.filter( or_( - func.replace(func.replace(Note.title, "-", ""), " ", "").ilike(f"%{normalized_query}%"), - func.replace(func.replace(cast(Note.data["content"]["md"], Text), "-", ""), " ", "").ilike(f"%{normalized_query}%"), + func.replace( + func.replace(Note.title, "-", ""), " ", "" + ).ilike(f"%{normalized_query}%"), + func.replace( + func.replace( + cast(Note.data["content"]["md"], Text), "-", "" + ), + " ", + "", + ).ilike(f"%{normalized_query}%"), ) ) diff --git a/backend/open_webui/models/oauth_sessions.py b/backend/open_webui/models/oauth_sessions.py index 4221987fa..f7ee5cceb 100644 --- a/backend/open_webui/models/oauth_sessions.py +++ b/backend/open_webui/models/oauth_sessions.py @@ -143,7 +143,9 @@ class OAuthSessionTable: log.error(f"Error creating OAuth session: {e}") return None - def get_session_by_id(self, session_id: str, db: Optional[Session] = None) -> Optional[OAuthSessionModel]: + def get_session_by_id( + self, session_id: str, db: Optional[Session] = None + ) -> Optional[OAuthSessionModel]: """Get OAuth session by ID""" try: with get_db_context(db) as db: @@ -197,7 +199,9 @@ class OAuthSessionTable: log.error(f"Error getting OAuth session by provider and user ID: {e}") return None - def get_sessions_by_user_id(self, user_id: str, db: Optional[Session] = None) -> List[OAuthSessionModel]: + def get_sessions_by_user_id( + self, user_id: str, db: Optional[Session] = None + ) -> List[OAuthSessionModel]: """Get all OAuth sessions for a user""" try: with get_db_context(db) as db: @@ -241,7 +245,9 @@ class OAuthSessionTable: log.error(f"Error updating OAuth session tokens: {e}") return None - def delete_session_by_id(self, session_id: str, db: Optional[Session] = None) -> bool: + def delete_session_by_id( + self, session_id: str, db: Optional[Session] = None + ) -> bool: """Delete an OAuth session""" try: with get_db_context(db) as db: @@ -252,7 +258,9 @@ class OAuthSessionTable: log.error(f"Error deleting OAuth session: {e}") return False - def delete_sessions_by_user_id(self, user_id: str, db: Optional[Session] = None) -> bool: + def delete_sessions_by_user_id( + self, user_id: str, db: Optional[Session] = None + ) -> bool: """Delete all OAuth sessions for a user""" try: with get_db_context(db) as db: @@ -263,7 +271,9 @@ class OAuthSessionTable: log.error(f"Error deleting OAuth sessions by user ID: {e}") return False - def delete_sessions_by_provider(self, provider: str, db: Optional[Session] = None) -> bool: + def delete_sessions_by_provider( + self, provider: str, db: Optional[Session] = None + ) -> bool: """Delete all OAuth sessions for a provider""" try: with get_db_context(db) as db: diff --git a/backend/open_webui/models/prompts.py b/backend/open_webui/models/prompts.py index 89c49ccc8..847597bc6 100644 --- a/backend/open_webui/models/prompts.py +++ b/backend/open_webui/models/prompts.py @@ -1,4 +1,3 @@ - import time from typing import Optional @@ -100,7 +99,9 @@ class PromptsTable: except Exception: return None - def get_prompt_by_command(self, command: str, db: Optional[Session] = None) -> Optional[PromptModel]: + def get_prompt_by_command( + self, command: str, db: Optional[Session] = None + ) -> Optional[PromptModel]: try: with get_db_context(db) as db: prompt = db.query(Prompt).filter_by(command=command).first() @@ -135,7 +136,9 @@ class PromptsTable: self, user_id: str, permission: str = "write", db: Optional[Session] = None ) -> list[PromptUserResponse]: prompts = self.get_prompts(db=db) - user_group_ids = {group.id for group in Groups.get_groups_by_member_id(user_id, db=db)} + user_group_ids = { + group.id for group in Groups.get_groups_by_member_id(user_id, db=db) + } return [ prompt @@ -159,7 +162,9 @@ class PromptsTable: except Exception: return None - def delete_prompt_by_command(self, command: str, db: Optional[Session] = None) -> bool: + def delete_prompt_by_command( + self, command: str, db: Optional[Session] = None + ) -> bool: try: with get_db_context(db) as db: db.query(Prompt).filter_by(command=command).delete() diff --git a/backend/open_webui/models/tags.py b/backend/open_webui/models/tags.py index 950c475ba..64cb55954 100644 --- a/backend/open_webui/models/tags.py +++ b/backend/open_webui/models/tags.py @@ -51,7 +51,9 @@ class TagChatIdForm(BaseModel): class TagTable: - def insert_new_tag(self, name: str, user_id: str, db: Optional[Session] = None) -> Optional[TagModel]: + def insert_new_tag( + self, name: str, user_id: str, db: Optional[Session] = None + ) -> Optional[TagModel]: with get_db_context(db) as db: id = name.replace(" ", "_").lower() tag = TagModel(**{"id": id, "user_id": user_id, "name": name}) @@ -79,7 +81,9 @@ class TagTable: except Exception: return None - def get_tags_by_user_id(self, user_id: str, db: Optional[Session] = None) -> list[TagModel]: + def get_tags_by_user_id( + self, user_id: str, db: Optional[Session] = None + ) -> list[TagModel]: with get_db_context(db) as db: return [ TagModel.model_validate(tag) @@ -97,7 +101,9 @@ class TagTable: ) ] - def delete_tag_by_name_and_user_id(self, name: str, user_id: str, db: Optional[Session] = None) -> bool: + def delete_tag_by_name_and_user_id( + self, name: str, user_id: str, db: Optional[Session] = None + ) -> bool: try: with get_db_context(db) as db: id = name.replace(" ", "_").lower() diff --git a/backend/open_webui/models/tools.py b/backend/open_webui/models/tools.py index ab62c658c..cd7d0bd1a 100644 --- a/backend/open_webui/models/tools.py +++ b/backend/open_webui/models/tools.py @@ -115,7 +115,11 @@ class ToolValves(BaseModel): class ToolsTable: def insert_new_tool( - self, user_id: str, form_data: ToolForm, specs: list[dict], db: Optional[Session] = None + self, + user_id: str, + form_data: ToolForm, + specs: list[dict], + db: Optional[Session] = None, ) -> Optional[ToolModel]: with get_db_context(db) as db: tool = ToolModel( @@ -141,7 +145,9 @@ class ToolsTable: log.exception(f"Error creating a new tool: {e}") return None - def get_tool_by_id(self, id: str, db: Optional[Session] = None) -> Optional[ToolModel]: + def get_tool_by_id( + self, id: str, db: Optional[Session] = None + ) -> Optional[ToolModel]: try: with get_db_context(db) as db: tool = db.get(Tool, id) @@ -175,7 +181,9 @@ class ToolsTable: self, user_id: str, permission: str = "write", db: Optional[Session] = None ) -> list[ToolUserModel]: tools = self.get_tools(db=db) - user_group_ids = {group.id for group in Groups.get_groups_by_member_id(user_id, db=db)} + user_group_ids = { + group.id for group in Groups.get_groups_by_member_id(user_id, db=db) + } return [ tool @@ -184,7 +192,9 @@ class ToolsTable: or has_access(user_id, permission, tool.access_control, user_group_ids) ] - def get_tool_valves_by_id(self, id: str, db: Optional[Session] = None) -> Optional[dict]: + def get_tool_valves_by_id( + self, id: str, db: Optional[Session] = None + ) -> Optional[dict]: try: with get_db_context(db) as db: tool = db.get(Tool, id) @@ -193,7 +203,9 @@ class ToolsTable: log.exception(f"Error getting tool valves by id {id}") return None - def update_tool_valves_by_id(self, id: str, valves: dict, db: Optional[Session] = None) -> Optional[ToolValves]: + def update_tool_valves_by_id( + self, id: str, valves: dict, db: Optional[Session] = None + ) -> Optional[ToolValves]: try: with get_db_context(db) as db: db.query(Tool).filter_by(id=id).update( @@ -249,7 +261,9 @@ class ToolsTable: ) return None - def update_tool_by_id(self, id: str, updated: dict, db: Optional[Session] = None) -> Optional[ToolModel]: + def update_tool_by_id( + self, id: str, updated: dict, db: Optional[Session] = None + ) -> Optional[ToolModel]: try: with get_db_context(db) as db: db.query(Tool).filter_by(id=id).update( diff --git a/backend/open_webui/models/users.py b/backend/open_webui/models/users.py index b19f3809b..0d36d94b8 100644 --- a/backend/open_webui/models/users.py +++ b/backend/open_webui/models/users.py @@ -269,7 +269,9 @@ class UsersTable: else: return None - def get_user_by_id(self, id: str, db: Optional[Session] = None) -> Optional[UserModel]: + def get_user_by_id( + self, id: str, db: Optional[Session] = None + ) -> Optional[UserModel]: try: with get_db_context(db) as db: user = db.query(User).filter_by(id=id).first() @@ -277,7 +279,9 @@ class UsersTable: except Exception: return None - def get_user_by_api_key(self, api_key: str, db: Optional[Session] = None) -> Optional[UserModel]: + def get_user_by_api_key( + self, api_key: str, db: Optional[Session] = None + ) -> Optional[UserModel]: try: with get_db_context(db) as db: user = ( @@ -290,7 +294,9 @@ class UsersTable: except Exception: return None - def get_user_by_email(self, email: str, db: Optional[Session] = None) -> Optional[UserModel]: + def get_user_by_email( + self, email: str, db: Optional[Session] = None + ) -> Optional[UserModel]: try: with get_db_context(db) as db: user = db.query(User).filter_by(email=email).first() @@ -298,7 +304,9 @@ class UsersTable: except Exception: return None - def get_user_by_oauth_sub(self, provider: str, sub: str, db: Optional[Session] = None) -> Optional[UserModel]: + def get_user_by_oauth_sub( + self, provider: str, sub: str, db: Optional[Session] = None + ) -> Optional[UserModel]: try: with get_db_context(db) as db: # type: Session dialect_name = db.bind.dialect.name @@ -455,7 +463,9 @@ class UsersTable: "total": total, } - def get_users_by_group_id(self, group_id: str, db: Optional[Session] = None) -> list[UserModel]: + def get_users_by_group_id( + self, group_id: str, db: Optional[Session] = None + ) -> list[UserModel]: with get_db_context(db) as db: users = ( db.query(User) @@ -465,7 +475,9 @@ class UsersTable: ) return [UserModel.model_validate(user) for user in users] - def get_users_by_user_ids(self, user_ids: list[str], db: Optional[Session] = None) -> list[UserStatusModel]: + def get_users_by_user_ids( + self, user_ids: list[str], db: Optional[Session] = None + ) -> list[UserStatusModel]: with get_db_context(db) as db: users = db.query(User).filter(User.id.in_(user_ids)).all() return [UserModel.model_validate(user) for user in users] @@ -486,7 +498,9 @@ class UsersTable: except Exception: return None - def get_user_webhook_url_by_id(self, id: str, db: Optional[Session] = None) -> Optional[str]: + def get_user_webhook_url_by_id( + self, id: str, db: Optional[Session] = None + ) -> Optional[str]: try: with get_db_context(db) as db: user = db.query(User).filter_by(id=id).first() @@ -511,7 +525,9 @@ class UsersTable: ) return query.count() - def update_user_role_by_id(self, id: str, role: str, db: Optional[Session] = None) -> Optional[UserModel]: + def update_user_role_by_id( + self, id: str, role: str, db: Optional[Session] = None + ) -> Optional[UserModel]: try: with get_db_context(db) as db: db.query(User).filter_by(id=id).update({"role": role}) @@ -552,7 +568,9 @@ class UsersTable: return None @throttle(DATABASE_USER_ACTIVE_STATUS_UPDATE_INTERVAL) - def update_last_active_by_id(self, id: str, db: Optional[Session] = None) -> Optional[UserModel]: + def update_last_active_by_id( + self, id: str, db: Optional[Session] = None + ) -> Optional[UserModel]: try: with get_db_context(db) as db: db.query(User).filter_by(id=id).update( @@ -597,7 +615,9 @@ class UsersTable: except Exception: return None - def update_user_by_id(self, id: str, updated: dict, db: Optional[Session] = None) -> Optional[UserModel]: + def update_user_by_id( + self, id: str, updated: dict, db: Optional[Session] = None + ) -> Optional[UserModel]: try: with get_db_context(db) as db: db.query(User).filter_by(id=id).update(updated) @@ -610,7 +630,9 @@ class UsersTable: print(e) return None - def update_user_settings_by_id(self, id: str, updated: dict, db: Optional[Session] = None) -> Optional[UserModel]: + def update_user_settings_by_id( + self, id: str, updated: dict, db: Optional[Session] = None + ) -> Optional[UserModel]: try: with get_db_context(db) as db: user = db.query(User).filter_by(id=id).first() @@ -651,7 +673,9 @@ class UsersTable: except Exception: return False - def get_user_api_key_by_id(self, id: str, db: Optional[Session] = None) -> Optional[str]: + def get_user_api_key_by_id( + self, id: str, db: Optional[Session] = None + ) -> Optional[str]: try: with get_db_context(db) as db: api_key = db.query(ApiKey).filter_by(user_id=id).first() @@ -659,7 +683,9 @@ class UsersTable: except Exception: return None - def update_user_api_key_by_id(self, id: str, api_key: str, db: Optional[Session] = None) -> bool: + def update_user_api_key_by_id( + self, id: str, api_key: str, db: Optional[Session] = None + ) -> bool: try: with get_db_context(db) as db: db.query(ApiKey).filter_by(user_id=id).delete() @@ -690,7 +716,9 @@ class UsersTable: except Exception: return False - def get_valid_user_ids(self, user_ids: list[str], db: Optional[Session] = None) -> list[str]: + def get_valid_user_ids( + self, user_ids: list[str], db: Optional[Session] = None + ) -> list[str]: with get_db_context(db) as db: users = db.query(User).filter(User.id.in_(user_ids)).all() return [user.id for user in users] diff --git a/backend/open_webui/routers/channels.py b/backend/open_webui/routers/channels.py index fc0c048ab..a2ff61452 100644 --- a/backend/open_webui/routers/channels.py +++ b/backend/open_webui/routers/channels.py @@ -117,7 +117,9 @@ async def get_channels( last_message = Messages.get_last_message_by_channel_id(channel.id, db=db) last_message_at = last_message.created_at if last_message else None - channel_member = Channels.get_member_by_channel_and_user_id(channel.id, user.id, db=db) + channel_member = Channels.get_member_by_channel_and_user_id( + channel.id, user.id, db=db + ) unread_count = ( Messages.get_unread_message_count( channel.id, user.id, channel_member.last_read_at, db=db @@ -135,7 +137,10 @@ async def get_channels( ] users = [ UserIdNameStatusResponse( - **{**user.model_dump(), "is_active": Users.is_user_active(user.id, db=db)} + **{ + **user.model_dump(), + "is_active": Users.is_user_active(user.id, db=db), + } ) for user in Users.get_users_by_user_ids(user_ids, db=db) ] @@ -187,11 +192,15 @@ async def get_dm_channel_by_user_id( ) try: - existing_channel = Channels.get_dm_channel_by_user_ids([user.id, user_id], db=db) + existing_channel = Channels.get_dm_channel_by_user_ids( + [user.id, user_id], db=db + ) if existing_channel: participant_ids = [ member.user_id - for member in Channels.get_members_by_channel_id(existing_channel.id, db=db) + for member in Channels.get_members_by_channel_id( + existing_channel.id, db=db + ) ] await emit_to_users( @@ -203,7 +212,9 @@ async def get_dm_channel_by_user_id( f"channel:{existing_channel.id}", participant_ids ) - Channels.update_member_active_status(existing_channel.id, user.id, True, db=db) + Channels.update_member_active_status( + existing_channel.id, user.id, True, db=db + ) return ChannelModel(**existing_channel.model_dump()) channel = Channels.insert_new_channel( @@ -288,7 +299,9 @@ async def create_new_channel( f"channel:{existing_channel.id}", participant_ids ) - Channels.update_member_active_status(existing_channel.id, user.id, True, db=db) + Channels.update_member_active_status( + existing_channel.id, user.id, True, db=db + ) return ChannelModel(**existing_channel.model_dump()) channel = Channels.insert_new_channel(form_data, user.id, db=db) @@ -353,17 +366,23 @@ async def get_channel_by_id( ) user_ids = [ - member.user_id for member in Channels.get_members_by_channel_id(channel.id, db=db) + member.user_id + for member in Channels.get_members_by_channel_id(channel.id, db=db) ] users = [ UserIdNameStatusResponse( - **{**user.model_dump(), "is_active": Users.is_user_active(user.id, db=db)} + **{ + **user.model_dump(), + "is_active": Users.is_user_active(user.id, db=db), + } ) for user in Users.get_users_by_user_ids(user_ids, db=db) ] - channel_member = Channels.get_member_by_channel_and_user_id(channel.id, user.id, db=db) + channel_member = Channels.get_member_by_channel_and_user_id( + channel.id, user.id, db=db + ) unread_count = Messages.get_unread_message_count( channel.id, user.id, channel_member.last_read_at if channel_member else None ) @@ -373,7 +392,9 @@ async def get_channel_by_id( **channel.model_dump(), "user_ids": user_ids, "users": users, - "is_manager": Channels.is_user_channel_manager(channel.id, user.id, db=db), + "is_manager": Channels.is_user_channel_manager( + channel.id, user.id, db=db + ), "write_access": True, "user_count": len(user_ids), "last_read_at": channel_member.last_read_at if channel_member else None, @@ -389,12 +410,18 @@ async def get_channel_by_id( ) write_access = has_access( - user.id, type="write", access_control=channel.access_control, strict=False, db=db + user.id, + type="write", + access_control=channel.access_control, + strict=False, + db=db, ) user_count = len(get_users_with_access("read", channel.access_control)) - channel_member = Channels.get_member_by_channel_and_user_id(channel.id, user.id, db=db) + channel_member = Channels.get_member_by_channel_and_user_id( + channel.id, user.id, db=db + ) unread_count = Messages.get_unread_message_count( channel.id, user.id, channel_member.last_read_at if channel_member else None ) @@ -404,7 +431,9 @@ async def get_channel_by_id( **channel.model_dump(), "user_ids": user_ids, "users": users, - "is_manager": Channels.is_user_channel_manager(channel.id, user.id, db=db), + "is_manager": Channels.is_user_channel_manager( + channel.id, user.id, db=db + ), "write_access": write_access or user.role == "admin", "user_count": user_count, "last_read_at": channel_member.last_read_at if channel_member else None, @@ -453,7 +482,8 @@ async def get_channel_members_by_id( if channel.type == "dm": user_ids = [ - member.user_id for member in Channels.get_members_by_channel_id(channel.id, db=db) + member.user_id + for member in Channels.get_members_by_channel_id(channel.id, db=db) ] users = Users.get_users_by_user_ids(user_ids, db=db) total = len(users) @@ -533,7 +563,9 @@ async def update_is_active_member_by_id_and_user_id( status_code=status.HTTP_404_NOT_FOUND, detail=ERROR_MESSAGES.NOT_FOUND ) - Channels.update_member_active_status(channel.id, user.id, form_data.is_active, db=db) + Channels.update_member_active_status( + channel.id, user.id, form_data.is_active, db=db + ) return True @@ -626,7 +658,9 @@ async def remove_members_by_id( ) try: - deleted = Channels.remove_members_from_channel(channel.id, form_data.user_ids, db=db) + deleted = Channels.remove_members_from_channel( + channel.id, form_data.user_ids, db=db + ) return deleted except Exception as e: @@ -794,7 +828,9 @@ async def get_channel_messages( **message.model_dump(), "reply_count": len(thread_replies), "latest_reply_at": latest_thread_reply_at, - "reactions": Messages.get_reactions_by_message_id(message.id, db=db), + "reactions": Messages.get_reactions_by_message_id( + message.id, db=db + ), "user": UserNameResponse(**users[message.user_id].model_dump()), } ) @@ -857,7 +893,9 @@ async def get_pinned_channel_messages( MessageWithReactionsResponse( **{ **message.model_dump(), - "reactions": Messages.get_reactions_by_message_id(message.id, db=db), + "reactions": Messages.get_reactions_by_message_id( + message.id, db=db + ), "user": UserNameResponse(**users[message.user_id].model_dump()), } ) @@ -871,7 +909,9 @@ async def get_pinned_channel_messages( ############################ -async def send_notification(name, webui_url, channel, message, active_user_ids, db=None): +async def send_notification( + name, webui_url, channel, message, active_user_ids, db=None +): users = get_users_with_access("read", channel.access_control) for user in users: @@ -966,7 +1006,9 @@ async def model_response_handler(request, channel, message, user, db=None): for thread_message in thread_messages: message_user = None if thread_message.user_id not in message_users: - message_user = Users.get_user_by_id(thread_message.user_id, db=db) + message_user = Users.get_user_by_id( + thread_message.user_id, db=db + ) message_users[thread_message.user_id] = message_user else: message_user = message_users[thread_message.user_id] @@ -1098,7 +1140,11 @@ async def new_message_handler( ) else: if user.role != "admin" and not has_access( - user.id, type="write", access_control=channel.access_control, strict=False, db=db + user.id, + type="write", + access_control=channel.access_control, + strict=False, + db=db, ): raise HTTPException( status_code=status.HTTP_403_FORBIDDEN, detail=ERROR_MESSAGES.DEFAULT() @@ -1417,7 +1463,9 @@ async def get_channel_thread_messages( status_code=status.HTTP_403_FORBIDDEN, detail=ERROR_MESSAGES.DEFAULT() ) - message_list = Messages.get_messages_by_parent_id(id, message_id, skip, limit, db=db) + message_list = Messages.get_messages_by_parent_id( + id, message_id, skip, limit, db=db + ) if not message_list: return [] @@ -1434,7 +1482,9 @@ async def get_channel_thread_messages( **message.model_dump(), "reply_count": 0, "latest_reply_at": None, - "reactions": Messages.get_reactions_by_message_id(message.id, db=db), + "reactions": Messages.get_reactions_by_message_id( + message.id, db=db + ), "user": UserNameResponse(**users[message.user_id].model_dump()), } ) @@ -1554,7 +1604,11 @@ async def add_reaction_to_message( ) else: if user.role != "admin" and not has_access( - user.id, type="write", access_control=channel.access_control, strict=False, db=db + user.id, + type="write", + access_control=channel.access_control, + strict=False, + db=db, ): raise HTTPException( status_code=status.HTTP_403_FORBIDDEN, detail=ERROR_MESSAGES.DEFAULT() @@ -1629,7 +1683,11 @@ async def remove_reaction_by_id_and_user_id_and_name( ) else: if user.role != "admin" and not has_access( - user.id, type="write", access_control=channel.access_control, strict=False, db=db + user.id, + type="write", + access_control=channel.access_control, + strict=False, + db=db, ): raise HTTPException( status_code=status.HTTP_403_FORBIDDEN, detail=ERROR_MESSAGES.DEFAULT() diff --git a/backend/open_webui/routers/chats.py b/backend/open_webui/routers/chats.py index ccbae22e3..9a43234aa 100644 --- a/backend/open_webui/routers/chats.py +++ b/backend/open_webui/routers/chats.py @@ -383,7 +383,7 @@ def calculate_chat_stats( def generate_chat_stats_jsonl_generator(user_id, filter): """ Synchronous generator for streaming chat stats export. - + NOTE: We intentionally do NOT pass a shared db session here. Instead, we let each batch create its own short-lived session via get_db_context(None). This is critical for SQLite in low-resource environments because: diff --git a/backend/open_webui/routers/memories.py b/backend/open_webui/routers/memories.py index 6e98247ce..e0ba36c76 100644 --- a/backend/open_webui/routers/memories.py +++ b/backend/open_webui/routers/memories.py @@ -18,8 +18,6 @@ log = logging.getLogger(__name__) router = APIRouter() - - @router.get("/ef") async def get_embeddings(request: Request): return {"result": await request.app.state.EMBEDDING_FUNCTION("hello world")} @@ -32,7 +30,9 @@ async def get_embeddings(request: Request): @router.get("/", response_model=list[MemoryModel]) async def get_memories( - request: Request, user=Depends(get_verified_user), db: Session = Depends(get_session) + request: Request, + user=Depends(get_verified_user), + db: Session = Depends(get_session), ): if not request.app.state.config.ENABLE_MEMORIES: raise HTTPException( @@ -40,7 +40,9 @@ async def get_memories( detail=ERROR_MESSAGES.NOT_FOUND, ) - if not has_permission(user.id, "features.memories", request.app.state.config.USER_PERMISSIONS): + if not has_permission( + user.id, "features.memories", request.app.state.config.USER_PERMISSIONS + ): raise HTTPException( status_code=status.HTTP_403_FORBIDDEN, detail=ERROR_MESSAGES.ACCESS_PROHIBITED, @@ -75,7 +77,9 @@ async def add_memory( detail=ERROR_MESSAGES.NOT_FOUND, ) - if not has_permission(user.id, "features.memories", request.app.state.config.USER_PERMISSIONS): + if not has_permission( + user.id, "features.memories", request.app.state.config.USER_PERMISSIONS + ): raise HTTPException( status_code=status.HTTP_403_FORBIDDEN, detail=ERROR_MESSAGES.ACCESS_PROHIBITED, @@ -112,7 +116,10 @@ class QueryMemoryForm(BaseModel): @router.post("/query") async def query_memory( - request: Request, form_data: QueryMemoryForm, user=Depends(get_verified_user), db: Session = Depends(get_session) + request: Request, + form_data: QueryMemoryForm, + user=Depends(get_verified_user), + db: Session = Depends(get_session), ): if not request.app.state.config.ENABLE_MEMORIES: raise HTTPException( @@ -120,7 +127,9 @@ async def query_memory( detail=ERROR_MESSAGES.NOT_FOUND, ) - if not has_permission(user.id, "features.memories", request.app.state.config.USER_PERMISSIONS): + if not has_permission( + user.id, "features.memories", request.app.state.config.USER_PERMISSIONS + ): raise HTTPException( status_code=status.HTTP_403_FORBIDDEN, detail=ERROR_MESSAGES.ACCESS_PROHIBITED, @@ -146,7 +155,9 @@ async def query_memory( ############################ @router.post("/reset", response_model=bool) async def reset_memory_from_vector_db( - request: Request, user=Depends(get_verified_user), db: Session = Depends(get_session) + request: Request, + user=Depends(get_verified_user), + db: Session = Depends(get_session), ): if not request.app.state.config.ENABLE_MEMORIES: raise HTTPException( @@ -154,12 +165,14 @@ async def reset_memory_from_vector_db( detail=ERROR_MESSAGES.NOT_FOUND, ) - if not has_permission(user.id, "features.memories", request.app.state.config.USER_PERMISSIONS): + if not has_permission( + user.id, "features.memories", request.app.state.config.USER_PERMISSIONS + ): raise HTTPException( status_code=status.HTTP_403_FORBIDDEN, detail=ERROR_MESSAGES.ACCESS_PROHIBITED, ) - + VECTOR_DB_CLIENT.delete_collection(f"user-memory-{user.id}") memories = Memories.get_memories_by_user_id(user.id, db=db) @@ -198,7 +211,9 @@ async def reset_memory_from_vector_db( @router.delete("/delete/user", response_model=bool) async def delete_memory_by_user_id( - request: Request, user=Depends(get_verified_user), db: Session = Depends(get_session) + request: Request, + user=Depends(get_verified_user), + db: Session = Depends(get_session), ): if not request.app.state.config.ENABLE_MEMORIES: raise HTTPException( @@ -206,7 +221,9 @@ async def delete_memory_by_user_id( detail=ERROR_MESSAGES.NOT_FOUND, ) - if not has_permission(user.id, "features.memories", request.app.state.config.USER_PERMISSIONS): + if not has_permission( + user.id, "features.memories", request.app.state.config.USER_PERMISSIONS + ): raise HTTPException( status_code=status.HTTP_403_FORBIDDEN, detail=ERROR_MESSAGES.ACCESS_PROHIBITED, @@ -243,7 +260,9 @@ async def update_memory_by_id( detail=ERROR_MESSAGES.NOT_FOUND, ) - if not has_permission(user.id, "features.memories", request.app.state.config.USER_PERMISSIONS): + if not has_permission( + user.id, "features.memories", request.app.state.config.USER_PERMISSIONS + ): raise HTTPException( status_code=status.HTTP_403_FORBIDDEN, detail=ERROR_MESSAGES.ACCESS_PROHIBITED, @@ -283,7 +302,10 @@ async def update_memory_by_id( @router.delete("/{memory_id}", response_model=bool) async def delete_memory_by_id( - memory_id: str, request: Request, user=Depends(get_verified_user), db: Session = Depends(get_session) + memory_id: str, + request: Request, + user=Depends(get_verified_user), + db: Session = Depends(get_session), ): if not request.app.state.config.ENABLE_MEMORIES: raise HTTPException( @@ -291,7 +313,9 @@ async def delete_memory_by_id( detail=ERROR_MESSAGES.NOT_FOUND, ) - if not has_permission(user.id, "features.memories", request.app.state.config.USER_PERMISSIONS): + if not has_permission( + user.id, "features.memories", request.app.state.config.USER_PERMISSIONS + ): raise HTTPException( status_code=status.HTTP_403_FORBIDDEN, detail=ERROR_MESSAGES.ACCESS_PROHIBITED, diff --git a/backend/open_webui/routers/ollama.py b/backend/open_webui/routers/ollama.py index 7760c422c..4f0563bf3 100644 --- a/backend/open_webui/routers/ollama.py +++ b/backend/open_webui/routers/ollama.py @@ -1302,7 +1302,10 @@ async def generate_chat_completion( if not ( user.id == model_info.user_id or has_access( - user.id, type="read", access_control=model_info.access_control, db=db + user.id, + type="read", + access_control=model_info.access_control, + db=db, ) ): raise HTTPException( @@ -1409,7 +1412,10 @@ async def generate_openai_completion( if not ( user.id == model_info.user_id or has_access( - user.id, type="read", access_control=model_info.access_control, db=db + user.id, + type="read", + access_control=model_info.access_control, + db=db, ) ): raise HTTPException( @@ -1493,7 +1499,10 @@ async def generate_openai_chat_completion( if not ( user.id == model_info.user_id or has_access( - user.id, type="read", access_control=model_info.access_control, db=db + user.id, + type="read", + access_control=model_info.access_control, + db=db, ) ): raise HTTPException( @@ -1592,7 +1601,10 @@ async def get_openai_models( model_info = Models.get_model_by_id(model["id"], db=db) if model_info: if user.id == model_info.user_id or has_access( - user.id, type="read", access_control=model_info.access_control, db=db + user.id, + type="read", + access_control=model_info.access_control, + db=db, ): filtered_models.append(model) models = filtered_models diff --git a/backend/open_webui/routers/openai.py b/backend/open_webui/routers/openai.py index 18f937f36..6e43bd003 100644 --- a/backend/open_webui/routers/openai.py +++ b/backend/open_webui/routers/openai.py @@ -837,7 +837,10 @@ async def generate_chat_completion( if not ( user.id == model_info.user_id or has_access( - user.id, type="read", access_control=model_info.access_control, db=db + user.id, + type="read", + access_control=model_info.access_control, + db=db, ) ): raise HTTPException( diff --git a/backend/open_webui/routers/prompts.py b/backend/open_webui/routers/prompts.py index 645cfe83a..19d25685a 100644 --- a/backend/open_webui/routers/prompts.py +++ b/backend/open_webui/routers/prompts.py @@ -23,7 +23,9 @@ router = APIRouter() @router.get("/", response_model=list[PromptModel]) -async def get_prompts(user=Depends(get_verified_user), db: Session = Depends(get_session)): +async def get_prompts( + user=Depends(get_verified_user), db: Session = Depends(get_session) +): if user.role == "admin" and BYPASS_ADMIN_ACCESS_CONTROL: prompts = Prompts.get_prompts(db=db) else: @@ -33,7 +35,9 @@ async def get_prompts(user=Depends(get_verified_user), db: Session = Depends(get @router.get("/list", response_model=list[PromptAccessResponse]) -async def get_prompt_list(user=Depends(get_verified_user), db: Session = Depends(get_session)): +async def get_prompt_list( + user=Depends(get_verified_user), db: Session = Depends(get_session) +): if user.role == "admin" and BYPASS_ADMIN_ACCESS_CONTROL: prompts = Prompts.get_prompts(db=db) else: @@ -59,11 +63,17 @@ async def get_prompt_list(user=Depends(get_verified_user), db: Session = Depends @router.post("/create", response_model=Optional[PromptModel]) async def create_new_prompt( - request: Request, form_data: PromptForm, user=Depends(get_verified_user), db: Session = Depends(get_session) + request: Request, + form_data: PromptForm, + user=Depends(get_verified_user), + db: Session = Depends(get_session), ): if user.role != "admin" and not ( has_permission( - user.id, "workspace.prompts", request.app.state.config.USER_PERMISSIONS, db=db + user.id, + "workspace.prompts", + request.app.state.config.USER_PERMISSIONS, + db=db, ) or has_permission( user.id, @@ -99,7 +109,9 @@ async def create_new_prompt( @router.get("/command/{command}", response_model=Optional[PromptAccessResponse]) -async def get_prompt_by_command(command: str, user=Depends(get_verified_user), db: Session = Depends(get_session)): +async def get_prompt_by_command( + command: str, user=Depends(get_verified_user), db: Session = Depends(get_session) +): prompt = Prompts.get_prompt_by_command(f"/{command}", db=db) if prompt: @@ -169,7 +181,9 @@ async def update_prompt_by_command( @router.delete("/command/{command}/delete", response_model=bool) -async def delete_prompt_by_command(command: str, user=Depends(get_verified_user), db: Session = Depends(get_session)): +async def delete_prompt_by_command( + command: str, user=Depends(get_verified_user), db: Session = Depends(get_session) +): prompt = Prompts.get_prompt_by_command(f"/{command}", db=db) if not prompt: raise HTTPException( diff --git a/backend/open_webui/socket/main.py b/backend/open_webui/socket/main.py index ec5915663..67e04e69c 100644 --- a/backend/open_webui/socket/main.py +++ b/backend/open_webui/socket/main.py @@ -246,11 +246,13 @@ def get_user_ids_from_room(room): active_session_ids = get_session_ids_from_room(room) active_user_ids = list( - set([ - SESSION_POOL.get(session_id)["id"] - for session_id in active_session_ids - if SESSION_POOL.get(session_id) is not None - ]) + set( + [ + SESSION_POOL.get(session_id)["id"] + for session_id in active_session_ids + if SESSION_POOL.get(session_id) is not None + ] + ) ) return active_user_ids diff --git a/backend/open_webui/tools/builtin.py b/backend/open_webui/tools/builtin.py index 8f3c2a2df..f477a500e 100644 --- a/backend/open_webui/tools/builtin.py +++ b/backend/open_webui/tools/builtin.py @@ -1378,7 +1378,9 @@ async def view_knowledge_file( if ( user_role == "admin" or knowledge_base.user_id == user_id - or has_access(user_id, "read", knowledge_base.access_control, user_group_ids) + or has_access( + user_id, "read", knowledge_base.access_control, user_group_ids + ) ): has_knowledge_access = True knowledge_info = {"id": knowledge_base.id, "name": knowledge_base.name} @@ -1463,7 +1465,9 @@ async def query_knowledge_bases( if knowledge and ( user_role == "admin" or knowledge.user_id == user_id - or has_access(user_id, "read", knowledge.access_control, user_group_ids) + or has_access( + user_id, "read", knowledge.access_control, user_group_ids + ) ): collection_names.append(item_id) @@ -1482,12 +1486,14 @@ async def query_knowledge_bases( or has_access(user_id, "read", note.access_control) ): content = note.data.get("content", {}).get("md", "") - note_results.append({ - "content": content, - "source": note.title, - "note_id": note.id, - "type": "note", - }) + note_results.append( + { + "content": content, + "source": note.title, + "note_id": note.id, + "type": "note", + } + ) elif knowledge_ids: # User specified specific KBs @@ -1496,7 +1502,9 @@ async def query_knowledge_bases( if knowledge and ( user_role == "admin" or knowledge.user_id == user_id - or has_access(user_id, "read", knowledge.access_control, user_group_ids) + or has_access( + user_id, "read", knowledge.access_control, user_group_ids + ) ): collection_names.append(knowledge_id) else: @@ -1535,7 +1543,9 @@ async def query_knowledge_bases( for idx, doc in enumerate(documents): chunk_info = { "content": doc, - "source": metadatas[idx].get("source", metadatas[idx].get("name", "Unknown")), + "source": metadatas[idx].get( + "source", metadatas[idx].get("name", "Unknown") + ), "file_id": metadatas[idx].get("file_id", ""), } if idx < len(distances): diff --git a/backend/open_webui/utils/middleware.py b/backend/open_webui/utils/middleware.py index 34e34f21c..d7d8a4fce 100644 --- a/backend/open_webui/utils/middleware.py +++ b/backend/open_webui/utils/middleware.py @@ -948,7 +948,7 @@ def get_image_urls(delta_images, request, metadata, user) -> list[str]: def add_file_context(messages: list, chat_id: str, user) -> list: """ - Add file URLs to user messages for native function calling. + Add file URLs to messages for native function calling. """ if not chat_id or chat_id.startswith("local:"): return messages @@ -961,7 +961,6 @@ def add_file_context(messages: list, chat_id: str, user) -> list: stored_messages = get_message_list( history.get("messages", {}), history.get("currentId") ) - stored_user_messages = [msg for msg in stored_messages if msg.get("role") == "user"] def format_file_tag(file): attrs = f'type="{file.get("type", "file")}" url="{file["url"]}"' @@ -971,9 +970,7 @@ def add_file_context(messages: list, chat_id: str, user) -> list: attrs += f' name="{file["name"]}"' return f"" - user_messages = [msg for msg in messages if msg.get("role") == "user"] - - for message, stored_message in zip(user_messages, stored_user_messages): + for message, stored_message in zip(messages, stored_messages): files_with_urls = [ file for file in stored_message.get("files", []) if file.get("url") ] diff --git a/backend/open_webui/utils/tools.py b/backend/open_webui/utils/tools.py index 3bdb6d0cc..478c29c44 100644 --- a/backend/open_webui/utils/tools.py +++ b/backend/open_webui/utils/tools.py @@ -360,7 +360,12 @@ def get_builtin_tools( # Helper to get model capabilities (defaults to True if not specified) def get_model_capability(name: str, default: bool = True) -> bool: - return model.get("info", {}).get("meta", {}).get("capabilities", {}).get(name, default) + return ( + model.get("info", {}) + .get("meta", {}) + .get("capabilities", {}) + .get(name, default) + ) # Time utilities - always available for date calculations builtin_functions.extend([get_current_timestamp, calculate_timestamp]) @@ -375,7 +380,13 @@ def get_builtin_tools( else: # No model knowledge - allow full KB browsing builtin_functions.extend( - [list_knowledge_bases, search_knowledge_bases, search_knowledge_files, view_knowledge_file, query_knowledge_bases] + [ + list_knowledge_bases, + search_knowledge_bases, + search_knowledge_files, + view_knowledge_file, + query_knowledge_bases, + ] ) # Chats tools - search and fetch user's chat history @@ -386,9 +397,9 @@ def get_builtin_tools( builtin_functions.extend([search_memories, add_memory, replace_memory_content]) # Add web search tools if enabled globally AND model has web_search capability - if getattr(request.app.state.config, "ENABLE_WEB_SEARCH", False) and get_model_capability( - "web_search" - ): + if getattr( + request.app.state.config, "ENABLE_WEB_SEARCH", False + ) and get_model_capability("web_search"): builtin_functions.extend([search_web, fetch_url]) # Add image generation/edit tools if enabled globally AND model has image_generation capability @@ -396,9 +407,9 @@ def get_builtin_tools( request.app.state.config, "ENABLE_IMAGE_GENERATION", False ) and get_model_capability("image_generation"): builtin_functions.append(generate_image) - if getattr(request.app.state.config, "ENABLE_IMAGE_EDIT", False) and get_model_capability( - "image_generation" - ): + if getattr( + request.app.state.config, "ENABLE_IMAGE_EDIT", False + ) and get_model_capability("image_generation"): builtin_functions.append(edit_image) # Notes tools - search, view, create, and update user's notes (if notes enabled globally) diff --git a/src/lib/apis/index.ts b/src/lib/apis/index.ts index 6b5e67e47..8f35fbf88 100644 --- a/src/lib/apis/index.ts +++ b/src/lib/apis/index.ts @@ -1674,7 +1674,7 @@ export interface ModelMeta { profile_image_url?: string; } -export interface ModelParams { } +export interface ModelParams {} export type GlobalModelConfig = ModelConfig[]; diff --git a/src/lib/components/ChangelogModal.svelte b/src/lib/components/ChangelogModal.svelte index fc170501c..fa8381f7f 100644 --- a/src/lib/components/ChangelogModal.svelte +++ b/src/lib/components/ChangelogModal.svelte @@ -43,11 +43,7 @@ {$WEBUI_NAME} - + + + + + + {:else} + { + goto( + `/workspace/models/edit?id=${encodeURIComponent(model.id)}` + ); + }} + shareHandler={() => { + shareModelHandler(model); + }} + cloneHandler={() => { + cloneModelHandler(model); + }} + exportHandler={() => { + exportModelHandler(model); + }} + hideHandler={() => { hideModelHandler(model); }} - > - {#if model?.meta?.hidden} - - {:else} - - {/if} - - - - - - - {:else} - { - goto( - `/workspace/models/edit?id=${encodeURIComponent(model.id)}` - ); - }} - shareHandler={() => { - shareModelHandler(model); - }} - cloneHandler={() => { - cloneModelHandler(model); - }} - exportHandler={() => { - exportModelHandler(model); - }} - hideHandler={() => { - hideModelHandler(model); - }} - pinModelHandler={() => { - pinModelHandler(model.id); - }} - copyLinkHandler={() => { - copyLinkHandler(model); - }} - deleteHandler={() => { - selectedModel = model; - showModelDeleteConfirm = true; - }} - onClose={() => {}} - > -
- -
-
- {/if} +
+ +
+
+ {/if} + - {/if} {#if model.write_access} - + + { + toggleModelById(localStorage.token, model.id); + _models.set( + await getModels( + localStorage.token, + $config?.features?.enable_direct_connections && + ($settings?.directConnections ?? null) + ) + ); + }} + /> + + {/if} diff --git a/src/lib/components/workspace/Models/Capabilities.svelte b/src/lib/components/workspace/Models/Capabilities.svelte index 4f2c4988d..b5dc7a02c 100644 --- a/src/lib/components/workspace/Models/Capabilities.svelte +++ b/src/lib/components/workspace/Models/Capabilities.svelte @@ -43,7 +43,9 @@ }, builtin_tools: { label: $i18n.t('Builtin Tools'), - description: $i18n.t('Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)') + description: $i18n.t( + 'Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)' + ) } }; diff --git a/src/lib/components/workspace/Tools.svelte b/src/lib/components/workspace/Tools.svelte index d17989693..7ca743775 100644 --- a/src/lib/components/workspace/Tools.svelte +++ b/src/lib/components/workspace/Tools.svelte @@ -358,7 +358,9 @@ {#each filteredItems as tool}
{#if tool.write_access} {:else} -
+
@@ -438,94 +438,94 @@
{/if} {#if tool.write_access} -
- {#if shiftKey} - - - - {:else} - {#if tool?.meta?.manifest?.funding_url ?? false} - +
+ {#if shiftKey} + + + + {:else} + {#if tool?.meta?.manifest?.funding_url ?? false} + + + + {/if} + + - {/if} - - - - - { - goto(`/workspace/tools/edit?id=${encodeURIComponent(tool.id)}`); - }} - shareHandler={() => { - shareHandler(tool); - }} - cloneHandler={() => { - cloneHandler(tool); - }} - exportHandler={() => { - exportHandler(tool); - }} - deleteHandler={async () => { - selectedTool = tool; - showDeleteConfirm = true; - }} - onClose={() => {}} - > - - - {/if} -
+ + + + {/if} +
{/if}
diff --git a/src/lib/constants/permissions.ts b/src/lib/constants/permissions.ts index 8ef3426a7..58a362aad 100644 --- a/src/lib/constants/permissions.ts +++ b/src/lib/constants/permissions.ts @@ -1,61 +1,61 @@ export const DEFAULT_PERMISSIONS = { - workspace: { - models: false, - knowledge: false, - prompts: false, - tools: false, - models_import: false, - models_export: false, - prompts_import: false, - prompts_export: false, - tools_import: false, - tools_export: false - }, - sharing: { - models: false, - public_models: false, - knowledge: false, - public_knowledge: false, - prompts: false, - public_prompts: false, - tools: false, - public_tools: false, - notes: false, - public_notes: false - }, - chat: { - controls: true, - valves: true, - system_prompt: true, - params: true, - file_upload: true, - delete: true, - delete_message: true, - continue_response: true, - regenerate_response: true, - rate_response: true, - edit: true, - share: true, - export: true, - stt: true, - tts: true, - call: true, - multiple_models: true, - temporary: true, - temporary_enforced: false - }, - features: { - api_keys: false, - notes: true, - channels: true, - folders: true, - direct_tool_servers: false, - web_search: true, - image_generation: true, - code_interpreter: true, - memories: true - }, - settings: { - interface: true - } + workspace: { + models: false, + knowledge: false, + prompts: false, + tools: false, + models_import: false, + models_export: false, + prompts_import: false, + prompts_export: false, + tools_import: false, + tools_export: false + }, + sharing: { + models: false, + public_models: false, + knowledge: false, + public_knowledge: false, + prompts: false, + public_prompts: false, + tools: false, + public_tools: false, + notes: false, + public_notes: false + }, + chat: { + controls: true, + valves: true, + system_prompt: true, + params: true, + file_upload: true, + delete: true, + delete_message: true, + continue_response: true, + regenerate_response: true, + rate_response: true, + edit: true, + share: true, + export: true, + stt: true, + tts: true, + call: true, + multiple_models: true, + temporary: true, + temporary_enforced: false + }, + features: { + api_keys: false, + notes: true, + channels: true, + folders: true, + direct_tool_servers: false, + web_search: true, + image_generation: true, + code_interpreter: true, + memories: true + }, + settings: { + interface: true + } } as const; diff --git a/src/lib/i18n/locales/ar-BH/translation.json b/src/lib/i18n/locales/ar-BH/translation.json index f84a6564c..0e5b96020 100644 --- a/src/lib/i18n/locales/ar-BH/translation.json +++ b/src/lib/i18n/locales/ar-BH/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "سيؤدي ضبط هذه الإعدادات إلى تطبيق التغييرات بشكل عام على كافة المستخدمين", "admin": "المشرف", "Admin": "", + "Admin Contact Email": "", "Admin Panel": "لوحة التحكم", "Admin Settings": "اعدادات المشرف", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "", @@ -101,7 +102,6 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "", - "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "", "Allow Rate Response": "", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "", "and create a new shared link.": "و أنشئ رابط مشترك جديد.", "Android": "", + "Anyone": "", "API Base URL": "API الرابط الرئيسي", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "", "API Key": "API مفتاح", @@ -175,6 +176,7 @@ "Authenticate": "", "Authentication": "", "Auto": "", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "النسخ التلقائي للاستجابة إلى الحافظة", "Auto-playback response": "استجابة التشغيل التلقائي", "Autocomplete Generation": "", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "", "AUTOMATIC1111 Base URL": "AUTOMATIC1111 الرابط الرئيسي", "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 الرابط مطلوب", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "", "Available Tools": "", "available users": "المستخدمون المتاحون", @@ -201,6 +204,7 @@ "before": "قبل", "Being lazy": "كون كسول", "Beta": "", + "Bing": "", "Bing Search V7 Endpoint": "", "Bing Search V7 Subscription Key": "", "Bio": "", @@ -209,7 +213,9 @@ "Bocha Search API Key": "", "Bold": "", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "", + "Brave": "", "Brave Search API Key": "مفتاح واجهة برمجة تطبيقات البحث الشجاع", + "Builtin Tools": "", "Bullet List": "", "Button ID": "", "Button Label": "", @@ -256,8 +262,10 @@ "Check for updates": "تحقق من التحديثات", "Checking for updates...": "البحث عن تحديثات", "Choose a model before saving...": "أختار موديل قبل الحفظ", + "Chunk Min Size Target": "", "Chunk Overlap": "Chunk تداخل", "Chunk Size": "Chunk حجم", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "", "Citation": "اقتباس", "Citations": "", @@ -293,7 +301,6 @@ "Code Block": "", "Code Editor": "", "Code execution": "", - "Code Execution": "", "Code Execution Engine": "", "Code Execution Timeout": "", "Code formatted successfully": "", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "", "Content": "الاتصال", "Content Extraction Engine": "", + "Content lengths (character counts only)": "", "Continue Response": "متابعة الرد", "Continue with {{provider}}": "", "Continue with Email": "", @@ -393,6 +401,7 @@ "Database": "قاعدة البيانات", "Datalab Marker API": "", "DD/MM/YYYY": "", + "DDGS Backend": "", "December": "ديسمبر", "Decrease UI Scale": "", "Deepgram": "", @@ -474,6 +483,7 @@ "Dive into knowledge": "", "Do not install functions from sources you do not fully trust.": "", "Do not install tools from sources you do not fully trust.": "", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "", "Docling Parameters": "", "Docling Server URL required.": "", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "", "Document Intelligence Model": "", "Documentation": "", - "Documents": "مستندات", "does not make any external connections, and your data stays securely on your locally hosted server.": "لا يجري أي اتصالات خارجية، وتظل بياناتك آمنة على الخادم المستضاف محليًا.", "Domain Filter List": "", "don't fetch random pipelines from sources you don't trust.": "لا تجلب خطوط أنابيب عشوائية من مصادر غير موثوقة.", @@ -493,11 +502,14 @@ "Done": "", "Download": "تحميل", "Download & Delete": "تنزيل وحذف", + "Download as JSON": "", "Download as SVG": "", "Download canceled": "تم اللغاء التحميل", "Download Database": "تحميل قاعدة البيانات", + "Downloading stats...": "", "Draw": "", "Drop any files here to upload": "", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "e.g. '30s','10m'. الوحدات الزمنية الصالحة هي 's', 'm', 'h'.", "e.g. \"json\" or a JSON schema": "", "e.g. 60": "", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "", "Enter Brave Search API Key": "أدخل مفتاح واجهة برمجة تطبيقات البحث الشجاع", "Enter certificate path": "", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "أدخل الChunk Overlap", "Enter Chunk Size": "أدخل Chunk الحجم", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "", "Enter Firecrawl API Base URL": "", "Enter Firecrawl API Key": "", + "Enter Firecrawl Timeout": "", "Enter folder name": "", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "أدخل عنوان URL ل Github Raw", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "", "Enter ID": "", "Enter Image Size (e.g. 512x512)": "(e.g. 512x512) أدخل حجم الصورة ", + "Enter Jina API Base URL": "", "Enter Jina API Key": "", "Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter Jupyter Password": "", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "", "Enter Key Behavior": "", "Enter language codes": "أدخل كود اللغة", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "", "Enter Mistral API Key": "", "Enter Model ID": "", @@ -736,6 +753,7 @@ "Failed to generate title": "", "Failed to import models": "", "Failed to load chat preview": "", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "", "Failed to move chat": "", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "", "Features Permissions": "", "February": "فبراير", + "Feedback": "", "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "", - "Feedbacks": "", "Feel free to add specific details": "لا تتردد في إضافة تفاصيل محددة", "Female": "", "File": "", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "تم اكتشاف انتحال بصمة الإصبع: غير قادر على استخدام الأحرف الأولى كصورة رمزية. الافتراضي لصورة الملف الشخصي الافتراضية.", "Firecrawl API Base URL": "", "Firecrawl API Key": "", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "", "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "", + "Folder Max File Count": "", "Folder Name": "", "Folder name cannot be empty.": "", "Folder name updated successfully": "", @@ -826,7 +846,6 @@ "General": "عام", "Generate": "", "Generate an image": "", - "Generate Image": "", "Generate Message Pair": "", "Generated Image": "", "Generating search query": "إنشاء استعلام بحث", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "", "Global": "", "Good Response": "استجابة جيدة", + "Google": "", "Google Drive": "", "Google PSE API Key": "مفتاح واجهة برمجة تطبيقات PSE من Google", "Google PSE Engine Id": "معرف محرك PSE من Google", "Gravatar": "", "Grid": "", + "Grokipedia": "", "Group": "مجموعة", "Group Channel": "", "Group created successfully": "", @@ -895,7 +916,6 @@ "Image Prompt Generation": "", "Image Prompt Generation Prompt": "", "Image Size": "", - "Images": "الصور", "Import": "", "Import Chats": "استيراد الدردشات", "Import Config from JSON File": "", @@ -927,6 +947,7 @@ "Integration": "", "Integrations": "", "Interface": "واجهه المستخدم", + "Interface Settings Access": "", "Invalid file content": "", "Invalid file format.": "", "Invalid JSON file": "", @@ -940,6 +961,7 @@ "is typing...": "", "Italic": "", "January": "يناير", + "Jina API Base URL": "", "Jina API Key": "", "join our Discord for help.": "انضم إلى Discord للحصول على المساعدة.", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "", "Leave empty to include all models or select specific models": "", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "", "Leave empty to use the default prompt, or enter a custom prompt": "", "Leave model field empty to use the default model.": "", @@ -1029,10 +1052,12 @@ "Manage your account information.": "", "March": "مارس", "Markdown": "", - "Markdown (Header)": "", + "Markdown Header Text Splitter": "", "Max Speakers": "", "Max Upload Count": "", "Max Upload Size": "", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "يمكن تنزيل 3 نماذج كحد أقصى في وقت واحد. الرجاء معاودة المحاولة في وقت لاحق.", "May": "مايو", "MBR": "", @@ -1042,6 +1067,7 @@ "Member removed successfully": "", "Members": "", "Members added successfully": "", + "Memories": "", "Memories accessible by LLMs will be shown here.": "سيتم عرض الذكريات التي يمكن الوصول إليها بواسطة LLMs هنا.", "Memory": "الذاكرة", "Memory added successfully": "", @@ -1051,6 +1077,7 @@ "Merge Responses": "", "Merged Response": "نتيجة الردود المدمجة", "Message": "", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "لن تتم مشاركة الرسائل التي ترسلها بعد إنشاء الرابط الخاص بك. سيتمكن المستخدمون الذين لديهم عنوان URL من عرض الدردشة المشتركة", "Microsoft OneDrive": "", @@ -1083,9 +1110,11 @@ "Model Name": "", "Model name already exists, please choose a different one": "", "Model Name is required.": "", + "Model names and usage frequency": "", "Model not selected": "لم تختار موديل", "Model Params": "معلمات النموذج", "Model Permissions": "", + "Model responses or outputs": "", "Model unloaded successfully": "", "Model updated successfully": "", "Model(s) do not support file upload": "", @@ -1096,6 +1125,7 @@ "Models imported successfully": "", "Models Public Sharing": "", "Models Sharing": "", + "Mojeek": "", "Mojeek Search API Key": "", "More": "المزيد", "More Concise": "", @@ -1129,7 +1159,7 @@ "No conversation to save": "", "No distance available": "", "No expiration can pose security risks.": "", - "No feedbacks found": "", + "No feedback found": "", "No file selected": "", "No files in this knowledge base.": "", "No functions found": "", @@ -1144,6 +1174,7 @@ "No models selected": "", "No Notes": "", "No notes found": "", + "No one": "", "No pinned messages": "", "No prompts found": "", "No results": "لا توجد نتائج", @@ -1195,6 +1226,7 @@ "Only invited users can access": "", "Only markdown files are allowed": "", "Only select users and groups with permission can access": "", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "خطاء! يبدو أن عنوان URL غير صالح. يرجى التحقق مرة أخرى والمحاولة مرة أخرى.", "Oops! There are files still uploading. Please wait for the upload to complete.": "", "Oops! There was an error in the previous response.": "", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "", "OpenAI": "OpenAI", "OpenAI API": "OpenAI API", @@ -1235,6 +1268,8 @@ "page": "", "Paginate": "", "Parameters": "", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "الباسورد", "Passwords do not match.": "", "Paste Large Text as File": "", @@ -1260,7 +1295,6 @@ "Pipe": "", "Pipeline deleted successfully": "", "Pipeline downloaded successfully": "", - "Pipelines": "خطوط الانابيب", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines عبارة عن نظام إضافات يتيح تنفيذًا عشوائيًا للتعليمات البرمجية —", "Pipelines Not Detected": "", "Pipelines Valves": "صمامات خطوط الأنابيب", @@ -1502,6 +1536,7 @@ "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.": "", "Setting": "", "Settings": "الاعدادات", + "Settings Permissions": "", "Settings saved successfully!": "تم حفظ الاعدادات بنجاح", "Share": "كشاركة", "Share Chat": "مشاركة الدردشة", @@ -1545,6 +1580,7 @@ "Speech recognition error: {{error}}": "{{error}} خطأ في التعرف على الكلام", "Speech-to-Text": "", "Speech-to-Text Engine": "محرك تحويل الكلام إلى نص", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "", "Start of the channel": "بداية القناة", "Start Tag": "", @@ -1555,6 +1591,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "", + "Stop Download": "", "Stop Generating": "", "Stop Sequence": "وقف التسلسل", "Stream Chat Response": "", @@ -1575,7 +1612,14 @@ "Support": "", "Support this plugin:": "", "Supported MIME Types": "", + "Sync": "", + "Sync Complete!": "", "Sync directory": "", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "النظام", "System Instructions": "", "System Prompt": "محادثة النظام", @@ -1620,6 +1664,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "", "The width in pixels to compress images to. Leave empty for no compression.": "", "Theme": "الثيم", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "", "This action cannot be undone. Do you wish to continue?": "", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "", @@ -1734,6 +1779,7 @@ "Upload Pipeline": "", "Upload Progress": "جاري التحميل", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploaded files or images": "", "Uploading file...": "", "URL": "", "URL is required": "", @@ -1751,6 +1797,7 @@ "User Groups": "", "User location successfully retrieved.": "", "User menu": "", + "User ratings (thumbs up/down)": "", "User Webhooks": "", "Username": "", "users": "", @@ -1800,15 +1847,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "", "What are you trying to achieve?": "", "What are you working on?": "", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "ما هو الجديد", "What's on your mind?": "", "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.": "", "wherever you are": "", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whisper (Local)": "", + "Who can share to this group": "", "Why?": "", "Widescreen Mode": "", "Width": "", + "Wikipedia": "", "Won": "", "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.": "", "Workspace": "مساحة العمل", @@ -1820,6 +1871,8 @@ "Yacy Instance URL": "", "Yacy Password": "", "Yacy Username": "", + "Yahoo": "", + "Yandex": "", "Yesterday": "أمس", "Yesterday at {{LOCALIZED_TIME}}": "", "You": "انت", @@ -1827,6 +1880,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "", "You cannot upload an empty file.": "", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this thread.": "", "You do not have permission to upload files to this knowledge base.": "", @@ -1838,6 +1894,8 @@ "Your Account": "", "Your account status is currently pending activation.": "", "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.": "", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "Youtube", "Youtube Language": "", "Youtube Proxy URL": "" diff --git a/src/lib/i18n/locales/ar/translation.json b/src/lib/i18n/locales/ar/translation.json index 7964c1e0c..88fe7e1ef 100644 --- a/src/lib/i18n/locales/ar/translation.json +++ b/src/lib/i18n/locales/ar/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "تعديل هذه الإعدادات سيطبق التغييرات على جميع المستخدمين بشكل عام.", "admin": "المسؤول", "Admin": "المسؤول", + "Admin Contact Email": "", "Admin Panel": "لوحة المسؤول", "Admin Settings": "إعدادات المسؤول", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "للمسؤولين الوصول إلى جميع الأدوات في جميع الأوقات؛ بينما يحتاج المستخدمون إلى تعيين أدوات لكل نموذج في مساحة العمل.", @@ -101,7 +102,6 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "السماح بتحميل الملفات", - "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "السماح بالأصوات غير المحلية", "Allow Rate Response": "", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "و{{COUNT}} المزيد", "and create a new shared link.": "وإنشاء رابط مشترك جديد.", "Android": "", + "Anyone": "", "API Base URL": "الرابط الأساسي لواجهة API", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "", "API Key": "مفتاح واجهة برمجة التطبيقات (API)", @@ -175,6 +176,7 @@ "Authenticate": "توثيق", "Authentication": "المصادقة", "Auto": "", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "نسخ الرد تلقائيًا إلى الحافظة", "Auto-playback response": "تشغيل الرد تلقائيًا", "Autocomplete Generation": "توليد الإكمال التلقائي", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "سلسلة توثيق API لـ AUTOMATIC1111", "AUTOMATIC1111 Base URL": "الرابط الأساسي لـ AUTOMATIC1111", "AUTOMATIC1111 Base URL is required.": "الرابط الأساسي لـ AUTOMATIC1111 مطلوب.", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "القائمة المتاحة", "Available Tools": "", "available users": "المستخدمون المتاحون", @@ -201,6 +204,7 @@ "before": "قبل", "Being lazy": "كونك كسولاً", "Beta": "بيتا", + "Bing": "", "Bing Search V7 Endpoint": "نقطة نهاية Bing Search V7", "Bing Search V7 Subscription Key": "مفتاح اشتراك Bing Search V7", "Bio": "", @@ -209,7 +213,9 @@ "Bocha Search API Key": "مفتاح API لـ Bocha Search", "Bold": "", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "تعزيز أو معاقبة رموز محددة لردود مقيدة. ستتراوح قيم التحيز بين -100 و100 (شاملة). (افتراضي: لا شيء)", + "Brave": "", "Brave Search API Key": "مفتاح API لـ Brave Search", + "Builtin Tools": "", "Bullet List": "", "Button ID": "", "Button Label": "", @@ -256,8 +262,10 @@ "Check for updates": "تحقق من التحديثات", "Checking for updates...": "جارٍ التحقق من التحديثات...", "Choose a model before saving...": "اختر نموذجًا قبل الحفظ...", + "Chunk Min Size Target": "", "Chunk Overlap": "تداخل القطع", "Chunk Size": "حجم القطعة", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "التشفيرات", "Citation": "اقتباس", "Citations": "", @@ -293,7 +301,6 @@ "Code Block": "", "Code Editor": "", "Code execution": "تنفيذ الشيفرة", - "Code Execution": "تنفيذ الشيفرة", "Code Execution Engine": "محرك تنفيذ الشيفرة", "Code Execution Timeout": "مهلة تنفيذ الشيفرة", "Code formatted successfully": "تم تنسيق الشيفرة بنجاح", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "اتصل بالمسؤول للوصول إلى واجهة الويب", "Content": "المحتوى", "Content Extraction Engine": "محرك استخراج المحتوى", + "Content lengths (character counts only)": "", "Continue Response": "متابعة الرد", "Continue with {{provider}}": "متابعة مع {{provider}}", "Continue with Email": "متابعة باستخدام البريد الإلكتروني", @@ -393,6 +401,7 @@ "Database": "قاعدة البيانات", "Datalab Marker API": "", "DD/MM/YYYY": "", + "DDGS Backend": "", "December": "ديسمبر", "Decrease UI Scale": "", "Deepgram": "", @@ -474,6 +483,7 @@ "Dive into knowledge": "انغمس في المعرفة", "Do not install functions from sources you do not fully trust.": "لا تقم بتثبيت الوظائف من مصادر لا تثق بها تمامًا.", "Do not install tools from sources you do not fully trust.": "لا تقم بتثبيت الأدوات من مصادر لا تثق بها تمامًا.", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "", "Docling Parameters": "", "Docling Server URL required.": "", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "", "Document Intelligence Model": "", "Documentation": "التوثيق", - "Documents": "مستندات", "does not make any external connections, and your data stays securely on your locally hosted server.": "لا يجري أي اتصالات خارجية، وتظل بياناتك آمنة على الخادم المستضاف محليًا.", "Domain Filter List": "قائمة تصفية النطاقات", "don't fetch random pipelines from sources you don't trust.": "لا تجلب خطوط أنابيب عشوائية من مصادر غير موثوقة.", @@ -493,11 +502,14 @@ "Done": "تم", "Download": "تحميل", "Download & Delete": "تنزيل وحذف", + "Download as JSON": "", "Download as SVG": "تنزيل بصيغة SVG", "Download canceled": "تم اللغاء التحميل", "Download Database": "تحميل قاعدة البيانات", + "Downloading stats...": "", "Draw": "ارسم", "Drop any files here to upload": "", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "e.g. '30s','10m'. الوحدات الزمنية الصالحة هي 's', 'm', 'h'.", "e.g. \"json\" or a JSON schema": "", "e.g. 60": "مثال: 60", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "أدخل مفتاح API لـ Bocha Search", "Enter Brave Search API Key": "أدخل مفتاح واجهة برمجة تطبيقات البحث الشجاع", "Enter certificate path": "أدخل مسار الشهادة", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "أدخل الChunk Overlap", "Enter Chunk Size": "أدخل Chunk الحجم", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "أدخل أزواج \"الرمز:قيمة التحيز\" مفصولة بفواصل (مثال: 5432:100، 413:-100)", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "", "Enter Firecrawl API Base URL": "", "Enter Firecrawl API Key": "", + "Enter Firecrawl Timeout": "", "Enter folder name": "", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "أدخل عنوان URL ل Github Raw", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "", "Enter ID": "", "Enter Image Size (e.g. 512x512)": "(e.g. 512x512) أدخل حجم الصورة ", + "Enter Jina API Base URL": "", "Enter Jina API Key": "أدخل مفتاح API لـ Jina", "Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter Jupyter Password": "أدخل كلمة مرور Jupyter", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "أدخل مفتاح API لـ Kagi Search", "Enter Key Behavior": "أدخل سلوك المفتاح", "Enter language codes": "أدخل كود اللغة", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "", "Enter Mistral API Key": "", "Enter Model ID": "أدخل معرف النموذج", @@ -736,6 +753,7 @@ "Failed to generate title": "", "Failed to import models": "", "Failed to load chat preview": "", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "", "Failed to move chat": "", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "الميزات", "Features Permissions": "أذونات الميزات", "February": "فبراير", + "Feedback": "", "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "سجل الملاحظات", - "Feedbacks": "الملاحظات", "Feel free to add specific details": "لا تتردد في إضافة تفاصيل محددة", "Female": "", "File": "ملف", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "تم اكتشاف انتحال بصمة الإصبع: غير قادر على استخدام الأحرف الأولى كصورة رمزية. الافتراضي لصورة الملف الشخصي الافتراضية.", "Firecrawl API Base URL": "", "Firecrawl API Key": "", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "", "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "تم حذف المجلد بنجاح", + "Folder Max File Count": "", "Folder Name": "", "Folder name cannot be empty.": "لا يمكن أن يكون اسم المجلد فارغًا.", "Folder name updated successfully": "تم تحديث اسم المجلد بنجاح", @@ -826,7 +846,6 @@ "General": "عام", "Generate": "", "Generate an image": "توليد صورة", - "Generate Image": "توليد صورة", "Generate Message Pair": "", "Generated Image": "", "Generating search query": "إنشاء استعلام بحث", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "ابدأ باستخدام {{WEBUI_NAME}}", "Global": "عام", "Good Response": "استجابة جيدة", + "Google": "", "Google Drive": "Google Drive", "Google PSE API Key": "مفتاح واجهة برمجة تطبيقات PSE من Google", "Google PSE Engine Id": "معرف محرك PSE من Google", "Gravatar": "", "Grid": "", + "Grokipedia": "", "Group": "مجموعة", "Group Channel": "", "Group created successfully": "تم إنشاء المجموعة بنجاح", @@ -895,7 +916,6 @@ "Image Prompt Generation": "توليد التوجيه للصورة", "Image Prompt Generation Prompt": "نص توجيه توليد الصورة", "Image Size": "", - "Images": "الصور", "Import": "", "Import Chats": "استيراد الدردشات", "Import Config from JSON File": "استيراد الإعدادات من ملف JSON", @@ -927,6 +947,7 @@ "Integration": "التكامل", "Integrations": "", "Interface": "واجهه المستخدم", + "Interface Settings Access": "", "Invalid file content": "", "Invalid file format.": "تنسيق ملف غير صالح.", "Invalid JSON file": "", @@ -940,6 +961,7 @@ "is typing...": "يكتب...", "Italic": "", "January": "يناير", + "Jina API Base URL": "", "Jina API Key": "مفتاح API لـ Jina", "join our Discord for help.": "انضم إلى Discord للحصول على المساعدة.", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "", "Leave empty to include all models or select specific models": "اتركه فارغًا لتضمين جميع النماذج أو اختر نماذج محددة", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "", "Leave empty to use the default prompt, or enter a custom prompt": "اتركه فارغًا لاستخدام التوجيه الافتراضي، أو أدخل توجيهًا مخصصًا", "Leave model field empty to use the default model.": "اترك حقل النموذج فارغًا لاستخدام النموذج الافتراضي.", @@ -1029,10 +1052,12 @@ "Manage your account information.": "", "March": "مارس", "Markdown": "", - "Markdown (Header)": "", + "Markdown Header Text Splitter": "", "Max Speakers": "", "Max Upload Count": "الحد الأقصى لعدد التحميلات", "Max Upload Size": "الحد الأقصى لحجم الملف المرفوع", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "يمكن تنزيل 3 نماذج كحد أقصى في وقت واحد. الرجاء معاودة المحاولة في وقت لاحق.", "May": "مايو", "MBR": "", @@ -1042,6 +1067,7 @@ "Member removed successfully": "", "Members": "", "Members added successfully": "", + "Memories": "", "Memories accessible by LLMs will be shown here.": "سيتم عرض الذكريات التي يمكن الوصول إليها بواسطة LLMs هنا.", "Memory": "الذاكرة", "Memory added successfully": "تم إضافة الذاكرة بنجاح", @@ -1051,6 +1077,7 @@ "Merge Responses": "دمج الردود", "Merged Response": "نتيجة الردود المدمجة", "Message": "", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "يجب تفعيل تقييم الرسائل لاستخدام هذه الميزة", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "لن تتم مشاركة الرسائل التي ترسلها بعد إنشاء الرابط الخاص بك. سيتمكن المستخدمون الذين لديهم عنوان URL من عرض الدردشة المشتركة", "Microsoft OneDrive": "", @@ -1083,9 +1110,11 @@ "Model Name": "اسم النموذج", "Model name already exists, please choose a different one": "", "Model Name is required.": "", + "Model names and usage frequency": "", "Model not selected": "لم تختار موديل", "Model Params": "معلمات النموذج", "Model Permissions": "أذونات النموذج", + "Model responses or outputs": "", "Model unloaded successfully": "", "Model updated successfully": "تم تحديث النموذج بنجاح", "Model(s) do not support file upload": "", @@ -1096,6 +1125,7 @@ "Models imported successfully": "", "Models Public Sharing": "", "Models Sharing": "", + "Mojeek": "", "Mojeek Search API Key": "مفتاح API لـ Mojeek Search", "More": "المزيد", "More Concise": "", @@ -1129,7 +1159,7 @@ "No conversation to save": "", "No distance available": "لا توجد مسافة متاحة", "No expiration can pose security risks.": "", - "No feedbacks found": "لم يتم العثور على ملاحظات", + "No feedback found": "", "No file selected": "لم يتم تحديد ملف", "No files in this knowledge base.": "", "No functions found": "", @@ -1144,6 +1174,7 @@ "No models selected": "لم يتم اختيار نماذج", "No Notes": "", "No notes found": "", + "No one": "", "No pinned messages": "", "No prompts found": "", "No results": "لا توجد نتائج", @@ -1195,6 +1226,7 @@ "Only invited users can access": "", "Only markdown files are allowed": "", "Only select users and groups with permission can access": "يمكن الوصول فقط من قبل المستخدمين والمجموعات المصرح لهم", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "خطاء! يبدو أن عنوان URL غير صالح. يرجى التحقق مرة أخرى والمحاولة مرة أخرى.", "Oops! There are files still uploading. Please wait for the upload to complete.": "عذرًا! لا تزال بعض الملفات قيد الرفع. يرجى الانتظار حتى يكتمل الرفع.", "Oops! There was an error in the previous response.": "عذرًا! حدث خطأ في الرد السابق.", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "تستخدم واجهة WebUI أداة faster-whisper داخليًا.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "تستخدم WebUI نموذج SpeechT5 وتضمينات صوتية من CMU Arctic.", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "إصدار WebUI الحالي (v{{OPEN_WEBUI_VERSION}}) أقل من الإصدار المطلوب (v{{REQUIRED_VERSION}})", "OpenAI": "OpenAI", "OpenAI API": "OpenAI API", @@ -1235,6 +1268,8 @@ "page": "صفحة", "Paginate": "", "Parameters": "", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "الباسورد", "Passwords do not match.": "", "Paste Large Text as File": "الصق نصًا كبيرًا كملف", @@ -1260,7 +1295,6 @@ "Pipe": "", "Pipeline deleted successfully": "تم حذف خط المعالجة بنجاح", "Pipeline downloaded successfully": "تم تنزيل خط المعالجة بنجاح", - "Pipelines": "خطوط الانابيب", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines عبارة عن نظام إضافات يتيح تنفيذًا عشوائيًا للتعليمات البرمجية —", "Pipelines Not Detected": "لم يتم الكشف عن خطوط المعالجة", "Pipelines Valves": "صمامات خطوط الأنابيب", @@ -1502,6 +1536,7 @@ "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.": "يحدد تسلسلات الإيقاف. عند مواجهتها، سيتوقف النموذج عن التوليد ويُرجع النتيجة. يمكن تحديد أنماط توقف متعددة داخل ملف النموذج.", "Setting": "", "Settings": "الاعدادات", + "Settings Permissions": "", "Settings saved successfully!": "تم حفظ الاعدادات بنجاح", "Share": "كشاركة", "Share Chat": "مشاركة الدردشة", @@ -1545,6 +1580,7 @@ "Speech recognition error: {{error}}": "{{error}} خطأ في التعرف على الكلام", "Speech-to-Text": "", "Speech-to-Text Engine": "محرك تحويل الكلام إلى نص", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "", "Start of the channel": "بداية القناة", "Start Tag": "", @@ -1555,6 +1591,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "إيقاف", + "Stop Download": "", "Stop Generating": "", "Stop Sequence": "وقف التسلسل", "Stream Chat Response": "بث استجابة الدردشة", @@ -1575,7 +1612,14 @@ "Support": "الدعم", "Support this plugin:": "دعم هذا المكون الإضافي:", "Supported MIME Types": "", + "Sync": "", + "Sync Complete!": "", "Sync directory": "مزامنة المجلد", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "النظام", "System Instructions": "تعليمات النظام", "System Prompt": "محادثة النظام", @@ -1620,6 +1664,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "", "The width in pixels to compress images to. Leave empty for no compression.": "", "Theme": "الثيم", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "جارٍ التفكير...", "This action cannot be undone. Do you wish to continue?": "لا يمكن التراجع عن هذا الإجراء. هل ترغب في المتابعة؟", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "", @@ -1734,6 +1779,7 @@ "Upload Pipeline": "رفع خط المعالجة", "Upload Progress": "جاري التحميل", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploaded files or images": "", "Uploading file...": "", "URL": "الرابط", "URL is required": "", @@ -1751,6 +1797,7 @@ "User Groups": "", "User location successfully retrieved.": "تم استرجاع موقع المستخدم بنجاح.", "User menu": "", + "User ratings (thumbs up/down)": "", "User Webhooks": "", "Username": "اسم المستخدم", "users": "", @@ -1800,15 +1847,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "ستقوم WebUI بإرسال الطلبات إلى \"{{url}}/chat/completions\"", "What are you trying to achieve?": "ما الذي تحاول تحقيقه؟", "What are you working on?": "على ماذا تعمل؟", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "ما هو الجديد", "What's on your mind?": "", "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.": "عند التفعيل، سيستجيب النموذج لكل رسالة في المحادثة بشكل فوري، مولدًا الرد بمجرد إرسال المستخدم لرسالته. هذا الوضع مفيد لتطبيقات الدردشة الحية، لكنه قد يؤثر على الأداء في الأجهزة الأبطأ.", "wherever you are": "أينما كنت", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whisper (Local)": "Whisper (محلي)", + "Who can share to this group": "", "Why?": "لماذا؟", "Widescreen Mode": "وضع الشاشة العريضة", "Width": "", + "Wikipedia": "", "Won": "فاز", "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.": "يعمل جنبًا إلى جنب مع top-k. القيمة الأعلى (مثلاً 0.95) تنتج نصًا أكثر تنوعًا، بينما القيمة الأقل (مثلاً 0.5) تنتج نصًا أكثر تركيزًا وتحفظًا.", "Workspace": "مساحة العمل", @@ -1820,6 +1871,8 @@ "Yacy Instance URL": "", "Yacy Password": "", "Yacy Username": "", + "Yahoo": "", + "Yandex": "", "Yesterday": "أمس", "Yesterday at {{LOCALIZED_TIME}}": "", "You": "انت", @@ -1827,6 +1880,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "يمكنك الدردشة مع {{maxCount}} ملف(ات) كحد أقصى في نفس الوقت.", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "يمكنك تخصيص تفاعلك مع النماذج اللغوية عن طريق إضافة الذكريات باستخدام زر \"إدارة\" أدناه، مما يجعلها أكثر فائدة وتناسبًا لك.", "You cannot upload an empty file.": "لا يمكنك رفع ملف فارغ.", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this thread.": "", "You do not have permission to upload files to this knowledge base.": "", @@ -1838,6 +1894,8 @@ "Your Account": "", "Your account status is currently pending activation.": "حالة حسابك حالياً بانتظار التفعيل.", "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.": "سيتم توجيه كامل مساهمتك مباشرة إلى مطور المكون الإضافي؛ لا تأخذ Open WebUI أي نسبة. ومع ذلك، قد تفرض منصة التمويل المختارة رسومًا خاصة بها.", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "Youtube", "Youtube Language": "لغة YouTube", "Youtube Proxy URL": "رابط بروكسي YouTube" diff --git a/src/lib/i18n/locales/bg-BG/translation.json b/src/lib/i18n/locales/bg-BG/translation.json index d3e35a62e..af3acfd83 100644 --- a/src/lib/i18n/locales/bg-BG/translation.json +++ b/src/lib/i18n/locales/bg-BG/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "При промяна на тези настройки промените се прилагат за всички потребители.", "admin": "админ", "Admin": "Администратор", + "Admin Contact Email": "", "Admin Panel": "Панел на Администратор", "Admin Settings": "Настройки на администратора", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Администраторите имат достъп до всички инструменти по всяко време; потребителите се нуждаят от инструменти, присвоени за всеки модел в работното пространство.", @@ -101,7 +102,6 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "Разреши качване на файлове", - "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "Разреши нелокални гласове", "Allow Rate Response": "", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "и още {{COUNT}}", "and create a new shared link.": "и създай нов общ линк.", "Android": "", + "Anyone": "", "API Base URL": "API Базов URL", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "", "API Key": "API Ключ", @@ -175,6 +176,7 @@ "Authenticate": "Удостоверяване", "Authentication": "Автентикация", "Auto": "Авто", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "Автоматично копиране на отговор в клипборда", "Auto-playback response": "Автоматично възпроизвеждане на отговора", "Autocomplete Generation": "Генериране на автоматично довършване", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "AUTOMATIC1111 Api Auth низ", "AUTOMATIC1111 Base URL": "AUTOMATIC1111 Базов URL", "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Базов URL е задължителен.", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "Наличен списък", "Available Tools": "Налични инструменти", "available users": "Налични потребители", @@ -201,6 +204,7 @@ "before": "преди", "Being lazy": "Мързелив е", "Beta": "Бета", + "Bing": "", "Bing Search V7 Endpoint": "Крайна точка за Bing Search V7", "Bing Search V7 Subscription Key": "Абонаментен ключ за Bing Search V7", "Bio": "", @@ -209,7 +213,9 @@ "Bocha Search API Key": "API ключ за Bocha Search", "Bold": "", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "", + "Brave": "", "Brave Search API Key": "API ключ за Brave Search", + "Builtin Tools": "", "Bullet List": "", "Button ID": "", "Button Label": "", @@ -256,8 +262,10 @@ "Check for updates": "Проверка за актуализации", "Checking for updates...": "Проверка за актуализации...", "Choose a model before saving...": "Изберете модел преди запазване...", + "Chunk Min Size Target": "", "Chunk Overlap": "Припокриване на чънкове", "Chunk Size": "Размер на чънк", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "Шифри", "Citation": "Цитат", "Citations": "", @@ -293,7 +301,6 @@ "Code Block": "", "Code Editor": "", "Code execution": "Изпълнение на код", - "Code Execution": "Изпълнение на код", "Code Execution Engine": "Двигател за изпълнение на кода", "Code Execution Timeout": "", "Code formatted successfully": "Кодът е форматиран успешно", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "Свържете се с администратор за достъп до WebUI", "Content": "Съдържание", "Content Extraction Engine": "", + "Content lengths (character counts only)": "", "Continue Response": "Продължи отговора", "Continue with {{provider}}": "Продължете с {{provider}}", "Continue with Email": "Продължете с имейл", @@ -393,6 +401,7 @@ "Database": "База данни", "Datalab Marker API": "", "DD/MM/YYYY": "", + "DDGS Backend": "", "December": "Декември", "Decrease UI Scale": "", "Deepgram": "", @@ -474,6 +483,7 @@ "Dive into knowledge": "Потопете се в знанието", "Do not install functions from sources you do not fully trust.": "Не инсталирайте функции от източници, на които не се доверявате напълно.", "Do not install tools from sources you do not fully trust.": "Не инсталирайте инструменти от източници, на които не се доверявате напълно.", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "", "Docling Parameters": "", "Docling Server URL required.": "", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "", "Document Intelligence Model": "", "Documentation": "Документация", - "Documents": "Документи", "does not make any external connections, and your data stays securely on your locally hosted server.": "няма външни връзки, а вашите данни остават сигурни на локално назначен сървър.", "Domain Filter List": "Списък с филтри за домейни", "don't fetch random pipelines from sources you don't trust.": "Не извличайте произволни pipelines от източници, на които не вярвате.", @@ -493,11 +502,14 @@ "Done": "Готово", "Download": "Изтегляне", "Download & Delete": "Изтегляне и изтриване", + "Download as JSON": "", "Download as SVG": "Изтегляне като SVG", "Download canceled": "Изтегляне отменено", "Download Database": "Сваляне на база данни", + "Downloading stats...": "", "Draw": "Рисуване", "Drop any files here to upload": "", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "напр. '30с','10м'. Валидни единици са 'с', 'м', 'ч'.", "e.g. \"json\" or a JSON schema": "", "e.g. 60": "", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "Въведете API ключ за Bocha Search", "Enter Brave Search API Key": "Въведете API ключ за Brave Search", "Enter certificate path": "Въведете път до сертификата", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "Въведете припокриване на чънкове", "Enter Chunk Size": "Въведете размер на чънк", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "", "Enter Firecrawl API Base URL": "", "Enter Firecrawl API Key": "", + "Enter Firecrawl Timeout": "", "Enter folder name": "", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "Въведете URL адрес на Github Raw", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "", "Enter ID": "", "Enter Image Size (e.g. 512x512)": "Въведете размер на изображението (напр. 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "Въведете API ключ за Jina", "Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter Jupyter Password": "Въведете парола за Jupyter", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "Въведете API ключ за Kagi Search", "Enter Key Behavior": "", "Enter language codes": "Въведете кодове на езика", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "", "Enter Mistral API Key": "", "Enter Model ID": "Въведете ID на модела", @@ -736,6 +753,7 @@ "Failed to generate title": "", "Failed to import models": "", "Failed to load chat preview": "", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "", "Failed to move chat": "", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "Функции", "Features Permissions": "Разрешения за функции", "February": "Февруари", + "Feedback": "", "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "История на обратната връзка", - "Feedbacks": "Обратни връзки", "Feel free to add specific details": "Не се колебайте да добавите конкретни детайли", "Female": "", "File": "Файл", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Потвърждаване на отпечатък: Не може да се използва инициализационна буква като аватар. Потребителят се връща към стандартна аватарка.", "Firecrawl API Base URL": "", "Firecrawl API Key": "", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "", "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "Папката е изтрита успешно", + "Folder Max File Count": "", "Folder Name": "", "Folder name cannot be empty.": "Името на папката не може да бъде празно.", "Folder name updated successfully": "Името на папката е актуализирано успешно", @@ -826,7 +846,6 @@ "General": "Основни", "Generate": "", "Generate an image": "Генериране на изображение", - "Generate Image": "Генериране на изображение", "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Генериране на заявка за търсене", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "Започнете с {{WEBUI_NAME}}", "Global": "Глобално", "Good Response": "Добър отговор", + "Google": "", "Google Drive": "Google Drive", "Google PSE API Key": "Google PSE API ключ", "Google PSE Engine Id": "Идентификатор на двигателя на Google PSE", "Gravatar": "", "Grid": "", + "Grokipedia": "", "Group": "Група", "Group Channel": "", "Group created successfully": "Групата е създадена успешно", @@ -895,7 +916,6 @@ "Image Prompt Generation": "Генериране на промпт за изображения", "Image Prompt Generation Prompt": "Промпт за генериране на промпт за изображения", "Image Size": "", - "Images": "Изображения", "Import": "", "Import Chats": "Импортване на чатове", "Import Config from JSON File": "Импортиране на конфигурация от JSON файл", @@ -927,6 +947,7 @@ "Integration": "", "Integrations": "", "Interface": "Интерфейс", + "Interface Settings Access": "", "Invalid file content": "", "Invalid file format.": "Невалиден формат на файла.", "Invalid JSON file": "", @@ -940,6 +961,7 @@ "is typing...": "пише...", "Italic": "", "January": "Януари", + "Jina API Base URL": "", "Jina API Key": "API ключ за Jina", "join our Discord for help.": "свържете се с нашия Discord за помощ.", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "", "Leave empty to include all models or select specific models": "Оставете празно, за да включите всички модели или изберете конкретни модели", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "", "Leave empty to use the default prompt, or enter a custom prompt": "Оставете празно, за да използвате промпта по подразбиране, или въведете персонализиран промпт", "Leave model field empty to use the default model.": "Оставете полето за модел празно, за да използвате модела по подразбиране.", @@ -1029,10 +1052,12 @@ "Manage your account information.": "", "March": "Март", "Markdown": "", - "Markdown (Header)": "", + "Markdown Header Text Splitter": "", "Max Speakers": "", "Max Upload Count": "Максимален брой качвания", "Max Upload Size": "Максимален размер на качване", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Максимум 3 модела могат да бъдат сваляни едновременно. Моля, опитайте отново по-късно.", "May": "Май", "MBR": "", @@ -1042,6 +1067,7 @@ "Member removed successfully": "", "Members": "", "Members added successfully": "", + "Memories": "", "Memories accessible by LLMs will be shown here.": "Мемории достъпни от LLMs ще бъдат показани тук.", "Memory": "Памет", "Memory added successfully": "Паметта е добавена успешно", @@ -1051,6 +1077,7 @@ "Merge Responses": "Обединяване на отговори", "Merged Response": "Обединен отговор", "Message": "", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "Оценяването на съобщения трябва да бъде активирано, за да използвате тази функция", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Съобщенията, които изпращате след създаването на връзката, няма да бъдат споделяни. Потребителите с URL адреса ще могат да видят споделения чат.", "Microsoft OneDrive": "", @@ -1083,9 +1110,11 @@ "Model Name": "Име на модел", "Model name already exists, please choose a different one": "", "Model Name is required.": "", + "Model names and usage frequency": "", "Model not selected": "Не е избран модел", "Model Params": "Параметри на модела", "Model Permissions": "Разрешения на модела", + "Model responses or outputs": "", "Model unloaded successfully": "", "Model updated successfully": "Моделът е актуализиран успешно", "Model(s) do not support file upload": "", @@ -1096,6 +1125,7 @@ "Models imported successfully": "", "Models Public Sharing": "Споделяне на моделите публично", "Models Sharing": "", + "Mojeek": "", "Mojeek Search API Key": "API ключ за Mojeek Search", "More": "Повече", "More Concise": "", @@ -1129,7 +1159,7 @@ "No conversation to save": "", "No distance available": "Няма налично разстояние", "No expiration can pose security risks.": "", - "No feedbacks found": "Не са намерени обратни връзки", + "No feedback found": "", "No file selected": "Не е избран файл", "No files in this knowledge base.": "", "No functions found": "", @@ -1144,6 +1174,7 @@ "No models selected": "Няма избрани модели", "No Notes": "Няма бележки", "No notes found": "", + "No one": "", "No pinned messages": "", "No prompts found": "", "No results": "Няма намерени резултати", @@ -1195,6 +1226,7 @@ "Only invited users can access": "", "Only markdown files are allowed": "", "Only select users and groups with permission can access": "Само избрани потребители и групи с разрешение могат да имат достъп", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Упс! Изглежда URL адресът е невалиден. Моля, проверете отново и опитайте пак.", "Oops! There are files still uploading. Please wait for the upload to complete.": "Упс! Все още има файлове, които се качват. Моля, изчакайте качването да приключи.", "Oops! There was an error in the previous response.": "Упс! Имаше грешка в предишния отговор.", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "Open WebUI използва вътрешно по-бързо-whisper.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI използва SpeechT5 и CMU Arctic говорителни вграждания.", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Версията на Open WebUI (v{{OPEN_WEBUI_VERSION}}) е по-ниска от необходимата версия (v{{REQUIRED_VERSION}})", "OpenAI": "OpenAI", "OpenAI API": "API на OpenAI", @@ -1235,6 +1268,8 @@ "page": "страница", "Paginate": "", "Parameters": "", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "Парола", "Passwords do not match.": "", "Paste Large Text as File": "Поставете голям текст като файл", @@ -1260,7 +1295,6 @@ "Pipe": "", "Pipeline deleted successfully": "Пайплайнът е изтрит успешно", "Pipeline downloaded successfully": "Пайплайнът е изтеглен успешно", - "Pipelines": "Пайплайни", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines е система от приставки с възможност за произволно изпълнение на код —", "Pipelines Not Detected": "Не са открити пайплайни", "Pipelines Valves": "Клапани на пайплайни", @@ -1498,6 +1532,7 @@ "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.": "Задава последователностите за спиране, които да се използват. Когато се срещне този модел, LLM ще спре да генерира текст и ще се върне. Множество модели за спиране могат да бъдат зададени чрез определяне на множество отделни параметри за спиране в моделния файл.", "Setting": "", "Settings": "Настройки", + "Settings Permissions": "", "Settings saved successfully!": "Настройките са запазени успешно!", "Share": "Подели", "Share Chat": "Подели Чат", @@ -1541,6 +1576,7 @@ "Speech recognition error: {{error}}": "Грешка при разпознаване на речта: {{error}}", "Speech-to-Text": "", "Speech-to-Text Engine": "Двигател за преобразуване на реч в текста", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "", "Start of the channel": "Начало на канала", "Start Tag": "", @@ -1551,6 +1587,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Спри", + "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Стоп последователност", "Stream Chat Response": "Поточен чат отговор", @@ -1571,7 +1608,14 @@ "Support": "Поддръжка", "Support this plugin:": "Подкрепете този плъгин:", "Supported MIME Types": "", + "Sync": "", + "Sync Complete!": "", "Sync directory": "Синхронизирай директория", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "Система", "System Instructions": "Системни инструкции", "System Prompt": "Системен Промпт", @@ -1616,6 +1660,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "", "The width in pixels to compress images to. Leave empty for no compression.": "", "Theme": "Тема", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "Мисля...", "This action cannot be undone. Do you wish to continue?": "Това действие не може да бъде отменено. Желаете ли да продължите?", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "", @@ -1730,6 +1775,7 @@ "Upload Pipeline": "Качване на конвейер", "Upload Progress": "Прогрес на качването", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploaded files or images": "", "Uploading file...": "", "URL": "URL", "URL is required": "", @@ -1747,6 +1793,7 @@ "User Groups": "", "User location successfully retrieved.": "Местоположението на потребителя е успешно извлечено.", "User menu": "", + "User ratings (thumbs up/down)": "", "User Webhooks": "", "Username": "Потребителско име", "users": "", @@ -1796,15 +1843,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI ще прави заявки към \"{{url}}/chat/completions\"", "What are you trying to achieve?": "Какво се опитвате да постигнете?", "What are you working on?": "Върху какво работите?", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "Какво е ново в", "What's on your mind?": "", "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.": "Когато е активирано, моделът ще отговаря на всяко съобщение в чата в реално време, генерирайки отговор веднага щом потребителят изпрати съобщение. Този режим е полезен за приложения за чат на живо, но може да повлияе на производителността на по-бавен хардуер.", "wherever you are": "където и да сте", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whisper (Local)": "Whisper (Локално)", + "Who can share to this group": "", "Why?": "Защо?", "Widescreen Mode": "Широкоекранен режим", "Width": "", + "Wikipedia": "", "Won": "Спечелено", "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.": "", "Workspace": "Работно пространство", @@ -1816,6 +1867,8 @@ "Yacy Instance URL": "", "Yacy Password": "", "Yacy Username": "", + "Yahoo": "", + "Yandex": "", "Yesterday": "вчера", "Yesterday at {{LOCALIZED_TIME}}": "", "You": "Вие", @@ -1823,6 +1876,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Можете да чатите с максимум {{maxCount}} файл(а) наведнъж.", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Можете да персонализирате взаимодействията си с LLM-и, като добавите спомени чрез бутона 'Управление' по-долу, правейки ги по-полезни и съобразени с вас.", "You cannot upload an empty file.": "Не можете да качите празен файл.", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this thread.": "", "You do not have permission to upload files to this knowledge base.": "", @@ -1834,6 +1890,8 @@ "Your Account": "", "Your account status is currently pending activation.": "Статусът на вашия акаунт в момента очаква активиране.", "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.": "Цялата ви вноска ще отиде директно при разработчика на плъгина; Open WebUI не взима никакъв процент. Въпреки това, избраната платформа за финансиране може да има свои собствени такси.", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "Youtube", "Youtube Language": "Youtube език", "Youtube Proxy URL": "Youtube Прокси URL" diff --git a/src/lib/i18n/locales/bn-BD/translation.json b/src/lib/i18n/locales/bn-BD/translation.json index 021413a54..6f1d41d39 100644 --- a/src/lib/i18n/locales/bn-BD/translation.json +++ b/src/lib/i18n/locales/bn-BD/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "এই সেটিংগুলো পরিবর্তন করলে তা সব ইউজারের উপরেই প্রয়োগ করা হবে", "admin": "এডমিন", "Admin": "", + "Admin Contact Email": "", "Admin Panel": "এডমিন প্যানেল", "Admin Settings": "এডমিন সেটিংস", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "", @@ -101,7 +102,6 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "", - "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "", "Allow Rate Response": "", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "", "and create a new shared link.": "এবং একটি নতুন শেয়ারে লিংক তৈরি করুন.", "Android": "", + "Anyone": "", "API Base URL": "এপিআই বেজ ইউআরএল", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "", "API Key": "এপিআই কোড", @@ -175,6 +176,7 @@ "Authenticate": "", "Authentication": "", "Auto": "", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "রেসপন্সগুলো স্বয়ংক্রিভাবে ক্লিপবোর্ডে কপি হবে", "Auto-playback response": "রেসপন্স অটো-প্লেব্যাক", "Autocomplete Generation": "", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "", "AUTOMATIC1111 Base URL": "AUTOMATIC1111 বেজ ইউআরএল", "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 বেজ ইউআরএল আবশ্যক", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "", "Available Tools": "", "available users": "উপলব্ধ ব্যবহারকারী", @@ -201,6 +204,7 @@ "before": "পূর্ববর্তী", "Being lazy": "অলস হওয়া", "Beta": "", + "Bing": "", "Bing Search V7 Endpoint": "", "Bing Search V7 Subscription Key": "", "Bio": "", @@ -209,7 +213,9 @@ "Bocha Search API Key": "", "Bold": "", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "", + "Brave": "", "Brave Search API Key": "সাহসী অনুসন্ধান API কী", + "Builtin Tools": "", "Bullet List": "", "Button ID": "", "Button Label": "", @@ -256,8 +262,10 @@ "Check for updates": "নতুন আপডেট আছে কিনা চেক করুন", "Checking for updates...": "নতুন আপডেট আছে কিনা চেক করা হচ্ছে...", "Choose a model before saving...": "সেভ করার আগে একটি মডেল নির্বাচন করুন", + "Chunk Min Size Target": "", "Chunk Overlap": "চাঙ্ক ওভারল্যাপ", "Chunk Size": "চাঙ্ক সাইজ", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "", "Citation": "উদ্ধৃতি", "Citations": "", @@ -293,7 +301,6 @@ "Code Block": "", "Code Editor": "", "Code execution": "", - "Code Execution": "", "Code Execution Engine": "", "Code Execution Timeout": "", "Code formatted successfully": "", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "", "Content": "বিষয়বস্তু", "Content Extraction Engine": "", + "Content lengths (character counts only)": "", "Continue Response": "যাচাই করুন", "Continue with {{provider}}": "", "Continue with Email": "", @@ -393,6 +401,7 @@ "Database": "ডেটাবেজ", "Datalab Marker API": "", "DD/MM/YYYY": "", + "DDGS Backend": "", "December": "ডেসেম্বর", "Decrease UI Scale": "", "Deepgram": "", @@ -474,6 +483,7 @@ "Dive into knowledge": "", "Do not install functions from sources you do not fully trust.": "", "Do not install tools from sources you do not fully trust.": "", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "", "Docling Parameters": "", "Docling Server URL required.": "", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "", "Document Intelligence Model": "", "Documentation": "", - "Documents": "ডকুমেন্টসমূহ", "does not make any external connections, and your data stays securely on your locally hosted server.": "কোন এক্সটার্নাল কানেকশন তৈরি করে না, এবং আপনার ডেটা আর লোকালি হোস্টেড সার্ভারেই নিরাপদে থাকে।", "Domain Filter List": "", "don't fetch random pipelines from sources you don't trust.": "যে উৎসে আপনি ভরসা করেন না সেখান থেকে এলোমেলো পাইপলাইন আনবেন না।", @@ -493,11 +502,14 @@ "Done": "", "Download": "ডাউনলোড", "Download & Delete": "ডাউনলোড ও মুছে ফেলুন", + "Download as JSON": "", "Download as SVG": "", "Download canceled": "ডাউনলোড বাতিল করা হয়েছে", "Download Database": "ডেটাবেজ ডাউনলোড করুন", + "Downloading stats...": "", "Draw": "", "Drop any files here to upload": "", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "যেমন '30s','10m'. সময়ের অনুমোদিত অনুমোদিত এককগুলি হচ্ছে 's', 'm', 'h'.", "e.g. \"json\" or a JSON schema": "", "e.g. 60": "", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "", "Enter Brave Search API Key": "সাহসী অনুসন্ধান API কী লিখুন", "Enter certificate path": "", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "চাঙ্ক ওভারল্যাপ লিখুন", "Enter Chunk Size": "চাংক সাইজ লিখুন", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "", "Enter Firecrawl API Base URL": "", "Enter Firecrawl API Key": "", + "Enter Firecrawl Timeout": "", "Enter folder name": "", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "গিটহাব কাঁচা URL লিখুন", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "", "Enter ID": "", "Enter Image Size (e.g. 512x512)": "ছবির মাপ লিখুন (যেমন 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "", "Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter Jupyter Password": "", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "", "Enter Key Behavior": "", "Enter language codes": "ল্যাঙ্গুয়েজ কোড লিখুন", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "", "Enter Mistral API Key": "", "Enter Model ID": "", @@ -736,6 +753,7 @@ "Failed to generate title": "", "Failed to import models": "", "Failed to load chat preview": "", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "", "Failed to move chat": "", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "", "Features Permissions": "", "February": "ফেব্রুয়ারি", + "Feedback": "", "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "", - "Feedbacks": "", "Feel free to add specific details": "নির্দিষ্ট বিবরণ যোগ করতে বিনা দ্বিধায়", "Female": "", "File": "", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "ফিঙ্গারপ্রিন্ট স্পুফিং ধরা পড়েছে: অ্যাভাটার হিসেবে নামের আদ্যক্ষর ব্যবহার করা যাচ্ছে না। ডিফল্ট প্রোফাইল পিকচারে ফিরিয়ে নেয়া হচ্ছে।", "Firecrawl API Base URL": "", "Firecrawl API Key": "", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "", "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "", + "Folder Max File Count": "", "Folder Name": "", "Folder name cannot be empty.": "", "Folder name updated successfully": "", @@ -826,7 +846,6 @@ "General": "সাধারণ", "Generate": "", "Generate an image": "", - "Generate Image": "", "Generate Message Pair": "", "Generated Image": "", "Generating search query": "অনুসন্ধান ক্যোয়ারী তৈরি করা হচ্ছে", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "", "Global": "", "Good Response": "ভালো সাড়া", + "Google": "", "Google Drive": "", "Google PSE API Key": "গুগল পিএসই এপিআই কী", "Google PSE Engine Id": "গুগল পিএসই ইঞ্জিন আইডি", "Gravatar": "", "Grid": "", + "Grokipedia": "", "Group": "গ্রুপ", "Group Channel": "", "Group created successfully": "", @@ -895,7 +916,6 @@ "Image Prompt Generation": "", "Image Prompt Generation Prompt": "", "Image Size": "", - "Images": "ছবিসমূহ", "Import": "", "Import Chats": "চ্যাটগুলি ইমপোর্ট করুন", "Import Config from JSON File": "", @@ -927,6 +947,7 @@ "Integration": "", "Integrations": "", "Interface": "ইন্টারফেস", + "Interface Settings Access": "", "Invalid file content": "", "Invalid file format.": "", "Invalid JSON file": "", @@ -940,6 +961,7 @@ "is typing...": "", "Italic": "", "January": "জানুয়ারী", + "Jina API Base URL": "", "Jina API Key": "", "join our Discord for help.": "সাহায্যের জন্য আমাদের Discord-এ যুক্ত হোন", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "", "Leave empty to include all models or select specific models": "", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "", "Leave empty to use the default prompt, or enter a custom prompt": "", "Leave model field empty to use the default model.": "", @@ -1029,10 +1052,12 @@ "Manage your account information.": "", "March": "মার্চ", "Markdown": "", - "Markdown (Header)": "", + "Markdown Header Text Splitter": "", "Max Speakers": "", "Max Upload Count": "", "Max Upload Size": "", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "একসঙ্গে সর্বোচ্চ তিনটি মডেল ডাউনলোড করা যায়। দয়া করে পরে আবার চেষ্টা করুন।", "May": "মে", "MBR": "", @@ -1042,6 +1067,7 @@ "Member removed successfully": "", "Members": "", "Members added successfully": "", + "Memories": "", "Memories accessible by LLMs will be shown here.": "LLMs দ্বারা অ্যাক্সেসযোগ্য মেমোরিগুলি এখানে দেখানো হবে।", "Memory": "মেমোরি", "Memory added successfully": "", @@ -1051,6 +1077,7 @@ "Merge Responses": "", "Merged Response": "একত্রিত প্রতিক্রিয়া ফলাফল", "Message": "", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "আপনার লিঙ্ক তৈরি করার পরে আপনার পাঠানো বার্তাগুলি শেয়ার করা হবে না। ইউআরএল ব্যবহারকারীরা শেয়ার করা চ্যাট দেখতে পারবেন।", "Microsoft OneDrive": "", @@ -1083,9 +1110,11 @@ "Model Name": "", "Model name already exists, please choose a different one": "", "Model Name is required.": "", + "Model names and usage frequency": "", "Model not selected": "মডেল নির্বাচন করা হয়নি", "Model Params": "মডেল প্যারাম", "Model Permissions": "", + "Model responses or outputs": "", "Model unloaded successfully": "", "Model updated successfully": "", "Model(s) do not support file upload": "", @@ -1096,6 +1125,7 @@ "Models imported successfully": "", "Models Public Sharing": "", "Models Sharing": "", + "Mojeek": "", "Mojeek Search API Key": "", "More": "আরো", "More Concise": "", @@ -1129,7 +1159,7 @@ "No conversation to save": "", "No distance available": "", "No expiration can pose security risks.": "", - "No feedbacks found": "", + "No feedback found": "", "No file selected": "", "No files in this knowledge base.": "", "No functions found": "", @@ -1144,6 +1174,7 @@ "No models selected": "", "No Notes": "", "No notes found": "", + "No one": "", "No pinned messages": "", "No prompts found": "", "No results": "কোন ফলাফল পাওয়া যায়নি", @@ -1195,6 +1226,7 @@ "Only invited users can access": "", "Only markdown files are allowed": "", "Only select users and groups with permission can access": "", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "ওহ, মনে হচ্ছে ইউআরএলটা ইনভ্যালিড। দয়া করে আর চেক করে চেষ্টা করুন।", "Oops! There are files still uploading. Please wait for the upload to complete.": "", "Oops! There was an error in the previous response.": "", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "", "OpenAI": "OpenAI", "OpenAI API": "OpenAI এপিআই", @@ -1235,6 +1268,8 @@ "page": "", "Paginate": "", "Parameters": "", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "পাসওয়ার্ড", "Passwords do not match.": "", "Paste Large Text as File": "", @@ -1260,7 +1295,6 @@ "Pipe": "", "Pipeline deleted successfully": "", "Pipeline downloaded successfully": "", - "Pipelines": "পাইপলাইন", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines হলো একটি প্লাগইন সিস্টেম, যেখানে যেকোনো কোড চালানো যেতে পারে —", "Pipelines Not Detected": "", "Pipelines Valves": "পাইপলাইন ভালভ", @@ -1498,6 +1532,7 @@ "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.": "", "Setting": "", "Settings": "সেটিংসমূহ", + "Settings Permissions": "", "Settings saved successfully!": "সেটিংগুলো সফলভাবে সংরক্ষিত হয়েছে", "Share": "শেয়ার করুন", "Share Chat": "চ্যাট শেয়ার করুন", @@ -1541,6 +1576,7 @@ "Speech recognition error: {{error}}": "স্পিচ রিকগনিশনে সমস্যা: {{error}}", "Speech-to-Text": "", "Speech-to-Text Engine": "স্পিচ-টু-টেক্সট ইঞ্জিন", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "", "Start of the channel": "চ্যানেলের শুরু", "Start Tag": "", @@ -1551,6 +1587,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "", + "Stop Download": "", "Stop Generating": "", "Stop Sequence": "সিকোয়েন্স থামান", "Stream Chat Response": "", @@ -1571,7 +1608,14 @@ "Support": "", "Support this plugin:": "", "Supported MIME Types": "", + "Sync": "", + "Sync Complete!": "", "Sync directory": "", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "সিস্টেম", "System Instructions": "", "System Prompt": "সিস্টেম প্রম্পট", @@ -1616,6 +1660,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "", "The width in pixels to compress images to. Leave empty for no compression.": "", "Theme": "থিম", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "", "This action cannot be undone. Do you wish to continue?": "", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "", @@ -1730,6 +1775,7 @@ "Upload Pipeline": "", "Upload Progress": "আপলোড হচ্ছে", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploaded files or images": "", "Uploading file...": "", "URL": "", "URL is required": "", @@ -1747,6 +1793,7 @@ "User Groups": "", "User location successfully retrieved.": "", "User menu": "", + "User ratings (thumbs up/down)": "", "User Webhooks": "", "Username": "", "users": "", @@ -1796,15 +1843,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "", "What are you trying to achieve?": "", "What are you working on?": "", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "এতে নতুন কী", "What's on your mind?": "", "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.": "", "wherever you are": "", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whisper (Local)": "", + "Who can share to this group": "", "Why?": "", "Widescreen Mode": "", "Width": "", + "Wikipedia": "", "Won": "", "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.": "", "Workspace": "ওয়ার্কস্পেস", @@ -1816,6 +1867,8 @@ "Yacy Instance URL": "", "Yacy Password": "", "Yacy Username": "", + "Yahoo": "", + "Yandex": "", "Yesterday": "আগামী", "Yesterday at {{LOCALIZED_TIME}}": "", "You": "আপনি", @@ -1823,6 +1876,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "", "You cannot upload an empty file.": "", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this thread.": "", "You do not have permission to upload files to this knowledge base.": "", @@ -1834,6 +1890,8 @@ "Your Account": "", "Your account status is currently pending activation.": "", "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.": "", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "YouTube", "Youtube Language": "", "Youtube Proxy URL": "" diff --git a/src/lib/i18n/locales/bo-TB/translation.json b/src/lib/i18n/locales/bo-TB/translation.json index d72b46338..207c4c70c 100644 --- a/src/lib/i18n/locales/bo-TB/translation.json +++ b/src/lib/i18n/locales/bo-TB/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "སྒྲིག་འགོད་འདི་དག་ལེགས་སྒྲིག་བྱས་ན་བེད་སྤྱོད་མཁན་ཡོངས་ལ་འགྱུར་བ་དེ་བཀོལ་སྤྱོད་བྱེད་ངེས།", "admin": "དོ་དམ་པ།", "Admin": "དོ་དམ་པ།", + "Admin Contact Email": "", "Admin Panel": "དོ་དམ་པའི་ལྟ་སྟེགས།", "Admin Settings": "དོ་དམ་པའི་སྒྲིག་འགོད།", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "དོ་དམ་པས་དུས་རྟག་ཏུ་ལག་ཆ་ཡོངས་ལ་འཛུལ་སྤྱོད་བྱེད་ཆོག བེད་སྤྱོད་མཁན་གྱིས་ལས་ཡུལ་ནང་དཔེ་དབྱིབས་རེ་རེར་བཀོད་པའི་ལག་ཆ་དགོས་མཁོ་ཡོད།", @@ -101,7 +102,6 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "ཡིག་ཆ་སྤར་བར་གནང་བ་སྤྲོད་པ།", - "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "ས་གནས་མིན་པའི་སྐད་གདངས་ལ་གནང་བ་སྤྲོད་པ།", "Allow Rate Response": "", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "ད་དུང་ {{COUNT}}", "and create a new shared link.": "དང་མཉམ་སྤྱོད་སྦྲེལ་ཐག་གསར་པ་ཞིག་བཟོ་བ།", "Android": "", + "Anyone": "", "API Base URL": "API གཞི་རྩའི་ URL", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "", "API Key": "API ལྡེ་མིག", @@ -175,6 +176,7 @@ "Authenticate": "དངོས་ར་སྤྲོད་པ།", "Authentication": "དངོས་ར་སྤྲོད་པ།", "Auto": "", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "ལན་རང་འགུལ་གྱིས་སྦྱར་སྡེར་དུ་འདྲ་བཤུས་བྱེད་པ།", "Auto-playback response": "ལན་རང་འགུལ་གྱིས་གཏོང་བ།", "Autocomplete Generation": "རང་འཚང་བཟོ་སྐྲུན།", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "AUTOMATIC1111 Api Auth ཡིག་ཕྲེང་།", "AUTOMATIC1111 Base URL": "AUTOMATIC1111 གཞི་རྩའི་ URL", "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 གཞི་རྩའི་ URL ངེས་པར་དུ་དགོས།", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "ཡོད་པའི་ཐོ་གཞུང་།", "Available Tools": "", "available users": "ཡོད་པའི་སྤྱོད་མཁན", @@ -201,6 +204,7 @@ "before": "སྔོན།", "Being lazy": "ལེ་ལོ་བྱེད་པ།", "Beta": "Beta", + "Bing": "", "Bing Search V7 Endpoint": "Bing Search V7 མཇུག་མཐུད།", "Bing Search V7 Subscription Key": "Bing Search V7 མངགས་ཉོ་ལྡེ་མིག", "Bio": "", @@ -209,7 +213,9 @@ "Bocha Search API Key": "Bocha Search API ལྡེ་མིག", "Bold": "", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "ཚད་བཀག་ལན་གྱི་ཆེད་དུ་ཊོཀ་ཀེན་ངེས་ཅན་ལ་ཤུགས་སྣོན་ནམ་ཉེས་ཆད་གཏོང་བ། ཕྱོགས་ཞེན་གྱི་རིན་ཐང་ -100 ནས་ 100 བར་བཙིར་ངེས། (ཚུད་པ།) (སྔོན་སྒྲིག་མེད།)", + "Brave": "", "Brave Search API Key": "Brave Search API ལྡེ་མིག", + "Builtin Tools": "", "Bullet List": "", "Button ID": "", "Button Label": "", @@ -256,8 +262,10 @@ "Check for updates": "གསར་སྒྱུར་འཚོལ་ཞིབ།", "Checking for updates...": "གསར་སྒྱུར་འཚོལ་བཞིན་པ།...", "Choose a model before saving...": "ཉར་ཚགས་མ་བྱས་སྔོན་དུ་དཔེ་དབྱིབས་ཤིག་གདམ་པ།...", + "Chunk Min Size Target": "", "Chunk Overlap": "དུམ་བུ་བསྣོལ་བ།", "Chunk Size": "དུམ་བུའི་ཆེ་ཆུང་།", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "གསང་སྦྱོར།", "Citation": "ལུང་འདྲེན།", "Citations": "", @@ -293,7 +301,6 @@ "Code Block": "", "Code Editor": "", "Code execution": "ཀོཌ་ལག་བསྟར།", - "Code Execution": "ཀོཌ་ལག་བསྟར།", "Code Execution Engine": "ཀོཌ་ལག་བསྟར་འཕྲུལ་འཁོར།", "Code Execution Timeout": "ཀོཌ་ལག་བསྟར་དུས་ཚོད་བཀག་པ།", "Code formatted successfully": "ཀོཌ་བཀོད་པ་ལེགས་པར་བཟོས་ཟིན།", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "WebUI འཛུལ་སྤྱོད་ཆེད་དུ་དོ་དམ་པ་དང་འབྲེལ་གཏུག་བྱེད་པ།", "Content": "ནང་དོན།", "Content Extraction Engine": "ནང་དོན་འདོན་སྤེལ་འཕྲུལ་འཁོར།", + "Content lengths (character counts only)": "", "Continue Response": "ལན་མུ་མཐུད་པ།", "Continue with {{provider}}": "{{provider}} དང་མཉམ་དུ་མུ་མཐུད་པ།", "Continue with Email": "ཡིག་ཟམ་དང་མཉམ་དུ་མུ་མཐུད་པ།", @@ -393,6 +401,7 @@ "Database": "གནས་ཚུལ་མཛོད།", "Datalab Marker API": "", "DD/MM/YYYY": "", + "DDGS Backend": "", "December": "ཟླ་བ་བཅུ་གཉིས་པ།", "Decrease UI Scale": "", "Deepgram": "", @@ -474,6 +483,7 @@ "Dive into knowledge": "ཤེས་བྱའི་ནང་འཛུལ་བ།", "Do not install functions from sources you do not fully trust.": "ཁྱེད་ཀྱིས་ཡིད་ཆེས་ཆ་ཚང་མེད་པའི་འབྱུང་ཁུངས་ནས་ལས་འགན་སྒྲིག་སྦྱོར་མ་བྱེད།", "Do not install tools from sources you do not fully trust.": "ཁྱེད་ཀྱིས་ཡིད་ཆེས་ཆ་ཚང་མེད་པའི་འབྱུང་ཁུངས་ནས་ལག་ཆ་སྒྲིག་སྦྱོར་མ་བྱེད།", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "Docling", "Docling Parameters": "", "Docling Server URL required.": "Docling སར་བར་གྱི་ URL དགོས་ངེས།", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "", "Document Intelligence Model": "", "Documentation": "ཡིག་ཆ།", - "Documents": "ཡིག་ཆ།", "does not make any external connections, and your data stays securely on your locally hosted server.": "ཕྱི་རོལ་གྱི་སྦྲེལ་མཐུད་གང་ཡང་མི་བྱེད། དེ་མིན་ཁྱེད་ཀྱི་གནས་ཚུལ་དེ་ཁྱེད་ཀྱི་ས་གནས་སུ་བཀོད་སྒྲིག་བྱས་པའི་སར་བར་སྟེང་བདེ་འཇགས་ངང་གནས་ངེས།", "Domain Filter List": "ཁྱབ་ཁོངས་འཚག་མའི་ཐོ་གཞུང་།", "don't fetch random pipelines from sources you don't trust.": "རྟོགས་མེད་པའི་ཁུངས་ནས་ pipelines གང་འརྒྱུར་མ་འབྱོར་", @@ -493,11 +502,14 @@ "Done": "ཚར་སོང་།", "Download": "ཕབ་ལེན།", "Download & Delete": "ཕབ་ལེན་དང་བསུབ་", + "Download as JSON": "", "Download as SVG": "SVG ཐོག་ཕབ་ལེན།", "Download canceled": "ཕབ་ལེན་རྩིས་མེད་བཏང་།", "Download Database": "གནས་ཚུལ་མཛོད་ཕབ་ལེན།", + "Downloading stats...": "", "Draw": "རི་མོ་འབྲི་བ།", "Drop any files here to upload": "", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "དཔེར་ན། '30s','10m'. ནུས་ལྡན་དུས་ཚོད་ཀྱི་ཚན་པ་ནི། 's', 'm', 'h' ཡིན།", "e.g. \"json\" or a JSON schema": "དཔེར་ན། \"json\" ཡང་ན་ JSON གི་ schema", "e.g. 60": "དཔེར་ན། ༦༠", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "Bocha Search API ལྡེ་མིག་འཇུག་པ།", "Enter Brave Search API Key": "Brave Search API ལྡེ་མིག་འཇུག་པ།", "Enter certificate path": "ལག་ཁྱེར་གྱི་ལམ་བུ་འཇུག་པ།", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "དུམ་བུ་བསྣོལ་བ་འཇུག་པ།", "Enter Chunk Size": "དུམ་བུའི་ཆེ་ཆུང་འཇུག་པ།", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "ཚེག་བསྐུངས་ཀྱིས་ལོགས་སུ་བཀར་བའི་ \"ཊོཀ་ཀེན།:ཕྱོགས་ཞེན་རིན་ཐང་།\" ཆ་འཇུག་པ། (དཔེར། 5432:100, 413:-100)", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "", "Enter Firecrawl API Base URL": "", "Enter Firecrawl API Key": "", + "Enter Firecrawl Timeout": "", "Enter folder name": "", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "Github Raw URL འཇུག་པ།", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "", "Enter ID": "", "Enter Image Size (e.g. 512x512)": "པར་གྱི་ཆེ་ཆུང་འཇུག་པ། (དཔེར་ན། 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "Jina API ལྡེ་མིག་འཇུག་པ།", "Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter Jupyter Password": "Jupyter གསང་གྲངས་འཇུག་པ།", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "Kagi Search API ལྡེ་མིག་འཇུག་པ།", "Enter Key Behavior": "ལྡེ་མིག་གི་བྱེད་སྟངས་འཇུག་པ།", "Enter language codes": "སྐད་ཡིག་གི་ཨང་རྟགས་འཇུག་པ།", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "", "Enter Mistral API Key": "", "Enter Model ID": "དཔེ་དབྱིབས་ཀྱི་ ID འཇུག་པ།", @@ -736,6 +753,7 @@ "Failed to generate title": "", "Failed to import models": "", "Failed to load chat preview": "", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "", "Failed to move chat": "", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "ཁྱད་ཆོས།", "Features Permissions": "ཁྱད་ཆོས་ཀྱི་དབང་ཚད།", "February": "ཟླ་བ་གཉིས་པ།", + "Feedback": "", "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "བསམ་འཆར་གྱི་ལོ་རྒྱུས།", - "Feedbacks": "བསམ་འཆར།", "Feel free to add specific details": "ཞིབ་ཕྲ་ངེས་ཅན་སྣོན་པར་སེམས་ཁྲལ་མེད།", "Female": "", "File": "ཡིག་ཆ།", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "མཛུབ་ཐེལ་རྫུན་བཟོ་རྙེད་སོང་།: མིང་གི་ཡིག་འབྲུ་མགོ་མ་སྐུ་ཚབ་ཏུ་བེད་སྤྱོད་གཏོང་མི་ཐུབ། སྔོན་སྒྲིག་ཕྱི་ཐག་པར་རིས་ལ་སྔོན་སྒྲིག་བྱེད་བཞིན་པ།", "Firecrawl API Base URL": "", "Firecrawl API Key": "", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "", "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "ཡིག་སྣོད་ལེགས་པར་བསུབས་ཟིན།", + "Folder Max File Count": "", "Folder Name": "", "Folder name cannot be empty.": "ཡིག་སྣོད་ཀྱི་མིང་སྟོང་པ་ཡིན་མི་ཆོག", "Folder name updated successfully": "ཡིག་སྣོད་ཀྱི་མིང་ལེགས་པར་གསར་སྒྱུར་བྱས་ཟིན།", @@ -826,7 +846,6 @@ "General": "སྤྱིར་བཏང་།", "Generate": "", "Generate an image": "པར་ཞིག་བཟོ་བ།", - "Generate Image": "པར་བཟོ་བ།", "Generate Message Pair": "", "Generated Image": "", "Generating search query": "འཚོལ་བཤེར་འདྲི་བ་བཟོ་བཞིན་པ།", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "{{WEBUI_NAME}} དང་མཉམ་དུ་འགོ་འཛུགས་པ།", "Global": "འཛམ་གླིང་ཡོངས་ཀྱི་", "Good Response": "ལན་ཡག་པོ།", + "Google": "", "Google Drive": "Google Drive", "Google PSE API Key": "Google PSE API ལྡེ་མིག", "Google PSE Engine Id": "Google PSE Engine Id", "Gravatar": "", "Grid": "", + "Grokipedia": "", "Group": "ཚོགས་པ།", "Group Channel": "", "Group created successfully": "ཚོགས་པ་ལེགས་པར་བཟོས་ཟིན།", @@ -895,7 +916,6 @@ "Image Prompt Generation": "པར་འགུལ་སློང་བཟོ་སྐྲུན།", "Image Prompt Generation Prompt": "པར་འགུལ་སློང་བཟོ་སྐྲུན་གྱི་འགུལ་སློང་།", "Image Size": "", - "Images": "པར།", "Import": "", "Import Chats": "ཁ་བརྡ་ནང་འདྲེན།", "Import Config from JSON File": "JSON ཡིག་ཆ་ནས་སྒྲིག་འགོད་ནང་འདྲེན།", @@ -927,6 +947,7 @@ "Integration": "མཉམ་འདྲེས།", "Integrations": "", "Interface": "ངོས་འཛིན།", + "Interface Settings Access": "", "Invalid file content": "", "Invalid file format.": "ཡིག་ཆའི་བཀོད་པ་ནུས་མེད།", "Invalid JSON file": "", @@ -940,6 +961,7 @@ "is typing...": "ཡིག་འབྲུ་རྒྱག་བཞིན་པ།...", "Italic": "", "January": "ཟླ་བ་དང་པོ།", + "Jina API Base URL": "", "Jina API Key": "Jina API ལྡེ་མིག", "join our Discord for help.": "རོགས་རམ་ཆེད་དུ་ང་ཚོའི་ Discord ལ་མཉམ་ཞུགས་བྱེད་པ།", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "\"{{url}}/api/tags\" མཇུག་མཐུད་ནས་དཔེ་དབྱིབས་ཡོངས་རྫོགས་ཚུད་པར་སྟོང་པ་བཞག་པ།", "Leave empty to include all models from \"{{url}}/models\" endpoint": "\"{{url}}/models\" མཇུག་མཐུད་ནས་དཔེ་དབྱིབས་ཡོངས་རྫོགས་ཚུད་པར་སྟོང་པ་བཞག་པ།", "Leave empty to include all models or select specific models": "དཔེ་དབྱིབས་ཡོངས་རྫོགས་ཚུད་པར་སྟོང་པ་བཞག་པའམ། ཡང་ན་དཔེ་དབྱིབས་ངེས་ཅན་གདམ་ག་བྱེད་པ།", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "", "Leave empty to use the default prompt, or enter a custom prompt": "སྔོན་སྒྲིག་འགུལ་སློང་བེད་སྤྱོད་གཏོང་བར་སྟོང་པ་བཞག་པའམ། ཡང་ན་སྲོལ་བཟོས་འགུལ་སློང་འཇུག་པ།", "Leave model field empty to use the default model.": "སྔོན་སྒྲིག་དཔེ་དབྱིབས་བེད་སྤྱོད་གཏོང་བར་དཔེ་དབྱིབས་ཀྱི་ཁོངས་སྟོང་པ་བཞག་པ།", @@ -1029,10 +1052,12 @@ "Manage your account information.": "", "March": "ཟླ་བ་གསུམ་པ།", "Markdown": "", - "Markdown (Header)": "", + "Markdown Header Text Splitter": "", "Max Speakers": "", "Max Upload Count": "སྤར་བའི་གྲངས་མང་ཤོས།", "Max Upload Size": "སྤར་བའི་ཆེ་ཆུང་མང་ཤོས།", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "དཔེ་དབྱིབས་ ༣ ལས་མང་བ་མཉམ་དུ་ཕབ་ལེན་བྱེད་མི་ཐུབ། རྗེས་སུ་ཡང་བསྐྱར་ཚོད་ལྟ་བྱེད་རོགས།", "May": "ཟླ་བ་ལྔ་པ།", "MBR": "", @@ -1042,6 +1067,7 @@ "Member removed successfully": "", "Members": "", "Members added successfully": "", + "Memories": "", "Memories accessible by LLMs will be shown here.": "LLMs ཀྱིས་འཛུལ་སྤྱོད་ཐུབ་པའི་དྲན་ཤེས་དག་འདིར་སྟོན་ངེས།", "Memory": "དྲན་ཤེས།", "Memory added successfully": "དྲན་ཤེས་ལེགས་པར་བསྣན་ཟིན།", @@ -1051,6 +1077,7 @@ "Merge Responses": "ལན་ཟླ་སྒྲིལ།", "Merged Response": "བསྡུར་མཐུན་གྱི་ལན་གསལ་གནས་ཡོད།", "Message": "", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "ཁྱད་ཆོས་འདི་བེད་སྤྱོད་གཏོང་བར་འཕྲིན་ལ་སྐར་མ་སྤྲོད་པ་སྒུལ་བསྐྱོད་བྱེད་དགོས།", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "ཁྱེད་ཀྱི་སྦྲེལ་ཐག་བཟོས་རྗེས་ཁྱེད་ཀྱིས་བསྐུར་བའི་འཕྲིན་དག་མཉམ་སྤྱོད་བྱེད་མི་འགྱུར། URL ཡོད་པའི་བེད་སྤྱོད་མཁན་ཚོས་མཉམ་སྤྱོད་ཁ་བརྡ་ལྟ་ཐུབ་ངེས།", "Microsoft OneDrive": "", @@ -1083,9 +1110,11 @@ "Model Name": "དཔེ་དབྱིབས་ཀྱི་མིང་།", "Model name already exists, please choose a different one": "", "Model Name is required.": "", + "Model names and usage frequency": "", "Model not selected": "དཔེ་དབྱིབས་གདམ་ག་མ་བྱས།", "Model Params": "དཔེ་དབྱིབས་ཀྱི་ཞུགས་གྲངས།", "Model Permissions": "དཔེ་དབྱིབས་ཀྱི་དབང་ཚད།", + "Model responses or outputs": "", "Model unloaded successfully": "", "Model updated successfully": "དཔེ་དབྱིབས་ལེགས་པར་གསར་སྒྱུར་བྱས།", "Model(s) do not support file upload": "", @@ -1096,6 +1125,7 @@ "Models imported successfully": "", "Models Public Sharing": "དཔེ་དབྱིབས་སྤྱི་སྤྱོད་མཉམ་སྤྱོད།", "Models Sharing": "", + "Mojeek": "", "Mojeek Search API Key": "Mojeek Search API ལྡེ་མིག", "More": "མང་བ།", "More Concise": "", @@ -1129,7 +1159,7 @@ "No conversation to save": "", "No distance available": "ཐག་རིང་ཚད་མེད།", "No expiration can pose security risks.": "", - "No feedbacks found": "བསམ་འཆར་མ་རྙེད།", + "No feedback found": "", "No file selected": "ཡིག་ཆ་གདམ་ག་མ་བྱས།", "No files in this knowledge base.": "", "No functions found": "", @@ -1144,6 +1174,7 @@ "No models selected": "དཔེ་དབྱིབས་གདམ་ག་མ་བྱས།", "No Notes": "", "No notes found": "", + "No one": "", "No pinned messages": "", "No prompts found": "", "No results": "འབྲས་བུ་མ་རྙེད།", @@ -1195,6 +1226,7 @@ "Only invited users can access": "", "Only markdown files are allowed": "", "Only select users and groups with permission can access": "དབང་ཚད་ཡོད་པའི་བེད་སྤྱོད་མཁན་དང་ཚོགས་པ་གདམ་ག་བྱས་པ་ཁོ་ན་འཛུལ་སྤྱོད་ཐུབ།", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "ཨོའོ། URL དེ་ནུས་མེད་ཡིན་པ་འདྲ། ཡང་བསྐྱར་ཞིབ་དཔྱད་བྱས་ནས་ཚོད་ལྟ་བྱེད་རོགས།", "Oops! There are files still uploading. Please wait for the upload to complete.": "ཨོའོ། ད་དུང་སྤར་བཞིན་པའི་ཡིག་ཆ་ཡོད། སྤར་ཚར་བར་སྒུག་རོགས།", "Oops! There was an error in the previous response.": "ཨོའོ། ལན་སྔ་མར་ནོར་འཁྲུལ་ཞིག་བྱུང་སོང་།", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "Open WebUI ཡིས་ནང་ཁུལ་དུ་ faster-whisper བེད་སྤྱོད་བྱེད།", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI ཡིས་ SpeechT5 དང་ CMU Arctic གཏམ་བཤད་པའི་ཚུད་འཇུག་བེད་སྤྱོད་བྱེད།", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Open WebUI པར་གཞི། (v{{OPEN_WEBUI_VERSION}}) དེ་དགོས་ངེས་ཀྱི་པར་གཞི་ (v{{REQUIRED_VERSION}}) ལས་དམའ་བ།", "OpenAI": "OpenAI", "OpenAI API": "OpenAI API", @@ -1235,6 +1268,8 @@ "page": "ཤོག་ངོས།", "Paginate": "", "Parameters": "", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "གསང་གྲངས།", "Passwords do not match.": "", "Paste Large Text as File": "ཡིག་རྐྱང་ཆེན་པོ་ཡིག་ཆ་ལྟར་སྦྱོར་བ།", @@ -1260,7 +1295,6 @@ "Pipe": "", "Pipeline deleted successfully": "རྒྱུ་ལམ་ལེགས་པར་བསུབས་ཟིན།", "Pipeline downloaded successfully": "རྒྱུ་ལམ་ལེགས་པར་ཕབ་ལེན་བྱས་ཟིན།", - "Pipelines": "རྒྱུ་ལམ།", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines ནི་ མ་སྦྱར་མའི་མ་ལག་རིམ་པའི་མུ་མཐུད་རྣམ་གྲངས་ཞིག་ཡིན་པས་ གསང་ཡིག་གང་རུང་ལག་བསྟར་བྱེད་ཐུབ —", "Pipelines Not Detected": "རྒྱུ་ལམ་མ་རྙེད།", "Pipelines Valves": "རྒྱུ་ལམ་གྱི་ Valve", @@ -1497,6 +1531,7 @@ "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.": "བེད་སྤྱོད་གཏོང་རྒྱུའི་མཚམས་འཇོག་རིམ་པ་འཇོག་པ། བཟོ་ལྟ་འདི་འཕྲད་དུས། LLM ཡིས་ཡིག་རྐྱང་བཟོ་བ་མཚམས་འཇོག་ནས་ཕྱིར་ལོག་བྱེད་ངེས། Modelfile ནང་མཚམས་འཇོག་ཞུགས་གྲངས་ལོགས་སུ་མང་པོ་གསལ་བཀོད་བྱས་ནས་མཚམས་འཇོག་བཟོ་ལྟ་མང་པོ་འཇོག་ཐུབ།", "Setting": "", "Settings": "སྒྲིག་འགོད།", + "Settings Permissions": "", "Settings saved successfully!": "སྒྲིག་འགོད་ལེགས་པར་ཉར་ཚགས་བྱས།", "Share": "མཉམ་སྤྱོད།", "Share Chat": "ཁ་བརྡ་མཉམ་སྤྱོད།", @@ -1540,6 +1575,7 @@ "Speech recognition error: {{error}}": "གཏམ་བཤད་ངོས་འཛིན་ནོར་འཁྲུལ།: {{error}}", "Speech-to-Text": "", "Speech-to-Text Engine": "གཏམ་བཤད་ནས་ཡིག་རྐྱང་གི་འཕྲུལ་འཁོར།", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "", "Start of the channel": "རྒྱས་ལམ་འགོ་རིམ་", "Start Tag": "", @@ -1550,6 +1586,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "མཚམས་འཇོག", + "Stop Download": "", "Stop Generating": "", "Stop Sequence": "མཚམས་འཇོག་རིམ་པ།", "Stream Chat Response": "ཁ་བརྡའི་ལན་རྒྱུག་པ།", @@ -1570,7 +1607,14 @@ "Support": "རྒྱབ་སྐྱོར།", "Support this plugin:": "plugin འདི་ལ་རྒྱབ་སྐྱོར་བྱེད་པ།:", "Supported MIME Types": "", + "Sync": "", + "Sync Complete!": "", "Sync directory": "ཐོ་འཚོལ་མཉམ་སྡེབ།", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "མ་ལག", "System Instructions": "མ་ལག་གི་ལམ་སྟོན།", "System Prompt": "མ་ལག་གི་འགུལ་སློང་།", @@ -1615,6 +1659,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "", "The width in pixels to compress images to. Leave empty for no compression.": "", "Theme": "བརྗོད་གཞི།", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "བསམ་བཞིན་པ།...", "This action cannot be undone. Do you wish to continue?": "བྱ་སྤྱོད་འདི་ཕྱིར་ལྡོག་བྱེད་མི་ཐུབ། ཁྱེད་མུ་མཐུད་འདོད་ཡོད་དམ།", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "བགྲོ་གླེང་འདི་ {{createdAt}} ལ་བཟོས་པ། འདི་ནི་ {{channelName}} བགྲོ་གླེང་གི་ཐོག་མ་རང་ཡིན།", @@ -1729,6 +1774,7 @@ "Upload Pipeline": "རྒྱུ་ལམ་སྤར་བ།", "Upload Progress": "སྤར་བའི་འཕེལ་རིམ།", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploaded files or images": "", "Uploading file...": "", "URL": "URL", "URL is required": "", @@ -1746,6 +1792,7 @@ "User Groups": "", "User location successfully retrieved.": "བེད་སྤྱོད་མཁན་གནས་ཡུལ་ལེགས་པར་ལེན་ཚུར་སྒྲུབ་བྱས།", "User menu": "", + "User ratings (thumbs up/down)": "", "User Webhooks": "བེད་སྤྱོད་མཁན་གྱི་ Webhooks", "Username": "བེད་སྤྱོད་མིང་།", "users": "", @@ -1795,15 +1842,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI ཡིས་ \"{{url}}/chat/completions\" ལ་རེ་ཞུ་གཏོང་ངེས།", "What are you trying to achieve?": "ཁྱེད་ཀྱིས་ཅི་ཞིག་འགྲུབ་ཐབས་བྱེད་བཞིན་ཡོད།", "What are you working on?": "ཁྱེད་ཀྱིས་ཅི་ཞིག་ལས་ཀ་བྱེད་བཞིན་ཡོད།", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "གསར་པ་ཅི་ཡོད།", "What's on your mind?": "", "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.": "སྒུལ་བསྐྱོད་བྱས་ཚེ། དཔེ་དབྱིབས་ཀྱིས་ཁ་བརྡའི་འཕྲིན་རེ་རེར་དུས་ཐོག་ཏུ་ལན་འདེབས་བྱེད་ངེས། བེད་སྤྱོད་མཁན་གྱིས་འཕྲིན་བཏང་མ་ཐག་ལན་ཞིག་བཟོ་ངེས། མ་དཔེ་འདི་ཐད་གཏོང་ཁ་བརྡའི་བཀོལ་ཆས་ལ་ཕན་ཐོགས་ཡོད། འོན་ཀྱང་དེས་མཁྲེགས་ཆས་དལ་བའི་སྟེང་ལས་ཆོད་ལ་ཤུགས་རྐྱེན་ཐེབས་སྲིད།", "wherever you are": "ཁྱེད་གང་དུ་ཡོད་ཀྱང་།", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whisper (Local)": "Whisper (ས་གནས།)", + "Who can share to this group": "", "Why?": "ཅིའི་ཕྱིར།", "Widescreen Mode": "ཡངས་གནས་ངོས་མ་དཔེ།", "Width": "", + "Wikipedia": "", "Won": "ཐོབ།", "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.": "top-k དང་མཉམ་ལས་བྱེད། རིན་ཐང་མཐོ་བ་ (དཔེར་ན། 0.95) ཡིས་ཡིག་རྐྱང་སྣ་ཚོགས་ཆེ་བ་ཡོང་ངེས། དེ་བཞིན་དུ་རིན་ཐང་དམའ་བ་ (དཔེར་ན། 0.5) ཡིས་ཡིག་རྐྱང་དམིགས་ཚད་དང་སྲུང་འཛིན་ཆེ་བ་བཟོ་ངེས།", "Workspace": "ལས་ཡུལ།", @@ -1815,6 +1866,8 @@ "Yacy Instance URL": "", "Yacy Password": "", "Yacy Username": "", + "Yahoo": "", + "Yandex": "", "Yesterday": "ཁ་ས།", "Yesterday at {{LOCALIZED_TIME}}": "", "You": "ཁྱེད།", @@ -1822,6 +1875,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "ཁྱེད་ཀྱིས་ཐེངས་གཅིག་ལ་ཡིག་ཆ་ {{maxCount}} ལས་མང་བ་དང་ཁ་བརྡ་བྱེད་མི་ཐུབ།", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "ཁྱེད་ཀྱིས་གཤམ་གྱི་ 'དོ་དམ་' མཐེབ་གནོན་བརྒྱུད་དྲན་ཤེས་སྣོན་ནས་ LLMs དང་མཉམ་དུ་འབྲེལ་འདྲིས་བྱེད་པ་སྒེར་སྤྱོད་ཅན་བཟོ་ཐུབ། དེ་དག་ཁྱེད་ལ་སྔར་ལས་ཕན་ཐོགས་པ་དང་འཚམ་པོ་བཟོ་ཐུབ།", "You cannot upload an empty file.": "ཁྱེད་ཀྱིས་ཡིག་ཆ་སྟོང་པ་སྤར་མི་ཐུབ།", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this thread.": "", "You do not have permission to upload files to this knowledge base.": "", @@ -1833,6 +1889,8 @@ "Your Account": "", "Your account status is currently pending activation.": "ཁྱེད་ཀྱི་རྩིས་ཁྲའི་གནས་སྟངས་ད་ལྟ་སྒུལ་བསྐྱོད་སྒུག་བཞིན་པ།", "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.": "ཁྱེད་ཀྱི་ཞལ་འདེབས་ཆ་ཚང་ཐད་ཀར་ plugin གསར་སྤེལ་བ་ལ་འགྲོ་ངེས། Open WebUI ཡིས་བརྒྱ་ཆ་གང་ཡང་མི་ལེན། འོན་ཀྱང་། གདམ་ཟིན་པའི་མ་དངུལ་གཏོང་བའི་སྟེགས་བུ་ལ་དེའི་རང་གི་འགྲོ་གྲོན་ཡོད་སྲིད།", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "Youtube", "Youtube Language": "Youtube སྐད་ཡིག", "Youtube Proxy URL": "Youtube Proxy URL" diff --git a/src/lib/i18n/locales/bs-BA/translation.json b/src/lib/i18n/locales/bs-BA/translation.json index 6c78ed522..726890c18 100644 --- a/src/lib/i18n/locales/bs-BA/translation.json +++ b/src/lib/i18n/locales/bs-BA/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "Podešavanje će se primijeniti univerzalno na sve korisnike.", "admin": "administrator", "Admin": "Admin", + "Admin Contact Email": "", "Admin Panel": "Admin ploča", "Admin Settings": "Admin postavke", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Admini imaju pristup svim alatima u svako doba; korisninicima je dat pristup alatima u zavisnosti od modela u radnoj povrsini", @@ -101,7 +102,6 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "", - "Allow Group Sharing": "", "Allow Multiple Models in Chat": "Dozvoli vise modela u jednom chatu", "Allow non-local voices": "Dopusti nelokalne glasove", "Allow Rate Response": "", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "", "and create a new shared link.": "i stvorite novu dijeljenu vezu.", "Android": "", + "Anyone": "", "API Base URL": "Osnovni URL API-ja", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "", "API Key": "API ključ", @@ -175,6 +176,7 @@ "Authenticate": "", "Authentication": "", "Auto": "", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "Automatsko kopiranje odgovora u međuspremnik", "Auto-playback response": "Automatska reprodukcija odgovora", "Autocomplete Generation": "", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "", "AUTOMATIC1111 Base URL": "AUTOMATIC1111 osnovni URL", "AUTOMATIC1111 Base URL is required.": "Potreban je AUTOMATIC1111 osnovni URL.", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "", "Available Tools": "", "available users": "dostupni korisnici", @@ -201,6 +204,7 @@ "before": "prije", "Being lazy": "Biti lijen", "Beta": "", + "Bing": "", "Bing Search V7 Endpoint": "", "Bing Search V7 Subscription Key": "", "Bio": "", @@ -209,7 +213,9 @@ "Bocha Search API Key": "", "Bold": "", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "", + "Brave": "", "Brave Search API Key": "Brave tražilica - API ključ", + "Builtin Tools": "", "Bullet List": "", "Button ID": "", "Button Label": "", @@ -256,8 +262,10 @@ "Check for updates": "Provjeri za ažuriranja", "Checking for updates...": "Provjeravam ažuriranja...", "Choose a model before saving...": "Odaberite model prije spremanja...", + "Chunk Min Size Target": "", "Chunk Overlap": "Preklapanje dijelova", "Chunk Size": "Veličina dijela", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "", "Citation": "Citiranje", "Citations": "", @@ -293,7 +301,6 @@ "Code Block": "", "Code Editor": "", "Code execution": "", - "Code Execution": "", "Code Execution Engine": "", "Code Execution Timeout": "", "Code formatted successfully": "", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "Kontaktirajte admina za WebUI pristup", "Content": "Sadržaj", "Content Extraction Engine": "", + "Content lengths (character counts only)": "", "Continue Response": "Nastavi odgovor", "Continue with {{provider}}": "", "Continue with Email": "", @@ -393,6 +401,7 @@ "Database": "Baza podataka", "Datalab Marker API": "", "DD/MM/YYYY": "", + "DDGS Backend": "", "December": "Decembar", "Decrease UI Scale": "", "Deepgram": "", @@ -474,6 +483,7 @@ "Dive into knowledge": "", "Do not install functions from sources you do not fully trust.": "", "Do not install tools from sources you do not fully trust.": "", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "", "Docling Parameters": "", "Docling Server URL required.": "", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "", "Document Intelligence Model": "", "Documentation": "Dokumentacija", - "Documents": "Dokumenti", "does not make any external connections, and your data stays securely on your locally hosted server.": "ne uspostavlja vanjske veze, a vaši podaci ostaju sigurno na vašem lokalno hostiranom poslužitelju.", "Domain Filter List": "", "don't fetch random pipelines from sources you don't trust.": "Ne preuzimajte nasumične pipelines iz izvora kojima ne vjerujete.", @@ -493,11 +502,14 @@ "Done": "", "Download": "Preuzimanje", "Download & Delete": "Preuzmi i izbriši", + "Download as JSON": "", "Download as SVG": "", "Download canceled": "Preuzimanje otkazano", "Download Database": "Preuzmi bazu podataka", + "Downloading stats...": "", "Draw": "", "Drop any files here to upload": "", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "npr. '30s','10m'. Važeće vremenske jedinice su 's', 'm', 'h'.", "e.g. \"json\" or a JSON schema": "", "e.g. 60": "", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "", "Enter Brave Search API Key": "Unesite Brave Search API ključ", "Enter certificate path": "", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "Unesite preklapanje dijelova", "Enter Chunk Size": "Unesite veličinu dijela", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "", "Enter Firecrawl API Base URL": "", "Enter Firecrawl API Key": "", + "Enter Firecrawl Timeout": "", "Enter folder name": "", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "Unesite Github sirovi URL", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "", "Enter ID": "", "Enter Image Size (e.g. 512x512)": "Unesite veličinu slike (npr. 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "", "Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter Jupyter Password": "", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "", "Enter Key Behavior": "", "Enter language codes": "Unesite kodove jezika", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "", "Enter Mistral API Key": "", "Enter Model ID": "", @@ -736,6 +753,7 @@ "Failed to generate title": "", "Failed to import models": "", "Failed to load chat preview": "", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "", "Failed to move chat": "", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "", "Features Permissions": "", "February": "Februar", + "Feedback": "", "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "", - "Feedbacks": "", "Feel free to add specific details": "Slobodno dodajte specifične detalje", "Female": "", "File": "", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Otkriveno krivotvorenje otisaka prstiju: Nemoguće je koristiti inicijale kao avatar. Postavljanje na zadanu profilnu sliku.", "Firecrawl API Base URL": "", "Firecrawl API Key": "", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "", "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "", + "Folder Max File Count": "", "Folder Name": "", "Folder name cannot be empty.": "", "Folder name updated successfully": "", @@ -826,7 +846,6 @@ "General": "Općenito", "Generate": "", "Generate an image": "", - "Generate Image": "Gneriraj sliku", "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Generiranje upita za pretraživanje", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "", "Global": "", "Good Response": "Dobar odgovor", + "Google": "", "Google Drive": "", "Google PSE API Key": "Google PSE API ključ", "Google PSE Engine Id": "ID Google PSE modula", "Gravatar": "", "Grid": "", + "Grokipedia": "", "Group": "Grupa", "Group Channel": "", "Group created successfully": "", @@ -895,7 +916,6 @@ "Image Prompt Generation": "", "Image Prompt Generation Prompt": "", "Image Size": "", - "Images": "Slike", "Import": "", "Import Chats": "Uvoz razgovora", "Import Config from JSON File": "", @@ -927,6 +947,7 @@ "Integration": "", "Integrations": "", "Interface": "Sučelje", + "Interface Settings Access": "", "Invalid file content": "", "Invalid file format.": "", "Invalid JSON file": "", @@ -940,6 +961,7 @@ "is typing...": "", "Italic": "", "January": "Januar", + "Jina API Base URL": "", "Jina API Key": "", "join our Discord for help.": "pridružite se našem Discordu za pomoć.", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "", "Leave empty to include all models or select specific models": "", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "", "Leave empty to use the default prompt, or enter a custom prompt": "", "Leave model field empty to use the default model.": "", @@ -1029,10 +1052,12 @@ "Manage your account information.": "", "March": "Mart", "Markdown": "", - "Markdown (Header)": "", + "Markdown Header Text Splitter": "", "Max Speakers": "", "Max Upload Count": "", "Max Upload Size": "", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maksimalno 3 modela se mogu preuzeti istovremeno. Pokušajte ponovo kasnije.", "May": "Maj", "MBR": "", @@ -1042,6 +1067,7 @@ "Member removed successfully": "", "Members": "", "Members added successfully": "", + "Memories": "", "Memories accessible by LLMs will be shown here.": "Ovdje će biti prikazana memorija kojoj mogu pristupiti LLM-ovi.", "Memory": "Memorija", "Memory added successfully": "", @@ -1051,6 +1077,7 @@ "Merge Responses": "", "Merged Response": "Spojeni odgovor", "Message": "", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Poruke koje pošaljete nakon stvaranja veze neće se dijeliti. Korisnici s URL-om moći će vidjeti zajednički chat.", "Microsoft OneDrive": "", @@ -1083,9 +1110,11 @@ "Model Name": "", "Model name already exists, please choose a different one": "", "Model Name is required.": "", + "Model names and usage frequency": "", "Model not selected": "Model nije odabran", "Model Params": "Model parametri", "Model Permissions": "", + "Model responses or outputs": "", "Model unloaded successfully": "", "Model updated successfully": "", "Model(s) do not support file upload": "", @@ -1096,6 +1125,7 @@ "Models imported successfully": "", "Models Public Sharing": "", "Models Sharing": "", + "Mojeek": "", "Mojeek Search API Key": "", "More": "Više", "More Concise": "", @@ -1129,7 +1159,7 @@ "No conversation to save": "", "No distance available": "", "No expiration can pose security risks.": "", - "No feedbacks found": "", + "No feedback found": "", "No file selected": "", "No files in this knowledge base.": "", "No functions found": "", @@ -1144,6 +1174,7 @@ "No models selected": "", "No Notes": "", "No notes found": "", + "No one": "", "No pinned messages": "", "No prompts found": "", "No results": "Nema rezultata", @@ -1195,6 +1226,7 @@ "Only invited users can access": "", "Only markdown files are allowed": "", "Only select users and groups with permission can access": "", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Ups! Izgleda da je URL nevažeći. Molimo provjerite ponovno i pokušajte ponovo.", "Oops! There are files still uploading. Please wait for the upload to complete.": "", "Oops! There was an error in the previous response.": "", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "", "OpenAI": "OpenAI", "OpenAI API": "OpenAI API", @@ -1235,6 +1268,8 @@ "page": "", "Paginate": "", "Parameters": "", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "Lozinka", "Passwords do not match.": "", "Paste Large Text as File": "", @@ -1260,7 +1295,6 @@ "Pipe": "", "Pipeline deleted successfully": "", "Pipeline downloaded successfully": "", - "Pipelines": "Cjevovodi", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines je sustav dodataka s proizvoljnim izvršavanjem koda —", "Pipelines Not Detected": "", "Pipelines Valves": "Ventili za cjevovode", @@ -1499,6 +1533,7 @@ "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.": "", "Setting": "", "Settings": "Postavke", + "Settings Permissions": "", "Settings saved successfully!": "Postavke su uspješno spremljene!", "Share": "Podijeli", "Share Chat": "Podijeli razgovor", @@ -1542,6 +1577,7 @@ "Speech recognition error: {{error}}": "Pogreška prepoznavanja govora: {{error}}", "Speech-to-Text": "", "Speech-to-Text Engine": "Stroj za prepoznavanje govora", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "", "Start of the channel": "Početak kanala", "Start Tag": "", @@ -1552,6 +1588,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "", + "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Zaustavi sekvencu", "Stream Chat Response": "", @@ -1572,7 +1609,14 @@ "Support": "", "Support this plugin:": "", "Supported MIME Types": "", + "Sync": "", + "Sync Complete!": "", "Sync directory": "", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "Sustav", "System Instructions": "", "System Prompt": "Sistemski prompt", @@ -1617,6 +1661,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "", "The width in pixels to compress images to. Leave empty for no compression.": "", "Theme": "Tema", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "Razmišljam", "This action cannot be undone. Do you wish to continue?": "", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "", @@ -1731,6 +1776,7 @@ "Upload Pipeline": "Prijenos kanala", "Upload Progress": "Napredak učitavanja", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploaded files or images": "", "Uploading file...": "", "URL": "", "URL is required": "", @@ -1748,6 +1794,7 @@ "User Groups": "", "User location successfully retrieved.": "", "User menu": "", + "User ratings (thumbs up/down)": "", "User Webhooks": "", "Username": "", "users": "", @@ -1797,15 +1844,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "", "What are you trying to achieve?": "", "What are you working on?": "", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "Što je novo u", "What's on your mind?": "", "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.": "", "wherever you are": "", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whisper (Local)": "Whisper (lokalno)", + "Who can share to this group": "", "Why?": "", "Widescreen Mode": "Mod širokog zaslona", "Width": "", + "Wikipedia": "", "Won": "", "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.": "", "Workspace": "Radna ploča", @@ -1817,6 +1868,8 @@ "Yacy Instance URL": "", "Yacy Password": "", "Yacy Username": "", + "Yahoo": "", + "Yandex": "", "Yesterday": "Jučer", "Yesterday at {{LOCALIZED_TIME}}": "", "You": "Vi", @@ -1824,6 +1877,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Možete personalizirati svoje interakcije s LLM-ima dodavanjem uspomena putem gumba 'Upravljanje' u nastavku, čineći ih korisnijima i prilagođenijima vama.", "You cannot upload an empty file.": "", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this thread.": "", "You do not have permission to upload files to this knowledge base.": "", @@ -1835,6 +1891,8 @@ "Your Account": "", "Your account status is currently pending activation.": "Status vašeg računa trenutno čeka aktivaciju.", "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.": "", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "YouTube", "Youtube Language": "", "Youtube Proxy URL": "" diff --git a/src/lib/i18n/locales/ca-ES/translation.json b/src/lib/i18n/locales/ca-ES/translation.json index 28bd2294c..c96dee8c5 100644 --- a/src/lib/i18n/locales/ca-ES/translation.json +++ b/src/lib/i18n/locales/ca-ES/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "Si ajustes aquesta preferència, els canvis s'aplicaran de manera universal a tots els usuaris.", "admin": "administrador", "Admin": "Administrador", + "Admin Contact Email": "", "Admin Panel": "Panell d'administració", "Admin Settings": "Preferències d'administració", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Els administradors tenen accés a totes les eines en tot moment; els usuaris necessiten eines assignades per model a l'espai de treball.", @@ -101,7 +102,6 @@ "Allow Continue Response": "Permetre continuar la resposta", "Allow Delete Messages": "Permetre eliminar missatges", "Allow File Upload": "Permetre la pujada d'arxius", - "Allow Group Sharing": "Permetre compartir en grup", "Allow Multiple Models in Chat": "Permetre múltiple models al xat", "Allow non-local voices": "Permetre veus no locals", "Allow Rate Response": "Permetre valorar les respostes", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "i {{COUNT}} més", "and create a new shared link.": "i crear un nou enllaç compartit.", "Android": "Android", + "Anyone": "", "API Base URL": "URL Base de l'API", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "URL base de l'API per al servei de marcadors de Datalab. Per defecte: https://www.datalab.to/api/v1/marker", "API Key": "clau API", @@ -175,6 +176,7 @@ "Authenticate": "Autenticar", "Authentication": "Autenticació", "Auto": "Automàtic", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "Copiar la resposta automàticament al porta-retalls", "Auto-playback response": "Reproduir la resposta automàticament", "Autocomplete Generation": "Generació automàtica", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "Cadena d'autenticació de l'API d'AUTOMATIC1111", "AUTOMATIC1111 Base URL": "URL Base d'AUTOMATIC1111", "AUTOMATIC1111 Base URL is required.": "Es requereix la URL Base d'AUTOMATIC1111.", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "Llista de disponibles", "Available Tools": "Eines disponibles", "available users": "usuaris disponibles", @@ -201,6 +204,7 @@ "before": "abans", "Being lazy": "Essent mandrós", "Beta": "Beta", + "Bing": "", "Bing Search V7 Endpoint": "Punt de connexió a Bing Search V7", "Bing Search V7 Subscription Key": "Clau de subscripció a Bing Search V7", "Bio": "Bio", @@ -209,7 +213,9 @@ "Bocha Search API Key": "Clau API de Bocha Search", "Bold": "Negreta", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Potenciar o penalitzar tokens específics per a respostes limitades. Els valors de biaix es fixaran entre -100 i 100 (inclosos). (Per defecte: cap)", + "Brave": "", "Brave Search API Key": "Clau API de Brave Search", + "Builtin Tools": "", "Bullet List": "Llista indexada", "Button ID": "ID del botó", "Button Label": "Etiqueta del botó", @@ -256,8 +262,10 @@ "Check for updates": "Comprovar si hi ha actualitzacions", "Checking for updates...": "Comprovant actualitzacions...", "Choose a model before saving...": "Triar un model abans de desar...", + "Chunk Min Size Target": "", "Chunk Overlap": "Solapament de blocs", "Chunk Size": "Mida del bloc", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "Xifradors", "Citation": "Cita", "Citations": "Cites", @@ -293,7 +301,6 @@ "Code Block": "Bloc de codi", "Code Editor": "Editor de codi", "Code execution": "Execució de codi", - "Code Execution": "Execució de Codi", "Code Execution Engine": "Motor d'execució de codi", "Code Execution Timeout": "Temps màxim d'execució de codi", "Code formatted successfully": "Codi formatat correctament", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "Posa't en contacte amb l'administrador per accedir a WebUI", "Content": "Contingut", "Content Extraction Engine": "Motor d'extracció de contingut", + "Content lengths (character counts only)": "", "Continue Response": "Continuar la resposta", "Continue with {{provider}}": "Continuar amb {{provider}}", "Continue with Email": "Continuar amb el correu", @@ -393,6 +401,7 @@ "Database": "Base de dades", "Datalab Marker API": "API de Datalab Marker", "DD/MM/YYYY": "DD/MM/YYYY", + "DDGS Backend": "", "December": "Desembre", "Decrease UI Scale": "Disminuir la mida de la interfície gràfica", "Deepgram": "Deepgram", @@ -474,6 +483,7 @@ "Dive into knowledge": "Aprofundir en el coneixement", "Do not install functions from sources you do not fully trust.": "No instal·lis funcions de fonts en què no confiïs plenament.", "Do not install tools from sources you do not fully trust.": "No instal·lis eines de fonts en què no confiïs plenament.", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "Docling", "Docling Parameters": "Paràmetres de Docling", "Docling Server URL required.": "La URL del servidor Docling és necessària", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "Es necessita un punt de connexió de Document Intelligence", "Document Intelligence Model": "Model de Document Intelligence", "Documentation": "Documentació", - "Documents": "Documents", "does not make any external connections, and your data stays securely on your locally hosted server.": "no realitza connexions externes, i les teves dades romanen segures al teu servidor allotjat localment.", "Domain Filter List": "Llista de filtre de dominis", "don't fetch random pipelines from sources you don't trust.": "No obtinguis pipelines aleatòries de fonts no fiables.", @@ -493,11 +502,14 @@ "Done": "Fet", "Download": "Descarregar", "Download & Delete": "Descarregar i suprimir", + "Download as JSON": "", "Download as SVG": "Descarrega com a SVG", "Download canceled": "Descàrrega cancel·lada", "Download Database": "Descarregar la base de dades", + "Downloading stats...": "", "Draw": "Dibuixar", "Drop any files here to upload": "Arrossega aquí qualsevol fitxer per pujar-lo", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "p. ex. '30s','10m'. Les unitats de temps vàlides són 's', 'm', 'h'.", "e.g. \"json\" or a JSON schema": "p. ex. \"json\" o un esquema JSON", "e.g. 60": "p. ex. 60", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "Introdueix la clau API de Bocha Search", "Enter Brave Search API Key": "Introdueix la clau API de Brave Search", "Enter certificate path": "Introdueix el camí del certificat", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "Introdueix la mida de solapament de blocs", "Enter Chunk Size": "Introdueix la mida del bloc", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Introdueix parelles de \"token:valor de biaix\" separats per comes (exemple: 5432:100, 413:-100)", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "Introdueix la URL d'External Web Search", "Enter Firecrawl API Base URL": "Introdueix la URL base de Firecrawl API", "Enter Firecrawl API Key": "Introdueix la clau API de Firecrawl", + "Enter Firecrawl Timeout": "", "Enter folder name": "Introdueix el nom de la carpeta", "Enter function name filter list (e.g. func1, !func2)": "Introdueix la llista de filtres de noms de funció (per exemple, func1, !func2)", "Enter Github Raw URL": "Introdueix la URL en brut de Github", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "Introdueix el codi hexadecimal del color (p. ex. #FF0000)", "Enter ID": "Introdueix l'ID", "Enter Image Size (e.g. 512x512)": "Introdueix la mida de la imatge (p. ex. 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "Introdueix la clau API de Jina", "Enter JSON config (e.g., {\"disable_links\": true})": "Introdueix la configuració JSON (per exemple, {\"disable_links\": true})", "Enter Jupyter Password": "Introdueix la contrasenya de Jupyter", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "Introdueix la clau API de Kagi Search", "Enter Key Behavior": "Introdueix el comportament de clau", "Enter language codes": "Introdueix els codis de llenguatge", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "Entra la URL Base de l'API de Mistral", "Enter Mistral API Key": "Entra la clau API de Mistral", "Enter Model ID": "Introdueix l'identificador del model", @@ -736,6 +753,7 @@ "Failed to generate title": "No s'ha pogut generar el títol", "Failed to import models": "No s'han pogut importar el models", "Failed to load chat preview": "No s'ha pogut carregar la previsualització del xat", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "No s'ha pogut carregar el contingut del fitxer", "Failed to move chat": "No s'ha pogut moure el xat", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "Característiques", "Features Permissions": "Permisos de les característiques", "February": "Febrer", + "Feedback": "", "Feedback deleted successfully": "Retorn eliminat correctament", "Feedback Details": "Detalls del retorn", "Feedback History": "Històric de comentaris", - "Feedbacks": "Comentaris", "Feel free to add specific details": "Sent-te lliure d'afegir detalls específics", "Female": "Dona", "File": "Arxiu", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "S'ha detectat la suplantació d'identitat de l'empremta digital: no es poden utilitzar les inicials com a avatar. S'estableix la imatge de perfil predeterminada.", "Firecrawl API Base URL": "URL de l'API de base de Firecrawl", "Firecrawl API Key": "Clau API de Firecrawl", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "Accions ràpides flotants", "Focus Chat Input": "Posa el focus en l'entrada del xat", "Folder": "Carpeta", "Folder Background Image": "Imatge del fons de la carpeta", "Folder deleted successfully": "Carpeta eliminada correctament", + "Folder Max File Count": "", "Folder Name": "Nom de la carpeta", "Folder name cannot be empty.": "El nom de la carpeta no pot ser buit.", "Folder name updated successfully": "Nom de la carpeta actualitzat correctament", @@ -826,7 +846,6 @@ "General": "General", "Generate": "Generar", "Generate an image": "Generar una imatge", - "Generate Image": "Generar imatge", "Generate Message Pair": "Generar parella de missatges", "Generated Image": "Imatge generada", "Generating search query": "Generant consulta", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "Comença amb {{WEBUI_NAME}}", "Global": "Global", "Good Response": "Bona resposta", + "Google": "", "Google Drive": "Google Drive", "Google PSE API Key": "Clau API PSE de Google", "Google PSE Engine Id": "Identificador del motor PSE de Google", "Gravatar": "Gravatar", "Grid": "", + "Grokipedia": "", "Group": "Grup", "Group Channel": "Canal de grup", "Group created successfully": "El grup s'ha creat correctament", @@ -895,7 +916,6 @@ "Image Prompt Generation": "Generació d'indicacions d'imatge", "Image Prompt Generation Prompt": "Indicació per a la generació d'indicacions d'imatge", "Image Size": "Mida de la imatge", - "Images": "Imatges", "Import": "Importar", "Import Chats": "Importar xats", "Import Config from JSON File": "Importar la configuració des d'un arxiu JSON", @@ -927,6 +947,7 @@ "Integration": "Integració", "Integrations": "Integracions", "Interface": "Interfície", + "Interface Settings Access": "", "Invalid file content": "Continguts del fitxer no vàlids", "Invalid file format.": "Format d'arxiu no vàlid.", "Invalid JSON file": "Arxiu JSON no vàlid", @@ -940,6 +961,7 @@ "is typing...": "està escrivint...", "Italic": "Cursiva", "January": "Gener", + "Jina API Base URL": "", "Jina API Key": "Clau API de Jina", "join our Discord for help.": "uneix-te al nostre Discord per obtenir ajuda.", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "Deixar-ho buit per incloure tots els models del punt de connexió \"{{url}}/api/tags\"", "Leave empty to include all models from \"{{url}}/models\" endpoint": "Deixar-ho buit per incloure tots els models del punt de connexió \"{{url}}/models\"", "Leave empty to include all models or select specific models": "Deixa-ho en blanc per incloure tots els models o selecciona models específics", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "Deixau-ho en blanc per utilitzar el model per defecte (voxtral-mini-latest).", "Leave empty to use the default prompt, or enter a custom prompt": "Deixa-ho en blanc per utilitzar la indicació predeterminada o introdueix una indicació personalitzada", "Leave model field empty to use the default model.": "Deixa el camp de model buit per utilitzar el model per defecte.", @@ -1029,10 +1052,12 @@ "Manage your account information.": "Gestionar la informació del teu compte.", "March": "Març", "Markdown": "Markdown", - "Markdown (Header)": "Markdown (encapçalament)", + "Markdown Header Text Splitter": "", "Max Speakers": "Nombre màxim d'altaveus", "Max Upload Count": "Nombre màxim de càrregues", "Max Upload Size": "Mida màxima de càrrega", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Es poden descarregar un màxim de 3 models simultàniament. Si us plau, prova-ho més tard.", "May": "Maig", "MBR": "MBR", @@ -1042,6 +1067,7 @@ "Member removed successfully": "El membre s'ha eliminat satisfactòriament", "Members": "Membres", "Members added successfully": "Els membres s'han afegit satisfactòriament", + "Memories": "", "Memories accessible by LLMs will be shown here.": "Les memòries accessibles pels models de llenguatge es mostraran aquí.", "Memory": "Memòria", "Memory added successfully": "Memòria afegida correctament", @@ -1051,6 +1077,7 @@ "Merge Responses": "Fusionar les respostes", "Merged Response": "Resposta combinada", "Message": "Missatge", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "La classificació dels missatges s'hauria d'activar per utilitzar aquesta funció", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Els missatges enviats després de crear el teu enllaç no es compartiran. Els usuaris amb la URL podran veure el xat compartit.", "Microsoft OneDrive": "Microsoft OneDrive", @@ -1083,9 +1110,11 @@ "Model Name": "Nom del model", "Model name already exists, please choose a different one": "Aquest nom de model ja existeix, si us plau, tria'n un altre", "Model Name is required.": "El nom del model és necessari", + "Model names and usage frequency": "", "Model not selected": "Model no seleccionat", "Model Params": "Paràmetres del model", "Model Permissions": "Permisos dels models", + "Model responses or outputs": "", "Model unloaded successfully": "El model s'ha descarregat correctament", "Model updated successfully": "Model actualitzat correctament", "Model(s) do not support file upload": "El model no permet la pujada d'arxius", @@ -1096,6 +1125,7 @@ "Models imported successfully": "Els models s'han importat correctament", "Models Public Sharing": "Compartició pública de models", "Models Sharing": "Compartir els models", + "Mojeek": "", "Mojeek Search API Key": "Clau API de Mojeek Search", "More": "Més", "More Concise": "Més precís", @@ -1129,7 +1159,7 @@ "No conversation to save": "No hi ha cap conversa a desar", "No distance available": "No hi ha distància disponible", "No expiration can pose security risks.": "No posar expiració pot suposar problemes de seguretat.", - "No feedbacks found": "No s'han trobat comentaris", + "No feedback found": "", "No file selected": "No s'ha escollit cap fitxer", "No files in this knowledge base.": "", "No functions found": "No s'han trobat funcions", @@ -1144,6 +1174,7 @@ "No models selected": "No s'ha seleccionat cap model", "No Notes": "No hi ha notes", "No notes found": "No s'han trobat notes", + "No one": "", "No pinned messages": "No hi ha missatges fixats", "No prompts found": "No s'han trobat indicacions", "No results": "No s'han trobat resultats", @@ -1195,6 +1226,7 @@ "Only invited users can access": "Només hi poden accedir els usuaris convidats", "Only markdown files are allowed": "Només es permeten arxius markdown", "Only select users and groups with permission can access": "Només hi poden accedir usuaris i grups seleccionats amb permís", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Ui! Sembla que la URL no és vàlida. Si us plau, revisa-la i torna-ho a provar.", "Oops! There are files still uploading. Please wait for the upload to complete.": "Ui! Encara hi ha fitxers pujant-se. Si us plau, espera que finalitzi la càrrega.", "Oops! There was an error in the previous response.": "Ui! Hi ha hagut un error a la resposta anterior.", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI pot utilitzar eines de servidors OpenAPI.", "Open WebUI uses faster-whisper internally.": "Open WebUI utilitza faster-whisper internament.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI utilitza incrustacions de SpeechT5 i CMU Arctic.", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "La versió d'Open WebUI (v{{OPEN_WEBUI_VERSION}}) és inferior a la versió requerida (v{{REQUIRED_VERSION}})", "OpenAI": "OpenAI", "OpenAI API": "API d'OpenAI", @@ -1235,6 +1268,8 @@ "page": "pàgina", "Paginate": "Paginar", "Parameters": "Paràmetres", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "Contrasenya", "Passwords do not match.": "Les contrasenyes no coincideixen", "Paste Large Text as File": "Enganxa un text llarg com a fitxer", @@ -1260,7 +1295,6 @@ "Pipe": "Canonada", "Pipeline deleted successfully": "Pipeline eliminada correctament", "Pipeline downloaded successfully": "Pipeline descarregada correctament", - "Pipelines": "Pipelines", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines és un sistema de connectors amb execució arbitrària de codi —", "Pipelines Not Detected": "No s'ha detectat Pipelines", "Pipelines Valves": "Vàlvules de les Pipelines", @@ -1499,6 +1533,7 @@ "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.": "Establir les seqüències d'aturada a utilitzar. Quan es trobi aquest patró, el LLM deixarà de generar text. Es poden establir diversos patrons de parada especificant diversos paràmetres de parada separats en un fitxer model.", "Setting": "Preferència", "Settings": "Preferències", + "Settings Permissions": "", "Settings saved successfully!": "Les preferències s'han desat correctament", "Share": "Compartir", "Share Chat": "Compartir el xat", @@ -1542,6 +1577,7 @@ "Speech recognition error: {{error}}": "Error de reconeixement de veu: {{error}}", "Speech-to-Text": "Àudio-a-Text", "Speech-to-Text Engine": "Motor de veu a text", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "Iniciar una nova conversa", "Start of the channel": "Inici del canal", "Start Tag": "Etiqueta d'inici", @@ -1552,6 +1588,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "Passos", "Stop": "Atura", + "Stop Download": "", "Stop Generating": "Aturar la generació", "Stop Sequence": "Atura la seqüència", "Stream Chat Response": "Fer streaming de la resposta del xat", @@ -1572,7 +1609,14 @@ "Support": "Dona suport", "Support this plugin:": "Dona suport a aquest complement:", "Supported MIME Types": "Tipus MIME admesos", + "Sync": "", + "Sync Complete!": "", "Sync directory": "Sincronitzar directori", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "Sistema", "System Instructions": "Instruccions de sistema", "System Prompt": "Indicació del Sistema", @@ -1617,6 +1661,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "El pes de la cerca híbrida BM25. 0 més semàntic, 1 més lèxic. Per defecte 0,5", "The width in pixels to compress images to. Leave empty for no compression.": "L'amplada en píxels per comprimir imatges. Deixar-ho buit per a cap compressió.", "Theme": "Tema", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "Pensant...", "This action cannot be undone. Do you wish to continue?": "Aquesta acció no es pot desfer. Vols continuar?", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "Aquest canal es va crear el dia {{createdAt}}. Aquest és el començament del canal {{channelName}}.", @@ -1731,6 +1776,7 @@ "Upload Pipeline": "Pujar una Pipeline", "Upload Progress": "Progrés de càrrega", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Progrés de la pujada: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", + "Uploaded files or images": "", "Uploading file...": "Pujant l'arxiu...", "URL": "URL", "URL is required": "La URL és necessaria", @@ -1748,6 +1794,7 @@ "User Groups": "Grups d'usuari", "User location successfully retrieved.": "Ubicació de l'usuari obtinguda correctament", "User menu": "Menú d'usuari", + "User ratings (thumbs up/down)": "", "User Webhooks": "Webhooks d'usuari", "Username": "Nom d'usuari", "users": "usuaris", @@ -1797,15 +1844,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI farà peticions a \"{{url}}/chat/completions\"", "What are you trying to achieve?": "Què intentes aconseguir?", "What are you working on?": "En què estàs treballant?", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "Què hi ha de nou a", "What's on your mind?": "Què tens en ment?", "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.", "wherever you are": "allà on estiguis", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "Si es pagina la sortida. Cada pàgina estarà separada per una regla horitzontal i un número de pàgina. Per defecte és Fals.", "Whisper (Local)": "Whisper (local)", + "Who can share to this group": "", "Why?": "Per què?", "Widescreen Mode": "Mode de pantalla ampla", "Width": "amplada", + "Wikipedia": "", "Won": "Ha guanyat", "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.": "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.", "Workspace": "Espai de treball", @@ -1817,6 +1868,8 @@ "Yacy Instance URL": "URL de la instància de Yacy", "Yacy Password": "Contrasenya de Yacy", "Yacy Username": "Nom d'usuari de Yacy", + "Yahoo": "", + "Yandex": "", "Yesterday": "Ahir", "Yesterday at {{LOCALIZED_TIME}}": "Ahir a les {{LOCALIZED_TIME}}", "You": "Tu", @@ -1824,6 +1877,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Només pots xatejar amb un màxim de {{maxCount}} fitxers alhora.", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Pots personalitzar les teves interaccions amb els models de llenguatge afegint memòries mitjançant el botó 'Gestiona' que hi ha a continuació, fent-les més útils i adaptades a tu.", "You cannot upload an empty file.": "No es pot pujar un arxiu buit.", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "No tens permís per enviar missatges en aquest canal.", "You do not have permission to send messages in this thread.": "No tens permís per enviar missatges en aquest fil.", "You do not have permission to upload files to this knowledge base.": "", @@ -1835,6 +1891,8 @@ "Your Account": "El teu compte", "Your account status is currently pending activation.": "El compte està actualment pendent d'activació", "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.": "Tota la teva contribució anirà directament al desenvolupador del complement; Open WebUI no se'n queda cap percentatge. Tanmateix, la plataforma de finançament escollida pot tenir les seves pròpies comissions.", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "Youtube", "Youtube Language": "Idioma de YouTube", "Youtube Proxy URL": "URL de Proxy de Youtube" diff --git a/src/lib/i18n/locales/ceb-PH/translation.json b/src/lib/i18n/locales/ceb-PH/translation.json index cc900436b..fed29d79f 100644 --- a/src/lib/i18n/locales/ceb-PH/translation.json +++ b/src/lib/i18n/locales/ceb-PH/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "Ang pag-adjust niini nga mga setting magamit ang mga pagbag-o sa tanan nga tiggamit.", "admin": "Administrator", "Admin": "", + "Admin Contact Email": "", "Admin Panel": "Admin Panel", "Admin Settings": "Mga setting sa administratibo", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "", @@ -101,7 +102,6 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "", - "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "", "Allow Rate Response": "", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "", "and create a new shared link.": "", "Android": "", + "Anyone": "", "API Base URL": "API Base URL", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "", "API Key": "yawe sa API", @@ -175,6 +176,7 @@ "Authenticate": "", "Authentication": "", "Auto": "", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "Awtomatikong kopya sa tubag sa clipboard", "Auto-playback response": "Autoplay nga tubag", "Autocomplete Generation": "", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "", "AUTOMATIC1111 Base URL": "Base URL AUTOMATIC1111", "AUTOMATIC1111 Base URL is required.": "Ang AUTOMATIC1111 base URL gikinahanglan.", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "", "Available Tools": "", "available users": "magamit nga mga tiggamit", @@ -201,6 +204,7 @@ "before": "", "Being lazy": "", "Beta": "", + "Bing": "", "Bing Search V7 Endpoint": "", "Bing Search V7 Subscription Key": "", "Bio": "", @@ -209,7 +213,9 @@ "Bocha Search API Key": "", "Bold": "", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "", + "Brave": "", "Brave Search API Key": "", + "Builtin Tools": "", "Bullet List": "", "Button ID": "", "Button Label": "", @@ -256,8 +262,10 @@ "Check for updates": "Susiha ang mga update", "Checking for updates...": "Pagsusi alang sa mga update...", "Choose a model before saving...": "Pagpili og template sa dili pa i-save...", + "Chunk Min Size Target": "", "Chunk Overlap": "Block overlap", "Chunk Size": "Gidak-on sa block", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "", "Citation": "Mga kinutlo", "Citations": "", @@ -293,7 +301,6 @@ "Code Block": "", "Code Editor": "", "Code execution": "", - "Code Execution": "", "Code Execution Engine": "", "Code Execution Timeout": "", "Code formatted successfully": "", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "", "Content": "Kontento", "Content Extraction Engine": "", + "Content lengths (character counts only)": "", "Continue Response": "", "Continue with {{provider}}": "", "Continue with Email": "", @@ -393,6 +401,7 @@ "Database": "Database", "Datalab Marker API": "", "DD/MM/YYYY": "", + "DDGS Backend": "", "December": "", "Decrease UI Scale": "", "Deepgram": "", @@ -474,6 +483,7 @@ "Dive into knowledge": "", "Do not install functions from sources you do not fully trust.": "", "Do not install tools from sources you do not fully trust.": "", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "", "Docling Parameters": "", "Docling Server URL required.": "", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "", "Document Intelligence Model": "", "Documentation": "", - "Documents": "Mga dokumento", "does not make any external connections, and your data stays securely on your locally hosted server.": "wala maghimo ug eksternal nga koneksyon, ug ang imong data nagpabiling luwas sa imong lokal nga host server.", "Domain Filter List": "", "don't fetch random pipelines from sources you don't trust.": "Ayaw kuhaa og random nga pipelines gikan sa dili kasaligan nga mga tinubdan.", @@ -493,11 +502,14 @@ "Done": "", "Download": "", "Download & Delete": "I-download ug papas", + "Download as JSON": "", "Download as SVG": "", "Download canceled": "", "Download Database": "I-download ang database", + "Downloading stats...": "", "Draw": "", "Drop any files here to upload": "", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "p. ", "e.g. \"json\" or a JSON schema": "", "e.g. 60": "", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "", "Enter Brave Search API Key": "", "Enter certificate path": "", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "Pagsulod sa block overlap", "Enter Chunk Size": "Isulod ang block size", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "", "Enter Firecrawl API Base URL": "", "Enter Firecrawl API Key": "", + "Enter Firecrawl Timeout": "", "Enter folder name": "", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "", "Enter ID": "", "Enter Image Size (e.g. 512x512)": "Pagsulod sa gidak-on sa hulagway (pananglitan 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "", "Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter Jupyter Password": "", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "", "Enter Key Behavior": "", "Enter language codes": "", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "", "Enter Mistral API Key": "", "Enter Model ID": "", @@ -736,6 +753,7 @@ "Failed to generate title": "", "Failed to import models": "", "Failed to load chat preview": "", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "", "Failed to move chat": "", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "", "Features Permissions": "", "February": "", + "Feedback": "", "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "", - "Feedbacks": "", "Feel free to add specific details": "", "Female": "", "File": "", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "", "Firecrawl API Base URL": "", "Firecrawl API Key": "", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "", "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "", + "Folder Max File Count": "", "Folder Name": "", "Folder name cannot be empty.": "", "Folder name updated successfully": "", @@ -826,7 +846,6 @@ "General": "Heneral", "Generate": "", "Generate an image": "", - "Generate Image": "", "Generate Message Pair": "", "Generated Image": "", "Generating search query": "", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "", "Global": "", "Good Response": "", + "Google": "", "Google Drive": "", "Google PSE API Key": "", "Google PSE Engine Id": "", "Gravatar": "", "Grid": "", + "Grokipedia": "", "Group": "Grupo", "Group Channel": "", "Group created successfully": "", @@ -895,7 +916,6 @@ "Image Prompt Generation": "", "Image Prompt Generation Prompt": "", "Image Size": "", - "Images": "Mga hulagway", "Import": "", "Import Chats": "Import nga mga chat", "Import Config from JSON File": "", @@ -927,6 +947,7 @@ "Integration": "", "Integrations": "", "Interface": "Interface", + "Interface Settings Access": "", "Invalid file content": "", "Invalid file format.": "", "Invalid JSON file": "", @@ -940,6 +961,7 @@ "is typing...": "", "Italic": "", "January": "", + "Jina API Base URL": "", "Jina API Key": "", "join our Discord for help.": "Apil sa among Discord alang sa tabang.", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "", "Leave empty to include all models or select specific models": "", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "", "Leave empty to use the default prompt, or enter a custom prompt": "", "Leave model field empty to use the default model.": "", @@ -1029,10 +1052,12 @@ "Manage your account information.": "", "March": "", "Markdown": "", - "Markdown (Header)": "", + "Markdown Header Text Splitter": "", "Max Speakers": "", "Max Upload Count": "", "Max Upload Size": "", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Ang labing taas nga 3 nga mga disenyo mahimong ma-download nga dungan. ", "May": "", "MBR": "", @@ -1042,6 +1067,7 @@ "Member removed successfully": "", "Members": "", "Members added successfully": "", + "Memories": "", "Memories accessible by LLMs will be shown here.": "", "Memory": "", "Memory added successfully": "", @@ -1051,6 +1077,7 @@ "Merge Responses": "", "Merged Response": "Gihiusa nga Resulta sa Tubag", "Message": "", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "", "Microsoft OneDrive": "", @@ -1083,9 +1110,11 @@ "Model Name": "", "Model name already exists, please choose a different one": "", "Model Name is required.": "", + "Model names and usage frequency": "", "Model not selected": "Wala gipili ang modelo", "Model Params": "", "Model Permissions": "", + "Model responses or outputs": "", "Model unloaded successfully": "", "Model updated successfully": "", "Model(s) do not support file upload": "", @@ -1096,6 +1125,7 @@ "Models imported successfully": "", "Models Public Sharing": "", "Models Sharing": "", + "Mojeek": "", "Mojeek Search API Key": "", "More": "", "More Concise": "", @@ -1129,7 +1159,7 @@ "No conversation to save": "", "No distance available": "", "No expiration can pose security risks.": "", - "No feedbacks found": "", + "No feedback found": "", "No file selected": "", "No files in this knowledge base.": "", "No functions found": "", @@ -1144,6 +1174,7 @@ "No models selected": "", "No Notes": "", "No notes found": "", + "No one": "", "No pinned messages": "", "No prompts found": "", "No results": "Walay resulta", @@ -1195,6 +1226,7 @@ "Only invited users can access": "", "Only markdown files are allowed": "", "Only select users and groups with permission can access": "", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Oops! ", "Oops! There are files still uploading. Please wait for the upload to complete.": "", "Oops! There was an error in the previous response.": "", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "", "OpenAI": "", "OpenAI API": "OpenAI API", @@ -1235,6 +1268,8 @@ "page": "", "Paginate": "", "Parameters": "", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "Password", "Passwords do not match.": "", "Paste Large Text as File": "", @@ -1260,7 +1295,6 @@ "Pipe": "", "Pipeline deleted successfully": "", "Pipeline downloaded successfully": "", - "Pipelines": "", "Pipelines are a plugin system with arbitrary code execution —": "Ang Pipelines usa ka plugin system nga makapadagan og bisan unsang kodigo —", "Pipelines Not Detected": "", "Pipelines Valves": "", @@ -1498,6 +1532,7 @@ "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.": "", "Setting": "", "Settings": "Mga setting", + "Settings Permissions": "", "Settings saved successfully!": "Malampuson nga na-save ang mga setting!", "Share": "", "Share Chat": "", @@ -1541,6 +1576,7 @@ "Speech recognition error: {{error}}": "Sayop sa pag-ila sa tingog: {{error}}", "Speech-to-Text": "", "Speech-to-Text Engine": "Engine sa pag-ila sa tingog", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "", "Start of the channel": "Sinugdan sa channel", "Start Tag": "", @@ -1551,6 +1587,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "", + "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Pagkasunod-sunod sa pagsira", "Stream Chat Response": "", @@ -1571,7 +1608,14 @@ "Support": "", "Support this plugin:": "", "Supported MIME Types": "", + "Sync": "", + "Sync Complete!": "", "Sync directory": "", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "Sistema", "System Instructions": "", "System Prompt": "Madasig nga Sistema", @@ -1616,6 +1660,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "", "The width in pixels to compress images to. Leave empty for no compression.": "", "Theme": "Tema", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "", "This action cannot be undone. Do you wish to continue?": "", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "", @@ -1730,6 +1775,7 @@ "Upload Pipeline": "", "Upload Progress": "Pag-uswag sa Pag-upload", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploaded files or images": "", "Uploading file...": "", "URL": "", "URL is required": "", @@ -1747,6 +1793,7 @@ "User Groups": "", "User location successfully retrieved.": "", "User menu": "", + "User ratings (thumbs up/down)": "", "User Webhooks": "", "Username": "", "users": "", @@ -1796,15 +1843,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "", "What are you trying to achieve?": "", "What are you working on?": "", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "Unsay bag-o sa", "What's on your mind?": "", "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.": "", "wherever you are": "", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whisper (Local)": "", + "Who can share to this group": "", "Why?": "", "Widescreen Mode": "", "Width": "", + "Wikipedia": "", "Won": "", "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.": "", "Workspace": "", @@ -1816,6 +1867,8 @@ "Yacy Instance URL": "", "Yacy Password": "", "Yacy Username": "", + "Yahoo": "", + "Yandex": "", "Yesterday": "", "Yesterday at {{LOCALIZED_TIME}}": "", "You": "", @@ -1823,6 +1876,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "", "You cannot upload an empty file.": "", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this thread.": "", "You do not have permission to upload files to this knowledge base.": "", @@ -1834,6 +1890,8 @@ "Your Account": "", "Your account status is currently pending activation.": "", "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.": "", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "", "Youtube Language": "", "Youtube Proxy URL": "" diff --git a/src/lib/i18n/locales/cs-CZ/translation.json b/src/lib/i18n/locales/cs-CZ/translation.json index 1e0b837b2..f08c54f6a 100644 --- a/src/lib/i18n/locales/cs-CZ/translation.json +++ b/src/lib/i18n/locales/cs-CZ/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "Úprava těchto nastavení se projeví u všech uživatelů.", "admin": "administrátor", "Admin": "Administrátor", + "Admin Contact Email": "", "Admin Panel": "Administrace", "Admin Settings": "Nastavení administrátora", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administrátoři mají kdykoli přístup ke všem nástrojům; uživatelé potřebují mít nástroje přiřazené k jednotlivým modelům v pracovním prostoru.", @@ -101,7 +102,6 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "Povolit nahrávání souborů", - "Allow Group Sharing": "", "Allow Multiple Models in Chat": "Povolit více modelů v chatu", "Allow non-local voices": "Povolit nelokální hlasy", "Allow Rate Response": "", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "a {{COUNT}} dalších", "and create a new shared link.": "a vytvořit nový sdílený odkaz.", "Android": "Android", + "Anyone": "", "API Base URL": "Základní URL adresa API", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "Základní URL adresa API pro službu Datalab Marker. Výchozí hodnota: https://www.datalab.to/api/v1/marker", "API Key": "Klíč API", @@ -175,6 +176,7 @@ "Authenticate": "Ověřit", "Authentication": "Ověřování", "Auto": "Auto", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "Automaticky kopírovat odpověď do schránky", "Auto-playback response": "Automatické přehrávání odpovědi", "Autocomplete Generation": "Generování automatického dokončování", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "Ověřovací řetězec API pro AUTOMATIC1111", "AUTOMATIC1111 Base URL": "Základní URL pro AUTOMATIC1111", "AUTOMATIC1111 Base URL is required.": "Je vyžadována základní URL pro AUTOMATIC1111.", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "Seznam dostupných", "Available Tools": "Dostupné nástroje", "available users": "dostupní uživatelé", @@ -201,6 +204,7 @@ "before": "před", "Being lazy": "Být líný", "Beta": "Beta", + "Bing": "", "Bing Search V7 Endpoint": "Koncový bod Bing Search V7", "Bing Search V7 Subscription Key": "Klíč předplatného Bing Search V7", "Bio": "", @@ -209,7 +213,9 @@ "Bocha Search API Key": "API klíč pro Bocha Search", "Bold": "Tučně", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Zvýhodňování nebo penalizace specifických tokenů pro omezené odpovědi. Hodnoty odchylky budou omezeny v rozmezí -100 až 100 (včetně). (Výchozí: žádné)", + "Brave": "", "Brave Search API Key": "Klíč API pro Brave Search", + "Builtin Tools": "", "Bullet List": "Seznam s odrážkami", "Button ID": "ID tlačítka", "Button Label": "Popisek tlačítka", @@ -256,8 +262,10 @@ "Check for updates": "Zkontrolovat aktualizace", "Checking for updates...": "Kontrola aktualizací...", "Choose a model before saving...": "Před uložením vyberte model...", + "Chunk Min Size Target": "", "Chunk Overlap": "Překryv bloků", "Chunk Size": "Velikost bloku", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "Šifry", "Citation": "Citace", "Citations": "Citace", @@ -293,7 +301,6 @@ "Code Block": "Blok kódu", "Code Editor": "", "Code execution": "Spouštění kódu", - "Code Execution": "Spouštění kódu", "Code Execution Engine": "Jádro pro spouštění kódu", "Code Execution Timeout": "Časový limit pro spuštění kódu", "Code formatted successfully": "Kód byl úspěšně naformátován.", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "Pro přístup k webovému rozhraní kontaktujte administrátora.", "Content": "Obsah", "Content Extraction Engine": "Jádro pro extrakci obsahu", + "Content lengths (character counts only)": "", "Continue Response": "Pokračovat v odpovědi", "Continue with {{provider}}": "Pokračovat s {{provider}}", "Continue with Email": "Pokračovat s e-mailem", @@ -393,6 +401,7 @@ "Database": "Databáze", "Datalab Marker API": "Datalab Marker API", "DD/MM/YYYY": "DD.MM.RRRR", + "DDGS Backend": "", "December": "Prosinec", "Decrease UI Scale": "", "Deepgram": "Deepgram", @@ -474,6 +483,7 @@ "Dive into knowledge": "Ponořte se do znalostí", "Do not install functions from sources you do not fully trust.": "Neinstalujte funkce ze zdrojů, kterým plně nedůvěřujete.", "Do not install tools from sources you do not fully trust.": "Neinstalujte nástroje ze zdrojů, kterým plně nedůvěřujete.", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "Docling", "Docling Parameters": "", "Docling Server URL required.": "Je vyžadována URL adresa serveru Docling.", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "", "Document Intelligence Model": "", "Documentation": "Dokumentace", - "Documents": "Dokumenty", "does not make any external connections, and your data stays securely on your locally hosted server.": "nevytváří žádná externí připojení a vaše data zůstávají bezpečně na vašem lokálně hostovaném serveru.", "Domain Filter List": "Seznam pro filtrování domén", "don't fetch random pipelines from sources you don't trust.": "Nestahujte náhodné pipelines ze zdrojů, kterým nedůvěřujete.", @@ -493,11 +502,14 @@ "Done": "Hotovo", "Download": "Stáhnout", "Download & Delete": "Stáhnout a smazat", + "Download as JSON": "", "Download as SVG": "Stáhnout jako SVG", "Download canceled": "Stahování zrušeno", "Download Database": "Stáhnout databázi", + "Downloading stats...": "", "Draw": "Kreslit", "Drop any files here to upload": "Přetáhněte sem soubory pro nahrání", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "např. '30s','10m'. Platné časové jednotky jsou 's', 'm', 'h'.", "e.g. \"json\" or a JSON schema": "např. \"json\" nebo JSON schéma", "e.g. 60": "např. 60", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "Zadejte API klíč pro Bocha Search", "Enter Brave Search API Key": "Zadejte API klíč pro Brave Search", "Enter certificate path": "Zadejte cestu k certifikátu", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "Zadejte překryv bloků", "Enter Chunk Size": "Zadejte velikost bloku", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Zadejte páry \"token:hodnota_odchylky\" oddělené čárkou (příklad: 5432:100, 413:-100)", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "Zadejte URL pro externí webové vyhledávání", "Enter Firecrawl API Base URL": "Zadejte základní URL API pro Firecrawl", "Enter Firecrawl API Key": "Zadejte API klíč pro Firecrawl", + "Enter Firecrawl Timeout": "", "Enter folder name": "Zadejte název složky", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "Zadejte URL pro Github Raw", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "Zadejte barvu v hex formátu (např. #FF0000)", "Enter ID": "", "Enter Image Size (e.g. 512x512)": "Zadejte velikost obrázku (např. 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "Zadejte API klíč pro Jina", "Enter JSON config (e.g., {\"disable_links\": true})": "Zadejte JSON konfiguraci (např. {\"disable_links\": true})", "Enter Jupyter Password": "Zadejte heslo pro Jupyter", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "Zadejte API klíč pro Kagi Search", "Enter Key Behavior": "Zadejte chování klávesy", "Enter language codes": "Zadejte kódy jazyků", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "", "Enter Mistral API Key": "Zadejte API klíč pro Mistral", "Enter Model ID": "Zadejte ID modelu", @@ -736,6 +753,7 @@ "Failed to generate title": "Nepodařilo se vygenerovat název", "Failed to import models": "", "Failed to load chat preview": "Nepodařilo se načíst náhled konverzace", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "Nepodařilo se načíst obsah souboru.", "Failed to move chat": "", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "Funkce", "Features Permissions": "Oprávnění funkcí", "February": "Únor", + "Feedback": "", "Feedback deleted successfully": "", "Feedback Details": "Podrobnosti zpětné vazby", "Feedback History": "Historie zpětné vazby", - "Feedbacks": "Zpětné vazby", "Feel free to add specific details": "Neváhejte přidat konkrétní detaily.", "Female": "Žena", "File": "Soubor", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Detekován spoofing otisku prstu: Nelze použít iniciály jako avatar. Používá se výchozí profilový obrázek.", "Firecrawl API Base URL": "Základní URL API pro Firecrawl", "Firecrawl API Key": "API klíč pro Firecrawl", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "Plovoucí rychlé akce", "Focus Chat Input": "", "Folder": "Složka", "Folder Background Image": "Obrázek na pozadí složky", "Folder deleted successfully": "Složka byla úspěšně smazána", + "Folder Max File Count": "", "Folder Name": "Název složky", "Folder name cannot be empty.": "Název složky nesmí být prázdný.", "Folder name updated successfully": "Název složky byl úspěšně aktualizován.", @@ -826,7 +846,6 @@ "General": "Obecné", "Generate": "Generovat", "Generate an image": "Generovat obrázek", - "Generate Image": "Generovat obrázek", "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Generuji vyhledávací dotaz", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "Začněte s {{WEBUI_NAME}}", "Global": "Globální", "Good Response": "Dobrá odpověď", + "Google": "", "Google Drive": "Disk Google", "Google PSE API Key": "API klíč pro Google PSE", "Google PSE Engine Id": "ID jádra Google PSE", "Gravatar": "", "Grid": "", + "Grokipedia": "", "Group": "Skupina", "Group Channel": "", "Group created successfully": "Skupina byla úspěšně vytvořena", @@ -895,7 +916,6 @@ "Image Prompt Generation": "Generování instrukcí pro obrázek", "Image Prompt Generation Prompt": "Instrukce pro generování instrukcí pro obrázek", "Image Size": "", - "Images": "Obrázky", "Import": "Importovat", "Import Chats": "Importovat konverzace", "Import Config from JSON File": "Importovat konfiguraci ze souboru JSON", @@ -927,6 +947,7 @@ "Integration": "Integrace", "Integrations": "Integrace", "Interface": "Rozhraní", + "Interface Settings Access": "", "Invalid file content": "Neplatný obsah souboru", "Invalid file format.": "Neplatný formát souboru.", "Invalid JSON file": "Neplatný soubor JSON", @@ -940,6 +961,7 @@ "is typing...": "píše...", "Italic": "Kurzíva", "January": "Leden", + "Jina API Base URL": "", "Jina API Key": "API klíč pro Jina", "join our Discord for help.": "připojte se na náš Discord pro pomoc.", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "Ponechte prázdné pro zahrnutí všech modelů z koncového bodu \"{{url}}/api/tags\"", "Leave empty to include all models from \"{{url}}/models\" endpoint": "Ponechte prázdné pro zahrnutí všech modelů z koncového bodu \"{{url}}/models\"", "Leave empty to include all models or select specific models": "Ponechte prázdné pro zahrnutí všech modelů nebo vyberte konkrétní modely.", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "", "Leave empty to use the default prompt, or enter a custom prompt": "Ponechte prázdné pro použití výchozích instrukcí, nebo zadejte vlastní instrukce.", "Leave model field empty to use the default model.": "Ponechte pole modelu prázdné pro použití výchozího modelu.", @@ -1029,10 +1052,12 @@ "Manage your account information.": "Spravujte informace o svém účtu.", "March": "Březen", "Markdown": "Markdown", - "Markdown (Header)": "Markdown (nadpis)", + "Markdown Header Text Splitter": "", "Max Speakers": "Max. mluvčích", "Max Upload Count": "Maximální počet nahrání", "Max Upload Size": "Maximální velikost nahrávaných souborů", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Současně lze stahovat maximálně 3 modely. Zkuste to prosím později.", "May": "Květen", "MBR": "", @@ -1042,6 +1067,7 @@ "Member removed successfully": "", "Members": "", "Members added successfully": "", + "Memories": "", "Memories accessible by LLMs will be shown here.": "Zde se zobrazí vzpomínky přístupné pro LLM.", "Memory": "Paměť", "Memory added successfully": "Vzpomínka byla úspěšně přidána.", @@ -1051,6 +1077,7 @@ "Merge Responses": "Sloučit odpovědi", "Merged Response": "Sloučená odpověď", "Message": "", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "Pro použití této funkce musí být povoleno hodnocení zpráv.", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Zprávy, které odešlete po vytvoření odkazu, nebudou sdíleny. Uživatelé s URL adresou budou moci zobrazit sdílenou konverzaci.", "Microsoft OneDrive": "Microsoft OneDrive", @@ -1083,9 +1110,11 @@ "Model Name": "Název modelu", "Model name already exists, please choose a different one": "Název modelu již existuje, zvolte prosím jiný", "Model Name is required.": "Název modelu je vyžadován.", + "Model names and usage frequency": "", "Model not selected": "Není vybrán žádný model", "Model Params": "Parametry modelu", "Model Permissions": "Oprávnění modelu", + "Model responses or outputs": "", "Model unloaded successfully": "Model byl úspěšně uvolněn", "Model updated successfully": "Model byl úspěšně aktualizován", "Model(s) do not support file upload": "Vybraný model (modely) nepodporuje nahrávání souborů", @@ -1096,6 +1125,7 @@ "Models imported successfully": "", "Models Public Sharing": "Veřejné sdílení modelů", "Models Sharing": "", + "Mojeek": "", "Mojeek Search API Key": "API klíč pro Mojeek Search", "More": "Více", "More Concise": "Stručnější", @@ -1129,7 +1159,7 @@ "No conversation to save": "", "No distance available": "Vzdálenost není k dispozici", "No expiration can pose security risks.": "", - "No feedbacks found": "Nebyla nalezena žádná zpětná vazba", + "No feedback found": "", "No file selected": "Nebyl vybrán žádný soubor", "No files in this knowledge base.": "", "No functions found": "Žádné funkce nenalezeny", @@ -1144,6 +1174,7 @@ "No models selected": "Nebyly vybrány žádné modely", "No Notes": "Žádné poznámky", "No notes found": "Nebyly nalezeny žádné poznámky", + "No one": "", "No pinned messages": "", "No prompts found": "Nebyly nalezeny žádné instrukce", "No results": "Nebyly nalezeny žádné výsledky", @@ -1195,6 +1226,7 @@ "Only invited users can access": "", "Only markdown files are allowed": "Jsou povoleny pouze soubory markdown", "Only select users and groups with permission can access": "Přístup mají pouze vybraní uživatelé a skupiny s oprávněním", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Jejda! Zdá se, že URL adresa je neplatná. Zkontrolujte ji prosím a zkuste to znovu.", "Oops! There are files still uploading. Please wait for the upload to complete.": "Jejda! Některé soubory se stále nahrávají. Počkejte prosím na dokončení nahrávání.", "Oops! There was an error in the previous response.": "Jejda! V předchozí odpovědi došlo k chybě.", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI může používat nástroje poskytované jakýmkoli serverem OpenAPI.", "Open WebUI uses faster-whisper internally.": "Open WebUI interně používá faster-whisper.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI používá SpeechT5 a vektorizaci mluvčích CMU Arctic.", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Verze Open WebUI (v{{OPEN_WEBUI_VERSION}}) je nižší než požadovaná verze (v{{REQUIRED_VERSION}})", "OpenAI": "OpenAI", "OpenAI API": "OpenAI API", @@ -1235,6 +1268,8 @@ "page": "stránka", "Paginate": "Stránkovat", "Parameters": "Parametry", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "Heslo", "Passwords do not match.": "Hesla se neshodují.", "Paste Large Text as File": "Vložit velký text jako soubor", @@ -1260,7 +1295,6 @@ "Pipe": "Pipe", "Pipeline deleted successfully": "Pipeline byla úspěšně smazána", "Pipeline downloaded successfully": "Pipeline byla úspěšně stažena", - "Pipelines": "Pipeline", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines je zásuvný systém s možností libovolného spouštění kódu —", "Pipelines Not Detected": "Nebyla nalezena žádná pipeline", "Pipelines Valves": "Řízení toků pipeline", @@ -1500,6 +1534,7 @@ "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.": "Nastavuje ukončovací sekvence. Když je tento vzor nalezen, LLM přestane generovat text a vrátí výsledek. Lze nastavit více ukončovacích vzorů zadáním více samostatných parametrů stop v souboru modelfile.", "Setting": "", "Settings": "Nastavení", + "Settings Permissions": "", "Settings saved successfully!": "Nastavení byla úspěšně uložena!", "Share": "Sdílet", "Share Chat": "Sdílet konverzaci", @@ -1543,6 +1578,7 @@ "Speech recognition error: {{error}}": "Chyba rozpoznávání řeči: {{error}}", "Speech-to-Text": "Převod řeči na text", "Speech-to-Text Engine": "Jádro pro převod řeči na text", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "", "Start of the channel": "Začátek kanálu", "Start Tag": "", @@ -1553,6 +1589,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Zastavit", + "Stop Download": "", "Stop Generating": "", "Stop Sequence": "stop sequence", "Stream Chat Response": "stream chat response", @@ -1573,7 +1610,14 @@ "Support": "Podpora", "Support this plugin:": "Podpořte tento plugin:", "Supported MIME Types": "Podporované typy MIME", + "Sync": "", + "Sync Complete!": "", "Sync directory": "Synchronizovat adresář", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "Systém", "System Instructions": "Systémové instrukce", "System Prompt": "Systémové instrukce", @@ -1618,6 +1662,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "", "The width in pixels to compress images to. Leave empty for no compression.": "Šířka v pixelech, na kterou se mají obrázky komprimovat. Pro žádnou kompresi ponechte prázdné.", "Theme": "Motiv", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "Přemýšlím...", "This action cannot be undone. Do you wish to continue?": "Tuto akci nelze vrátit zpět. Přejete si pokračovat?", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "Tento kanál byl vytvořen {{createdAt}}. Toto je úplný začátek kanálu {{channelName}}.", @@ -1732,6 +1777,7 @@ "Upload Pipeline": "Nahrát pipeline", "Upload Progress": "Průběh nahrávání", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Průběh nahrávání: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", + "Uploaded files or images": "", "Uploading file...": "", "URL": "URL", "URL is required": "URL je vyžadována", @@ -1749,6 +1795,7 @@ "User Groups": "Skupiny uživatelů", "User location successfully retrieved.": "Poloha uživatele byla úspěšně získána.", "User menu": "Uživatelská nabídka", + "User ratings (thumbs up/down)": "", "User Webhooks": "Uživatelské webhooky", "Username": "Uživatelské jméno", "users": "", @@ -1798,15 +1845,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI bude odesílat požadavky na \"{{url}}/chat/completions\"", "What are you trying to achieve?": "Čeho se snažíte dosáhnout?", "What are you working on?": "Na čem pracujete?", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "Co je nového v", "What's on your mind?": "", "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.": "Když je povoleno, model bude odpovídat na každou zprávu v konverzaci v reálném čase a generovat odpověď, jakmile uživatel odešle zprávu. Tento režim je užitečný pro aplikace s živou konverzací, ale může ovlivnit výkon na pomalejším hardwaru.", "wherever you are": "ať jste kdekoli", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "Zda stránkovat výstup. Každá stránka bude oddělena vodorovnou čarou a číslem stránky. Výchozí hodnota je False.", "Whisper (Local)": "Whisper (lokální)", + "Who can share to this group": "", "Why?": "Proč?", "Widescreen Mode": "Širokoúhlý režim", "Width": "Šířka", + "Wikipedia": "", "Won": "Vyhrál", "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.": "Funguje společně s top-k. Vyšší hodnota (např. 0,95) povede k rozmanitějšímu textu, zatímco nižší hodnota (např. 0,5) vygeneruje soustředěnější a konzervativnější text.", "Workspace": "Pracovní prostor", @@ -1818,6 +1869,8 @@ "Yacy Instance URL": "URL instance Yacy", "Yacy Password": "Heslo pro Yacy", "Yacy Username": "Uživatelské jméno pro Yacy", + "Yahoo": "", + "Yandex": "", "Yesterday": "Včera", "Yesterday at {{LOCALIZED_TIME}}": "", "You": "Vy", @@ -1825,6 +1878,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Můžete konverzovat s maximálně {{maxCount}} souborem (soubory) najednou.", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Své interakce s LLM si můžete přizpůsobit přidáním vzpomínek pomocí tlačítka 'Spravovat' níže, čímž se stanou užitečnějšími a přizpůsobenými vám.", "You cannot upload an empty file.": "Nemůžete nahrát prázdný soubor.", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this thread.": "", "You do not have permission to upload files to this knowledge base.": "", @@ -1836,6 +1892,8 @@ "Your Account": "Váš účet", "Your account status is currently pending activation.": "Stav vašeho účtu aktuálně čeká na aktivaci.", "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.": "Celý váš příspěvek půjde přímo vývojáři pluginu; Open WebUI si nebere žádné procento. Zvolená platforma pro financování však může mít vlastní poplatky.", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "YouTube", "Youtube Language": "Jazyk YouTube", "Youtube Proxy URL": "Proxy URL pro YouTube" diff --git a/src/lib/i18n/locales/da-DK/translation.json b/src/lib/i18n/locales/da-DK/translation.json index 3c9dbf29b..3fc64726a 100644 --- a/src/lib/i18n/locales/da-DK/translation.json +++ b/src/lib/i18n/locales/da-DK/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "Ændringer af disse indstillinger har konsekvenser for alle brugere.", "admin": "administrator", "Admin": "Administrator", + "Admin Contact Email": "", "Admin Panel": "Administrationspanel", "Admin Settings": "Administrationsindstillinger", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administratorer har adgang til alle værktøjer altid; brugere skal tilføjes værktøjer pr. model i hvert workspace.", @@ -101,7 +102,6 @@ "Allow Continue Response": "Tillad fortsættelse af svar", "Allow Delete Messages": "Tillad sletning af beskeder", "Allow File Upload": "Tillad upload af fil", - "Allow Group Sharing": "Tillad gruppedeling", "Allow Multiple Models in Chat": "Tillad flere modeller i chats", "Allow non-local voices": "Tillad ikke-lokale stemmer", "Allow Rate Response": "Tillad vurdering af svar", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "og {{COUNT}} mere", "and create a new shared link.": "og lav et nyt link til deling", "Android": "Android", + "Anyone": "", "API Base URL": "API base URL", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "API base URL for Datalab Marker service. Standard: https://www.datalab.to/api/v1/marker", "API Key": "API nøgle", @@ -175,6 +176,7 @@ "Authenticate": "Autentificer", "Authentication": "Autentikation", "Auto": "Auto", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "Automatisk kopiering af svar til udklipsholder", "Auto-playback response": "Automatisk afspil svar", "Autocomplete Generation": "Genere automatisk fuldførsel", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "AUTOMATIC1111 Api Auth String", "AUTOMATIC1111 Base URL": "AUTOMATIC1111 base URL", "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 base URL er påkrævet.", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "Tilgængelige lister", "Available Tools": "Tilgængelige værktøj", "available users": "tilgængelige brugere", @@ -201,6 +204,7 @@ "before": "før", "Being lazy": "At være doven", "Beta": "Beta", + "Bing": "", "Bing Search V7 Endpoint": "Bing Search V7 Endpoint", "Bing Search V7 Subscription Key": "Bing Search V7 Subscription Key", "Bio": "Biografi", @@ -209,7 +213,9 @@ "Bocha Search API Key": "Bocha Search API Key", "Bold": "Fed", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Forøg eller reducer specifikke tokens for begrænsede svar. Bias-værdier vil blive begrænset til mellem -100 og 100 (inklusiv). (Standard: ingen)", + "Brave": "", "Brave Search API Key": "Brave Search API nøgle", + "Builtin Tools": "", "Bullet List": "Punktliste", "Button ID": "Knap ID", "Button Label": "Knap label", @@ -256,8 +262,10 @@ "Check for updates": "Søg efter opdateringer", "Checking for updates...": "Søger efter opdateringer", "Choose a model before saving...": "Vælg en model før du gemmer", + "Chunk Min Size Target": "", "Chunk Overlap": "Chunk overlap", "Chunk Size": "Chunk størrelse", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "Ciphers", "Citation": "Citat", "Citations": "Citater", @@ -293,7 +301,6 @@ "Code Block": "Kodeblok", "Code Editor": "Kodeeditor", "Code execution": "Kode kørsel", - "Code Execution": "Kode kørsel", "Code Execution Engine": "Kode kørsel engine", "Code Execution Timeout": "Kode kørsel timeout", "Code formatted successfully": "Kode formateret korrekt", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "Kontakt din administrator for adgang til WebUI", "Content": "Indhold", "Content Extraction Engine": "Content Extraction Motor", + "Content lengths (character counts only)": "", "Continue Response": "Fortsæt svar", "Continue with {{provider}}": "Fortsæt med {{provider}}", "Continue with Email": "Fortsæt med Email", @@ -393,6 +401,7 @@ "Database": "Database", "Datalab Marker API": "Datalab Marker API", "DD/MM/YYYY": "DD/MM/ÅÅÅÅ", + "DDGS Backend": "", "December": "december", "Decrease UI Scale": "Nedjuster UI-skalering", "Deepgram": "Deepgram", @@ -474,6 +483,7 @@ "Dive into knowledge": "Undersøg viden", "Do not install functions from sources you do not fully trust.": "Lad være med at installere funktioner fra kilder, som du ikke stoler på.", "Do not install tools from sources you do not fully trust.": "Lad være med at installere værktøjer fra kilder, som du ikke stoler på.", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "Docling", "Docling Parameters": "Docling parametre", "Docling Server URL required.": "Docling Server URL påkrævet.", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "Document Intelligence endpoint påkrævet", "Document Intelligence Model": "Document Intelligence model", "Documentation": "Dokumentation", - "Documents": "Dokumenter", "does not make any external connections, and your data stays securely on your locally hosted server.": "laver ikke eksterne kald, og din data bliver sikkert på din egen lokalt hostede server.", "Domain Filter List": "Domæne filterliste", "don't fetch random pipelines from sources you don't trust.": "Hent ikke tilfældige pipelines fra kilder, du ikke stoler på.", @@ -493,11 +502,14 @@ "Done": "Færdig", "Download": "Download", "Download & Delete": "Download og slet", + "Download as JSON": "", "Download as SVG": "Download som SVG", "Download canceled": "Download afbrudt", "Download Database": "Download database", + "Downloading stats...": "", "Draw": "Tegn", "Drop any files here to upload": "Drop nogen filer her for at uploade", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "f.eks. '30s', '10m'. Tilladte værdier er 's', 'm', 'h'.", "e.g. \"json\" or a JSON schema": "f.eks. \"json\" eller en JSON schema", "e.g. 60": "f.eks. 60", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "Indtast Bocha Search API nøgle", "Enter Brave Search API Key": "Indtast Brave Search API-nøgle", "Enter certificate path": "Indtast certifikatsti", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "Indtast overlapning af tekststykker", "Enter Chunk Size": "Indtast størrelse af tekststykker", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Indtast kommaseparerede \"token:bias_værdi\" par (eksempel: 5432:100, 413:-100)", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "Indtast External Web Search URL", "Enter Firecrawl API Base URL": "Indtast Firecrawl API base URL", "Enter Firecrawl API Key": "Indtast Firecrawl API nøgle", + "Enter Firecrawl Timeout": "", "Enter folder name": "Indtast mappenavn", "Enter function name filter list (e.g. func1, !func2)": "Indtast funktionsnavn filterliste (f.eks. func1, !func2)", "Enter Github Raw URL": "Indtast Github Raw URL", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "Indtast hex farve (f.eks. #FF0000)", "Enter ID": "Indtast ID", "Enter Image Size (e.g. 512x512)": "Indtast billedstørrelse (f.eks. 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "Indtast Jina API nøgle", "Enter JSON config (e.g., {\"disable_links\": true})": "Indtast JSON konfiguration (f.eks., {\"disable_links\": true})", "Enter Jupyter Password": "Indtast Jupyter password", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "Indtast Kagi Search API nøgle", "Enter Key Behavior": "Indtast taste opførsel", "Enter language codes": "Indtast sprogkoder", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "Indtast Mistral API base URL", "Enter Mistral API Key": "Indtast Mistral API nøgle", "Enter Model ID": "Indtast model-ID", @@ -736,6 +753,7 @@ "Failed to generate title": "Kunne ikke generere titel", "Failed to import models": "Kunne ikke importere modeller", "Failed to load chat preview": "Kunne ikke indlæse chat forhåndsvisning", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "Kunne ikke indlæse filindhold.", "Failed to move chat": "Kunne ikke flytte chat", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "Features", "Features Permissions": "Features tilladelser", "February": "Februar", + "Feedback": "", "Feedback deleted successfully": "Feedback slettet", "Feedback Details": "Feedback detaljer", "Feedback History": "Feedback historik", - "Feedbacks": "Feedback", "Feel free to add specific details": "Du er velkommen til at tilføje specifikke detaljer", "Female": "Kvinde", "File": "Fil", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Fingeraftryksspoofing registreret: Kan ikke bruge initialer som avatar. Bruger standard profilbillede.", "Firecrawl API Base URL": "Firecrawl API base URL", "Firecrawl API Key": "Firecrawl API nøgle", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "Flydende hurtig-handlinger", "Focus Chat Input": "Fokus chat-input", "Folder": "Mappe", "Folder Background Image": "Mappe baggrundsbillede", "Folder deleted successfully": "Mappe fjernet.", + "Folder Max File Count": "", "Folder Name": "Mappenavn", "Folder name cannot be empty.": "Mappenavn kan ikke være tom.", "Folder name updated successfully": "Mappenavn opdateret.", @@ -826,7 +846,6 @@ "General": "Generelt", "Generate": "Generer", "Generate an image": "Generer et billede", - "Generate Image": "Generer billede", "Generate Message Pair": "Generer besked par", "Generated Image": "Genereret billede", "Generating search query": "Genererer søgeforespørgsel", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "Kom i gang med {{WEBUI_NAME}}", "Global": "Global", "Good Response": "Godt svar", + "Google": "", "Google Drive": "Google Drive", "Google PSE API Key": "Google PSE API-nøgle", "Google PSE Engine Id": "Google PSE Engine-ID", "Gravatar": "Gravatar", "Grid": "", + "Grokipedia": "", "Group": "Gruppe", "Group Channel": "Gruppekanal", "Group created successfully": "Gruppe oprettet.", @@ -895,7 +916,6 @@ "Image Prompt Generation": "Billedpromptgenerering", "Image Prompt Generation Prompt": "Billedpromptgenerering prompt", "Image Size": "Billedstørrelse", - "Images": "Billeder", "Import": "Importer", "Import Chats": "Importer chats", "Import Config from JSON File": "Importer konfiguration fra JSON-fil", @@ -927,6 +947,7 @@ "Integration": "Integration", "Integrations": "Integrationer", "Interface": "Grænseflade", + "Interface Settings Access": "", "Invalid file content": "Ugyldigt filindhold", "Invalid file format.": "Ugyldigt filformat.", "Invalid JSON file": "Ugyldig JSON fil", @@ -940,6 +961,7 @@ "is typing...": "er i gang med at skrive...", "Italic": "Kursiv", "January": "Januar", + "Jina API Base URL": "", "Jina API Key": "Jina API-nøgle", "join our Discord for help.": "tilslut dig vores Discord for at få hjælp.", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "Lad stå tomt for at inkludere alle modeller fra \"{{url}}/api/tags\" endpoint", "Leave empty to include all models from \"{{url}}/models\" endpoint": "Lad stå tomt for at inkludere alle modeller fra \"{{url}}/models\" endpoint", "Leave empty to include all models or select specific models": "Lad stå tomt for at inkludere alle modeller eller vælg specifikke modeller", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "Lad stå tomt for at bruge standardmodel (voxtral-mini-latest).", "Leave empty to use the default prompt, or enter a custom prompt": "Lad stå tomt for at bruge standardprompten, eller indtast en brugerdefineret prompt", "Leave model field empty to use the default model.": "Lad modelfeltet stå tomt for at bruge standardmodellen.", @@ -1029,10 +1052,12 @@ "Manage your account information.": "Administrer dine brugerinformationer.", "March": "Marts", "Markdown": "Markdown", - "Markdown (Header)": "Markdown (Overskrift)", + "Markdown Header Text Splitter": "", "Max Speakers": "Max talere", "Max Upload Count": "Maks. uploadantal", "Max Upload Size": "Maks. uploadstørrelse", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Højst 3 modeller kan downloades samtidigt. Prøv igen senere.", "May": "Maj", "MBR": "MBR", @@ -1042,6 +1067,7 @@ "Member removed successfully": "Medlem fjernet", "Members": "Medlemmer", "Members added successfully": "Medlemmer tilføjet", + "Memories": "", "Memories accessible by LLMs will be shown here.": "Minder, der er tilgængelige for LLM'er, vises her.", "Memory": "Hukommelse", "Memory added successfully": "Hukommelse tilføjet.", @@ -1051,6 +1077,7 @@ "Merge Responses": "Flet svar", "Merged Response": "Sammensat svar", "Message": "Besked", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "Besked rating skal være aktiveret for at bruge denne funktion", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Beskeder, du sender efter at have oprettet dit link, deles ikke. Brugere med URL'en vil kunne se den delte chat.", "Microsoft OneDrive": "Microsoft OneDrive", @@ -1083,9 +1110,11 @@ "Model Name": "Modelnavn", "Model name already exists, please choose a different one": "Modelnavn findes allerede, vælg venligst et andet", "Model Name is required.": "Modelnavn er påkrævet.", + "Model names and usage frequency": "", "Model not selected": "Model ikke valgt", "Model Params": "Modelparametre", "Model Permissions": "Model tilladelser", + "Model responses or outputs": "", "Model unloaded successfully": "Model aflæst", "Model updated successfully": "Model opdateret.", "Model(s) do not support file upload": "Model(ler) understøtter ikke fil upload", @@ -1096,6 +1125,7 @@ "Models imported successfully": "Modeller importeret", "Models Public Sharing": "Modeller offentlig deling", "Models Sharing": "Modeldeling", + "Mojeek": "", "Mojeek Search API Key": "Mojeek Search API nøgle", "More": "Mere", "More Concise": "Mere kortfattet", @@ -1129,7 +1159,7 @@ "No conversation to save": "Ingen samtale at gemme", "No distance available": "Ingen afstand tilgængelig", "No expiration can pose security risks.": "Ingen udløbsdato kan udgøre en sikkerhedsrisiko.", - "No feedbacks found": "Ingen feedback fundet", + "No feedback found": "", "No file selected": "Ingen fil valgt", "No files in this knowledge base.": "", "No functions found": "Ingen funktioner fundet", @@ -1144,6 +1174,7 @@ "No models selected": "Ingen modeller valgt", "No Notes": "Ingen noter", "No notes found": "Ingen noter fundet", + "No one": "", "No pinned messages": "Ingen fastgjorte beskeder", "No prompts found": "Ingen prompts fundet", "No results": "Ingen resultater fundet", @@ -1195,6 +1226,7 @@ "Only invited users can access": "Kun inviterede brugere kan få adgang", "Only markdown files are allowed": "Kun markdown-filer er tilladt", "Only select users and groups with permission can access": "Kun valgte brugere og grupper med tilladelse kan tilgå", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Ups! URL'en ser ud til at være ugyldig. Tjek den igen, og prøv igen.", "Oops! There are files still uploading. Please wait for the upload to complete.": "Ups! Der er filer, der stadig uploades. Vent, til uploaden er færdig.", "Oops! There was an error in the previous response.": "Ups! Der var en fejl i det tidligere svar.", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI kan bruge værktøjer leveret af enhver OpenAPI server.", "Open WebUI uses faster-whisper internally.": "Open WebUI bruger faster-whisper internt.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI bruger SpeechT5 og CMU Arctic taler embeddings.", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Open WebUI-version (v{{OPEN_WEBUI_VERSION}}) er lavere end den krævede version (v{{REQUIRED_VERSION}})", "OpenAI": "OpenAI", "OpenAI API": "OpenAI API", @@ -1235,6 +1268,8 @@ "page": "side", "Paginate": "Paginering", "Parameters": "Parametre", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "Adgangskode", "Passwords do not match.": "Passwords stemmer ikke overens.", "Paste Large Text as File": "Indsæt store tekster som fil", @@ -1260,7 +1295,6 @@ "Pipe": "Pipe", "Pipeline deleted successfully": "Pipeline slettet.", "Pipeline downloaded successfully": "Pipeline downloadet.", - "Pipelines": "Pipelines", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines er et plugin-system med vilkårlig kodekørsel —", "Pipelines Not Detected": "Pipelines ikke registreret", "Pipelines Valves": "Pipelines-ventiler", @@ -1498,6 +1532,7 @@ "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.": "Indstiller stop-sekvenserne til brug. Når dette mønster stødes på, vil LLM'en stoppe med at generere tekst og returnere. Flere stop-mønstre kan indstilles ved at specificere flere separate stop-parametre i en modelfil.", "Setting": "Indstilling", "Settings": "Indstillinger", + "Settings Permissions": "", "Settings saved successfully!": "Indstillinger gemt!", "Share": "Del", "Share Chat": "Del chat", @@ -1541,6 +1576,7 @@ "Speech recognition error: {{error}}": "Talegenkendelsesfejl: {{error}}", "Speech-to-Text": "Tale-til-tekst", "Speech-to-Text Engine": "Tale-til-tekst-engine", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "Start en ny samtale", "Start of the channel": "Kanalens start", "Start Tag": "Start tag", @@ -1551,6 +1587,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "Trin", "Stop": "Stop", + "Stop Download": "", "Stop Generating": "Stop generering", "Stop Sequence": "Stopsekvens", "Stream Chat Response": "Stream chatsvar", @@ -1571,7 +1608,14 @@ "Support": "Support", "Support this plugin:": "Støt dette plugin:", "Supported MIME Types": "Understøttede MIME-typer", + "Sync": "", + "Sync Complete!": "", "Sync directory": "Synkroniser mappe", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "System", "System Instructions": "Systeminstruktioner", "System Prompt": "Systemprompt", @@ -1616,6 +1660,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "Vægten af BM25 Hybrid Search. 0 er mere semantisk, 1 mere leksikalt. Standard er 0.5", "The width in pixels to compress images to. Leave empty for no compression.": "Bredden i pixels at komprimere billeder til. Lad være tom for ingen komprimering.", "Theme": "Tema", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "Tænker...", "This action cannot be undone. Do you wish to continue?": "Denne handling kan ikke fortrydes. Vil du fortsætte?", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "Denne kanal blev oprettet den {{createdAt}}. Dette er det helt første i kanalen {{channelName}}.", @@ -1730,6 +1775,7 @@ "Upload Pipeline": "Upload pipeline", "Upload Progress": "Uploadfremdrift", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Uploadfremdrift: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", + "Uploaded files or images": "", "Uploading file...": "Uploader fil...", "URL": "URL", "URL is required": "URL er påkrævet", @@ -1747,6 +1793,7 @@ "User Groups": "Brugergrupper", "User location successfully retrieved.": "Brugerplacering hentet.", "User menu": "Brugermenu", + "User ratings (thumbs up/down)": "", "User Webhooks": "Bruger Webhooks", "Username": "Brugernavn", "users": "brugere", @@ -1796,15 +1843,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI vil lave forespørgsler til \"{{url}}/chat/completions\"", "What are you trying to achieve?": "Hvad prøver du at opnå?", "What are you working on?": "Hvad arbejder du på?", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "Nyheder i", "What's on your mind?": "Hvad har du på hjertet?", "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.": "Når aktiveret, vil modellen reagere på hver chatbesked i realtid og generere et svar, så snart brugeren sender en besked. Denne tilstand er nyttig til live chat-applikationer, men kan påvirke ydeevnen på langsommere hardware.", "wherever you are": "hvad end du er", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "Om outputtet skal pagineres. Hver side vil være adskilt af en vandret streg og sidetal. Standard er False.", "Whisper (Local)": "Whisper (lokal)", + "Who can share to this group": "", "Why?": "Hvorfor?", "Widescreen Mode": "Widescreen-tilstand", "Width": "Bredde", + "Wikipedia": "", "Won": "Vandt", "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.": "Fungerer sammen med top-k. En højere værdi (f.eks. 0,95) vil føre til mere forskelligartet tekst, mens en lavere værdi (f.eks. 0,5) vil generere mere fokuseret og konservativ tekst.", "Workspace": "Arbejdsområde", @@ -1816,6 +1867,8 @@ "Yacy Instance URL": "Yacy instans URL", "Yacy Password": "Yacy adgangskode", "Yacy Username": "Yacy brugernavn", + "Yahoo": "", + "Yandex": "", "Yesterday": "I går", "Yesterday at {{LOCALIZED_TIME}}": "I går klokken {{LOCALIZED_TIME}}", "You": "Du", @@ -1823,6 +1876,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Du kan kun chatte med maksimalt {{maxCount}} fil(er) ad gangen.", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Du kan personliggøre dine interaktioner med LLM'er ved at tilføje minder via knappen 'Administrer' nedenfor, hvilket gør dem mere nyttige og skræddersyet til dig.", "You cannot upload an empty file.": "Du kan ikke uploade en tom fil", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "Du har ikke tilladelse til at sende beskeder i denne kanal.", "You do not have permission to send messages in this thread.": "Du har ikke tilladelse til at sende beskeder i denne tråd.", "You do not have permission to upload files to this knowledge base.": "", @@ -1834,6 +1890,8 @@ "Your Account": "Din bruger", "Your account status is currently pending activation.": "Din kontostatus afventer i øjeblikket aktivering.", "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.": "Hele dit bidrag går direkte til plugin-udvikleren; Open WebUI tager ikke nogen procentdel. Den valgte finansieringsplatform kan dog have sine egne gebyrer.", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "Youtube", "Youtube Language": "Youtube sprog", "Youtube Proxy URL": "Youtube Proxy URL" diff --git a/src/lib/i18n/locales/de-DE/translation.json b/src/lib/i18n/locales/de-DE/translation.json index a7eed9e74..146c1ebcb 100644 --- a/src/lib/i18n/locales/de-DE/translation.json +++ b/src/lib/i18n/locales/de-DE/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "Das Anpassen dieser Einstellungen wendet Änderungen universell auf alle Benutzer an.", "admin": "Administrator", "Admin": "Administrator", + "Admin Contact Email": "", "Admin Panel": "Admin-Bereich", "Admin Settings": "Admin-Einstellungen", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administratoren haben jederzeit Zugriff auf alle Werkzeuge; Benutzern müssen Werkzeuge pro Modell im Arbeitsbereich zugewiesen werden.", @@ -101,7 +102,6 @@ "Allow Continue Response": "Fortsetzung der Antwort erlauben", "Allow Delete Messages": "Löschen von Nachrichten erlauben", "Allow File Upload": "Dateiupload erlauben", - "Allow Group Sharing": "Teilen in Gruppe erlauben", "Allow Multiple Models in Chat": "Mehrere Modelle im Chat erlauben", "Allow non-local voices": "Nicht-lokale Stimmen erlauben", "Allow Rate Response": "Antwortbewertung erlauben", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "und {{COUNT}} weitere", "and create a new shared link.": "und erstellen Sie einen neuen Freigabe-Link.", "Android": "Android", + "Anyone": "", "API Base URL": "API-Basis-URL", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "API-Basis-URL für den Datalab Marker-Dienst. Standardwert: https://www.datalab.to/api/v1/marker", "API Key": "API-Schlüssel", @@ -175,6 +176,7 @@ "Authenticate": "Authentifizieren", "Authentication": "Authentifizierung", "Auto": "Automatisch", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "Antwort autom. in Zwischenablage kopieren", "Auto-playback response": "Antwort automatisch abspielen", "Autocomplete Generation": "Autovervollständigung", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "AUTOMATIC1111 API-Auth-String", "AUTOMATIC1111 Base URL": "AUTOMATIC1111 Basis-URL", "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Basis-URL ist erforderlich.", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "Verfügbare Liste", "Available Tools": "Verfügbare Werkzeuge", "available users": "verfügbare Benutzer", @@ -201,6 +204,7 @@ "before": "zuvor", "Being lazy": "Faulheit", "Beta": "Beta", + "Bing": "", "Bing Search V7 Endpoint": "Bing Search V7 Endpunkt", "Bing Search V7 Subscription Key": "Bing Search V7 Abonnement-Schlüssel", "Bio": "Biografie", @@ -209,7 +213,9 @@ "Bocha Search API Key": "Bocha Search API-Schlüssel", "Bold": "Fett", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Bevorzugung oder Benachteiligung spezifischer Token für die Antwortsteuerung. Bias-Werte werden zwischen -100 und 100 (inklusive) begrenzt. (Standard: keine)", + "Brave": "", "Brave Search API Key": "Brave Search API-Schlüssel", + "Builtin Tools": "", "Bullet List": "Aufzählungsliste", "Button ID": "Schaltflächen-ID", "Button Label": "Schaltflächenbeschriftung", @@ -256,8 +262,10 @@ "Check for updates": "Nach Updates suchen", "Checking for updates...": "Suche nach Updates...", "Choose a model before saving...": "Wählen Sie vor dem Speichern ein Modell...", + "Chunk Min Size Target": "", "Chunk Overlap": "Chunk-Überlappung", "Chunk Size": "Chunk-Größe", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "Chiffren", "Citation": "Zitat", "Citations": "Zitate", @@ -293,7 +301,6 @@ "Code Block": "Code-Block", "Code Editor": "Code-Editor", "Code execution": "Codeausführung", - "Code Execution": "Codeausführung", "Code Execution Engine": "Engine zur Codeausführung", "Code Execution Timeout": "Zeitlimit für Codeausführung", "Code formatted successfully": "Code erfolgreich formatiert", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "Kontaktieren Sie den Administrator für WebUI-Zugriff", "Content": "Inhalt", "Content Extraction Engine": "Engine zur Inhaltsextraktion", + "Content lengths (character counts only)": "", "Continue Response": "Antwort fortsetzen", "Continue with {{provider}}": "Mit {{provider}} fortfahren", "Continue with Email": "Mit E-Mail fortfahren", @@ -393,6 +401,7 @@ "Database": "Datenbank", "Datalab Marker API": "Datalab Marker API", "DD/MM/YYYY": "TT.MM.JJJJ", + "DDGS Backend": "", "December": "Dezember", "Decrease UI Scale": "UI-Skalierung verringern", "Deepgram": "Deepgram", @@ -474,6 +483,7 @@ "Dive into knowledge": "In Wissen eintauchen", "Do not install functions from sources you do not fully trust.": "Installieren Sie keine Funktionen aus nicht vertrauenswürdigen Quellen.", "Do not install tools from sources you do not fully trust.": "Installieren Sie keine Werkzeuge aus nicht vertrauenswürdigen Quellen.", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "Docling", "Docling Parameters": "Docling-Parameter", "Docling Server URL required.": "Docling Server-URL erforderlich.", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "Dokumentenintelligenz-Endpunkt erforderlich.", "Document Intelligence Model": "Dokumentenintelligenz-Modell", "Documentation": "Dokumentation", - "Documents": "Dokumente", "does not make any external connections, and your data stays securely on your locally hosted server.": "stellt keine externen Verbindungen her; Ihre Daten bleiben sicher auf Ihrem lokalen Server.", "Domain Filter List": "Domain-Filterliste", "don't fetch random pipelines from sources you don't trust.": "Laden Sie keine Pipelines aus Quellen, denen Sie nicht vertrauen.", @@ -493,11 +502,14 @@ "Done": "Fertig", "Download": "Herunterladen", "Download & Delete": "Herunterladen & Löschen", + "Download as JSON": "", "Download as SVG": "Als SVG herunterladen", "Download canceled": "Download abgebrochen", "Download Database": "Datenbank herunterladen", + "Downloading stats...": "", "Draw": "Zeichnen", "Drop any files here to upload": "Dateien zum Hochladen hier ablegen", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "z. B. '30s', '10m'. Gültig: 's', 'm', 'h'.", "e.g. \"json\" or a JSON schema": "z. B. \"json\" oder ein JSON-Schema", "e.g. 60": "z. B. 60", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "Bocha Search API-Schlüssel eingeben", "Enter Brave Search API Key": "Brave Search API-Schlüssel eingeben", "Enter certificate path": "Zertifikatpfad eingeben", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "Chunk-Überlappung eingeben", "Enter Chunk Size": "Chunk-Größe eingeben", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Kommagetrennte \"token:bias_value\"-Paare eingeben (Bsp: 5432:100, 413:-100)", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "URL für ext. Websuche", "Enter Firecrawl API Base URL": "Firecrawl API Basis-URL eingeben", "Enter Firecrawl API Key": "Firecrawl API-Schlüssel eingeben", + "Enter Firecrawl Timeout": "", "Enter folder name": "Ordnername eingeben", "Enter function name filter list (e.g. func1, !func2)": "Funktionsnamen-Filterliste eingeben (z. B. func1, !func2)", "Enter Github Raw URL": "Github Raw URL eingeben", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "Hex-Farbe eingeben (z. B. #FF0000)", "Enter ID": "ID eingeben", "Enter Image Size (e.g. 512x512)": "Bildgröße eingeben (z. B. 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "Jina API-Schlüssel eingeben", "Enter JSON config (e.g., {\"disable_links\": true})": "JSON-Konfig eingeben (z. B. {\"disable_links\": true})", "Enter Jupyter Password": "Jupyter-Passwort eingeben", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "Kagi Search API-Schlüssel eingeben", "Enter Key Behavior": "Eingabetasten-Verhalten", "Enter language codes": "Sprachcodes eingeben", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "Mistral API Basis-URL eingeben", "Enter Mistral API Key": "Mistral API-Schlüssel eingeben", "Enter Model ID": "Modell-ID eingeben", @@ -736,6 +753,7 @@ "Failed to generate title": "Titel konnte nicht generiert werden", "Failed to import models": "Modelle konnten nicht importiert werden", "Failed to load chat preview": "Chat-Vorschau konnte nicht geladen werden", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "Dateiinhalt konnte nicht geladen werden.", "Failed to move chat": "Chat konnte nicht verschoben werden", "Failed to process URL: {{url}}": "{{url}} konnte nicht verarbeitet werden", @@ -752,10 +770,10 @@ "Features": "Funktionen", "Features Permissions": "Funktionsberechtigungen", "February": "Februar", + "Feedback": "", "Feedback deleted successfully": "Feedback erfolgreich gelöscht", "Feedback Details": "Feedback-Details", "Feedback History": "Feedback-Verlauf", - "Feedbacks": "Feedbacks", "Feel free to add specific details": "Fügen Sie gerne Details hinzu", "Female": "Weiblich", "File": "Datei", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Fingerabdruck-Spoofing erkannt: Initialen können nicht verwendet werden. Nutze Standard-Profilbild.", "Firecrawl API Base URL": "Firecrawl API Basis-URL", "Firecrawl API Key": "Firecrawl API-Schlüssel", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "Schwebende Schnellaktionen", "Focus Chat Input": "Chat-Eingabe fokussieren", "Folder": "Ordner", "Folder Background Image": "Ordner-Hintergrundbild", "Folder deleted successfully": "Ordner erfolgreich gelöscht", + "Folder Max File Count": "", "Folder Name": "Ordnername", "Folder name cannot be empty.": "Ordnername darf nicht leer sein.", "Folder name updated successfully": "Ordnername erfolgreich aktualisiert", @@ -826,7 +846,6 @@ "General": "Allgemein", "Generate": "Generieren", "Generate an image": "Ein Bild generieren", - "Generate Image": "Bild generieren", "Generate Message Pair": "Nachrichtenpaar generieren", "Generated Image": "Generiertes Bild", "Generating search query": "Generiere Suchanfrage", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "Loslegen mit {{WEBUI_NAME}}", "Global": "Global", "Good Response": "Gute Antwort", + "Google": "", "Google Drive": "Google Drive", "Google PSE API Key": "Google PSE API-Schlüssel", "Google PSE Engine Id": "Google PSE Engine-ID", "Gravatar": "Gravatar", "Grid": "Raster", + "Grokipedia": "", "Group": "Gruppe", "Group Channel": "Gruppenkanal", "Group created successfully": "Gruppe erfolgreich erstellt", @@ -895,7 +916,6 @@ "Image Prompt Generation": "Bild-Prompt-Generierung", "Image Prompt Generation Prompt": "Prompt für Bild-Prompt-Generierung", "Image Size": "Bildgröße", - "Images": "Bilder", "Import": "Importieren", "Import Chats": "Chats importieren", "Import Config from JSON File": "Konfiguration aus JSON importieren", @@ -927,6 +947,7 @@ "Integration": "Integration", "Integrations": "Integrationen", "Interface": "Benutzeroberfläche", + "Interface Settings Access": "", "Invalid file content": "Ungültiger Dateiinhalt", "Invalid file format.": "Ungültiges Dateiformat.", "Invalid JSON file": "Ungültige JSON-Datei", @@ -940,6 +961,7 @@ "is typing...": "schreibt ...", "Italic": "Kursiv", "January": "Januar", + "Jina API Base URL": "", "Jina API Key": "Jina-API-Schlüssel", "join our Discord for help.": "Treten Sie unserem Discord bei, um Hilfe zu erhalten.", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "Leer lassen, um alle Modelle vom Endpunkt \"{{url}}/api/tags\" einzuschließen", "Leave empty to include all models from \"{{url}}/models\" endpoint": "Leer lassen, um alle Modelle vom Endpunkt \"{{url}}/models\" einzuschließen", "Leave empty to include all models or select specific models": "Leer lassen, um alle Modelle einzuschließen oder spezifische Modelle auszuwählen", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "Leer lassen, um das Standardmodell zu nutzen (voxtral-mini-latest).", "Leave empty to use the default prompt, or enter a custom prompt": "Leer lassen, um den Standard-Prompt zu verwenden, oder geben Sie einen eigenen Prompt ein", "Leave model field empty to use the default model.": "Leer lassen, um das Standardmodell zu verwenden.", @@ -1029,10 +1052,12 @@ "Manage your account information.": "Verwalten Sie Ihre Kontoinformationen.", "March": "März", "Markdown": "Markdown", - "Markdown (Header)": "Markdown (Überschrift)", + "Markdown Header Text Splitter": "", "Max Speakers": "Max. Sprecher", "Max Upload Count": "Max. Anzahl Uploads", "Max Upload Size": "Max. Uploadgröße", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Es können maximal 3 Modelle gleichzeitig heruntergeladen werden. Bitte versuchen Sie es später erneut.", "May": "Mai", "MBR": "MBR", @@ -1042,6 +1067,7 @@ "Member removed successfully": "Mitglied erfolgreich entfernt", "Members": "Mitglieder", "Members added successfully": "Mitglieder erfolgreich hinzugefügt", + "Memories": "", "Memories accessible by LLMs will be shown here.": "Erinnerungen, auf die LLMs zugreifen können, werden hier angezeigt.", "Memory": "Erinnerungen", "Memory added successfully": "Erinnerung erfolgreich hinzugefügt", @@ -1051,6 +1077,7 @@ "Merge Responses": "Antworten zusammenführen", "Merged Response": "Zusammengeführte Antwort", "Message": "Nachricht", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "Nachrichtenbewertung muss aktiviert sein, um diese Funktion zu nutzen", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Nachrichten, die Sie nach dem Erstellen des Links senden, werden nicht geteilt. Benutzer mit der URL können nur den bis dahin geteilten Chat sehen.", "Microsoft OneDrive": "Microsoft OneDrive", @@ -1083,9 +1110,11 @@ "Model Name": "Modellname", "Model name already exists, please choose a different one": "Modellname existiert bereits, bitte wählen Sie einen anderen", "Model Name is required.": "Modellname ist erforderlich.", + "Model names and usage frequency": "", "Model not selected": "Kein Modell ausgewählt", "Model Params": "Modell-Parameter", "Model Permissions": "Modellberechtigungen", + "Model responses or outputs": "", "Model unloaded successfully": "Modell erfolgreich entladen", "Model updated successfully": "Modell erfolgreich aktualisiert", "Model(s) do not support file upload": "Modell(e) unterstützen keinen Dateiupload", @@ -1096,6 +1125,7 @@ "Models imported successfully": "Modelle erfolgreich importiert", "Models Public Sharing": "Öffentliche Freigabe von Modellen", "Models Sharing": "Modelle teilen", + "Mojeek": "", "Mojeek Search API Key": "Mojeek Search API-Schlüssel", "More": "Mehr", "More Concise": "Kürzer", @@ -1129,7 +1159,7 @@ "No conversation to save": "Keine Unterhaltung zum Speichern vorhanden", "No distance available": "Keine Distanz verfügbar", "No expiration can pose security risks.": "Ein fehlendes Ablaufdatum kann Sicherheitsrisiken bergen.", - "No feedbacks found": "Kein Feedback gefunden", + "No feedback found": "", "No file selected": "Keine Datei ausgewählt", "No files in this knowledge base.": "Keine Dateien in diesem Wissensspeicher", "No functions found": "Keine Funktionen gefunden", @@ -1144,6 +1174,7 @@ "No models selected": "Keine Modelle ausgewählt", "No Notes": "Keine Notizen", "No notes found": "Keine Notizen gefunden", + "No one": "", "No pinned messages": "Keine angehefteten Nachrichten", "No prompts found": "Keine Prompts gefunden", "No results": "Keine Ergebnisse", @@ -1195,6 +1226,7 @@ "Only invited users can access": "Nur eingeladene Benutzer haben Zugriff", "Only markdown files are allowed": "Nur Markdown-Dateien sind erlaubt", "Only select users and groups with permission can access": "Nur ausgewählte Benutzer und Gruppen mit Berechtigung haben Zugriff", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Ups! Die URL scheint ungültig zu sein. Bitte überprüfen Sie diese und versuchen Sie es erneut.", "Oops! There are files still uploading. Please wait for the upload to complete.": "Ups! Es werden noch Dateien hochgeladen. Bitte warten Sie, bis der Upload abgeschlossen ist.", "Oops! There was an error in the previous response.": "Ups! Es gab einen Fehler in der vorherigen Antwort.", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI kann Werkzeuge verwenden, die von jedem OpenAPI-Server bereitgestellt werden.", "Open WebUI uses faster-whisper internally.": "Open WebUI verwendet intern faster-whisper.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI verwendet SpeechT5 und CMU Arctic Speaker-Embeddings.", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Die installierte Open-WebUI-Version (v{{OPEN_WEBUI_VERSION}}) ist niedriger als die erforderliche Version (v{{REQUIRED_VERSION}})", "OpenAI": "OpenAI", "OpenAI API": "OpenAI-API", @@ -1235,6 +1268,8 @@ "page": "Seite", "Paginate": "Paginieren", "Parameters": "Parameter", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "Passwort", "Passwords do not match.": "Die Passwörter stimmen nicht überein.", "Paste Large Text as File": "Großen Text als Datei einfügen", @@ -1260,7 +1295,6 @@ "Pipe": "Pipe", "Pipeline deleted successfully": "Pipeline erfolgreich gelöscht", "Pipeline downloaded successfully": "Pipeline erfolgreich heruntergeladen", - "Pipelines": "Pipelines", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines sind ein Plugin-System mit beliebiger Codeausführung —", "Pipelines Not Detected": "Keine Pipelines erkannt", "Pipelines Valves": "Pipeline-Valves", @@ -1498,6 +1532,7 @@ "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.": "Legt die zu verwendenden Stoppsequenzen fest. Wenn dieses Muster erkannt wird, stoppt das LLM die Textgenerierung. Mehrere Stoppmuster können durch separate Stopp-Parameter in einer Modelldatei angegeben werden.", "Setting": "Einstellung", "Settings": "Einstellungen", + "Settings Permissions": "", "Settings saved successfully!": "Einstellungen erfolgreich gespeichert!", "Share": "Teilen", "Share Chat": "Chat teilen", @@ -1541,6 +1576,7 @@ "Speech recognition error: {{error}}": "Spracherkennungsfehler: {{error}}", "Speech-to-Text": "Sprache-zu-Text", "Speech-to-Text Engine": "Sprache-zu-Text-Engine", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "Neue Unterhaltung beginnen", "Start of the channel": "Beginn des Kanals", "Start Tag": "Start-Tag", @@ -1551,6 +1587,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "Schritte", "Stop": "Stopp", + "Stop Download": "", "Stop Generating": "Generierung stoppen", "Stop Sequence": "Stoppsequenz", "Stream Chat Response": "Chat-Antwort streamen", @@ -1571,7 +1608,14 @@ "Support": "Unterstützung", "Support this plugin:": "Unterstützen Sie dieses Plugin:", "Supported MIME Types": "Unterstützte MIME-Typen", + "Sync": "", + "Sync Complete!": "", "Sync directory": "Verzeichnis synchronisieren", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "System", "System Instructions": "Systemanweisungen", "System Prompt": "System-Prompt", @@ -1616,6 +1660,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "Die Gewichtung der BM25-Hybridsuche. 0 ist semantischer, 1 ist lexikalischer. Standard ist 0.5.", "The width in pixels to compress images to. Leave empty for no compression.": "Die Breite in Pixeln, auf die Bilder komprimiert werden sollen. Leer lassen für keine Kompression.", "Theme": "Design", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "Denke nach...", "This action cannot be undone. Do you wish to continue?": "Diese Aktion kann nicht rückgängig gemacht werden. Möchten Sie fortfahren?", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "Dieser Kanal wurde am {{createdAt}} erstellt. Dies ist der Anfang des Kanals {{channelName}}.", @@ -1730,6 +1775,7 @@ "Upload Pipeline": "Pipeline hochladen", "Upload Progress": "Upload-Fortschritt", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Fortschritt: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", + "Uploaded files or images": "", "Uploading file...": "Datei wird hochgeladen...", "URL": "URL", "URL is required": "URL ist erforderlich", @@ -1747,6 +1793,7 @@ "User Groups": "Benutzergruppen", "User location successfully retrieved.": "Benutzerstandort erfolgreich abgerufen.", "User menu": "Benutzermenü", + "User ratings (thumbs up/down)": "", "User Webhooks": "Benutzer-Webhooks", "Username": "Benutzername", "users": "Benutzer", @@ -1796,15 +1843,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI wird Anfragen an \"{{url}}/chat/completions\" senden", "What are you trying to achieve?": "Was möchten Sie erreichen?", "What are you working on?": "Woran arbeiten Sie?", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "Neuigkeiten in", "What's on your mind?": "Was beschäftigt Sie?", "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.": "Wenn aktiviert, antwortet das Modell in Echtzeit auf jede Chat-Nachricht. Dieser Modus ist nützlich für Live-Chats, kann jedoch die Leistung auf langsamerer Hardware beeinträchtigen.", "wherever you are": "wo immer Sie sind", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "Ob die Ausgabe paginiert werden soll. Jede Seite wird durch eine horizontale Linie und Seitennummer getrennt. Standard ist False.", "Whisper (Local)": "Whisper (Lokal)", + "Who can share to this group": "", "Why?": "Warum?", "Widescreen Mode": "Breitbildmodus", "Width": "Breite", + "Wikipedia": "", "Won": "Gewonnen", "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.": "Funktioniert zusammen mit Top-K. Ein höherer Wert (z. B. 0.95) führt zu vielfältigerem Text, während ein niedrigerer Wert (z. B. 0.5) fokussierteren und konservativeren Text erzeugt.", "Workspace": "Arbeitsbereich", @@ -1816,6 +1867,8 @@ "Yacy Instance URL": "Yacy-Instanz-URL", "Yacy Password": "Yacy-Passwort", "Yacy Username": "Yacy-Benutzername", + "Yahoo": "", + "Yandex": "", "Yesterday": "Gestern", "Yesterday at {{LOCALIZED_TIME}}": "Gestern um {{LOCALIZED_TIME}}", "You": "Du", @@ -1823,6 +1876,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Sie können mit maximal {{maxCount}} Datei(en) gleichzeitig chatten.", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Sie können Interaktionen mit LLMs personalisieren, indem Sie über die Schaltfläche \"Verwalten\" Erinnerungen hinzufügen.", "You cannot upload an empty file.": "Sie können keine leere Datei hochladen.", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "Sie haben keine Berechtigung, Nachrichten in diesem Kanal zu senden.", "You do not have permission to send messages in this thread.": "Sie haben keine Berechtigung, Nachrichten in diesem Thread zu senden.", "You do not have permission to upload files to this knowledge base.": "Sie haben keine Berechtigung, Dateien in diese Wissensspeicher hochzuladen.", @@ -1834,6 +1890,8 @@ "Your Account": "Ihr Konto", "Your account status is currently pending activation.": "Ihr Kontostatus wartet derzeit auf Aktivierung.", "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.": "Ihr gesamter Beitrag geht direkt an den Plugin-Entwickler; Open WebUI behält keinen Anteil ein. Die gewählte Plattform kann jedoch eigene Gebühren erheben.", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "YouTube", "Youtube Language": "YouTube-Sprache", "Youtube Proxy URL": "YouTube-Proxy-URL" diff --git a/src/lib/i18n/locales/dg-DG/translation.json b/src/lib/i18n/locales/dg-DG/translation.json index 35979c1b0..b937b2dac 100644 --- a/src/lib/i18n/locales/dg-DG/translation.json +++ b/src/lib/i18n/locales/dg-DG/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "Adjusting these settings will apply changes to all users. Such universal, very wow.", "admin": "admin", "Admin": "", + "Admin Contact Email": "", "Admin Panel": "Admin Panel", "Admin Settings": "Admin Settings", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "", @@ -101,7 +102,6 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "", - "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "", "Allow Rate Response": "", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "", "and create a new shared link.": "", "Android": "", + "Anyone": "", "API Base URL": "API Base URL", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "", "API Key": "API Key", @@ -175,6 +176,7 @@ "Authenticate": "", "Authentication": "", "Auto": "", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "Copy Bark Auto Bark", "Auto-playback response": "Auto-playback response", "Autocomplete Generation": "", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "", "AUTOMATIC1111 Base URL": "AUTOMATIC1111 Base URL", "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Base URL is required.", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "", "Available Tools": "", "available users": "such available users", @@ -201,6 +204,7 @@ "before": "", "Being lazy": "", "Beta": "", + "Bing": "", "Bing Search V7 Endpoint": "", "Bing Search V7 Subscription Key": "", "Bio": "", @@ -209,7 +213,9 @@ "Bocha Search API Key": "", "Bold": "", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "", + "Brave": "", "Brave Search API Key": "", + "Builtin Tools": "", "Bullet List": "", "Button ID": "", "Button Label": "", @@ -256,8 +262,10 @@ "Check for updates": "Check for updates", "Checking for updates...": "Checking for updates... Such anticipation...", "Choose a model before saving...": "Choose model before saving... Wow choose first.", + "Chunk Min Size Target": "", "Chunk Overlap": "Chunk Overlap", "Chunk Size": "Chunk Size", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "", "Citation": "", "Citations": "", @@ -293,7 +301,6 @@ "Code Block": "", "Code Editor": "", "Code execution": "", - "Code Execution": "", "Code Execution Engine": "", "Code Execution Timeout": "", "Code formatted successfully": "", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "", "Content": "Content", "Content Extraction Engine": "", + "Content lengths (character counts only)": "", "Continue Response": "", "Continue with {{provider}}": "", "Continue with Email": "", @@ -393,6 +401,7 @@ "Database": "Database", "Datalab Marker API": "", "DD/MM/YYYY": "", + "DDGS Backend": "", "December": "", "Decrease UI Scale": "", "Deepgram": "", @@ -474,6 +483,7 @@ "Dive into knowledge": "", "Do not install functions from sources you do not fully trust.": "", "Do not install tools from sources you do not fully trust.": "", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "", "Docling Parameters": "", "Docling Server URL required.": "", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "", "Document Intelligence Model": "", "Documentation": "", - "Documents": "Documents", "does not make any external connections, and your data stays securely on your locally hosted server.": "does not connect external, data stays safe locally.", "Domain Filter List": "", "don't fetch random pipelines from sources you don't trust.": "don't fetch random pipelines from sources you don't trust, much wow.", @@ -493,11 +502,14 @@ "Done": "", "Download": "", "Download & Delete": "Download & delete wow", + "Download as JSON": "", "Download as SVG": "", "Download canceled": "", "Download Database": "Download Database", + "Downloading stats...": "", "Draw": "", "Drop any files here to upload": "", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "e.g. '30s','10m'. Much time units are 's', 'm', 'h'.", "e.g. \"json\" or a JSON schema": "", "e.g. 60": "", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "", "Enter Brave Search API Key": "", "Enter certificate path": "", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "Enter Overlap of Chunks", "Enter Chunk Size": "Enter Size of Chunk", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "", "Enter Firecrawl API Base URL": "", "Enter Firecrawl API Key": "", + "Enter Firecrawl Timeout": "", "Enter folder name": "", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "", "Enter ID": "", "Enter Image Size (e.g. 512x512)": "Enter Size of Wow (e.g. 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "", "Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter Jupyter Password": "", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "", "Enter Key Behavior": "", "Enter language codes": "", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "", "Enter Mistral API Key": "", "Enter Model ID": "", @@ -736,6 +753,7 @@ "Failed to generate title": "", "Failed to import models": "", "Failed to load chat preview": "", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "", "Failed to move chat": "", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "", "Features Permissions": "", "February": "", + "Feedback": "", "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "", - "Feedbacks": "", "Feel free to add specific details": "", "Female": "", "File": "", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Fingerprint dogeing: Unable to use initials as avatar. Defaulting to default doge image.", "Firecrawl API Base URL": "", "Firecrawl API Key": "", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "", "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "", + "Folder Max File Count": "", "Folder Name": "", "Folder name cannot be empty.": "", "Folder name updated successfully": "", @@ -826,7 +846,6 @@ "General": "Woweral", "Generate": "", "Generate an image": "", - "Generate Image": "", "Generate Message Pair": "", "Generated Image": "", "Generating search query": "", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "", "Global": "", "Good Response": "", + "Google": "", "Google Drive": "", "Google PSE API Key": "", "Google PSE Engine Id": "", "Gravatar": "", "Grid": "", + "Grokipedia": "", "Group": "Much group", "Group Channel": "", "Group created successfully": "", @@ -895,7 +916,6 @@ "Image Prompt Generation": "", "Image Prompt Generation Prompt": "", "Image Size": "", - "Images": "Wowmages", "Import": "", "Import Chats": "Import Barks", "Import Config from JSON File": "", @@ -927,6 +947,7 @@ "Integration": "", "Integrations": "", "Interface": "Interface", + "Interface Settings Access": "", "Invalid file content": "", "Invalid file format.": "", "Invalid JSON file": "", @@ -940,6 +961,7 @@ "is typing...": "", "Italic": "", "January": "", + "Jina API Base URL": "", "Jina API Key": "", "join our Discord for help.": "join our Discord for help.", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "", "Leave empty to include all models or select specific models": "", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "", "Leave empty to use the default prompt, or enter a custom prompt": "", "Leave model field empty to use the default model.": "", @@ -1029,10 +1052,12 @@ "Manage your account information.": "", "March": "", "Markdown": "", - "Markdown (Header)": "", + "Markdown Header Text Splitter": "", "Max Speakers": "", "Max Upload Count": "", "Max Upload Size": "", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maximum of 3 models can be downloaded simultaneously. Please try again later.", "May": "", "MBR": "", @@ -1042,6 +1067,7 @@ "Member removed successfully": "", "Members": "", "Members added successfully": "", + "Memories": "", "Memories accessible by LLMs will be shown here.": "", "Memory": "", "Memory added successfully": "", @@ -1051,6 +1077,7 @@ "Merge Responses": "", "Merged Response": "", "Message": "", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "", "Microsoft OneDrive": "", @@ -1083,9 +1110,11 @@ "Model Name": "", "Model name already exists, please choose a different one": "", "Model Name is required.": "", + "Model names and usage frequency": "", "Model not selected": "Model not selected", "Model Params": "", "Model Permissions": "", + "Model responses or outputs": "", "Model unloaded successfully": "", "Model updated successfully": "", "Model(s) do not support file upload": "", @@ -1096,6 +1125,7 @@ "Models imported successfully": "", "Models Public Sharing": "", "Models Sharing": "", + "Mojeek": "", "Mojeek Search API Key": "", "More": "", "More Concise": "", @@ -1129,7 +1159,7 @@ "No conversation to save": "", "No distance available": "", "No expiration can pose security risks.": "", - "No feedbacks found": "", + "No feedback found": "", "No file selected": "", "No files in this knowledge base.": "", "No functions found": "", @@ -1144,6 +1174,7 @@ "No models selected": "", "No Notes": "", "No notes found": "", + "No one": "", "No pinned messages": "", "No prompts found": "", "No results": "No results, very empty", @@ -1195,6 +1226,7 @@ "Only invited users can access": "", "Only markdown files are allowed": "", "Only select users and groups with permission can access": "", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Oops! Looks like the URL is invalid. Please double-check and try again.", "Oops! There are files still uploading. Please wait for the upload to complete.": "", "Oops! There was an error in the previous response.": "", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "", "OpenAI": "", "OpenAI API": "OpenAI API", @@ -1235,6 +1268,8 @@ "page": "", "Paginate": "", "Parameters": "", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "Barkword", "Passwords do not match.": "", "Paste Large Text as File": "", @@ -1260,7 +1295,6 @@ "Pipe": "", "Pipeline deleted successfully": "", "Pipeline downloaded successfully": "", - "Pipelines": "", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines be plugin system, run code arbitrary — much wow", "Pipelines Not Detected": "", "Pipelines Valves": "", @@ -1498,6 +1532,7 @@ "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.": "", "Setting": "", "Settings": "Settings much settings", + "Settings Permissions": "", "Settings saved successfully!": "Settings saved successfully! Very success!", "Share": "", "Share Chat": "", @@ -1541,6 +1576,7 @@ "Speech recognition error: {{error}}": "Speech recognition error: {{error}} so error", "Speech-to-Text": "", "Speech-to-Text Engine": "Speech-to-Text Engine much speak", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "", "Start of the channel": "Start of channel", "Start Tag": "", @@ -1551,6 +1587,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "", + "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Stop Sequence much stop", "Stream Chat Response": "", @@ -1571,7 +1608,14 @@ "Support": "", "Support this plugin:": "", "Supported MIME Types": "", + "Sync": "", + "Sync Complete!": "", "Sync directory": "", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "System very system", "System Instructions": "", "System Prompt": "System Prompt much prompt", @@ -1616,6 +1660,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "", "The width in pixels to compress images to. Leave empty for no compression.": "", "Theme": "Theme much theme", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "", "This action cannot be undone. Do you wish to continue?": "", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "", @@ -1730,6 +1775,7 @@ "Upload Pipeline": "", "Upload Progress": "Upload Progress much progress", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploaded files or images": "", "Uploading file...": "", "URL": "", "URL is required": "", @@ -1747,6 +1793,7 @@ "User Groups": "", "User location successfully retrieved.": "", "User menu": "", + "User ratings (thumbs up/down)": "", "User Webhooks": "", "Username": "", "users": "", @@ -1796,15 +1843,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "", "What are you trying to achieve?": "", "What are you working on?": "", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "What's New in much new", "What's on your mind?": "", "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.": "", "wherever you are": "", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whisper (Local)": "", + "Who can share to this group": "", "Why?": "", "Widescreen Mode": "", "Width": "", + "Wikipedia": "", "Won": "", "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.": "", "Workspace": "", @@ -1816,6 +1867,8 @@ "Yacy Instance URL": "", "Yacy Password": "", "Yacy Username": "", + "Yahoo": "", + "Yandex": "", "Yesterday": "", "Yesterday at {{LOCALIZED_TIME}}": "", "You": "", @@ -1823,6 +1876,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "", "You cannot upload an empty file.": "", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this thread.": "", "You do not have permission to upload files to this knowledge base.": "", @@ -1834,6 +1890,8 @@ "Your Account": "", "Your account status is currently pending activation.": "", "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.": "", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "", "Youtube Language": "", "Youtube Proxy URL": "" diff --git a/src/lib/i18n/locales/el-GR/translation.json b/src/lib/i18n/locales/el-GR/translation.json index 1265bed19..daa4a219b 100644 --- a/src/lib/i18n/locales/el-GR/translation.json +++ b/src/lib/i18n/locales/el-GR/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "Η ρύθμιση αυτών των παραμέτρων θα εφαρμόσει τις αλλαγές καθολικά σε όλους τους χρήστες.", "admin": "διαχειριστής", "Admin": "Διαχειριστής", + "Admin Contact Email": "", "Admin Panel": "Πίνακας Διαχειριστή", "Admin Settings": "Ρυθμίσεις Διαχειριστή", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Οι διαχειριστές έχουν πρόσβαση σε όλα τα εργαλεία ανά πάσα στιγμή· οι χρήστες χρειάζονται εργαλεία ανά μοντέλο στον χώρο εργασίας.", @@ -101,7 +102,6 @@ "Allow Continue Response": "Επιτρέπεται η Συνέχιση Απάντησης", "Allow Delete Messages": "Επιτρέπεται η διαγραφή μηνυμάτων", "Allow File Upload": "Επιτρέπεται το Ανέβασμα Αρχείων", - "Allow Group Sharing": "", "Allow Multiple Models in Chat": "Επιτρέπεται η χρήση πολλαπλών μοντέλων στη συνομιλία", "Allow non-local voices": "Επιτρέπονται μη τοπικές φωνές", "Allow Rate Response": "Επιτρέπεται η Αξιολόγηση Απάντησης", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "και {{COUNT}} ακόμα", "and create a new shared link.": "και δημιουργήστε έναν νέο κοινόχρηστο σύνδεσμο.", "Android": "", + "Anyone": "", "API Base URL": "Βασικό URL API", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "", "API Key": "Κλειδί API", @@ -175,6 +176,7 @@ "Authenticate": "Επαλήθευση", "Authentication": "Ταυτοποίηση", "Auto": "Αυτόματο", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "Αυτόματη Αντιγραφή Απάντησης στο Πρόχειρο", "Auto-playback response": "Αυτόματη αναπαραγωγή της απάντησης", "Autocomplete Generation": "Δημιουργία Αυτόματης Συμπλήρωσης", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "Σειρά Επαλήθευσης API AUTOMATIC1111", "AUTOMATIC1111 Base URL": "Βασικό URL AUTOMATIC1111", "AUTOMATIC1111 Base URL is required.": "Απαιτείται το Βασικό URL AUTOMATIC1111.", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "Διαθέσιμη λίστα", "Available Tools": "Διαθέσιμα Εργαλεία", "available users": "διαθέσιμοι χρήστες", @@ -201,6 +204,7 @@ "before": "πριν", "Being lazy": "Τρώλακας", "Beta": "", + "Bing": "", "Bing Search V7 Endpoint": "Τέλος Bing Search V7", "Bing Search V7 Subscription Key": "Κλειδί Συνδρομής Bing Search V7", "Bio": "Βιογραφικό", @@ -209,7 +213,9 @@ "Bocha Search API Key": "", "Bold": "", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "", + "Brave": "", "Brave Search API Key": "Κλειδί API Brave Search", + "Builtin Tools": "", "Bullet List": "", "Button ID": "", "Button Label": "", @@ -256,8 +262,10 @@ "Check for updates": "Έλεγχος για ενημερώσεις", "Checking for updates...": "Ελέγχεται για ενημερώσεις...", "Choose a model before saving...": "Επιλέξτε ένα μοντέλο πριν αποθηκεύσετε...", + "Chunk Min Size Target": "", "Chunk Overlap": "Επικάλυψη Τμημάτων", "Chunk Size": "Μέγεθος Τμημάτων", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "Κρυπτογραφήσεις", "Citation": "Παραπομπή", "Citations": "Παραπομπές", @@ -293,7 +301,6 @@ "Code Block": "Μπλοκ Κώδικα", "Code Editor": "", "Code execution": "Εκτέλεση κώδικα", - "Code Execution": "Εκτέλεση Κώδικα", "Code Execution Engine": "Μηχανή Εκτέλεσης Κώδικα", "Code Execution Timeout": "Χρονικό Όριο Εκτέλεσης Κώδικα", "Code formatted successfully": "Ο κώδικας μορφοποιήθηκε επιτυχώς", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "Επικοινωνήστε με τον Διαχειριστή για Πρόσβαση στο WebUI", "Content": "Περιεχόμενο", "Content Extraction Engine": "Μηχανή Εξαγωγής Περιεχομένου", + "Content lengths (character counts only)": "", "Continue Response": "Συνέχεια Απάντησης", "Continue with {{provider}}": "Συνέχεια με {{provider}}", "Continue with Email": "Συνέχεια με Email", @@ -393,6 +401,7 @@ "Database": "Βάση Δεδομένων", "Datalab Marker API": "", "DD/MM/YYYY": "ΗΗ/ΜΜ/ΕΕΕΕ", + "DDGS Backend": "", "December": "Δεκέμβριος", "Decrease UI Scale": "", "Deepgram": "", @@ -474,6 +483,7 @@ "Dive into knowledge": "Βυθιστείτε στη γνώση", "Do not install functions from sources you do not fully trust.": "Μην εγκαθιστάτε λειτουργίες από πηγές που δεν εμπιστεύεστε πλήρως.", "Do not install tools from sources you do not fully trust.": "Μην εγκαθιστάτε εργαλεία από πηγές που δεν εμπιστεύεστε πλήρως.", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "", "Docling Parameters": "", "Docling Server URL required.": "Απαιτείται το URL του διακομιστή Docling.", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "Απαιτείται το endpoint του Document Intelligence.", "Document Intelligence Model": "", "Documentation": "Τεκμηρίωση", - "Documents": "Έγγραφα", "does not make any external connections, and your data stays securely on your locally hosted server.": "δεν κάνει καμία εξωτερική σύνδεση, και τα δεδομένα σας παραμένουν ασφαλή στον τοπικά φιλοξενούμενο διακομιστή σας.", "Domain Filter List": "Λίστα Φίλτρων Domain", "don't fetch random pipelines from sources you don't trust.": "Μην ανακτάτε τυχαία pipelines από μη αξιόπιστες πηγές.", @@ -493,11 +502,14 @@ "Done": "Έτοιμο", "Download": "Λήψη", "Download & Delete": "Λήψη & Διαγραφή", + "Download as JSON": "", "Download as SVG": "", "Download canceled": "Η λήψη ακυρώθηκε", "Download Database": "Λήψη Βάσης Δεδομένων", + "Downloading stats...": "", "Draw": "Σχεδίαση", "Drop any files here to upload": "", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "π.χ. '30s','10m'. Οι έγκυρες μονάδες χρόνου είναι 's', 'm', 'h'.", "e.g. \"json\" or a JSON schema": "π.χ. \"json\" ή ένα JSON σχήμα", "e.g. 60": "π.χ. 60", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "", "Enter Brave Search API Key": "Εισάγετε το Κλειδί API Brave Search", "Enter certificate path": "Εισάγετε τη διαδρομή πιστοποιητικού", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "Εισάγετε την Επικάλυψη Τμημάτων", "Enter Chunk Size": "Εισάγετε το Μέγεθος Τμημάτων", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "", "Enter Firecrawl API Base URL": "", "Enter Firecrawl API Key": "", + "Enter Firecrawl Timeout": "", "Enter folder name": "Εισάγετε όνομα φακέλου", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "Εισάγετε το Github Raw URL", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "", "Enter ID": "Εισάγετε ID", "Enter Image Size (e.g. 512x512)": "Εισάγετε το Μέγεθος Εικόνας (π.χ. 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "Εισάγετε το Κλειδί API Jina", "Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter Jupyter Password": "Εισάγετε Κωδικό Jupyter", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "", "Enter Key Behavior": "", "Enter language codes": "Εισάγετε κωδικούς γλώσσας", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "", "Enter Mistral API Key": "", "Enter Model ID": "Εισάγετε το ID Μοντέλου", @@ -736,6 +753,7 @@ "Failed to generate title": "Αποτυχία δημιουργίας τίτλου", "Failed to import models": "Αποτυχία εισαγωγής μοντέλων", "Failed to load chat preview": "Αποτυχία φόρτωσης προεπισκόπησης συνομιλίας", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "Αποτυχία φόρτωσης περιεχομένου αρχείου", "Failed to move chat": "Αποτυχία μετακίνησης συνομιλίας", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "Λειτουργίες", "Features Permissions": "", "February": "Φεβρουάριος", + "Feedback": "", "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "Ιστορικό Ανατροφοδότησης", - "Feedbacks": "Ανατροφοδοτήσεις", "Feel free to add specific details": "Νιώστε ελεύθεροι να προσθέσετε συγκεκριμένες λεπτομέρειες", "Female": "Γυναίκα", "File": "Αρχείο", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Εντοπίστηκε spoofing δακτυλικού αποτυπώματος: Αδυναμία χρήσης αρχικών ως avatar. Χρήση της προεπιλεγμένης εικόνας προφίλ.", "Firecrawl API Base URL": "URL του API του Firecrawl", "Firecrawl API Key": "API κλειδί του Firecrawl", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "", "Focus Chat Input": "", "Folder": "Φάκελος", "Folder Background Image": "Εικόνα Φόντου Φακέλου", "Folder deleted successfully": "Ο φάκελος διαγράφηκε με επιτυχία", + "Folder Max File Count": "", "Folder Name": "Όνομα Φακέλου", "Folder name cannot be empty.": "Το όνομα του φακέλου δεν μπορεί να είναι κενό.", "Folder name updated successfully": "Το όνομα του φακέλου ενημερώθηκε με επιτυχία", @@ -826,7 +846,6 @@ "General": "Γενικά", "Generate": "Δημιουργία", "Generate an image": "Δημιουργία εικόνας", - "Generate Image": "Δημιουργία Εικόνας", "Generate Message Pair": "", "Generated Image": "Δημιουργημένη Εικόνα", "Generating search query": "Γενιά αναζήτησης ερώτησης", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "Ξεκινήστε με {{WEBUI_NAME}}", "Global": "Καθολικό", "Good Response": "Καλή Απάντηση", + "Google": "", "Google Drive": "", "Google PSE API Key": "Κλειδί API Google PSE", "Google PSE Engine Id": "Αναγνωριστικό Μηχανής Google PSE", "Gravatar": "", "Grid": "", + "Grokipedia": "", "Group": "Ομάδα", "Group Channel": "", "Group created successfully": "Η ομάδα δημιουργήθηκε με επιτυχία", @@ -895,7 +916,6 @@ "Image Prompt Generation": "Προτροπή Δημιουργίας Εικόνας", "Image Prompt Generation Prompt": "Προτροπή Δημιουργίας Εικόνας", "Image Size": "", - "Images": "Εικόνες", "Import": "Εισαγωγή", "Import Chats": "Εισαγωγή Συνομιλιών", "Import Config from JSON File": "Εισαγωγή Διαμόρφωσης από Αρχείο JSON", @@ -927,6 +947,7 @@ "Integration": "Ενσωμάτωση", "Integrations": "Ενσωματώσεις", "Interface": "Διεπαφή Χρήστη", + "Interface Settings Access": "", "Invalid file content": "Μη έγκυρο περιεχόμενο αρχείου", "Invalid file format.": "Μη έγκυρη μορφή αρχείου.", "Invalid JSON file": "Μη έγκυρο αρχείο JSON", @@ -940,6 +961,7 @@ "is typing...": "πληκτρολογεί...", "Italic": "", "January": "Ιανουάριος", + "Jina API Base URL": "", "Jina API Key": "Κλειδί API Jina", "join our Discord for help.": "συμμετέχετε στο Discord μας για βοήθεια.", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "Αφήστε κενό για να χρησιμοποιήσετε όλα τα μοντέλα από το endpoint \"{{url}}/api/tags\"", "Leave empty to include all models from \"{{url}}/models\" endpoint": "Αφήστε κενό για να χρησιμοποιήσετε όλα τα μοντέλα από το endpoint \"{{url}}/models\"", "Leave empty to include all models or select specific models": "Αφήστε κενό για να χρησιμοποιήσετε όλα τα μοντέλα ή επιλέξτε συγκεκριμένα μοντέλα", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "", "Leave empty to use the default prompt, or enter a custom prompt": "Αφήστε κενό για να χρησιμοποιήσετε την προεπιλεγμένη προτροπή, ή εισάγετε μια προσαρμοσμένη προτροπή", "Leave model field empty to use the default model.": "", @@ -1029,10 +1052,12 @@ "Manage your account information.": "Διαχειριστείτε τις πληροφορίες του λογαριασμού σας.", "March": "Μάρτιος", "Markdown": "", - "Markdown (Header)": "Markdown (Επικεφαλίδα)", + "Markdown Header Text Splitter": "", "Max Speakers": "Μέγιστο Πλήθος Ομιλητών", "Max Upload Count": "Μέγιστος Αριθμός Ανεβάσματος", "Max Upload Size": "Μέγιστο Μέγεθος Αρχείου", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Μέγιστο των 3 μοντέλων μπορούν να κατεβούν ταυτόχρονα. Παρακαλώ δοκιμάστε ξανά αργότερα.", "May": "Μάιος", "MBR": "", @@ -1042,6 +1067,7 @@ "Member removed successfully": "", "Members": "", "Members added successfully": "", + "Memories": "", "Memories accessible by LLMs will be shown here.": "Οι αναμνήσεις προσβάσιμες από τα LLMs θα εμφανιστούν εδώ.", "Memory": "Μνήμη", "Memory added successfully": "Η μνήμη προστέθηκε με επιτυχία", @@ -1051,6 +1077,7 @@ "Merge Responses": "Συγχώνευση Απαντήσεων", "Merged Response": "Συγχωνευμένη απάντηση", "Message": "", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "Η αξιολόγηση μηνυμάτων πρέπει να είναι ενεργοποιημένη για να χρησιμοποιήσετε αυτή τη λειτουργία", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Τα μηνύματα που στέλνετε μετά τη δημιουργία του συνδέσμου σας δεν θα κοινοποιηθούν. Οι χρήστες με το URL θα μπορούν να δουν τη συνομιλία που μοιραστήκατε.", "Microsoft OneDrive": "", @@ -1083,9 +1110,11 @@ "Model Name": "Όνομα Μοντέλου", "Model name already exists, please choose a different one": "", "Model Name is required.": "", + "Model names and usage frequency": "", "Model not selected": "Το μοντέλο δεν έχει επιλεγεί", "Model Params": "Παράμετροι Μοντέλου", "Model Permissions": "Δικαιώματα Μοντέλου", + "Model responses or outputs": "", "Model unloaded successfully": "", "Model updated successfully": "Το μοντέλο ενημερώθηκε με επιτυχία", "Model(s) do not support file upload": "", @@ -1096,6 +1125,7 @@ "Models imported successfully": "", "Models Public Sharing": "", "Models Sharing": "", + "Mojeek": "", "Mojeek Search API Key": "Κλειδί API Mojeek Search", "More": "Περισσότερα", "More Concise": "", @@ -1129,7 +1159,7 @@ "No conversation to save": "", "No distance available": "Δεν υπάρχει διαθέσιμη απόσταση", "No expiration can pose security risks.": "", - "No feedbacks found": "Δεν βρέθηκαν ανατροφοδοτήσεις", + "No feedback found": "", "No file selected": "Δεν έχει επιλεγεί αρχείο", "No files in this knowledge base.": "", "No functions found": "Δεν βρέθηκαν λειτουργίες", @@ -1144,6 +1174,7 @@ "No models selected": "Δεν έχουν επιλεγεί μοντέλα", "No Notes": "", "No notes found": "Δεν βρέθηκαν σημειώσεις", + "No one": "", "No pinned messages": "", "No prompts found": "Δεν βρέθηκαν προτροπές", "No results": "Δεν βρέθηκαν αποτελέσματα", @@ -1195,6 +1226,7 @@ "Only invited users can access": "", "Only markdown files are allowed": "", "Only select users and groups with permission can access": "Μόνο επιλεγμένοι χρήστες και ομάδες με άδεια μπορούν να έχουν πρόσβαση", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Ωχ! Φαίνεται ότι το URL είναι μη έγκυρο. Παρακαλώ ελέγξτε ξανά και δοκιμάστε.", "Oops! There are files still uploading. Please wait for the upload to complete.": "Ωχ! Υπάρχουν αρχεία που εξακολουθούν να ανεβαίνουν. Παρακαλώ περιμένετε να ολοκληρωθεί η μεταφόρτωση.", "Oops! There was an error in the previous response.": "Ωχ! Υπήρξε σφάλμα στην προηγούμενη απάντηση.", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "Το Open WebUI χρησιμοποιεί το faster-whisper εσωτερικά.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Το Open WebUI χρησιμοποιεί τα SpeechT5 και CMU Arctic ενσωματώσεων ομιλητών.", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Η έκδοση Open WebUI (v{{OPEN_WEBUI_VERSION}}) είναι χαμηλότερη από την απαιτούμενη έκδοση (v{{REQUIRED_VERSION}})", "OpenAI": "", "OpenAI API": "", @@ -1235,6 +1268,8 @@ "page": "σελίδα", "Paginate": "Σελιδοποίηση", "Parameters": "Παράμετροι", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "Κωδικός", "Passwords do not match.": "Οι κωδικοί δεν ταιριάζουν", "Paste Large Text as File": "Επικόλληση Μεγάλου Κειμένου ως Αρχείο", @@ -1260,7 +1295,6 @@ "Pipe": "", "Pipeline deleted successfully": "Η συνάρτηση διαγράφηκε με επιτυχία", "Pipeline downloaded successfully": "Η συνάρτηση κατεβλήθηκε με επιτυχία", - "Pipelines": "Αγωγοί", "Pipelines are a plugin system with arbitrary code execution —": "Το Pipelines είναι ένα σύστημα προσθέτων με αυθαίρετη εκτέλεση κώδικα —", "Pipelines Not Detected": "Δεν Εντοπίστηκαν Αγωγοί", "Pipelines Valves": "Βαλβίδες Αγωγών", @@ -1498,6 +1532,7 @@ "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.": "Ορίζει τις σειρές παύσης που θα χρησιμοποιηθούν. Όταν εντοπιστεί αυτό το μοτίβο, το LLM θα σταματήσει να δημιουργεί κείμενο και θα επιστρέψει. Πολλαπλά μοτίβα παύσης μπορούν να οριστούν καθορίζοντας πολλαπλές ξεχωριστές παραμέτρους παύσης σε ένα αρχείο μοντέλου.", "Setting": "", "Settings": "Ρυθμίσεις", + "Settings Permissions": "", "Settings saved successfully!": "Οι Ρυθμίσεις αποθηκεύτηκαν με επιτυχία!", "Share": "Κοινή Χρήση", "Share Chat": "Κοινή Χρήση Συνομιλίας", @@ -1541,6 +1576,7 @@ "Speech recognition error: {{error}}": "Σφάλμα αναγνώρισης ομιλίας: {{error}}", "Speech-to-Text": "Ομιλία σε Κείμενο", "Speech-to-Text Engine": "Μηχανή Ομιλίας σε Κείμενο", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "", "Start of the channel": "Αρχή του καναλιού", "Start Tag": "", @@ -1551,6 +1587,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Σταμάτημα", + "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Σειρά Παύσης", "Stream Chat Response": "Ροή Δεδομένων Απαντήσεων", @@ -1571,7 +1608,14 @@ "Support": "Υποστήριξη", "Support this plugin:": "Υποστήριξη αυτού του plugin:", "Supported MIME Types": "Υποστηριζόμενοι τύποι MIME", + "Sync": "", + "Sync Complete!": "", "Sync directory": "Συγχρονισμός καταλόγου", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "Σύστημα", "System Instructions": "Οδηγίες Συστήματος", "System Prompt": "Προτροπή Συστήματος", @@ -1616,6 +1660,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "", "The width in pixels to compress images to. Leave empty for no compression.": "Το πλάτος σε πίξελ για συμπίεση εικόνων. Αφήστε κενό για να μην υπάρχει συμπίεση.", "Theme": "Θέμα", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "Σκέφτομαι...", "This action cannot be undone. Do you wish to continue?": "Αυτή η ενέργεια δεν μπορεί να αναιρεθεί. Θέλετε να συνεχίσετε;", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "", @@ -1730,6 +1775,7 @@ "Upload Pipeline": "Ανέβασμα Pipeline", "Upload Progress": "Πρόοδος Ανεβάσματος", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploaded files or images": "", "Uploading file...": "", "URL": "URL", "URL is required": "Το URL είναι απαραίτητο", @@ -1747,6 +1793,7 @@ "User Groups": "Ομάδες Χρηστών", "User location successfully retrieved.": "Η τοποθεσία του χρήστη ανακτήθηκε με επιτυχία.", "User menu": "Μενού Χρήστη", + "User ratings (thumbs up/down)": "", "User Webhooks": "Webhooks Χρήστη", "Username": "Όνομα Χρήστη", "users": "", @@ -1796,15 +1843,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "Το WebUI θα κάνει αιτήματα στο \"{{url}}/chat/completions\"", "What are you trying to achieve?": "Τι προσπαθείτε να πετύχετε?", "What are you working on?": "Τι εργάζεστε;", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "Τι νέο υπάρχει στο", "What's on your mind?": "", "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.": "Όταν ενεργοποιηθεί, το μοντέλο θα ανταποκρίνεται σε κάθε μήνυμα συνομιλίας σε πραγματικό χρόνο, δημιουργώντας μια απάντηση μόλις ο χρήστης στείλει ένα μήνυμα. Αυτή η λειτουργία είναι χρήσιμη για εφαρμογές ζωντανής συνομιλίας, αλλά μπορεί να επηρεάσει την απόδοση σε πιο αργό υλικό.", "wherever you are": "οπουδήποτε βρίσκεστε", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whisper (Local)": "Whisper (Τοπικό)", + "Who can share to this group": "", "Why?": "Γιατί?", "Widescreen Mode": "Λειτουργία Οθόνης Ευρείας", "Width": "Πλάτος", + "Wikipedia": "", "Won": "Κέρδισε", "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.": "", "Workspace": "Χώρος Εργασίας", @@ -1816,6 +1867,8 @@ "Yacy Instance URL": "", "Yacy Password": "Κωδικός Yacy", "Yacy Username": "Όνομα χρήστη Yacy", + "Yahoo": "", + "Yandex": "", "Yesterday": "Εχθές", "Yesterday at {{LOCALIZED_TIME}}": "Εχθές στις {{LOCALIZED_TIME}}", "You": "Εσείς", @@ -1823,6 +1876,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Μπορείτε να συνομιλήσετε μόνο με μέγιστο αριθμό {{maxCount}} αρχείου(-ων) ταυτόχρονα.", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Μπορείτε να προσωποποιήσετε τις αλληλεπιδράσεις σας με τα LLMs προσθέτοντας αναμνήσεις μέσω του κουμπιού 'Διαχείριση' παρακάτω, κάνοντάς τα πιο χρήσιμα και προσαρμοσμένα σε εσάς.", "You cannot upload an empty file.": "Δεν μπορείτε να ανεβάσετε ένα κενό αρχείο.", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this thread.": "", "You do not have permission to upload files to this knowledge base.": "", @@ -1834,6 +1890,8 @@ "Your Account": "Ο λογαριασμός σας", "Your account status is currently pending activation.": "Η κατάσταση του λογαριασμού σας είναι αυτή τη στιγμή σε εκκρεμότητα ενεργοποίησης.", "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.": "Η ολόκληρη η συνεισφορά σας θα πάει απευθείας στον προγραμματιστή του plugin· το Open WebUI δεν παίρνει κανένα ποσοστό. Ωστόσο, η επιλεγμένη πλατφόρμα χρηματοδότησης μπορεί να έχει τα δικά της τέλη.", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "Youtube", "Youtube Language": "Γλώσσα YouTube", "Youtube Proxy URL": "URL Διακομιστή Μεσολάβησης YouTube" diff --git a/src/lib/i18n/locales/en-GB/translation.json b/src/lib/i18n/locales/en-GB/translation.json index be4667dfd..582945bf0 100644 --- a/src/lib/i18n/locales/en-GB/translation.json +++ b/src/lib/i18n/locales/en-GB/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "", "admin": "", "Admin": "", + "Admin Contact Email": "", "Admin Panel": "", "Admin Settings": "", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "", @@ -101,7 +102,6 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "", - "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "", "Allow Rate Response": "", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "", "and create a new shared link.": "", "Android": "", + "Anyone": "", "API Base URL": "", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "", "API Key": "", @@ -175,6 +176,7 @@ "Authenticate": "", "Authentication": "", "Auto": "", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "", "Auto-playback response": "", "Autocomplete Generation": "", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "", "AUTOMATIC1111 Base URL": "", "AUTOMATIC1111 Base URL is required.": "", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "", "Available Tools": "", "available users": "", @@ -201,6 +204,7 @@ "before": "", "Being lazy": "", "Beta": "", + "Bing": "", "Bing Search V7 Endpoint": "", "Bing Search V7 Subscription Key": "", "Bio": "", @@ -209,7 +213,9 @@ "Bocha Search API Key": "", "Bold": "", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Boosting or penalising specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)", + "Brave": "", "Brave Search API Key": "", + "Builtin Tools": "", "Bullet List": "", "Button ID": "", "Button Label": "", @@ -256,8 +262,10 @@ "Check for updates": "", "Checking for updates...": "", "Choose a model before saving...": "", + "Chunk Min Size Target": "", "Chunk Overlap": "", "Chunk Size": "", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "", "Citation": "", "Citations": "", @@ -293,7 +301,6 @@ "Code Block": "", "Code Editor": "", "Code execution": "", - "Code Execution": "", "Code Execution Engine": "", "Code Execution Timeout": "", "Code formatted successfully": "", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "", "Content": "", "Content Extraction Engine": "", + "Content lengths (character counts only)": "", "Continue Response": "", "Continue with {{provider}}": "", "Continue with Email": "", @@ -393,6 +401,7 @@ "Database": "", "Datalab Marker API": "", "DD/MM/YYYY": "", + "DDGS Backend": "", "December": "", "Decrease UI Scale": "", "Deepgram": "", @@ -474,6 +483,7 @@ "Dive into knowledge": "", "Do not install functions from sources you do not fully trust.": "", "Do not install tools from sources you do not fully trust.": "", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "", "Docling Parameters": "", "Docling Server URL required.": "", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "", "Document Intelligence Model": "", "Documentation": "", - "Documents": "", "does not make any external connections, and your data stays securely on your locally hosted server.": "", "Domain Filter List": "", "don't fetch random pipelines from sources you don't trust.": "", @@ -493,11 +502,14 @@ "Done": "", "Download": "", "Download & Delete": "", + "Download as JSON": "", "Download as SVG": "", "Download canceled": "", "Download Database": "", + "Downloading stats...": "", "Draw": "", "Drop any files here to upload": "", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "", "e.g. \"json\" or a JSON schema": "", "e.g. 60": "", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "", "Enter Brave Search API Key": "", "Enter certificate path": "", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "", "Enter Chunk Size": "", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "", "Enter Firecrawl API Base URL": "", "Enter Firecrawl API Key": "", + "Enter Firecrawl Timeout": "", "Enter folder name": "", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "", "Enter ID": "", "Enter Image Size (e.g. 512x512)": "", + "Enter Jina API Base URL": "", "Enter Jina API Key": "", "Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter Jupyter Password": "", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "", "Enter Key Behavior": "Enter Key Behaviour", "Enter language codes": "", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "", "Enter Mistral API Key": "", "Enter Model ID": "", @@ -736,6 +753,7 @@ "Failed to generate title": "", "Failed to import models": "", "Failed to load chat preview": "", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "", "Failed to move chat": "", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "", "Features Permissions": "", "February": "", + "Feedback": "", "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "", - "Feedbacks": "", "Feel free to add specific details": "", "Female": "", "File": "", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "", "Firecrawl API Base URL": "", "Firecrawl API Key": "", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "", "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "", + "Folder Max File Count": "", "Folder Name": "", "Folder name cannot be empty.": "", "Folder name updated successfully": "", @@ -826,7 +846,6 @@ "General": "", "Generate": "", "Generate an image": "", - "Generate Image": "", "Generate Message Pair": "", "Generated Image": "", "Generating search query": "", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "", "Global": "", "Good Response": "", + "Google": "", "Google Drive": "", "Google PSE API Key": "", "Google PSE Engine Id": "", "Gravatar": "", "Grid": "", + "Grokipedia": "", "Group": "", "Group Channel": "", "Group created successfully": "", @@ -895,7 +916,6 @@ "Image Prompt Generation": "", "Image Prompt Generation Prompt": "", "Image Size": "", - "Images": "", "Import": "", "Import Chats": "", "Import Config from JSON File": "", @@ -927,6 +947,7 @@ "Integration": "", "Integrations": "", "Interface": "", + "Interface Settings Access": "", "Invalid file content": "", "Invalid file format.": "", "Invalid JSON file": "", @@ -940,6 +961,7 @@ "is typing...": "", "Italic": "", "January": "", + "Jina API Base URL": "", "Jina API Key": "", "join our Discord for help.": "", "JSON": "", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "", "Leave empty to include all models or select specific models": "", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "", "Leave empty to use the default prompt, or enter a custom prompt": "", "Leave model field empty to use the default model.": "", @@ -1029,10 +1052,12 @@ "Manage your account information.": "", "March": "", "Markdown": "", - "Markdown (Header)": "", + "Markdown Header Text Splitter": "", "Max Speakers": "", "Max Upload Count": "", "Max Upload Size": "", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "", "May": "", "MBR": "", @@ -1042,6 +1067,7 @@ "Member removed successfully": "", "Members": "", "Members added successfully": "", + "Memories": "", "Memories accessible by LLMs will be shown here.": "", "Memory": "", "Memory added successfully": "", @@ -1051,6 +1077,7 @@ "Merge Responses": "", "Merged Response": "", "Message": "", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "", "Microsoft OneDrive": "", @@ -1083,9 +1110,11 @@ "Model Name": "", "Model name already exists, please choose a different one": "", "Model Name is required.": "", + "Model names and usage frequency": "", "Model not selected": "", "Model Params": "", "Model Permissions": "", + "Model responses or outputs": "", "Model unloaded successfully": "", "Model updated successfully": "", "Model(s) do not support file upload": "", @@ -1096,6 +1125,7 @@ "Models imported successfully": "", "Models Public Sharing": "", "Models Sharing": "", + "Mojeek": "", "Mojeek Search API Key": "", "More": "", "More Concise": "", @@ -1129,7 +1159,7 @@ "No conversation to save": "", "No distance available": "", "No expiration can pose security risks.": "", - "No feedbacks found": "", + "No feedback found": "", "No file selected": "", "No files in this knowledge base.": "", "No functions found": "", @@ -1144,6 +1174,7 @@ "No models selected": "", "No Notes": "", "No notes found": "", + "No one": "", "No pinned messages": "", "No prompts found": "", "No results": "", @@ -1195,6 +1226,7 @@ "Only invited users can access": "", "Only markdown files are allowed": "", "Only select users and groups with permission can access": "", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "", "Oops! There are files still uploading. Please wait for the upload to complete.": "", "Oops! There was an error in the previous response.": "", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "", "OpenAI": "", "OpenAI API": "", @@ -1235,6 +1268,8 @@ "page": "", "Paginate": "", "Parameters": "", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "", "Passwords do not match.": "", "Paste Large Text as File": "", @@ -1260,7 +1295,6 @@ "Pipe": "", "Pipeline deleted successfully": "", "Pipeline downloaded successfully": "", - "Pipelines": "", "Pipelines are a plugin system with arbitrary code execution —": "", "Pipelines Not Detected": "", "Pipelines Valves": "", @@ -1498,6 +1532,7 @@ "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.": "", "Setting": "", "Settings": "", + "Settings Permissions": "", "Settings saved successfully!": "", "Share": "", "Share Chat": "", @@ -1541,6 +1576,7 @@ "Speech recognition error: {{error}}": "", "Speech-to-Text": "", "Speech-to-Text Engine": "", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "", "Start of the channel": "", "Start Tag": "", @@ -1551,6 +1587,7 @@ "STDOUT/STDERR": "", "Steps": "", "Stop": "", + "Stop Download": "", "Stop Generating": "", "Stop Sequence": "", "Stream Chat Response": "", @@ -1571,7 +1608,14 @@ "Support": "", "Support this plugin:": "", "Supported MIME Types": "", + "Sync": "", + "Sync Complete!": "", "Sync directory": "", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "", "System Instructions": "", "System Prompt": "", @@ -1616,6 +1660,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "", "The width in pixels to compress images to. Leave empty for no compression.": "", "Theme": "", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "", "This action cannot be undone. Do you wish to continue?": "", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "", @@ -1730,6 +1775,7 @@ "Upload Pipeline": "", "Upload Progress": "", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploaded files or images": "", "Uploading file...": "", "URL": "", "URL is required": "", @@ -1747,6 +1793,7 @@ "User Groups": "", "User location successfully retrieved.": "", "User menu": "", + "User ratings (thumbs up/down)": "", "User Webhooks": "", "Username": "", "users": "", @@ -1796,15 +1843,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "", "What are you trying to achieve?": "", "What are you working on?": "", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "", "What's on your mind?": "", "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.": "", "wherever you are": "", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whisper (Local)": "", + "Who can share to this group": "", "Why?": "", "Widescreen Mode": "", "Width": "", + "Wikipedia": "", "Won": "", "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.": "", "Workspace": "", @@ -1816,6 +1867,8 @@ "Yacy Instance URL": "", "Yacy Password": "", "Yacy Username": "", + "Yahoo": "", + "Yandex": "", "Yesterday": "", "Yesterday at {{LOCALIZED_TIME}}": "", "You": "", @@ -1823,6 +1876,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "You can personalise your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.", "You cannot upload an empty file.": "", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this thread.": "", "You do not have permission to upload files to this knowledge base.": "", @@ -1834,6 +1890,8 @@ "Your Account": "", "Your account status is currently pending activation.": "", "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.": "", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "", "Youtube Language": "", "Youtube Proxy URL": "" diff --git a/src/lib/i18n/locales/en-US/translation.json b/src/lib/i18n/locales/en-US/translation.json index 98f3bbf79..10a3b6d96 100644 --- a/src/lib/i18n/locales/en-US/translation.json +++ b/src/lib/i18n/locales/en-US/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "", "admin": "", "Admin": "", + "Admin Contact Email": "", "Admin Panel": "", "Admin Settings": "", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "", @@ -101,7 +102,6 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "", - "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "", "Allow Rate Response": "", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "", "and create a new shared link.": "", "Android": "", + "Anyone": "", "API Base URL": "", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "", "API Key": "", @@ -175,6 +176,7 @@ "Authenticate": "", "Authentication": "", "Auto": "", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "", "Auto-playback response": "", "Autocomplete Generation": "", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "", "AUTOMATIC1111 Base URL": "", "AUTOMATIC1111 Base URL is required.": "", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "", "Available Tools": "", "available users": "", @@ -201,6 +204,7 @@ "before": "", "Being lazy": "", "Beta": "", + "Bing": "", "Bing Search V7 Endpoint": "", "Bing Search V7 Subscription Key": "", "Bio": "", @@ -209,7 +213,9 @@ "Bocha Search API Key": "", "Bold": "", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "", + "Brave": "", "Brave Search API Key": "", + "Builtin Tools": "", "Bullet List": "", "Button ID": "", "Button Label": "", @@ -256,8 +262,10 @@ "Check for updates": "", "Checking for updates...": "", "Choose a model before saving...": "", + "Chunk Min Size Target": "", "Chunk Overlap": "", "Chunk Size": "", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "", "Citation": "", "Citations": "", @@ -293,7 +301,6 @@ "Code Block": "", "Code Editor": "", "Code execution": "", - "Code Execution": "", "Code Execution Engine": "", "Code Execution Timeout": "", "Code formatted successfully": "", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "", "Content": "", "Content Extraction Engine": "", + "Content lengths (character counts only)": "", "Continue Response": "", "Continue with {{provider}}": "", "Continue with Email": "", @@ -393,6 +401,7 @@ "Database": "", "Datalab Marker API": "", "DD/MM/YYYY": "", + "DDGS Backend": "", "December": "", "Decrease UI Scale": "", "Deepgram": "", @@ -474,6 +483,7 @@ "Dive into knowledge": "", "Do not install functions from sources you do not fully trust.": "", "Do not install tools from sources you do not fully trust.": "", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "", "Docling Parameters": "", "Docling Server URL required.": "", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "", "Document Intelligence Model": "", "Documentation": "", - "Documents": "", "does not make any external connections, and your data stays securely on your locally hosted server.": "", "Domain Filter List": "", "don't fetch random pipelines from sources you don't trust.": "", @@ -493,11 +502,14 @@ "Done": "", "Download": "", "Download & Delete": "", + "Download as JSON": "", "Download as SVG": "", "Download canceled": "", "Download Database": "", + "Downloading stats...": "", "Draw": "", "Drop any files here to upload": "", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "", "e.g. \"json\" or a JSON schema": "", "e.g. 60": "", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "", "Enter Brave Search API Key": "", "Enter certificate path": "", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "", "Enter Chunk Size": "", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "", "Enter Firecrawl API Base URL": "", "Enter Firecrawl API Key": "", + "Enter Firecrawl Timeout": "", "Enter folder name": "", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "", "Enter ID": "", "Enter Image Size (e.g. 512x512)": "", + "Enter Jina API Base URL": "", "Enter Jina API Key": "", "Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter Jupyter Password": "", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "", "Enter Key Behavior": "", "Enter language codes": "", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "", "Enter Mistral API Key": "", "Enter Model ID": "", @@ -736,6 +753,7 @@ "Failed to generate title": "", "Failed to import models": "", "Failed to load chat preview": "", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "", "Failed to move chat": "", "Failed to process URL: {{url}}": "", @@ -756,7 +774,6 @@ "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "", - "Feedbacks": "", "Feel free to add specific details": "", "Female": "", "File": "", @@ -777,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "", "Firecrawl API Base URL": "", "Firecrawl API Key": "", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "", "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "", + "Folder Max File Count": "", "Folder Name": "", "Folder name cannot be empty.": "", "Folder name updated successfully": "", @@ -827,7 +846,6 @@ "General": "", "Generate": "", "Generate an image": "", - "Generate Image": "", "Generate Message Pair": "", "Generated Image": "Generated Image", "Generating search query": "", @@ -837,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "", "Global": "", "Good Response": "", + "Google": "", "Google Drive": "", "Google PSE API Key": "", "Google PSE Engine Id": "", "Gravatar": "", "Grid": "", + "Grokipedia": "", "Group": "", "Group Channel": "", "Group created successfully": "", @@ -896,7 +916,6 @@ "Image Prompt Generation": "", "Image Prompt Generation Prompt": "", "Image Size": "", - "Images": "", "Import": "", "Import Chats": "", "Import Config from JSON File": "", @@ -928,6 +947,7 @@ "Integration": "", "Integrations": "", "Interface": "", + "Interface Settings Access": "", "Invalid file content": "", "Invalid file format.": "", "Invalid JSON file": "", @@ -941,6 +961,7 @@ "is typing...": "", "Italic": "", "January": "", + "Jina API Base URL": "", "Jina API Key": "", "join our Discord for help.": "", "JSON": "", @@ -991,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "", "Leave empty to include all models or select specific models": "", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "", "Leave empty to use the default prompt, or enter a custom prompt": "", "Leave model field empty to use the default model.": "", @@ -1030,10 +1052,12 @@ "Manage your account information.": "", "March": "", "Markdown": "", - "Markdown (Header)": "", + "Markdown Header Text Splitter": "", "Max Speakers": "", "Max Upload Count": "", "Max Upload Size": "", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "", "May": "", "MBR": "", @@ -1043,6 +1067,7 @@ "Member removed successfully": "", "Members": "", "Members added successfully": "", + "Memories": "", "Memories accessible by LLMs will be shown here.": "", "Memory": "", "Memory added successfully": "", @@ -1052,6 +1077,7 @@ "Merge Responses": "", "Merged Response": "", "Message": "", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "", "Microsoft OneDrive": "", @@ -1084,9 +1110,11 @@ "Model Name": "", "Model name already exists, please choose a different one": "", "Model Name is required.": "", + "Model names and usage frequency": "", "Model not selected": "", "Model Params": "", "Model Permissions": "", + "Model responses or outputs": "", "Model unloaded successfully": "", "Model updated successfully": "", "Model(s) do not support file upload": "", @@ -1097,6 +1125,7 @@ "Models imported successfully": "", "Models Public Sharing": "", "Models Sharing": "", + "Mojeek": "", "Mojeek Search API Key": "", "More": "", "More Concise": "", @@ -1130,7 +1159,7 @@ "No conversation to save": "", "No distance available": "", "No expiration can pose security risks.": "", - "No feedbacks found": "", + "No feedback found": "", "No file selected": "", "No files in this knowledge base.": "", "No functions found": "", @@ -1145,6 +1174,7 @@ "No models selected": "", "No Notes": "", "No notes found": "", + "No one": "", "No pinned messages": "", "No prompts found": "", "No results": "", @@ -1196,6 +1226,7 @@ "Only invited users can access": "", "Only markdown files are allowed": "", "Only select users and groups with permission can access": "", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "", "Oops! There are files still uploading. Please wait for the upload to complete.": "", "Oops! There was an error in the previous response.": "", @@ -1212,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "", "OpenAI": "", "OpenAI API": "", @@ -1236,6 +1268,8 @@ "page": "", "Paginate": "", "Parameters": "", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "", "Passwords do not match.": "", "Paste Large Text as File": "", @@ -1261,7 +1295,6 @@ "Pipe": "", "Pipeline deleted successfully": "", "Pipeline downloaded successfully": "", - "Pipelines": "", "Pipelines are a plugin system with arbitrary code execution —": "", "Pipelines Not Detected": "", "Pipelines Valves": "", @@ -1499,6 +1532,7 @@ "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.": "", "Setting": "", "Settings": "", + "Settings Permissions": "", "Settings saved successfully!": "", "Share": "", "Share Chat": "", @@ -1542,6 +1576,7 @@ "Speech recognition error: {{error}}": "", "Speech-to-Text": "", "Speech-to-Text Engine": "", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "", "Start of the channel": "", "Start Tag": "", @@ -1552,6 +1587,7 @@ "STDOUT/STDERR": "", "Steps": "", "Stop": "", + "Stop Download": "", "Stop Generating": "", "Stop Sequence": "", "Stream Chat Response": "", @@ -1572,7 +1608,14 @@ "Support": "", "Support this plugin:": "", "Supported MIME Types": "", + "Sync": "", + "Sync Complete!": "", "Sync directory": "", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "", "System Instructions": "", "System Prompt": "", @@ -1617,6 +1660,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "", "The width in pixels to compress images to. Leave empty for no compression.": "", "Theme": "", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "", "This action cannot be undone. Do you wish to continue?": "", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "", @@ -1731,6 +1775,7 @@ "Upload Pipeline": "", "Upload Progress": "", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploaded files or images": "", "Uploading file...": "", "URL": "", "URL is required": "", @@ -1748,6 +1793,7 @@ "User Groups": "", "User location successfully retrieved.": "", "User menu": "", + "User ratings (thumbs up/down)": "", "User Webhooks": "", "Username": "", "users": "", @@ -1797,15 +1843,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "", "What are you trying to achieve?": "", "What are you working on?": "", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "", "What's on your mind?": "", "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.": "", "wherever you are": "", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whisper (Local)": "", + "Who can share to this group": "", "Why?": "", "Widescreen Mode": "", "Width": "", + "Wikipedia": "", "Won": "", "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.": "", "Workspace": "", @@ -1817,6 +1867,8 @@ "Yacy Instance URL": "", "Yacy Password": "", "Yacy Username": "", + "Yahoo": "", + "Yandex": "", "Yesterday": "", "Yesterday at {{LOCALIZED_TIME}}": "", "You": "", @@ -1824,6 +1876,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "", "You cannot upload an empty file.": "", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this thread.": "", "You do not have permission to upload files to this knowledge base.": "", @@ -1835,6 +1890,8 @@ "Your Account": "", "Your account status is currently pending activation.": "", "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.": "", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "", "Youtube Language": "", "Youtube Proxy URL": "" diff --git a/src/lib/i18n/locales/es-ES/translation.json b/src/lib/i18n/locales/es-ES/translation.json index b8c18ee12..3e42ac9e5 100644 --- a/src/lib/i18n/locales/es-ES/translation.json +++ b/src/lib/i18n/locales/es-ES/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "El ajuste de estas opciones se aplicará globalmente a todos los usuarios.", "admin": "admin", "Admin": "Admin", + "Admin Contact Email": "", "Admin Panel": "Administración", "Admin Settings": "Ajustes de Admin", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Los administradores tienen acceso a todas las herramientas en todo momento; los usuarios necesitan que los modelos tengan asignadas las herramientas en el area de trabajo.", @@ -101,7 +102,6 @@ "Allow Continue Response": "Permitir Continuar Respuesta", "Allow Delete Messages": "Permitir Borrar Mensajes", "Allow File Upload": "Permitir Subida de Archivos", - "Allow Group Sharing": "Permitir Compartir en Grupo", "Allow Multiple Models in Chat": "Permitir Chat con Múltiples Modelos", "Allow non-local voices": "Permitir voces no locales", "Allow Rate Response": "Permitir Calificar Respuesta", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "y {{COUNT}} más", "and create a new shared link.": "y crear un nuevo enlace compartido.", "Android": "Android", + "Anyone": "", "API Base URL": "URL Base API", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "URL Base API para Datalab Marker service. La Predeterminada es: https://www.datalab.to/api/v1/marker", "API Key": "Clave API ", @@ -175,6 +176,7 @@ "Authenticate": "Autentificar", "Authentication": "Autenticación", "Auto": "Auto", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "AutoCopiado de respuesta al Portapapeles", "Auto-playback response": "Reproducir Respuesta automáticamente", "Autocomplete Generation": "Generación de Autocompletado", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "Auth API para AUTOMATIC1111", "AUTOMATIC1111 Base URL": "URL Base de AUTOMATIC1111", "AUTOMATIC1111 Base URL is required.": "la URL Base de AUTOMATIC1111 es necesaria.", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "Lista disponible", "Available Tools": "Herramientas Disponibles", "available users": "usuarios disponibles", @@ -201,6 +204,7 @@ "before": "antes", "Being lazy": "Ser perezoso", "Beta": "Beta", + "Bing": "", "Bing Search V7 Endpoint": "Endpoint de Bing Search V7", "Bing Search V7 Subscription Key": "Clave de Suscripción de Bing Search V7", "Bio": "Bio", @@ -209,7 +213,9 @@ "Bocha Search API Key": "Clave API de Bocha Search", "Bold": "Negrita", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Impulsando o penalizando tokens específicos para respuestas restringidas. Los valores de sesgo se limitarán entre -100 y 100 (inclusive). (Por defecto: ninguno)", + "Brave": "", "Brave Search API Key": "Clave API de Brave Search", + "Builtin Tools": "", "Bullet List": "Lista de Viñetas", "Button ID": "ID del Botón", "Button Label": "Etiqueta del Botón", @@ -256,8 +262,10 @@ "Check for updates": "Buscar actualizaciones", "Checking for updates...": "Buscando actualizaciones...", "Choose a model before saving...": "Escoge un modelo antes de guardar...", + "Chunk Min Size Target": "", "Chunk Overlap": "Superposición de Fragmentos", "Chunk Size": "Tamaño de los Fragmentos", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "Cifrado", "Citation": "Cita", "Citations": "Citas", @@ -293,7 +301,6 @@ "Code Block": "Bloque de Código", "Code Editor": "Editor de Código", "Code execution": "Ejecución de Código", - "Code Execution": "Ejecución de Código", "Code Execution Engine": "Motor de Ejecución de Código", "Code Execution Timeout": "Tiempo límite de espera para Ejecución de Código", "Code formatted successfully": "El codigo se ha formateado correctamente.", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "Contacta con Admin para obtener acceso a WebUI", "Content": "Contenido", "Content Extraction Engine": "Motor para la Extracción de Contenido", + "Content lengths (character counts only)": "", "Continue Response": "Continuar Respuesta", "Continue with {{provider}}": "Continuar con {{provider}}", "Continue with Email": "Continuar con Email", @@ -393,6 +401,7 @@ "Database": "Base de datos", "Datalab Marker API": "API de Datalab Marker", "DD/MM/YYYY": "DD/MM/YYYY", + "DDGS Backend": "", "December": "Diciembre", "Decrease UI Scale": "Reducir la Escala de la IU", "Deepgram": "Deepgram", @@ -474,6 +483,7 @@ "Dive into knowledge": "Sumérgete en el conocimiento", "Do not install functions from sources you do not fully trust.": "¡No instalar funciones de fuentes en las que que no se confíe totalmente!", "Do not install tools from sources you do not fully trust.": "¡No instalar herramientas de fuentes en las que no se confíe totalmente!", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "Docling", "Docling Parameters": "Parámetros de Docling", "Docling Server URL required.": "Docling URL del servidor necesaria.", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "Endpoint Azure Doc Intelligence requerido", "Document Intelligence Model": "Modelo para Doc Intelligence", "Documentation": "Documentación", - "Documents": "Documentos", "does not make any external connections, and your data stays securely on your locally hosted server.": "no se realiza ninguna conexión externa y tus datos permanecen seguros alojados localmente en tu servidor.", "Domain Filter List": "Lista de Filtrado de Dominio", "don't fetch random pipelines from sources you don't trust.": "No obtengas pipelines aleatorias de fuentes no confiables.", @@ -493,11 +502,14 @@ "Done": "Hecho", "Download": "Descargar", "Download & Delete": "Descargar y eliminar", + "Download as JSON": "", "Download as SVG": "Descargar como SVG", "Download canceled": "Descarga cancelada", "Download Database": "Descargar Base de Datos", + "Downloading stats...": "", "Draw": "Dibujar", "Drop any files here to upload": "Arrastra aquí los archivos a subir.", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "p.ej. '30s','10m'. Unidades de tiempo válidas son 's', 'm', 'h'.", "e.g. \"json\" or a JSON schema": "p.ej. \"json\" o un esquema JSON", "e.g. 60": "p.ej. 60", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "Ingresar la Clave API de Bocha Search", "Enter Brave Search API Key": "Ingresar la Clave API de Brave Search", "Enter certificate path": "Ingresar la ruta del certificado", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "Ingresar Superposición de los Fragmentos", "Enter Chunk Size": "Ingresar el Tamaño del Fragmento", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Ingresar pares \"token:valor_sesgo\" separados por comas (ejemplo: 5432:100, 413:-100)", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "Ingresar URL del Buscador Web Externo", "Enter Firecrawl API Base URL": "Ingresar URL Base del API de Firecrawl", "Enter Firecrawl API Key": "Ingresar Clave del API de Firecrawl", + "Enter Firecrawl Timeout": "", "Enter folder name": "Ingresar nombre de la carpeta", "Enter function name filter list (e.g. func1, !func2)": "Ingresar lista para el filtro de nombres de función (p.ej.: func1, !func2)", "Enter Github Raw URL": "Ingresar URL Github en Bruto(raw)", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "Ingresa color hex (ej. #FF0000)", "Enter ID": "Ingresar ID", "Enter Image Size (e.g. 512x512)": "Ingresar Tamaño de Imagen (p.ej. 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "Ingresar Clave API de Jina", "Enter JSON config (e.g., {\"disable_links\": true})": "Ingresar config JSON (ej., {\"disable_links\": true})", "Enter Jupyter Password": "Ingresar Contraseña de Jupyter", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "Ingresar Clave API de Kagi Search", "Enter Key Behavior": "Comportamiento de la Tecla de Envío", "Enter language codes": "Ingresar Códigos de Idioma", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "Ingresar la URL Base de la API de Mistral", "Enter Mistral API Key": "Ingresar Clave API de Mistral", "Enter Model ID": "Ingresar ID del Modelo", @@ -736,6 +753,7 @@ "Failed to generate title": "Fallo al generar el título", "Failed to import models": "Fallo al importar modelos", "Failed to load chat preview": "Fallo al cargar la previsualización del chat", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "Fallo al cargar el contenido del archivo", "Failed to move chat": "Fallo al mover el chat", "Failed to process URL: {{url}}": "Fallo al procesar la URL", @@ -752,10 +770,10 @@ "Features": "Características", "Features Permissions": "Permisos de las Características", "February": "Febrero", + "Feedback": "", "Feedback deleted successfully": "Opinión eliminada correctamente", "Feedback Details": "Detalle de la Opinión", "Feedback History": "Historia de la Opiniones", - "Feedbacks": "Opiniones", "Feel free to add specific details": "Añade libremente detalles específicos", "Female": "Mujer", "File": "Archivo", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Se detectó suplantación de huellas: No se pueden usar las iniciales como avatar. Se establece la imagen de perfil predeterminada.", "Firecrawl API Base URL": "URL Base de API de Firecrawl", "Firecrawl API Key": "Clave de API de Firecrawl", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "Acciones Rápidas Flotantes", "Focus Chat Input": "Enfocar a la Entrada del Chat", "Folder": "Carpeta", "Folder Background Image": "Imagen de Fondo de la Carpeta", "Folder deleted successfully": "Carpeta eliminada correctamente", + "Folder Max File Count": "", "Folder Name": "Nombre de la Carpeta", "Folder name cannot be empty.": "El nombre de la carpeta no puede estar vacío", "Folder name updated successfully": "Nombre de la carpeta actualizado correctamente", @@ -826,7 +846,6 @@ "General": "General", "Generate": "Generar", "Generate an image": "Generar una imagen", - "Generate Image": "Generar imagen", "Generate Message Pair": "Generar Par de Mensajes", "Generated Image": "Imagen Generada", "Generating search query": "Generando consulta de búsqueda", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "Empezar con {{WEBUI_NAME}}", "Global": "Global", "Good Response": "Buena Respuesta", + "Google": "", "Google Drive": "Google Drive", "Google PSE API Key": "Clave API de Google PSE", "Google PSE Engine Id": "ID del Motor PSE de Google", "Gravatar": "Gravatar", "Grid": "Cuadrícula", + "Grokipedia": "", "Group": "Grupo", "Group Channel": "Canal de Grupo", "Group created successfully": "Grupo creado correctamente", @@ -895,7 +916,6 @@ "Image Prompt Generation": "Indicador para Generación de Imagen", "Image Prompt Generation Prompt": "Indicador para la Generación del Indicador de Imagen", "Image Size": "Tamaño de la Imagen", - "Images": "Imágenes", "Import": "Importar", "Import Chats": "Importar Chats", "Import Config from JSON File": "Importar Config desde Archivo JSON", @@ -927,6 +947,7 @@ "Integration": "Integración", "Integrations": "Integraciones", "Interface": "Interfaz", + "Interface Settings Access": "", "Invalid file content": "Contenido de archivo inválido", "Invalid file format.": "Formato de archivo inválido.", "Invalid JSON file": "Archivo JSON inválido", @@ -940,6 +961,7 @@ "is typing...": "está escribiendo...", "Italic": "Cursiva", "January": "Enero", + "Jina API Base URL": "", "Jina API Key": "Clave API de Jina", "join our Discord for help.": "unete a nuestro Discord para ayuda.", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "Dejar vacío para incluir todos los modelos desde el endpoint \"{{url}}/api/tags\"", "Leave empty to include all models from \"{{url}}/models\" endpoint": "Dejar vacío para incluir todos los modelos desde el endpoint \"{{url}}/models\"", "Leave empty to include all models or select specific models": "Dejar vacío para incluir todos los modelos o Seleccionar modelos específicos", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "Dejar vacío para usar el modo predeterminado (voxtral-mini-latest).", "Leave empty to use the default prompt, or enter a custom prompt": "Dejar vacío para usar el indicador predeterminado, o Ingresar un indicador personalizado", "Leave model field empty to use the default model.": "Dejar vacío el campo modelo para usar el modelo predeterminado.", @@ -1029,10 +1052,12 @@ "Manage your account information.": "Gestionar la información de tu cuenta", "March": "Marzo", "Markdown": "Markdown", - "Markdown (Header)": "Markdown (Encabezado)", + "Markdown Header Text Splitter": "", "Max Speakers": "Max Interlocutores", "Max Upload Count": "Número Max de Subidas", "Max Upload Size": "Tamaño Max de Subidas", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Se puede descargar un máximo de 3 modelos simultáneamente. Por favor, reinténtelo más tarde.", "May": "Mayo", "MBR": "MBR", @@ -1042,6 +1067,7 @@ "Member removed successfully": "Miembro removido correctamente", "Members": "Miembros", "Members added successfully": "Miembros añadidos correctamente", + "Memories": "", "Memories accessible by LLMs will be shown here.": "Las memorias accesibles por los LLMs se mostrarán aquí.", "Memory": "Memoria", "Memory added successfully": "Memoria añadida correctamente", @@ -1051,6 +1077,7 @@ "Merge Responses": "Fusionar Respuestas", "Merged Response": "Respuesta combinada", "Message": "Mensaje", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "Para usar esta función debe estar habilitada la calificación de mensajes", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Los mensajes que envíe después de la creación del enlace no se compartirán. Los usuarios con la URL del enlace podrán ver el chat compartido.", "Microsoft OneDrive": "Microsoft OneDrive", @@ -1083,9 +1110,11 @@ "Model Name": "Nombre Modelo", "Model name already exists, please choose a different one": "Ese nombre de modelo ya existe, por favor elige otro diferente", "Model Name is required.": "El Nombre de Modelo es requerido", + "Model names and usage frequency": "", "Model not selected": "Modelo no seleccionado", "Model Params": "Paráms Modelo", "Model Permissions": "Permisos Modelo", + "Model responses or outputs": "", "Model unloaded successfully": "Modelo descargado correctamente", "Model updated successfully": "Modelo actualizado correctamente", "Model(s) do not support file upload": "Modelo/s no soportan subida de archivos", @@ -1096,6 +1125,7 @@ "Models imported successfully": "Modelos importados correctamente", "Models Public Sharing": "Compartir Modelos Públicamente", "Models Sharing": "Compartir Modelos", + "Mojeek": "", "Mojeek Search API Key": "Clave API de Mojeek Search", "More": "Más", "More Concise": "Más Conciso", @@ -1129,7 +1159,7 @@ "No conversation to save": "No hay conversación para guardar", "No distance available": "No hay distancia disponible", "No expiration can pose security risks.": "No expiración puede poner la seguridad en riesgo.", - "No feedbacks found": "No se encontraron comentarios", + "No feedback found": "", "No file selected": "No se seleccionó archivo", "No files in this knowledge base.": "Ningún archivo en esta base de conocimiento.", "No functions found": "No se encontraron funciones", @@ -1144,6 +1174,7 @@ "No models selected": "No se seleccionaron modelos", "No Notes": "Sin Notas", "No notes found": "No se encontraron notas", + "No one": "", "No pinned messages": "No hay mensajes fijados", "No prompts found": "No se encontraron indicadores", "No results": "No se encontraron resultados", @@ -1195,6 +1226,7 @@ "Only invited users can access": "Solo pueden acceder usuarios invitados", "Only markdown files are allowed": "Solo están permitidos archivos markdown", "Only select users and groups with permission can access": "Solo pueden acceder los usuarios y grupos con permiso", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "¡vaya! Parece que la URL es inválida. Por favor, revisala y reintenta de nuevo.", "Oops! There are files still uploading. Please wait for the upload to complete.": "¡vaya! Todavía hay archivos subiendose. Por favor, espera a que se complete la subida.", "Oops! There was an error in the previous response.": "¡vaya! Hubo un error en la respuesta previa.", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "Open-WebUI puede usar herramientas proporcionadas por cualquier servidor OpenAPI", "Open WebUI uses faster-whisper internally.": "Open-WebUI usa faster-whisper internamente.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open-WebUI usa SpeechT5 y la incrustración de locutores de CMU Arctic.", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "La versión de Open-WebUI (v{{OPEN_WEBUI_VERSION}}) es inferior a la versión (v{{REQUIRED_VERSION}}) requerida", "OpenAI": "OpenAI", "OpenAI API": "API OpenAI", @@ -1235,6 +1268,8 @@ "page": "página", "Paginate": "Paginar", "Parameters": "Parámetros", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "Contraseña", "Passwords do not match.": "Las contraseñas no coinciden", "Paste Large Text as File": "Pegar el Texto Largo como Archivo", @@ -1260,7 +1295,6 @@ "Pipe": "Tubo", "Pipeline deleted successfully": "Tubería borrada correctamente", "Pipeline downloaded successfully": "Tubería descargada correctamente", - "Pipelines": "Tuberías", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines es un sistema de complementos con ejecución arbitraria de código —", "Pipelines Not Detected": "Servicio de Tuberías (Pipelines) No Detectado", "Pipelines Valves": "Válvulas de Tuberías", @@ -1499,6 +1533,7 @@ "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.": "Establece las secuencias de parada a usar. Cuando se encuentre este patrón, el LLM dejará de generar texto y retornará. Se pueden establecer varios patrones de parada especificando separadamente múltiples parámetros de parada en un archivo de modelo.", "Setting": "Ajuste", "Settings": "Ajustes", + "Settings Permissions": "", "Settings saved successfully!": "¡Ajustes guardados correctamente!", "Share": "Compartir", "Share Chat": "Compartir Chat", @@ -1542,6 +1577,7 @@ "Speech recognition error: {{error}}": "Error en reconocimiento de voz: {{error}}", "Speech-to-Text": "Voz a Texto", "Speech-to-Text Engine": "Motor Voz a Texto(STT)", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "Comenzar una conversación nueva", "Start of the channel": "Inicio del canal", "Start Tag": "Etiqueta de Inicio", @@ -1552,6 +1588,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "Pasos", "Stop": "Detener", + "Stop Download": "", "Stop Generating": "Parar la Generación", "Stop Sequence": "Secuencia de Parada", "Stream Chat Response": "Transmisión Directa de la Respuesta del Chat", @@ -1572,7 +1609,14 @@ "Support": "Soportar", "Support this plugin:": "Apoya este plugin:", "Supported MIME Types": "Tipos MIME Soportados", + "Sync": "", + "Sync Complete!": "", "Sync directory": "Sincroniza Directorio", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "Sistema", "System Instructions": "Instrucciones del sistema", "System Prompt": "Indicador del sistema", @@ -1617,6 +1661,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "La Ponderación de BM25 en la Búsqueda Híbrida. 0 más semántica, 1 más léxica. Por defecto, 0.5", "The width in pixels to compress images to. Leave empty for no compression.": "El ancho en pixeles al comprimir imágenes. Dejar vacío para no compresión", "Theme": "Tema", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "Pensando...", "This action cannot be undone. Do you wish to continue?": "Esta acción no se puede deshacer. ¿Desea continuar?", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "Este canal fue creado el {{createdAt}}. Este es el comienzo del canal {{channelName}}.", @@ -1731,6 +1776,7 @@ "Upload Pipeline": "Subir Tubería", "Upload Progress": "Progreso de la Subida", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Progreso de la Subida: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", + "Uploaded files or images": "", "Uploading file...": "Subiendo archivo...", "URL": "URL", "URL is required": "La URL es requerida", @@ -1748,6 +1794,7 @@ "User Groups": "Grupos de Usuarios", "User location successfully retrieved.": "Ubicación de usuario obtenida correctamente.", "User menu": "Menu de Usuario", + "User ratings (thumbs up/down)": "", "User Webhooks": "Usuario Webhooks", "Username": "Nombre de Usuario", "users": "usuarios", @@ -1797,15 +1844,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI hará solicitudes a \"{{url}}/chat/completions\"", "What are you trying to achieve?": "¿Qué estás tratando de conseguir?", "What are you working on?": "¿En qué estás trabajando?", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "Que hay de Nuevo en", "What's on your mind?": "¿En que estás pensando?", "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.": "Cuando está habilitado, el modelo responderá a cada mensaje de chat en tiempo real, generando una respuesta tan pronto como se envíe un mensaje. Este modo es útil para aplicaciones de chat en vivo, pero puede afectar al rendimiento en equipos más lentos.", "wherever you are": "dondequiera que estés", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "Al paginar la salida. Cada página será separada por una línea horizontal y número de página. Por defecto: Falso", "Whisper (Local)": "Whisper (Local)", + "Who can share to this group": "", "Why?": "¿Por qué?", "Widescreen Mode": "Modo Pantalla Ancha", "Width": "Ancho", + "Wikipedia": "", "Won": "Ganó", "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.": "Trabaja conjuntamente con top-k. Un valor más alto (p.ej. 0.95) dará lugar a un texto más diverso, mientras que un valor más bajo (p.ej. 0.5) generará un texto más centrado y conservador.", "Workspace": "Espacio de Trabajo", @@ -1817,6 +1868,8 @@ "Yacy Instance URL": "URL de la instancia Yacy", "Yacy Password": "Contraseña de Yacy", "Yacy Username": "Usuario de Yacy", + "Yahoo": "", + "Yandex": "", "Yesterday": "Ayer", "Yesterday at {{LOCALIZED_TIME}}": "Ayer a las {{LOCALIZED_TIME}}", "You": "Tu", @@ -1824,6 +1877,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Solo puedes chatear con un máximo de {{maxCount}} archivo(s) a la vez.", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Puedes personalizar tus interacciones con los LLMs añadiendo memorias a través del botón 'Gestionar' debajo, haciendo que te sean más útiles y personalizados.", "You cannot upload an empty file.": "No puedes subir un archivo vacío.", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "No tienes permiso para enviar mensajes en este canal", "You do not have permission to send messages in this thread.": "No tienes permiso para enviar mensajes en este hilo", "You do not have permission to upload files to this knowledge base.": "No tienes permiso para subir archivos a esta base de conocimiento.", @@ -1835,6 +1891,8 @@ "Your Account": "Tu Cuenta", "Your account status is currently pending activation.": "Tu cuenta está pendiente de activación.", "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.": "Tu entera contribución irá directamente al desarrollador del complemento; Open-WebUI no recibe ningún porcentaje. Sin embargo, la plataforma de financiación elegida podría tener sus propias tarifas.", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "Youtube", "Youtube Language": "Youtube Idioma", "Youtube Proxy URL": "Youtube URL Proxy" diff --git a/src/lib/i18n/locales/et-EE/translation.json b/src/lib/i18n/locales/et-EE/translation.json index 7cdf4d3f7..fccfe0d05 100644 --- a/src/lib/i18n/locales/et-EE/translation.json +++ b/src/lib/i18n/locales/et-EE/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "Nende seadete kohandamine rakendab muudatused universaalselt kõigile kasutajatele.", "admin": "admin", "Admin": "Administraator", + "Admin Contact Email": "", "Admin Panel": "Administraatori paneel", "Admin Settings": "Administraatori seaded", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administraatoritel on alati juurdepääs kõigile tööriistadele; kasutajatele tuleb tööriistad määrata mudeli põhiselt tööruumis.", @@ -101,7 +102,6 @@ "Allow Continue Response": "Luba vastuse jätkamine", "Allow Delete Messages": "Luba sõnumite kustutamine", "Allow File Upload": "Luba failide üleslaadimine", - "Allow Group Sharing": "", "Allow Multiple Models in Chat": "Luba mitu mudelit vestluses", "Allow non-local voices": "Luba mitte-lokaalsed hääled", "Allow Rate Response": "Luba vastuse hindamine", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "ja veel {{COUNT}}", "and create a new shared link.": "ja looge uus jagatud link.", "Android": "Android", + "Anyone": "", "API Base URL": "API baas-URL", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "Datalab Marker teenuse API baas-URL. Vaikimisi: https://www.datalab.to/api/v1/marker", "API Key": "API võti", @@ -175,6 +176,7 @@ "Authenticate": "Autendi", "Authentication": "Autentimine", "Auto": "Auto", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "Kopeeri vastus automaatselt lõikelauale", "Auto-playback response": "Mängi vastus automaatselt", "Autocomplete Generation": "Automaattäitmise genereerimine", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "AUTOMATIC1111 API autentimise string", "AUTOMATIC1111 Base URL": "AUTOMATIC1111 baas-URL", "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 baas-URL on nõutav.", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "Saadaolevate nimekiri", "Available Tools": "Saadaolevad tööriistad", "available users": "saadaolevad kasutajad", @@ -201,6 +204,7 @@ "before": "enne", "Being lazy": "Laisklemine", "Beta": "Beeta", + "Bing": "", "Bing Search V7 Endpoint": "Bing Search V7 lõpp-punkt", "Bing Search V7 Subscription Key": "Bing Search V7 tellimuse võti", "Bio": "Bio", @@ -209,7 +213,9 @@ "Bocha Search API Key": "Bocha otsingu API võti", "Bold": "Paks", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Konkreetsete tokenite võimendamine või karistamine piiratud vastuste jaoks. Kallutatuse väärtused piiratakse vahemikku -100 kuni 100 (kaasa arvatud). (Vaikimisi: puudub)", + "Brave": "", "Brave Search API Key": "Brave Search API võti", + "Builtin Tools": "", "Bullet List": "Täpiline loend", "Button ID": "Nupu ID", "Button Label": "Nupu silt", @@ -256,8 +262,10 @@ "Check for updates": "Kontrolli uuendusi", "Checking for updates...": "Uuenduste kontrollimine...", "Choose a model before saving...": "Valige mudel enne salvestamist...", + "Chunk Min Size Target": "", "Chunk Overlap": "Tükkide ülekate", "Chunk Size": "Tüki suurus", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "Šifrid", "Citation": "Viide", "Citations": "Citations", @@ -293,7 +301,6 @@ "Code Block": "Koodiplokk", "Code Editor": "", "Code execution": "Koodi täitmine", - "Code Execution": "Koodi täitmine", "Code Execution Engine": "Koodi täitmise mootor", "Code Execution Timeout": "Koodi täitmise aegumine", "Code formatted successfully": "Kood vormindatud edukalt", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "Võtke WebUI juurdepääsu saamiseks ühendust administraatoriga", "Content": "Sisu", "Content Extraction Engine": "Sisu ekstraheerimise mootor", + "Content lengths (character counts only)": "", "Continue Response": "Jätka vastust", "Continue with {{provider}}": "Jätka {{provider}}-ga", "Continue with Email": "Jätka e-postiga", @@ -393,6 +401,7 @@ "Database": "Andmebaas", "Datalab Marker API": "Datalab Marker API", "DD/MM/YYYY": "PP/KK/AAAA", + "DDGS Backend": "", "December": "Detsember", "Decrease UI Scale": "", "Deepgram": "Deepgram", @@ -474,6 +483,7 @@ "Dive into knowledge": "Sukeldu teadmistesse", "Do not install functions from sources you do not fully trust.": "Ärge installige funktsioone allikatest, mida te täielikult ei usalda.", "Do not install tools from sources you do not fully trust.": "Ärge installige tööriistu allikatest, mida te täielikult ei usalda.", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "Docling", "Docling Parameters": "", "Docling Server URL required.": "Docling serveri URL on nõutav.", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "Document Intelligence lõpp-punkt on nõutav.", "Document Intelligence Model": "", "Documentation": "Dokumentatsioon", - "Documents": "Dokumendid", "does not make any external connections, and your data stays securely on your locally hosted server.": "ei loo väliseid ühendusi ja teie andmed jäävad turvaliselt teie kohalikult majutatud serverisse.", "Domain Filter List": "Domeeni filtri nimekiri", "don't fetch random pipelines from sources you don't trust.": "Ära tõmba juhuslikke pipelines allikatest, mida sa ei usalda.", @@ -493,11 +502,14 @@ "Done": "Valmis", "Download": "Laadi alla", "Download & Delete": "Laadi alla ja kustuta", + "Download as JSON": "", "Download as SVG": "Laadi alla SVG-na", "Download canceled": "Allalaadimine tühistatud", "Download Database": "Laadi alla andmebaas", + "Downloading stats...": "", "Draw": "Joonista", "Drop any files here to upload": "Lohistage siia failid üleslaadimiseks", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "nt '30s', '10m'. Kehtivad ajaühikud on 's', 'm', 'h'.", "e.g. \"json\" or a JSON schema": "nt \"json\" või JSON skeem", "e.g. 60": "nt 60", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "Sisestage Bocha Search API võti", "Enter Brave Search API Key": "Sisestage Brave Search API võti", "Enter certificate path": "Sisestage sertifikaadi tee", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "Sisestage tükkide ülekate", "Enter Chunk Size": "Sisestage tüki suurus", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Sisestage komadega eraldatud \"token:kallutuse_väärtus\" paarid (näide: 5432:100, 413:-100)", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "Enter Väline Veeb Otsi URL", "Enter Firecrawl API Base URL": "Enter Firecrawl API Base URL", "Enter Firecrawl API Key": "Enter Firecrawl API Võti", + "Enter Firecrawl Timeout": "", "Enter folder name": "Enter kaust nimi", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "Sisestage Github toorURL", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "Enter hex värv (e.g. #FF0000)", "Enter ID": "Enter ID", "Enter Image Size (e.g. 512x512)": "Sisestage pildi suurus (nt 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "Sisestage Jina API võti", "Enter JSON config (e.g., {\"disable_links\": true})": "Enter JSON config (e.g., {\"disable_links\": true})", "Enter Jupyter Password": "Sisestage Jupyter parool", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "Sisestage Kagi Search API võti", "Enter Key Behavior": "Sisestage võtme käitumine", "Enter language codes": "Sisestage keelekoodid", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "", "Enter Mistral API Key": "Enter Mistral API Võti", "Enter Model ID": "Sisestage mudeli ID", @@ -736,6 +753,7 @@ "Failed to generate title": "Ebaõnnestus kuni generate title", "Failed to import models": "Ebaõnnestus kuni impordi mudelid", "Failed to load chat preview": "Ebaõnnestus kuni load vestlus preview", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "Ebaõnnestus kuni load fail content.", "Failed to move chat": "Ebaõnnestus kuni teisalda vestlus", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "Funktsioonid", "Features Permissions": "Funktsioonide õigused", "February": "Veebruar", + "Feedback": "", "Feedback deleted successfully": "", "Feedback Details": "Tagasiside Details", "Feedback History": "Tagasiside ajalugu", - "Feedbacks": "Tagasisided", "Feel free to add specific details": "Võite lisada konkreetseid üksikasju", "Female": "Female", "File": "Fail", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Tuvastati sõrmejälje võltsimine: initsiaalide kasutamine avatarina pole võimalik. Kasutatakse vaikimisi profiilikujutist.", "Firecrawl API Base URL": "Firecrawl API Base URL", "Firecrawl API Key": "Firecrawl API Võti", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "Floating Quick Actions", "Focus Chat Input": "", "Folder": "Kaust", "Folder Background Image": "Kausta taustpilt", "Folder deleted successfully": "Kaust edukalt kustutatud", + "Folder Max File Count": "", "Folder Name": "Kausta nimi", "Folder name cannot be empty.": "Kausta nimi ei saa olla tühi.", "Folder name updated successfully": "Kausta nimi edukalt uuendatud", @@ -826,7 +846,6 @@ "General": "Üldine", "Generate": "Generate", "Generate an image": "Genereeri pilt", - "Generate Image": "Genereeri pilt", "Generate Message Pair": "", "Generated Image": "Genereeritud pilt", "Generating search query": "Otsinguküsimuse genereerimine", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "Alusta {{WEBUI_NAME}} kasutamist", "Global": "Globaalne", "Good Response": "Hea vastus", + "Google": "", "Google Drive": "Google Drive", "Google PSE API Key": "Google PSE API võti", "Google PSE Engine Id": "Google PSE mootori ID", "Gravatar": "Gravatar", "Grid": "", + "Grokipedia": "", "Group": "Rühm", "Group Channel": "", "Group created successfully": "Grupp edukalt loodud", @@ -895,7 +916,6 @@ "Image Prompt Generation": "Pildi vihje genereerimine", "Image Prompt Generation Prompt": "Pildi vihje genereerimise vihje", "Image Size": "", - "Images": "Pildid", "Import": "Impordi", "Import Chats": "Impordi vestlused", "Import Config from JSON File": "Impordi seadistus JSON-failist", @@ -927,6 +947,7 @@ "Integration": "Integratsioon", "Integrations": "Integratsioonid", "Interface": "Kasutajaliides", + "Interface Settings Access": "", "Invalid file content": "Vigane faili sisu", "Invalid file format.": "Vigane failiformaat.", "Invalid JSON file": "Vigane JSON-fail", @@ -940,6 +961,7 @@ "is typing...": "kirjutab...", "Italic": "Kaldkiri", "January": "Jaanuar", + "Jina API Base URL": "", "Jina API Key": "Jina API võti", "join our Discord for help.": "liituge abi saamiseks meie Discordiga.", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "Leave empty kuni include all mudelid alates \"{{url}}/api/sildid\" lõpp-punkt", "Leave empty to include all models from \"{{url}}/models\" endpoint": "Leave empty kuni include all mudelid alates \"{{url}}/mudelid\" lõpp-punkt", "Leave empty to include all models or select specific models": "Jäta tühjaks, et kaasata kõik mudelid või vali konkreetsed mudelid", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "", "Leave empty to use the default prompt, or enter a custom prompt": "Jäta tühjaks, et kasutada vaikimisi vihjet, või sisesta kohandatud vihje", "Leave model field empty to use the default model.": "Jäta mudeli väli tühjaks, et kasutada vaikimisi mudelit.", @@ -1029,10 +1052,12 @@ "Manage your account information.": "Halda oma konto teavet.", "March": "Märts", "Markdown": "Markdown", - "Markdown (Header)": "Markdown (päis)", + "Markdown Header Text Splitter": "", "Max Speakers": "Maksimaalne kõnelejate arv", "Max Upload Count": "Maksimaalne üleslaadimiste arv", "Max Upload Size": "Maksimaalne üleslaadimise suurus", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Korraga saab alla laadida maksimaalselt 3 mudelit. Palun proovige hiljem uuesti.", "May": "Mai", "MBR": "", @@ -1042,6 +1067,7 @@ "Member removed successfully": "", "Members": "", "Members added successfully": "", + "Memories": "", "Memories accessible by LLMs will be shown here.": "LLM-idele ligipääsetavad mälestused kuvatakse siin.", "Memory": "Mälu", "Memory added successfully": "Mälu edukalt lisatud", @@ -1051,6 +1077,7 @@ "Merge Responses": "Ühenda vastused", "Merged Response": "Kombineeritud vastus", "Message": "", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "Selle funktsiooni kasutamiseks peaks sõnumite hindamine olema lubatud", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Teie saadetud sõnumeid pärast lingi loomist ei jagata. Kasutajad, kellel on URL, saavad vaadata jagatud vestlust.", "Microsoft OneDrive": "Microsoft OneDrive", @@ -1083,9 +1110,11 @@ "Model Name": "Mudeli nimi", "Model name already exists, please choose a different one": "Mudel nimi already exists, please choose a different one", "Model Name is required.": "Mudel Nimi is required.", + "Model names and usage frequency": "", "Model not selected": "Mudel pole valitud", "Model Params": "Mudeli parameetrid", "Model Permissions": "Mudeli õigused", + "Model responses or outputs": "", "Model unloaded successfully": "Mudel unloaded successfully", "Model updated successfully": "Mudel edukalt uuendatud", "Model(s) do not support file upload": "Mudel(id) ei toeta faili üleslaadimist", @@ -1096,6 +1125,7 @@ "Models imported successfully": "Mudelid edukalt imporditud", "Models Public Sharing": "Mudelite avalik jagamine", "Models Sharing": "", + "Mojeek": "", "Mojeek Search API Key": "Mojeek Search API võti", "More": "Rohkem", "More Concise": "Kokkuvõtlikum", @@ -1129,7 +1159,7 @@ "No conversation to save": "No conversation kuni salvesta", "No distance available": "Kaugus pole saadaval", "No expiration can pose security risks.": "No expiration can pose security risks.", - "No feedbacks found": "Tagasisidet ei leitud", + "No feedback found": "", "No file selected": "Faili pole valitud", "No files in this knowledge base.": "", "No functions found": "No functions found", @@ -1144,6 +1174,7 @@ "No models selected": "Mudeleid pole valitud", "No Notes": "No Märkmed", "No notes found": "No märkmed found", + "No one": "", "No pinned messages": "", "No prompts found": "No prompts found", "No results": "Tulemusi ei leitud", @@ -1195,6 +1226,7 @@ "Only invited users can access": "", "Only markdown files are allowed": "Only markdown failid are allowed", "Only select users and groups with permission can access": "Juurdepääs on ainult valitud õigustega kasutajatel ja gruppidel", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Oih! URL tundub olevat vigane. Palun kontrollige ja proovige uuesti.", "Oops! There are files still uploading. Please wait for the upload to complete.": "Oih! Failide üleslaadimine on veel pooleli. Palun oodake, kuni üleslaadimine lõpeb.", "Oops! There was an error in the previous response.": "Oih! Eelmises vastuses oli viga.", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "Ava WebUI can use tööriista provided autor any OpenAPI server.", "Open WebUI uses faster-whisper internally.": "Open WebUI kasutab sisemiselt faster-whisper'it.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI kasutab SpeechT5 ja CMU Arctic kõneleja manustamisi.", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Open WebUI versioon (v{{OPEN_WEBUI_VERSION}}) on madalam kui nõutav versioon (v{{REQUIRED_VERSION}})", "OpenAI": "OpenAI", "OpenAI API": "OpenAI API", @@ -1235,6 +1268,8 @@ "page": "leht", "Paginate": "Paginate", "Parameters": "Parameetrid", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "Parool", "Passwords do not match.": "Passwords do not match.", "Paste Large Text as File": "Kleebi suur tekst failina", @@ -1260,7 +1295,6 @@ "Pipe": "Pipe", "Pipeline deleted successfully": "Torustik edukalt kustutatud", "Pipeline downloaded successfully": "Torustik edukalt alla laaditud", - "Pipelines": "Torustikud", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines on pluginate süsteem, mis võimaldab suvalise koodi käivitamist —", "Pipelines Not Detected": "Torustikke ei tuvastatud", "Pipelines Valves": "Torustike klapid", @@ -1498,6 +1532,7 @@ "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.": "Määrab kasutatavad lõpetamise järjestused. Kui see muster kohatakse, lõpetab LLM teksti genereerimise ja tagastab. Mitme lõpetamise mustri saab määrata, täpsustades modelfile'is mitu eraldi lõpetamise parameetrit.", "Setting": "", "Settings": "Seaded", + "Settings Permissions": "", "Settings saved successfully!": "Seaded edukalt salvestatud!", "Share": "Jaga", "Share Chat": "Jaga vestlust", @@ -1541,6 +1576,7 @@ "Speech recognition error: {{error}}": "Kõnetuvastuse viga: {{error}}", "Speech-to-Text": "Speech-to-Text", "Speech-to-Text Engine": "Kõne-tekstiks mootor", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "Käivita a new conversation", "Start of the channel": "Kanali algus", "Start Tag": "Käivita Silt", @@ -1551,6 +1587,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Peata", + "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Lõpetamise järjestus", "Stream Chat Response": "Voogedasta vestluse vastust", @@ -1571,7 +1608,14 @@ "Support": "Tugi", "Support this plugin:": "Toeta seda pistikprogrammi:", "Supported MIME Types": "Supported MIME Types", + "Sync": "", + "Sync Complete!": "", "Sync directory": "Sünkroniseeri kataloog", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "Süsteem", "System Instructions": "Süsteemi juhised", "System Prompt": "Süsteemi vihje", @@ -1616,6 +1660,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "The Weight - BM25 Hybrid Otsi. 0 more semantic, 1 more lexical. Vaikimisi 0.5", "The width in pixels to compress images to. Leave empty for no compression.": "The laius in pixels kuni compress pildid kuni. Leave empty for no compression.", "Theme": "Teema", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "Mõtleb...", "This action cannot be undone. Do you wish to continue?": "Seda toimingut ei saa tagasi võtta. Kas soovite jätkata?", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "This channel was created peal {{createdAt}}. This is the very beginning - the {{channelName}} channel.", @@ -1730,6 +1775,7 @@ "Upload Pipeline": "Laadi torustik üles", "Upload Progress": "Üleslaadimise progress", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Laadi Edenemine: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", + "Uploaded files or images": "", "Uploading file...": "", "URL": "URL", "URL is required": "URL is required", @@ -1747,6 +1793,7 @@ "User Groups": "Kasutaja Groups", "User location successfully retrieved.": "Kasutaja asukoht edukalt hangitud.", "User menu": "Kasutaja menu", + "User ratings (thumbs up/down)": "", "User Webhooks": "Kasutaja Webhooks", "Username": "Kasutajanimi", "users": "", @@ -1796,15 +1843,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI teeb päringuid aadressile \"{{url}}/chat/completions\"", "What are you trying to achieve?": "Mida te püüate saavutada?", "What are you working on?": "Millega te tegelete?", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "Mis on uut", "What's on your mind?": "", "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.": "Kui see on lubatud, vastab mudel igale vestlussõnumile reaalajas, genereerides vastuse niipea, kui kasutaja sõnumi saadab. See režiim on kasulik reaalajas vestlusrakendustes, kuid võib mõjutada jõudlust aeglasema riistvara puhul.", "wherever you are": "kus iganes te olete", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "Whether kuni paginate the output. Each leht will be separated autor a horizontal rule ja leht number. Defaults kuni False.", "Whisper (Local)": "Whisper (lokaalne)", + "Who can share to this group": "", "Why?": "Miks?", "Widescreen Mode": "Laiekraani režiim", "Width": "Laius", + "Wikipedia": "", "Won": "Võitis", "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.": "Töötab koos top-k-ga. Kõrgem väärtus (nt 0,95) annab tulemuseks mitmekesisema teksti, samas kui madalam väärtus (nt 0,5) genereerib keskendunuma ja konservatiivsema teksti.", "Workspace": "Tööala", @@ -1816,6 +1867,8 @@ "Yacy Instance URL": "Yacy Instance URL", "Yacy Password": "Yacy Parool", "Yacy Username": "Yacy Username", + "Yahoo": "", + "Yandex": "", "Yesterday": "Eile", "Yesterday at {{LOCALIZED_TIME}}": "Eile kell {{LOCALIZED_TIME}}", "You": "Sina", @@ -1823,6 +1876,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Saate korraga vestelda maksimaalselt {{maxCount}} faili(ga).", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Saate isikupärastada oma suhtlust LLM-idega, lisades mälestusi alumise 'Halda' nupu kaudu, muutes need kasulikumaks ja teile kohandatumaks.", "You cannot upload an empty file.": "Te ei saa üles laadida tühja faili.", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "You do not have õigus kuni send sõnumid in this channel.", "You do not have permission to send messages in this thread.": "You do not have õigus kuni send sõnumid in this thread.", "You do not have permission to upload files to this knowledge base.": "", @@ -1834,6 +1890,8 @@ "Your Account": "Your Konto", "Your account status is currently pending activation.": "Teie konto staatus on praegu ootel aktiveerimist.", "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.": "Kogu teie toetus läheb otse pistikprogrammi arendajale; Open WebUI ei võta mingit protsenti. Kuid valitud rahastamisplatvormil võivad olla oma tasud.", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "Youtube", "Youtube Language": "Youtube keel", "Youtube Proxy URL": "Youtube puhverserveri URL" diff --git a/src/lib/i18n/locales/eu-ES/translation.json b/src/lib/i18n/locales/eu-ES/translation.json index b75577545..15be123f9 100644 --- a/src/lib/i18n/locales/eu-ES/translation.json +++ b/src/lib/i18n/locales/eu-ES/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "Ezarpen hauek aldatzeak aldaketak erabiltzaile guztiei aplikatuko dizkie.", "admin": "administratzailea", "Admin": "Administratzailea", + "Admin Contact Email": "", "Admin Panel": "Administrazio Panela", "Admin Settings": "Administrazio Ezarpenak", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administratzaileek tresna guztietarako sarbidea dute beti; erabiltzaileek lan-eremuan eredu bakoitzeko esleituak behar dituzte tresnak.", @@ -101,7 +102,6 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "Baimendu Fitxategiak Igotzea", - "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "Baimendu urruneko ahotsak", "Allow Rate Response": "", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "eta {{COUNT}} gehiago", "and create a new shared link.": "eta sortu partekatutako esteka berri bat.", "Android": "", + "Anyone": "", "API Base URL": "API Oinarri URLa", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "", "API Key": "API Gakoa", @@ -175,6 +176,7 @@ "Authenticate": "Autentifikatu", "Authentication": "", "Auto": "", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "Automatikoki Kopiatu Erantzuna Arbelera", "Auto-playback response": "Automatikoki erreproduzitu erantzuna", "Autocomplete Generation": "", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "AUTOMATIC1111 Api Autentifikazio Katea", "AUTOMATIC1111 Base URL": "AUTOMATIC1111 Oinarri URLa", "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Oinarri URLa beharrezkoa da.", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "Zerrenda erabilgarria", "Available Tools": "", "available users": "erabilgarri dauden erabiltzaileak", @@ -201,6 +204,7 @@ "before": "aurretik", "Being lazy": "Alferra izatea", "Beta": "", + "Bing": "", "Bing Search V7 Endpoint": "Bing Bilaketa V7 Endpointua", "Bing Search V7 Subscription Key": "Bing Bilaketa V7 Harpidetza Gakoa", "Bio": "", @@ -209,7 +213,9 @@ "Bocha Search API Key": "", "Bold": "", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "", + "Brave": "", "Brave Search API Key": "Brave Bilaketa API Gakoa", + "Builtin Tools": "", "Bullet List": "", "Button ID": "", "Button Label": "", @@ -256,8 +262,10 @@ "Check for updates": "Bilatu eguneraketak", "Checking for updates...": "Eguneraketak bilatzen...", "Choose a model before saving...": "Aukeratu eredu bat gorde aurretik...", + "Chunk Min Size Target": "", "Chunk Overlap": "Zatien Gainjartzea", "Chunk Size": "Zati Tamaina", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "Zifratuak", "Citation": "Aipamena", "Citations": "", @@ -293,7 +301,6 @@ "Code Block": "", "Code Editor": "", "Code execution": "Kodearen exekuzioa", - "Code Execution": "", "Code Execution Engine": "", "Code Execution Timeout": "", "Code formatted successfully": "Kodea ongi formateatu da", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "Jarri harremanetan Administratzailearekin WebUI Sarbiderako", "Content": "Edukia", "Content Extraction Engine": "", + "Content lengths (character counts only)": "", "Continue Response": "Jarraitu Erantzuna", "Continue with {{provider}}": "Jarraitu {{provider}}-rekin", "Continue with Email": "Jarraitu Posta Elektronikoarekin", @@ -393,6 +401,7 @@ "Database": "Datu-basea", "Datalab Marker API": "", "DD/MM/YYYY": "", + "DDGS Backend": "", "December": "Abendua", "Decrease UI Scale": "", "Deepgram": "", @@ -474,6 +483,7 @@ "Dive into knowledge": "Murgildu ezagutzan", "Do not install functions from sources you do not fully trust.": "Ez instalatu guztiz fidagarriak ez diren iturrietatik datozen funtzioak.", "Do not install tools from sources you do not fully trust.": "Ez instalatu guztiz fidagarriak ez diren iturrietatik datozen tresnak.", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "", "Docling Parameters": "", "Docling Server URL required.": "", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "", "Document Intelligence Model": "", "Documentation": "Dokumentazioa", - "Documents": "Dokumentuak", "does not make any external connections, and your data stays securely on your locally hosted server.": "ez du kanpo konexiorik egiten, eta zure datuak modu seguruan mantentzen dira zure zerbitzari lokalean.", "Domain Filter List": "", "don't fetch random pipelines from sources you don't trust.": "Ez eskuratu pipelines aleatorioak iturri ez fidagarrietatik.", @@ -493,11 +502,14 @@ "Done": "Eginda", "Download": "Deskargatu", "Download & Delete": "Deskargatu eta ezabatu", + "Download as JSON": "", "Download as SVG": "", "Download canceled": "Deskarga bertan behera utzi da", "Download Database": "Deskargatu Datu-basea", + "Downloading stats...": "", "Draw": "Marraztu", "Drop any files here to upload": "", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "adib. '30s','10m'. Denbora unitate baliodunak dira 's', 'm', 'h'.", "e.g. \"json\" or a JSON schema": "", "e.g. 60": "", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "", "Enter Brave Search API Key": "Sartu Brave Bilaketa API Gakoa", "Enter certificate path": "Sartu ziurtagiriaren bidea", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "Sartu Zatien Gainjartzea (chunk overlap)", "Enter Chunk Size": "Sartu Zati Tamaina", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "", "Enter Firecrawl API Base URL": "", "Enter Firecrawl API Key": "", + "Enter Firecrawl Timeout": "", "Enter folder name": "", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "Sartu Github Raw URLa", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "", "Enter ID": "", "Enter Image Size (e.g. 512x512)": "Sartu Irudi Tamaina (adib. 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "Sartu Jina API Gakoa", "Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter Jupyter Password": "", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "", "Enter Key Behavior": "", "Enter language codes": "Sartu hizkuntza kodeak", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "", "Enter Mistral API Key": "", "Enter Model ID": "Sartu Eredu IDa", @@ -736,6 +753,7 @@ "Failed to generate title": "", "Failed to import models": "", "Failed to load chat preview": "", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "", "Failed to move chat": "", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "", "Features Permissions": "", "February": "Otsaila", + "Feedback": "", "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "Feedbacken Historia", - "Feedbacks": "Feedbackak", "Feel free to add specific details": "Gehitu xehetasun zehatzak nahi izanez gero", "Female": "", "File": "Fitxategia", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Hatz-marka faltsutzea detektatu da: Ezin dira inizialak avatar gisa erabili. Profil irudi lehenetsia erabiliko da.", "Firecrawl API Base URL": "", "Firecrawl API Key": "", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "", "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "Karpeta ongi ezabatu da", + "Folder Max File Count": "", "Folder Name": "", "Folder name cannot be empty.": "Karpetaren izena ezin da hutsik egon.", "Folder name updated successfully": "Karpetaren izena ongi eguneratu da", @@ -826,7 +846,6 @@ "General": "Orokorra", "Generate": "", "Generate an image": "", - "Generate Image": "Sortu Irudia", "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Bilaketa kontsulta sortzen", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "Hasi {{WEBUI_NAME}}-rekin", "Global": "Globala", "Good Response": "Erantzun Ona", + "Google": "", "Google Drive": "", "Google PSE API Key": "Google PSE API Gakoa", "Google PSE Engine Id": "Google PSE Motor IDa", "Gravatar": "", "Grid": "", + "Grokipedia": "", "Group": "Taldea", "Group Channel": "", "Group created successfully": "Taldea ongi sortu da", @@ -895,7 +916,6 @@ "Image Prompt Generation": "", "Image Prompt Generation Prompt": "", "Image Size": "", - "Images": "Irudiak", "Import": "", "Import Chats": "Inportatu Txatak", "Import Config from JSON File": "Inportatu Konfigurazioa JSON Fitxategitik", @@ -927,6 +947,7 @@ "Integration": "", "Integrations": "", "Interface": "Interfazea", + "Interface Settings Access": "", "Invalid file content": "", "Invalid file format.": "Fitxategi formatu baliogabea.", "Invalid JSON file": "", @@ -940,6 +961,7 @@ "is typing...": "", "Italic": "", "January": "Urtarrila", + "Jina API Base URL": "", "Jina API Key": "Jina API Gakoa", "join our Discord for help.": "batu gure Discord-era laguntzarako.", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "", "Leave empty to include all models or select specific models": "Utzi hutsik eredu guztiak sartzeko edo hautatu eredu zehatzak", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "", "Leave empty to use the default prompt, or enter a custom prompt": "Utzi hutsik prompt lehenetsia erabiltzeko, edo sartu prompt pertsonalizatu bat", "Leave model field empty to use the default model.": "", @@ -1029,10 +1052,12 @@ "Manage your account information.": "", "March": "Martxoa", "Markdown": "", - "Markdown (Header)": "", + "Markdown Header Text Splitter": "", "Max Speakers": "", "Max Upload Count": "Karga kopuru maximoa", "Max Upload Size": "Karga tamaina maximoa", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Gehienez 3 modelo deskarga daitezke aldi berean. Saiatu berriro geroago.", "May": "Maiatza", "MBR": "", @@ -1042,6 +1067,7 @@ "Member removed successfully": "", "Members": "", "Members added successfully": "", + "Memories": "", "Memories accessible by LLMs will be shown here.": "LLMek atzitu ditzaketen memoriak hemen erakutsiko dira.", "Memory": "Memoria", "Memory added successfully": "Memoria ongi gehitu da", @@ -1051,6 +1077,7 @@ "Merge Responses": "Batu erantzunak", "Merged Response": "Erantzun bateratua", "Message": "", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "Mezuen balorazioa gaitu behar da funtzionalitate hau erabiltzeko", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Esteka sortu ondoren bidaltzen dituzun mezuak ez dira partekatuko. URLa duten erabiltzaileek partekatutako txata ikusi ahal izango dute.", "Microsoft OneDrive": "", @@ -1083,9 +1110,11 @@ "Model Name": "Modeloaren izena", "Model name already exists, please choose a different one": "", "Model Name is required.": "", + "Model names and usage frequency": "", "Model not selected": "Ez da modelorik hautatu", "Model Params": "Modelo parametroak", "Model Permissions": "Modelo baimenak", + "Model responses or outputs": "", "Model unloaded successfully": "", "Model updated successfully": "Modeloa ongi eguneratu da", "Model(s) do not support file upload": "", @@ -1096,6 +1125,7 @@ "Models imported successfully": "", "Models Public Sharing": "", "Models Sharing": "", + "Mojeek": "", "Mojeek Search API Key": "Mojeek bilaketa API gakoa", "More": "Gehiago", "More Concise": "", @@ -1129,7 +1159,7 @@ "No conversation to save": "", "No distance available": "Ez dago distantziarik eskuragarri", "No expiration can pose security risks.": "", - "No feedbacks found": "Ez da iritzirik aurkitu", + "No feedback found": "", "No file selected": "Ez da fitxategirik hautatu", "No files in this knowledge base.": "", "No functions found": "", @@ -1144,6 +1174,7 @@ "No models selected": "Ez da modelorik hautatu", "No Notes": "", "No notes found": "", + "No one": "", "No pinned messages": "", "No prompts found": "", "No results": "Ez da emaitzarik aurkitu", @@ -1195,6 +1226,7 @@ "Only invited users can access": "", "Only markdown files are allowed": "", "Only select users and groups with permission can access": "Baimena duten erabiltzaile eta talde hautatuek soilik sar daitezke", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Ui! URLa ez da baliozkoa. Mesedez, egiaztatu eta saiatu berriro.", "Oops! There are files still uploading. Please wait for the upload to complete.": "Ui! Oraindik fitxategiak kargatzen ari dira. Mesedez, itxaron karga amaitu arte.", "Oops! There was an error in the previous response.": "Ui! Errore bat egon da aurreko erantzunean.", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "Open WebUI-k faster-whisper erabiltzen du barnean.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI-k SpeechT5 eta CMU Arctic hiztun txertaketak erabiltzen ditu.", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Open WebUI bertsioa (v{{OPEN_WEBUI_VERSION}}) beharrezko bertsioa (v{{REQUIRED_VERSION}}) baino baxuagoa da", "OpenAI": "OpenAI", "OpenAI API": "OpenAI API", @@ -1235,6 +1268,8 @@ "page": "orria", "Paginate": "", "Parameters": "", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "Pasahitza", "Passwords do not match.": "", "Paste Large Text as File": "Itsatsi testu luzea fitxategi gisa", @@ -1260,7 +1295,6 @@ "Pipe": "", "Pipeline deleted successfully": "Pipeline-a ongi ezabatu da", "Pipeline downloaded successfully": "Pipeline-a ongi deskargatu da", - "Pipelines": "Pipeline-ak", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines pluginen sistema bat da, ausazko kode‑exekuzioarekin —", "Pipelines Not Detected": "Ez da Pipeline-rik detektatu", "Pipelines Valves": "Pipeline balbulak", @@ -1498,6 +1532,7 @@ "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.": "Ezartzen ditu erabiliko diren gelditzeko sekuentziak. Patroi hau aurkitzen denean, LLMak testua sortzeari utziko dio eta itzuli egingo da. Gelditzeko patroi anitz ezar daitezke modelfile batean gelditzeko parametro anitz zehaztuz.", "Setting": "", "Settings": "Ezarpenak", + "Settings Permissions": "", "Settings saved successfully!": "Ezarpenak ongi gorde dira!", "Share": "Partekatu", "Share Chat": "Partekatu txata", @@ -1541,6 +1576,7 @@ "Speech recognition error: {{error}}": "Ahots ezagutze errorea: {{error}}", "Speech-to-Text": "", "Speech-to-Text Engine": "Ahotsetik-testura motorra", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "", "Start of the channel": "Kanalaren hasiera", "Start Tag": "", @@ -1551,6 +1587,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Gelditu", + "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Gelditzeko sekuentzia", "Stream Chat Response": "Transmititu txat erantzuna", @@ -1571,7 +1608,14 @@ "Support": "Laguntza", "Support this plugin:": "Lagundu plugin hau:", "Supported MIME Types": "", + "Sync": "", + "Sync Complete!": "", "Sync directory": "Sinkronizatu direktorioa", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "Sistema", "System Instructions": "Sistema jarraibideak", "System Prompt": "Sistema prompta", @@ -1616,6 +1660,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "", "The width in pixels to compress images to. Leave empty for no compression.": "", "Theme": "Gaia", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "Pentsatzen...", "This action cannot be undone. Do you wish to continue?": "Ekintza hau ezin da desegin. Jarraitu nahi duzu?", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "", @@ -1730,6 +1775,7 @@ "Upload Pipeline": "Kargatu Pipeline-a", "Upload Progress": "Kargaren aurrerapena", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploaded files or images": "", "Uploading file...": "", "URL": "URLa", "URL is required": "", @@ -1747,6 +1793,7 @@ "User Groups": "", "User location successfully retrieved.": "Erabiltzailearen kokapena ongi berreskuratu da.", "User menu": "", + "User ratings (thumbs up/down)": "", "User Webhooks": "", "Username": "Erabiltzaile-izena", "users": "", @@ -1796,15 +1843,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI-k eskaerak egingo ditu \"{{url}}/chat/completions\"-era", "What are you trying to achieve?": "Zer lortu nahi duzu?", "What are you working on?": "Zertan ari zara lanean?", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "Zer berri honetan:", "What's on your mind?": "", "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.": "Gaituta dagoenean, modeloak txat mezu bakoitzari denbora errealean erantzungo dio, erantzun bat sortuz erabiltzaileak mezua bidaltzen duen bezain laster. Modu hau erabilgarria da zuzeneko txat aplikazioetarako, baina errendimenduan eragina izan dezake hardware motelagoan.", "wherever you are": "zauden tokian zaudela", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whisper (Local)": "Whisper (Lokala)", + "Who can share to this group": "", "Why?": "Zergatik?", "Widescreen Mode": "Pantaila zabaleko modua", "Width": "", + "Wikipedia": "", "Won": "Irabazi du", "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.": "", "Workspace": "Lan-eremua", @@ -1816,6 +1867,8 @@ "Yacy Instance URL": "", "Yacy Password": "", "Yacy Username": "", + "Yahoo": "", + "Yandex": "", "Yesterday": "Atzo", "Yesterday at {{LOCALIZED_TIME}}": "", "You": "Zu", @@ -1823,6 +1876,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Gehienez {{maxCount}} fitxategirekin txateatu dezakezu aldi berean.", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "LLMekin dituzun interakzioak pertsonalizatu ditzakezu memoriak gehituz beheko 'Kudeatu' botoiaren bidez, lagungarriagoak eta zuretzat egokituagoak eginez.", "You cannot upload an empty file.": "Ezin duzu fitxategi huts bat kargatu.", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this thread.": "", "You do not have permission to upload files to this knowledge base.": "", @@ -1834,6 +1890,8 @@ "Your Account": "", "Your account status is currently pending activation.": "Zure kontuaren egoera aktibazio zain dago.", "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.": "Zure ekarpen osoa zuzenean plugin garatzaileari joango zaio; Open WebUI-k ez du ehunekorik hartzen. Hala ere, aukeratutako finantzaketa plataformak bere komisioak izan ditzake.", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "Youtube", "Youtube Language": "", "Youtube Proxy URL": "" diff --git a/src/lib/i18n/locales/fa-IR/translation.json b/src/lib/i18n/locales/fa-IR/translation.json index 6be300d43..7eed896de 100644 --- a/src/lib/i18n/locales/fa-IR/translation.json +++ b/src/lib/i18n/locales/fa-IR/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "با تنظیم این تنظیمات، تغییرات به طور کلی برای همه کاربران اعمال می\u200cشود.", "admin": "مدیر", "Admin": "مدیر", + "Admin Contact Email": "", "Admin Panel": "پنل مدیریت", "Admin Settings": "تنظیمات مدیریت", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "مدیران همیشه به تمام ابزارها دسترسی دارند؛ کاربران نیاز به ابزارهای اختصاص داده شده برای هر مدل در فضای کاری دارند.", @@ -101,7 +102,6 @@ "Allow Continue Response": "مجاز کردن ادامه پاسخ", "Allow Delete Messages": "مجاز کردن حذف پیام\u200cها", "Allow File Upload": "اجازه بارگذاری فایل", - "Allow Group Sharing": "", "Allow Multiple Models in Chat": "اجازه استفاده از چند مدل در گفتگو", "Allow non-local voices": "اجازه صداهای غیر محلی", "Allow Rate Response": "مجاز کردن امتیازدهی به پاسخ", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "و {{COUNT}} مورد دیگر", "and create a new shared link.": "و یک پیوند اشتراک\u200cگذاری جدید ایجاد کنید.", "Android": "اندروید", + "Anyone": "", "API Base URL": "نشانی پایهٔ API", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "آدرس پایه API برای سرویس مارکر دیتا\u200cلب. پیش\u200cفرض: https://www.datalab.to/api/v1/marker", "API Key": "کلید API", @@ -175,6 +176,7 @@ "Authenticate": "احراز هویت", "Authentication": "احراز هویت", "Auto": "خودکار", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "کپی خودکار پاسخ به کلیپ بورد", "Auto-playback response": "پخش خودکار پاسخ", "Autocomplete Generation": "تولید تکمیل خودکار", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "رشته احراز هویت API اتوماتیک1111", "AUTOMATIC1111 Base URL": "پایه URL AUTOMATIC1111 ", "AUTOMATIC1111 Base URL is required.": "به URL پایه AUTOMATIC1111 مورد نیاز است.", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "فهرست دردسترس", "Available Tools": "ابزارهای موجود", "available users": "کاربران در دسترس", @@ -201,6 +204,7 @@ "before": "قبل", "Being lazy": "حالت سازنده", "Beta": "بتا", + "Bing": "", "Bing Search V7 Endpoint": "نقطه پایانی جستجوی Bing V7", "Bing Search V7 Subscription Key": "کلید اشتراک جستجوی Bing V7", "Bio": "بیوگرافی", @@ -209,7 +213,9 @@ "Bocha Search API Key": "کلید API جستجوی Bocha", "Bold": "ضخیم", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "تقویت یا جریمه توکن\u200cهای خاص برای پاسخ\u200cهای محدود. مقادیر بایاس بین -100 و 100 (شامل) محدود خواهند شد. (پیش\u200cفرض: هیچ)", + "Brave": "", "Brave Search API Key": "کلید API جستجوی شجاع", + "Builtin Tools": "", "Bullet List": "لیست گلوله\u200cای", "Button ID": "شناسه دکمه", "Button Label": "برچسب دکمه", @@ -256,8 +262,10 @@ "Check for updates": "بررسی به\u200cروزرسانی", "Checking for updates...": "در حال بررسی برای به\u200cروزرسانی..", "Choose a model before saving...": "قبل از ذخیره یک مدل را انتخاب کنید...", + "Chunk Min Size Target": "", "Chunk Overlap": "همپوشانی تکه", "Chunk Size": "اندازه تکه", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "رمزها", "Citation": "استناد", "Citations": "ارجاعات", @@ -293,7 +301,6 @@ "Code Block": "بلاک کد", "Code Editor": "ویرایشگر کد", "Code execution": "اجرای کد", - "Code Execution": "اجرای کد", "Code Execution Engine": "موتور اجرای کد", "Code Execution Timeout": "مهلت اجرای کد", "Code formatted successfully": "کد با موفقیت قالب\u200cبندی شد", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "برای دسترسی به WebUI با مدیر تماس بگیرید", "Content": "محتوا", "Content Extraction Engine": "موتور استخراج محتوا", + "Content lengths (character counts only)": "", "Continue Response": "ادامه پاسخ", "Continue with {{provider}}": "با {{provider}} ادامه دهید", "Continue with Email": "با ایمیل ادامه دهید", @@ -393,6 +401,7 @@ "Database": "پایگاه داده", "Datalab Marker API": "API مارکر دیتا\u200cلب", "DD/MM/YYYY": "روز/ماه/سال", + "DDGS Backend": "", "December": "دسامبر", "Decrease UI Scale": "", "Deepgram": "دیپ\u200cگرام", @@ -474,6 +483,7 @@ "Dive into knowledge": "غوطه\u200cور شدن در دانش", "Do not install functions from sources you do not fully trust.": "توابع را از منابعی که کاملاً به آنها اعتماد ندارید نصب نکنید.", "Do not install tools from sources you do not fully trust.": "ابزارها را از منابعی که کاملاً به آنها اعتماد ندارید نصب نکنید.", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "داکلینگ", "Docling Parameters": "", "Docling Server URL required.": "آدرس سرور داکلینگ مورد نیاز است.", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "نقطه پایانی هوش سند مورد نیاز است.", "Document Intelligence Model": "", "Documentation": "مستندات", - "Documents": "اسناد", "does not make any external connections, and your data stays securely on your locally hosted server.": "هیچ اتصال خارجی ایجاد نمی کند و داده های شما به طور ایمن در سرور میزبان محلی شما باقی می ماند.", "Domain Filter List": "لیست فیلتر دامنه", "don't fetch random pipelines from sources you don't trust.": "pipelineهای تصادفی را از منابع غیرقابل اعتماد دریافت نکنید.", @@ -493,11 +502,14 @@ "Done": "انجام شد", "Download": "دانلود کن", "Download & Delete": "دانلود و حذف", + "Download as JSON": "", "Download as SVG": "دانلود به صورت SVG", "Download canceled": "دانلود لغو شد", "Download Database": "دانلود پایگاه داده", + "Downloading stats...": "", "Draw": "رسم کردن", "Drop any files here to upload": "فایل\u200cها را برای آپلود به اینجا بکشید و رها کنید", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "به طور مثال '30s','10m'. واحد\u200cهای زمانی معتبر 's', 'm', 'h' هستند.", "e.g. \"json\" or a JSON schema": "مثلا \"json\" یا یک طرح JSON", "e.g. 60": "مثلا 60", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "کلید API جستجوی Bocha را وارد کنید", "Enter Brave Search API Key": "کلید API جستجوی شجاع را وارد کنید", "Enter certificate path": "مسیر گواهینامه را وارد کنید", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "مقدار Chunk Overlap را وارد کنید", "Enter Chunk Size": "مقدار Chunk Size را وارد کنید", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "جفت\u200cهای \"توکن:مقدار_بایاس\" را با کاما جدا شده وارد کنید (مثال: 5432:100, 413:-100)", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "آدرس URL جستجوی وب خارجی را وارد کنید", "Enter Firecrawl API Base URL": "آدرس پایه API فایرکراول را وارد کنید", "Enter Firecrawl API Key": "کلید API فایرکراول را وارد کنید", + "Enter Firecrawl Timeout": "", "Enter folder name": "نام پوشه را وارد کنید", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "آدرس Github Raw را وارد کنید", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "رنگ هگزادسیمال را وارد کنید (مثلاً #FF0000)", "Enter ID": "شناسه را وارد کنید", "Enter Image Size (e.g. 512x512)": "اندازه تصویر را وارد کنید (مثال: 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "کلید API جینا را وارد کنید", "Enter JSON config (e.g., {\"disable_links\": true})": "پیکربندی JSON را وارد کنید (مثلاً، {\"disable_links\": true})", "Enter Jupyter Password": "رمز عبور ژوپیتر را وارد کنید", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "کلید API جستجوی کاگی را وارد کنید", "Enter Key Behavior": "رفتار کلید را وارد کنید", "Enter language codes": "کد زبان را وارد کنید", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "آدرس پایه API میسترال را وارد کنید", "Enter Mistral API Key": "کلید API میسترال را وارد کنید", "Enter Model ID": "شناسه مدل را وارد کنید", @@ -736,6 +753,7 @@ "Failed to generate title": "تولید عنوان ناموفق بود", "Failed to import models": "وارد کردن مدل\u200cها ناموفق بود", "Failed to load chat preview": "بارگیری پیش\u200cنمایش چت ناموفق بود", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "بارگیری محتوای فایل ناموفق بود.", "Failed to move chat": "انتقال چت ناموفق بود", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "ویژگی\u200cها", "Features Permissions": "مجوزهای ویژگی\u200cها", "February": "فوریه", + "Feedback": "", "Feedback deleted successfully": "", "Feedback Details": "جزئیات بازخورد", "Feedback History": "تاریخچهٔ بازخورد", - "Feedbacks": "بازخوردها", "Feel free to add specific details": "اگر به دلخواه، معلومات خاصی اضافه کنید", "Female": "زن", "File": "پرونده", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "فانگ سرفیس شناسایی شد: نمی توان از نمایه شما به عنوان آواتار استفاده کرد. پیش فرض به عکس پروفایل پیش فرض برگشت داده شد.", "Firecrawl API Base URL": "آدرس پایه API فایرکراول", "Firecrawl API Key": "کلید API فایرکراول", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "اقدامات سریع شناور", "Focus Chat Input": "فوکوس روی ورودی چت", "Folder": "پوشه", "Folder Background Image": "تصویر پس\u200cزمینه پوشه", "Folder deleted successfully": "پوشه با موفقیت حذف شد", + "Folder Max File Count": "", "Folder Name": "نام پوشه", "Folder name cannot be empty.": "نام پوشه نمی\u200cتواند خالی باشد.", "Folder name updated successfully": "نام پوشه با موفقیت به\u200cروز شد", @@ -826,7 +846,6 @@ "General": "عمومی", "Generate": "تولید", "Generate an image": "تولید یک تصویر", - "Generate Image": "تولید تصویر", "Generate Message Pair": "تولید جفت پیام", "Generated Image": "تصویر تولید شده", "Generating search query": "در حال تولید پرسوجوی جستجو", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "شروع کار با {{WEBUI_NAME}}", "Global": "سراسری", "Good Response": "پاسخ خوب", + "Google": "", "Google Drive": "گوگل درایو", "Google PSE API Key": "گوگل PSE API کلید", "Google PSE Engine Id": "شناسه موتور PSE گوگل", "Gravatar": "گراواتار", "Grid": "", + "Grokipedia": "", "Group": "گروه", "Group Channel": "", "Group created successfully": "گروه با موفقیت ایجاد شد", @@ -895,7 +916,6 @@ "Image Prompt Generation": "تولید پرامپت تصویر", "Image Prompt Generation Prompt": "پرامپت تولید پرامپت تصویر", "Image Size": "اندازه تصویر", - "Images": "تصاویر", "Import": "وارد کردن", "Import Chats": "درون\u200cریزی گفتگوها", "Import Config from JSON File": "درون\u200cریزی از پروندهٔ JSON", @@ -927,6 +947,7 @@ "Integration": "یکپارچه\u200cسازی", "Integrations": "یکپارچه\u200cسازی\u200cها", "Interface": "رابط", + "Interface Settings Access": "", "Invalid file content": "محتوای فایل نامعتبر است", "Invalid file format.": "قالب فایل نامعتبر است.", "Invalid JSON file": "فایل JSON نامعتبر است", @@ -940,6 +961,7 @@ "is typing...": "در حال تایپ...", "Italic": "ایتالیک", "January": "ژانویه", + "Jina API Base URL": "", "Jina API Key": "کلید API جینا", "join our Discord for help.": "برای کمک به دیسکورد ما بپیوندید.", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "برای شامل شدن همه مدل\u200cها از نقطه پایانی \"{{url}}/api/tags\" خالی بگذارید", "Leave empty to include all models from \"{{url}}/models\" endpoint": "برای شامل شدن همه مدل\u200cها از نقطه پایانی \"{{url}}/models\" خالی بگذارید", "Leave empty to include all models or select specific models": "برای شامل شدن همه مدل\u200cها خالی بگذارید یا مدل\u200cهای خاص را انتخاب کنید", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "برای استفاده از مدل پیش\u200cفرض (voxtral-mini-latest) خالی بگذارید.", "Leave empty to use the default prompt, or enter a custom prompt": "برای استفاده از پرامپت پیش\u200cفرض خالی بگذارید، یا یک پرامپت سفارشی وارد کنید", "Leave model field empty to use the default model.": "برای استفاده از مدل پیش\u200cفرض، فیلد مدل را خالی بگذارید.", @@ -1029,10 +1052,12 @@ "Manage your account information.": "اطلاعات حساب خود را مدیریت کنید.", "March": "مارچ", "Markdown": "مارک\u200cداون", - "Markdown (Header)": "مارک\u200cداون (هدر)", + "Markdown Header Text Splitter": "", "Max Speakers": "حداکثر تعداد بلندگوها", "Max Upload Count": "حداکثر تعداد آپلود", "Max Upload Size": "حداکثر اندازه آپلود", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "حداکثر 3 مدل را می توان به طور همزمان دانلود کرد. لطفاً بعداً دوباره امتحان کنید.", "May": "ماهی", "MBR": "", @@ -1042,6 +1067,7 @@ "Member removed successfully": "", "Members": "", "Members added successfully": "", + "Memories": "", "Memories accessible by LLMs will be shown here.": "حافظه های دسترسی به LLMs در اینجا نمایش داده می شوند.", "Memory": "حافظه", "Memory added successfully": "حافظه با موفقیت اضافه شد", @@ -1051,6 +1077,7 @@ "Merge Responses": "ادغام پاسخ\u200cها", "Merged Response": "پاسخ ادغام شده", "Message": "پیام", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "برای استفاده از این ویژگی باید امتیازدهی پیام\u200cها فعال باشد", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "پیام های شما بعد از ایجاد لینک شما به اشتراک نمی گردد. کاربران با لینک URL می توانند چت اشتراک را مشاهده کنند.", "Microsoft OneDrive": "وان\u200cدرایو مایکروسافت", @@ -1083,9 +1110,11 @@ "Model Name": "نام مدل", "Model name already exists, please choose a different one": "نام مدل قبلاً وجود دارد، لطفاً یک نام دیگر انتخاب کنید", "Model Name is required.": "نام مدل مورد نیاز است.", + "Model names and usage frequency": "", "Model not selected": "مدل انتخاب نشده", "Model Params": "مدل پارامز", "Model Permissions": "مجوزهای مدل", + "Model responses or outputs": "", "Model unloaded successfully": "مدل با موفقیت خارج شد", "Model updated successfully": "مدل با موفقیت به\u200cروز شد", "Model(s) do not support file upload": "مدل(ها) از بارگذاری فایل پشتیبانی نمی\u200cکنند", @@ -1096,6 +1125,7 @@ "Models imported successfully": "مدل\u200cها با موفقیت وارد شدند", "Models Public Sharing": "اشتراک\u200cگذاری عمومی مدل\u200cها", "Models Sharing": "", + "Mojeek": "", "Mojeek Search API Key": "کلید API جستجوی موجیک", "More": "بیشتر", "More Concise": "خلاصه\u200cتر", @@ -1129,7 +1159,7 @@ "No conversation to save": "هیچ مکالمه\u200cای برای ذخیره وجود ندارد", "No distance available": "فاصله\u200cای در دسترس نیست", "No expiration can pose security risks.": "عدم انقضا می\u200cتواند خطرات امنیتی ایجاد کند.", - "No feedbacks found": "بازخوردی یافت نشد", + "No feedback found": "", "No file selected": "فایلی انتخاب نشده است", "No files in this knowledge base.": "", "No functions found": "هیچ تابعی یافت نشد", @@ -1144,6 +1174,7 @@ "No models selected": "مدلی انتخاب نشده است", "No Notes": "هیچ یادداشتی وجود ندارد", "No notes found": "هیچ یادداشتی یافت نشد", + "No one": "", "No pinned messages": "", "No prompts found": "هیچ پرامپتی یافت نشد", "No results": "نتیجه\u200cای یافت نشد", @@ -1195,6 +1226,7 @@ "Only invited users can access": "", "Only markdown files are allowed": "فقط فایل\u200cهای مارک\u200cداون مجاز هستند", "Only select users and groups with permission can access": "فقط کاربران و گروه\u200cهای دارای مجوز می\u200cتوانند دسترسی داشته باشند", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "اوه! به نظر می رسد URL نامعتبر است. لطفاً دوباره بررسی کنید و دوباره امتحان کنید.", "Oops! There are files still uploading. Please wait for the upload to complete.": "اوه! هنوز فایل\u200cهایی در حال آپلود هستند. لطفاً منتظر تکمیل آپلود بمانید.", "Oops! There was an error in the previous response.": "اوه! در پاسخ قبلی خطایی رخ داد.", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI می\u200cتواند از ابزارهای ارائه شده توسط هر سرور OpenAPI استفاده کند.", "Open WebUI uses faster-whisper internally.": "Open WebUI به صورت داخلی از faster-whisper استفاده می\u200cکند.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI از SpeechT5 و جاسازی\u200cهای گوینده CMU Arctic استفاده می\u200cکند.", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "نسخه Open WebUI (v{{OPEN_WEBUI_VERSION}}) پایین\u200cتر از نسخه مورد نیاز (v{{REQUIRED_VERSION}}) است", "OpenAI": "OpenAI", "OpenAI API": "OpenAI API", @@ -1235,6 +1268,8 @@ "page": "صفحه", "Paginate": "صفحه\u200cبندی", "Parameters": "پارامترها", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "رمز عبور", "Passwords do not match.": "رمزهای عبور مطابقت ندارند.", "Paste Large Text as File": "چسباندن متن بزرگ به عنوان فایل", @@ -1260,7 +1295,6 @@ "Pipe": "خط لوله", "Pipeline deleted successfully": "خط لوله با موفقیت حذف شد", "Pipeline downloaded successfully": "خط لوله با موفقیت دانلود شد", - "Pipelines": "خط لوله", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines یک سیستم افزونه با امکان اجرای دلخواه کد است —", "Pipelines Not Detected": "خطوط لوله شناسایی نشدند", "Pipelines Valves": "شیرالات خطوط لوله", @@ -1498,6 +1532,7 @@ "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.": "توالی\u200cهای توقف مورد استفاده را تنظیم می\u200cکند. وقتی این الگو مشاهده شود، LLM تولید متن را متوقف کرده و برمی\u200cگردد. الگوهای توقف متعدد می\u200cتوانند با مشخص کردن پارامترهای توقف جداگانه متعدد در فایل مدل تنظیم شوند.", "Setting": "", "Settings": "تنظیمات", + "Settings Permissions": "", "Settings saved successfully!": "تنظیمات با موفقیت ذخیره شد!", "Share": "اشتراک\u200cگذاری", "Share Chat": "اشتراک\u200cگذاری چت", @@ -1541,6 +1576,7 @@ "Speech recognition error: {{error}}": "خطای تشخیص گفتار: {{error}}", "Speech-to-Text": "گفتار به متن", "Speech-to-Text Engine": "موتور گفتار به متن", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "شروع یک مکالمه جدید", "Start of the channel": "آغاز کانال", "Start Tag": "تگ شروع", @@ -1551,6 +1587,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "مراحل", "Stop": "توقف", + "Stop Download": "", "Stop Generating": "توقف تولید", "Stop Sequence": "توقف توالی", "Stream Chat Response": "پاسخ چت جریانی", @@ -1571,7 +1608,14 @@ "Support": "حمایت", "Support this plugin:": "حمایت از این افزونه", "Supported MIME Types": "انواع MIME پشتیبانی شده", + "Sync": "", + "Sync Complete!": "", "Sync directory": "هم\u200cگام\u200cسازی پوشه", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "سیستم", "System Instructions": "دستورالعمل\u200cهای سیستم", "System Prompt": "پرامپت سیستم", @@ -1616,6 +1660,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "وزن جستجوی ترکیبی BM25. ۰ معنایی\u200cتر، ۱ لغوی\u200cتر. پیش\u200cفرض ۰.۵", "The width in pixels to compress images to. Leave empty for no compression.": "عرض بر حسب پیکسل برای فشرده\u200cسازی تصاویر. برای عدم فشرده\u200cسازی خالی بگذارید.", "Theme": "پوسته", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "در حال فکر کردن...", "This action cannot be undone. Do you wish to continue?": "این عمل قابل بازگشت نیست. آیا می\u200cخواهید ادامه دهید؟", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "این کانال در {{createdAt}} ایجاد شد. این آغاز کانال {{channelName}} است.", @@ -1730,6 +1775,7 @@ "Upload Pipeline": "خط تولید آپلود", "Upload Progress": "پیشرفت آپلود", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "پیشرفت آپلود: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}٪)", + "Uploaded files or images": "", "Uploading file...": "", "URL": "آدرس اینترنتی", "URL is required": "آدرس URL مورد نیاز است", @@ -1747,6 +1793,7 @@ "User Groups": "گروه\u200cهای کاربری", "User location successfully retrieved.": "موقعیت مکانی کاربر با موفقیت دریافت شد.", "User menu": "منوی کاربر", + "User ratings (thumbs up/down)": "", "User Webhooks": "وب\u200cهوک\u200cهای کاربر", "Username": "نام کاربری", "users": "", @@ -1796,15 +1843,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI به \"{{url}}/chat/completions\" درخواست خواهد داد", "What are you trying to achieve?": "به دنبال دستیابی به چه هدفی هستید؟", "What are you working on?": "روی چه چیزی کار می\u200cکنید؟", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "چه چیز جدیدی در", "What's on your mind?": "", "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.": "وقتی فعال باشد، مدل به هر پیام گفتگو در زمان واقعی پاسخ می\u200cدهد و به محض ارسال پیام توسط کاربر، پاسخی تولید می\u200cکند. این حالت برای برنامه\u200cهای گفتگوی زنده مفید است، اما ممکن است در سخت\u200cافزارهای کندتر بر عملکرد تأثیر بگذارد.", "wherever you are": "هر جا که هستید", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "آیا خروجی صفحه\u200cبندی شود یا خیر. هر صفحه با یک خط افقی و شماره صفحه از هم جدا می\u200cشود. پیش\u200cفرض: False.", "Whisper (Local)": "ویسپر (محلی)", + "Who can share to this group": "", "Why?": "چرا؟", "Widescreen Mode": "حالت صفحهٔ عریض", "Width": "عرض", + "Wikipedia": "", "Won": "برنده شد", "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.": "با top-k همکاری می\u200cکند. مقدار بالاتر (مثلاً 0.95) منجر به متن متنوع\u200cتر می\u200cشود، در حالی که مقدار پایین\u200cتر (مثلاً 0.5) متن متمرکزتر و محافظه\u200cکارانه\u200cتری تولید می\u200cکند.", "Workspace": "محیط کار", @@ -1816,6 +1867,8 @@ "Yacy Instance URL": "آدرس URL نمونه Yacy", "Yacy Password": "رمز عبور Yacy", "Yacy Username": "نام کاربری Yacy", + "Yahoo": "", + "Yandex": "", "Yesterday": "دیروز", "Yesterday at {{LOCALIZED_TIME}}": "دیروز در {{LOCALIZED_TIME}}", "You": "شما", @@ -1823,6 +1876,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "شما در هر زمان نهایتا می\u200cتوانید با {{maxCount}} پرونده گفتگو کنید.", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "شما می\u200cتوانید تعاملات خود با LLM\u200cها را با افزودن خاطرات از طریق دکمه 'مدیریت' در زیر شخصی\u200cسازی کنید تا آنها مفیدتر و متناسب\u200cتر با شما شوند.", "You cannot upload an empty file.": "نمی\u200cتوانید فایل خالی آپلود کنید.", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "شما اجازه ارسال پیام در این کانال را ندارید.", "You do not have permission to send messages in this thread.": "شما اجازه ارسال پیام در این رشته را ندارید.", "You do not have permission to upload files to this knowledge base.": "", @@ -1834,6 +1890,8 @@ "Your Account": "حساب کاربری شما", "Your account status is currently pending activation.": "وضعیت حساب شما در حال حاضر در انتظار فعال\u200cسازی است.", "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.": "تمام مشارکت شما مستقیماً به توسعه\u200cدهنده افزونه می\u200cرسد؛ Open WebUI هیچ درصدی دریافت نمی\u200cکند. با این حال، پلتفرم تأمین مالی انتخاب شده ممکن است کارمزد خود را داشته باشد.", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "یوتیوب", "Youtube Language": "زبان یوتیوب", "Youtube Proxy URL": "آدرس پراکسی یوتیوب" diff --git a/src/lib/i18n/locales/fi-FI/translation.json b/src/lib/i18n/locales/fi-FI/translation.json index 75ef465b4..949bb6486 100644 --- a/src/lib/i18n/locales/fi-FI/translation.json +++ b/src/lib/i18n/locales/fi-FI/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "Näiden asetusten säätäminen vaikuttaa kaikkiin käyttäjiin.", "admin": "hallinta", "Admin": "Ylläpito", + "Admin Contact Email": "", "Admin Panel": "Ylläpitopaneeli", "Admin Settings": "Ylläpitoasetukset", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Ylläpitäjillä on pääsy kaikkiin työkaluihin koko ajan; käyttäjät tarvitsevat työkaluja mallille määritettynä työtilassa.", @@ -101,7 +102,6 @@ "Allow Continue Response": "Salli jatka vastausta", "Allow Delete Messages": "Salli viestien poisto", "Allow File Upload": "Salli tiedostojen lataus", - "Allow Group Sharing": "Salli ryhmäjako", "Allow Multiple Models in Chat": "Salli useampi malli keskustelussa", "Allow non-local voices": "Salli ei-paikalliset äänet", "Allow Rate Response": "Salli viestien arviointi", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "ja {{COUNT}} muuta", "and create a new shared link.": "ja luo uusi jaettu linkki.", "Android": "Android", + "Anyone": "", "API Base URL": "API:n verkko-osoite", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "API verkko-osoite Datalabb Marker palveluun. Oletuksena: https://www.datalab.to/api/v1/marker", "API Key": "API-avain", @@ -175,6 +176,7 @@ "Authenticate": "Todentaa", "Authentication": "Todennus", "Auto": "Automaattinen", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "Kopioi vastaus automaattisesti leikepöydälle", "Auto-playback response": "Toista vastaus automaattisesti", "Autocomplete Generation": "Automaattisen täydennyksen luonti", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "AUTOMATIC1111 API:n todennusmerkkijono", "AUTOMATIC1111 Base URL": "AUTOMATIC1111 verkko-osoite", "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 verkko-osoite vaaditaan.", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "Käytettävissä oleva luettelo", "Available Tools": "Käytettävissä olevat työkalut", "available users": "käytettävissä olevat käyttäjät", @@ -201,6 +204,7 @@ "before": "ennen", "Being lazy": "Oli laiska", "Beta": "Beta", + "Bing": "", "Bing Search V7 Endpoint": "Bing Search V7 -päätepisteen osoite", "Bing Search V7 Subscription Key": "Bing Search V7 -tilauskäyttäjäavain", "Bio": "Elämänkerta", @@ -209,7 +213,9 @@ "Bocha Search API Key": "Bocha Search API -avain", "Bold": "Lihavointi", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Tiettyjen tokeneiden tehostaminen tai rankaiseminen rajoitetuista vastauksista. Poikkeaman arvot rajoitetaan välille -100 ja 100 (mukaan lukien). (Oletus: ei mitään)", + "Brave": "", "Brave Search API Key": "Brave Search API -avain", + "Builtin Tools": "", "Bullet List": "Luettelo", "Button ID": "Painikkeen ID", "Button Label": "Painikkeen nimi", @@ -256,8 +262,10 @@ "Check for updates": "Tarkista päivitykset", "Checking for updates...": "Tarkistetaan päivityksiä...", "Choose a model before saving...": "Valitse malli ennen tallentamista...", + "Chunk Min Size Target": "", "Chunk Overlap": "Päällekkäisten osien määrä", "Chunk Size": "Osien koko", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "Salausalgoritmi", "Citation": "Lähdeviite", "Citations": "Lähdeviitteet", @@ -293,7 +301,6 @@ "Code Block": "Koodilohko", "Code Editor": "Koodieditori", "Code execution": "Koodin suoritus", - "Code Execution": "Koodin Suoritus", "Code Execution Engine": "Koodin suoritusmoottori", "Code Execution Timeout": "Koodin suorittamisen aikakatkaisu", "Code formatted successfully": "Koodin muotoilu onnistui", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "Ota yhteyttä ylläpitäjään WebUI-käyttöä varten", "Content": "Sisältö", "Content Extraction Engine": "Sisällönpoimintamoottori", + "Content lengths (character counts only)": "", "Continue Response": "Jatka vastausta", "Continue with {{provider}}": "Jatka palvelulla {{provider}}", "Continue with Email": "Jatka sähköpostilla", @@ -393,6 +401,7 @@ "Database": "Tietokanta", "Datalab Marker API": "Datalab Marker API", "DD/MM/YYYY": "DD/MM/YYYY", + "DDGS Backend": "", "December": "joulukuu", "Decrease UI Scale": "Pienennä käyttöliittymän kokoa", "Deepgram": "Deepgram", @@ -474,6 +483,7 @@ "Dive into knowledge": "Uppoudu tietoon", "Do not install functions from sources you do not fully trust.": "Älä asenna toimintoja lähteistä, joihin et luota täysin.", "Do not install tools from sources you do not fully trust.": "Älä asenna työkaluja lähteistä, joihin et luota täysin.", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "Docling", "Docling Parameters": "Docling parametrit", "Docling Server URL required.": "Docling palvelimen verkko-osoite vaaditaan.", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "Document Intelligence pääte vaaditaan", "Document Intelligence Model": "Document Intelligence malli", "Documentation": "Dokumentaatio", - "Documents": "Asiakirjat", "does not make any external connections, and your data stays securely on your locally hosted server.": "ei tee ulkoisia yhteyksiä, ja tietosi pysyvät turvallisesti paikallisesti isännöidyllä palvelimellasi.", "Domain Filter List": "Verkko-osoitteiden suodatuslista", "don't fetch random pipelines from sources you don't trust.": "Älä hae satunnaisia pipelineja epäluotettavista lähteistä.", @@ -493,11 +502,14 @@ "Done": "Valmis", "Download": "Lataa", "Download & Delete": "Lataa ja poista", + "Download as JSON": "", "Download as SVG": "Lataa SVG:nä", "Download canceled": "Lataus peruutettu", "Download Database": "Lataa tietokanta", + "Downloading stats...": "", "Draw": "Piirros", "Drop any files here to upload": "Pudota tähän ladattavat tiedostot", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "esim. '30s', '10m'. Kelpoiset aikayksiköt ovat 's', 'm', 'h'.", "e.g. \"json\" or a JSON schema": "esim. \"json\" tai JSON kaava", "e.g. 60": "esim. 60", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "Kirjoita Bocha Search API -avain", "Enter Brave Search API Key": "Kirjoita Brave Search API -avain", "Enter certificate path": "Kirjoita varmennepolku", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "Syötä osien päällekkäisyys", "Enter Chunk Size": "Syötä osien koko", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Syötä pilkulla erottaen \"token:bias_value\" parit (esim. 5432:100, 413:-100)", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "Kirjoita ulkoisen Web Search verkko-osoite", "Enter Firecrawl API Base URL": "Kirjoita Firecrawl API -verkko-osoite", "Enter Firecrawl API Key": "Kirjoita Firecrawl API-avain", + "Enter Firecrawl Timeout": "", "Enter folder name": "Kirjoita kansion nimi", "Enter function name filter list (e.g. func1, !func2)": "Kirjoita funktion nimen suodatinluettelo (esim. func1, !func2)", "Enter Github Raw URL": "Kirjoita Github Raw -verkko-osoite", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "Kirjota hex väri (esim. #FF0000)", "Enter ID": "Kirjoita ID", "Enter Image Size (e.g. 512x512)": "Kirjoita kuvan koko (esim. 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "Kirjoita Jina API -avain", "Enter JSON config (e.g., {\"disable_links\": true})": "Kirjoita JSON asetus (esim. {\"disable_links\": true})", "Enter Jupyter Password": "Kirjoita Jupyter salasana", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "Kirjoita Kagi Search API -avain", "Enter Key Behavior": "Enter näppäimen käyttäytyminen", "Enter language codes": "Kirjoita kielikoodit", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "Kirjoita Mistral API verkko-osoite", "Enter Mistral API Key": "Kirjoita Mistral API-avain", "Enter Model ID": "Kirjoita mallitunnus", @@ -736,6 +753,7 @@ "Failed to generate title": "Otsikon luonti epäonnistui", "Failed to import models": "Mallien tuonti epäonnistui", "Failed to load chat preview": "Keskustelun esikatselun lataaminen epäonnistui", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "Tiedoston sisällön lataaminen epäonnistui.", "Failed to move chat": "Keskustelun siirto epäonnistui", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "Ominaisuudet", "Features Permissions": "Ominaisuuksien käyttöoikeudet", "February": "helmikuu", + "Feedback": "", "Feedback deleted successfully": "Palaute poistettu onnistuneesti", "Feedback Details": "Palautteen tiedot", "Feedback History": "Palautehistoria", - "Feedbacks": "Palautteet", "Feel free to add specific details": "Voit lisätä tarkempia tietoja", "Female": "Nainen", "File": "Tiedosto", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Sormenjäljen väärentäminen havaittu: Alkukirjaimia ei voi käyttää avatarina. Käytetään oletusprofiilikuvaa.", "Firecrawl API Base URL": "Firecrawl API -verkko-osoite", "Firecrawl API Key": "Firecrawl API-avain", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "Kelluvat pikakomennot", "Focus Chat Input": "Kohdista keskustelu tekstikenttään", "Folder": "Kansio", "Folder Background Image": "Kansion taustakuva", "Folder deleted successfully": "Kansio poistettu onnistuneesti", + "Folder Max File Count": "", "Folder Name": "Kansion nimi", "Folder name cannot be empty.": "Kansion nimi ei voi olla tyhjä.", "Folder name updated successfully": "Kansion nimi päivitetty onnistuneesti", @@ -826,7 +846,6 @@ "General": "Yleinen", "Generate": "Luo", "Generate an image": "Luo kuva", - "Generate Image": "Luo kuva", "Generate Message Pair": "Luo viesti pari", "Generated Image": "Luo kuva", "Generating search query": "Luodaan hakukyselyä", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "Aloita käyttämään {{WEBUI_NAME}}:iä", "Global": "Yleinen", "Good Response": "Hyvä vastaus", + "Google": "", "Google Drive": "Google Drive", "Google PSE API Key": "Google PSE API -avain", "Google PSE Engine Id": "Google PSE -moottorin tunnus", "Gravatar": "Gravatar", "Grid": "", + "Grokipedia": "", "Group": "Ryhmä", "Group Channel": "Ryhmäkanava", "Group created successfully": "Ryhmä luotu onnistuneesti", @@ -895,7 +916,6 @@ "Image Prompt Generation": "Kuvan kehote generointi", "Image Prompt Generation Prompt": "Kuvan generoinnin kehote", "Image Size": "Kuvan koko", - "Images": "Kuvat", "Import": "Tuo", "Import Chats": "Tuo keskustelut", "Import Config from JSON File": "Tuo asetukset JSON-tiedostosta", @@ -927,6 +947,7 @@ "Integration": "Integrointi", "Integrations": "Integraatiot", "Interface": "Käyttöliittymä", + "Interface Settings Access": "", "Invalid file content": "Virheellinen tiedostosisältö", "Invalid file format.": "Virheellinen tiedostomuoto.", "Invalid JSON file": "Virheellinen JSON tiedosto", @@ -940,6 +961,7 @@ "is typing...": "Kirjoittaa...", "Italic": "Kursiivi", "January": "tammikuu", + "Jina API Base URL": "", "Jina API Key": "Jina API -avain", "join our Discord for help.": "liity Discordiimme saadaksesi apua.", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "Jätä tyhjäksi sisällyttääksesi \"{{url}}/api/tags\" päätepisteen mallit", "Leave empty to include all models from \"{{url}}/models\" endpoint": "Jätä tyhjäksi sisällyttääksesi \"{{url}}/models\" päätepisteen mallit", "Leave empty to include all models or select specific models": "Jätä tyhjäksi, jos haluat sisällyttää kaikki mallit tai valitse tietyt mallit", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "Jätä tyhjäks käyttääksesi oletusmallia (voxtral-mini-latest)", "Leave empty to use the default prompt, or enter a custom prompt": "Jätä tyhjäksi käyttääksesi oletuskehotetta tai kirjoita mukautettu kehote", "Leave model field empty to use the default model.": "Jätä malli kenttä tyhjäksi käyttääksesi oletus mallia.", @@ -1029,10 +1052,12 @@ "Manage your account information.": "Hallitse tilitietojasi", "March": "maaliskuu", "Markdown": "Markdown", - "Markdown (Header)": "Markdown (otsikko)", + "Markdown Header Text Splitter": "", "Max Speakers": "Puhujien enimmäismäärä", "Max Upload Count": "Latausten enimmäismäärä", "Max Upload Size": "Latausten enimmäiskoko", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Enintään 3 mallia voidaan ladata samanaikaisesti. Yritä myöhemmin uudelleen.", "May": "toukokuu", "MBR": "MBR", @@ -1042,6 +1067,7 @@ "Member removed successfully": "Jäsen poistettu onnistuneesti", "Members": "Jäsenet", "Members added successfully": "Jäsen lisätty onnistuneesti", + "Memories": "", "Memories accessible by LLMs will be shown here.": "Muistitiedostot, joita LLM-ohjelmat käyttävät, näkyvät tässä.", "Memory": "Muisti", "Memory added successfully": "Muisti lisätty onnistuneesti", @@ -1051,6 +1077,7 @@ "Merge Responses": "Yhdistä vastaukset", "Merged Response": "Yhdistetty vastaus", "Message": "Viesti", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "Tämän toiminnon käyttämiseksi viestiarviointi on otettava käyttöön", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Linkin luomisen jälkeen lähettämäsi viestit eivät ole jaettuja. Käyttäjät, joilla on verkko-osoite, voivat tarkastella jaettua keskustelua.", "Microsoft OneDrive": "", @@ -1083,9 +1110,11 @@ "Model Name": "Mallin nimi", "Model name already exists, please choose a different one": "Mallin nimi on jo olemassa, valitse toinen nimi.", "Model Name is required.": "Mallin nimi on pakollinen", + "Model names and usage frequency": "", "Model not selected": "Mallia ei ole valittu", "Model Params": "Mallin parametrit", "Model Permissions": "Mallin käyttöoikeudet", + "Model responses or outputs": "", "Model unloaded successfully": "Malli purettu onnistuneesti", "Model updated successfully": "Malli päivitetty onnistuneesti", "Model(s) do not support file upload": "Malli(t) ei tue tiedostojen lataamista", @@ -1096,6 +1125,7 @@ "Models imported successfully": "Mallit tuotiin onnistuneesti", "Models Public Sharing": "Mallin julkinen jakaminen", "Models Sharing": "Mallien jako", + "Mojeek": "", "Mojeek Search API Key": "Mojeek Search API -avain", "More": "Lisää", "More Concise": "Ytimekkäämpi", @@ -1129,7 +1159,7 @@ "No conversation to save": "Ei tallennettavaa keskustelua", "No distance available": "Etäisyyttä ei saatavilla", "No expiration can pose security risks.": "Vanhenemisen laittamatta jättäminen voi altistaa tietoturvariskeille.", - "No feedbacks found": "Palautteita ei löytynyt", + "No feedback found": "", "No file selected": "Tiedostoa ei ole valittu", "No files in this knowledge base.": "", "No functions found": "Funktioita ei löytynyt", @@ -1144,6 +1174,7 @@ "No models selected": "Malleja ei ole valittu", "No Notes": "Ei muistiinpanoja", "No notes found": "Muistiinpanoja ei löytynyt", + "No one": "", "No pinned messages": "Ei kiinnitettyjä viestejä", "No prompts found": "Kehoitteita ei löytynyt", "No results": "Ei tuloksia", @@ -1195,6 +1226,7 @@ "Only invited users can access": "Vain kutsutut jäsenet voivat päästä", "Only markdown files are allowed": "Vain markdown tiedostot ovat sallittuja", "Only select users and groups with permission can access": "Vain valitut käyttäjät ja ryhmät, joilla on käyttöoikeus, pääsevät käyttämään", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Hups! Näyttää siltä, että verkko-osoite on virheellinen. Tarkista se ja yritä uudelleen.", "Oops! There are files still uploading. Please wait for the upload to complete.": "Hups! Tiedostoja on vielä ladattavana. Odota, että lataus on valmis.", "Oops! There was an error in the previous response.": "Hups! Edellisessä vastauksessa oli virhe.", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI voi käyttää minkä tahansa OpenAPI-palvelimen tarjoamia työkaluja.", "Open WebUI uses faster-whisper internally.": "Open WebUI käyttää faster-whisperia sisäisesti.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI käyttää SpeechT5:tä ja CMU Arctic -kaiuttimen upotuksia.", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Open WebUI -versio (v{{OPEN_WEBUI_VERSION}}) on alempi kuin vaadittu versio (v{{REQUIRED_VERSION}})", "OpenAI": "OpenAI", "OpenAI API": "OpenAI API", @@ -1235,6 +1268,8 @@ "page": "sivu", "Paginate": "Sivutus", "Parameters": "Parametrit", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "Salasana", "Passwords do not match.": "Salasanat eivät täsmää", "Paste Large Text as File": "Liitä suuri teksti tiedostona", @@ -1260,7 +1295,6 @@ "Pipe": "Putki", "Pipeline deleted successfully": "Putki poistettu onnistuneesti", "Pipeline downloaded successfully": "Putki ladattu onnistuneesti", - "Pipelines": "Putkistot", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines on liitännäisjärjestelmä, jossa voidaan suorittaa mielivaltaista koodia —", "Pipelines Not Detected": "Putkistoja ei havaittu", "Pipelines Valves": "Putkistojen venttiilit", @@ -1498,6 +1532,7 @@ "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.": "Määrittää käytettävät lopetussekvenssit. Kun tämä kuvio havaitaan, LLM lopettaa tekstin tuottamisen ja palauttaa. Useita lopetuskuvioita voidaan asettaa määrittämällä useita erillisiä lopetusparametreja mallitiedostoon.", "Setting": "Asetus", "Settings": "Asetukset", + "Settings Permissions": "", "Settings saved successfully!": "Asetukset tallennettu onnistuneesti!", "Share": "Jaa", "Share Chat": "Jaa keskustelu", @@ -1541,6 +1576,7 @@ "Speech recognition error: {{error}}": "Puheentunnistusvirhe: {{error}}", "Speech-to-Text": "Puheentunnistus", "Speech-to-Text Engine": "Puheentunnistusmoottori", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "Aloita uusi keskustelu", "Start of the channel": "Kanavan alku", "Start Tag": "Aloitus tagi", @@ -1551,6 +1587,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "Askeleet", "Stop": "Pysäytä", + "Stop Download": "", "Stop Generating": "Lopeta generointi", "Stop Sequence": "Lopetussekvenssi", "Stream Chat Response": "Streamaa keskusteluvastaus", @@ -1571,7 +1608,14 @@ "Support": "Tuki", "Support this plugin:": "Tue tätä lisäosaa:", "Supported MIME Types": "Tuetut MIME-tyypit", + "Sync": "", + "Sync Complete!": "", "Sync directory": "Synkronoitu hakemisto", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "Järjestelmä", "System Instructions": "Järjestelmäohjeet", "System Prompt": "Järjestelmäkehote", @@ -1616,6 +1660,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "", "The width in pixels to compress images to. Leave empty for no compression.": "Leveys pikseleinä, johon kuvat pakataan. Jätä tyhjäksi, jos et halua pakkausta.", "Theme": "Teema", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "Ajattelee...", "This action cannot be undone. Do you wish to continue?": "Tätä toimintoa ei voi peruuttaa. Haluatko jatkaa?", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "Tämä kanava on luotiin {{createdAt}}. Tämä on {{channelName}} kanavan alku.", @@ -1730,6 +1775,7 @@ "Upload Pipeline": "Lataa putki", "Upload Progress": "Latauksen edistyminen", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Latauksen edistyminen: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", + "Uploaded files or images": "", "Uploading file...": "Ladataan tiedostoa...", "URL": "URL", "URL is required": "URL vaaditaan", @@ -1747,6 +1793,7 @@ "User Groups": "Käyttäjäryhmät", "User location successfully retrieved.": "Käyttäjän sijainti haettu onnistuneesti.", "User menu": "Käyttäjävalikko", + "User ratings (thumbs up/down)": "", "User Webhooks": "Käyttäjän Webhook:it", "Username": "Käyttäjätunnus", "users": "käyttäjät", @@ -1796,15 +1843,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI lähettää pyyntöjä osoitteeseen \"{{url}}/chat/completions\"", "What are you trying to achieve?": "Mitä yrität saavuttaa?", "What are you working on?": "Mitä olet työskentelemässä?", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "Mitä uutta", "What's on your mind?": "Mitä ajattelet?", "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.": "Kun käytössä, malli vastaa jokaiseen chatviestiin reaaliajassa, tuottaen vastauksen heti kun käyttäjä lähettää viestin. Tämä tila on hyödyllinen reaaliaikaisissa chat-sovelluksissa, mutta voi vaikuttaa suorituskykyyn hitaammilla laitteistoilla.", "wherever you are": "missä tahansa oletkin", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "Sivutetaanko tuloste. Jokainen sivu erotetaan toisistaan vaakasuoralla viivalla ja sivunumerolla. Oletusarvo ei käytössä.", "Whisper (Local)": "Whisper (paikallinen)", + "Who can share to this group": "", "Why?": "Miksi?", "Widescreen Mode": "Laajakuvatila", "Width": "Leveys", + "Wikipedia": "", "Won": "Voitti", "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.": "", "Workspace": "Työtila", @@ -1816,6 +1867,8 @@ "Yacy Instance URL": "Yacy instanssin verkko-osoite", "Yacy Password": "Yacy salasana", "Yacy Username": "Yacy käyttäjänimi", + "Yahoo": "", + "Yandex": "", "Yesterday": "Eilen", "Yesterday at {{LOCALIZED_TIME}}": "Eilen {{LOCALIZED_TIME}}", "You": "Sinä", @@ -1823,6 +1876,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Voit keskustella enintään {{maxCount}} tiedoston kanssa kerralla.", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Voit personoida vuorovaikutustasi LLM-ohjelmien kanssa lisäämällä muistoja 'Hallitse'-painikkeen kautta, jolloin ne ovat hyödyllisempiä ja räätälöityjä sinua varten.", "You cannot upload an empty file.": "Et voi ladata tyhjää tiedostoa.", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "Sinulla ei ole oikeuksia lähettää viestejä tähän kanavaan.", "You do not have permission to send messages in this thread.": "Sinulla ei ole oikeuksia lähettää viestejä tähän ketjuun.", "You do not have permission to upload files to this knowledge base.": "", @@ -1834,6 +1890,8 @@ "Your Account": "Tilisi", "Your account status is currently pending activation.": "Tilisi tila on tällä hetkellä odottaa aktivointia.", "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.": "Koko panoksesi menee suoraan lisäosan kehittäjälle; Open WebUI ei pidätä prosenttiosuutta. Valittu rahoitusalusta voi kuitenkin periä omia maksujaan.", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "YouTube", "Youtube Language": "Youtube kieli", "Youtube Proxy URL": "Youtube-välityspalvelimen verkko-osoite" diff --git a/src/lib/i18n/locales/fr-CA/translation.json b/src/lib/i18n/locales/fr-CA/translation.json index f0edb1e2c..a6bf3946b 100644 --- a/src/lib/i18n/locales/fr-CA/translation.json +++ b/src/lib/i18n/locales/fr-CA/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "L'ajustement de ces réglages appliquera universellement les changements à tous les utilisateurs.", "admin": "administrateur", "Admin": "Administrateur", + "Admin Contact Email": "", "Admin Panel": "Panneau d'administration", "Admin Settings": "Réglages d'administration", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Les administrateurs ont accès à tous les outils en permanence ; les utilisateurs doivent se voir attribuer des outils pour chaque modèle dans l'espace de travail.", @@ -101,7 +102,6 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "Autoriser le téléversement de fichiers", - "Allow Group Sharing": "", "Allow Multiple Models in Chat": "Autoriser plusieurs modèles dans la conversation", "Allow non-local voices": "Autoriser les voix non locales", "Allow Rate Response": "", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "et {{COUNT}} autres", "and create a new shared link.": "et créer un nouveau lien partagé.", "Android": "Android", + "Anyone": "", "API Base URL": "URL de base de l'API", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "", "API Key": "Clé d'API", @@ -175,6 +176,7 @@ "Authenticate": "Authentifier", "Authentication": "Authentification", "Auto": "Automatique", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "Copie automatique de la réponse vers le presse-papiers", "Auto-playback response": "Lire automatiquement la réponse", "Autocomplete Generation": "Génération des suggestions", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "AUTOMATIC1111 Chaîne d'authentification de l'API", "AUTOMATIC1111 Base URL": "URL de base AUTOMATIC1111", "AUTOMATIC1111 Base URL is required.": "L'URL de base {AUTOMATIC1111} est requise.", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "Liste disponible", "Available Tools": "Outils disponibles", "available users": "utilisateurs disponibles", @@ -201,6 +204,7 @@ "before": "avant", "Being lazy": "Être fainéant", "Beta": "Bêta", + "Bing": "", "Bing Search V7 Endpoint": "Point de terminaison Bing Search V7", "Bing Search V7 Subscription Key": "Clé d'abonnement Bing Search V7", "Bio": "", @@ -209,7 +213,9 @@ "Bocha Search API Key": "Clé API Bocha Search", "Bold": "", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Renforcer ou pénaliser des éléments spécifiques pour les réponses contraintes. Les valeurs du biais seront comprises entre -100 et 100 (inclus). (Par défaut : aucun)", + "Brave": "", "Brave Search API Key": "Clé API Brave Search", + "Builtin Tools": "", "Bullet List": "", "Button ID": "", "Button Label": "", @@ -256,8 +262,10 @@ "Check for updates": "Vérifier les mises à jour disponibles", "Checking for updates...": "Recherche de mises à jour...", "Choose a model before saving...": "Choisissez un modèle avant de sauvegarder...", + "Chunk Min Size Target": "", "Chunk Overlap": "Chevauchement des chunks", "Chunk Size": "Taille des chunks", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "Chiffres", "Citation": "Citation", "Citations": "Citations", @@ -293,7 +301,6 @@ "Code Block": "", "Code Editor": "", "Code execution": "Exécution de code", - "Code Execution": "Exécution de code", "Code Execution Engine": "Moteur d'execution de code", "Code Execution Timeout": "Délai d'exécution du code dépassé", "Code formatted successfully": "Le code a été formaté avec succès", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "Contacter l'administrateur pour obtenir l'accès à WebUI", "Content": "Contenu", "Content Extraction Engine": "Moteur d'extraction de contenu", + "Content lengths (character counts only)": "", "Continue Response": "Continuer la réponse", "Continue with {{provider}}": "Continuer avec {{provider}}", "Continue with Email": "Continuer avec le courriel", @@ -393,6 +401,7 @@ "Database": "Base de données", "Datalab Marker API": "API Datalab Marker", "DD/MM/YYYY": "", + "DDGS Backend": "", "December": "Décembre", "Decrease UI Scale": "", "Deepgram": "", @@ -474,6 +483,7 @@ "Dive into knowledge": "Plonger dans les connaissances", "Do not install functions from sources you do not fully trust.": "N'installez pas de fonctions provenant de sources auxquelles vous ne faites pas entièrement confiance.", "Do not install tools from sources you do not fully trust.": "N'installez pas d'outils provenant de sources auxquelles vous ne faites pas entièrement confiance.", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "Docling", "Docling Parameters": "", "Docling Server URL required.": "URL du serveur Docling requise.", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "", "Document Intelligence Model": "", "Documentation": "Documentation", - "Documents": "Documents", "does not make any external connections, and your data stays securely on your locally hosted server.": "n'établit aucune connexion externe et garde vos données en sécurité sur votre serveur local.", "Domain Filter List": "Liste des domaines à filtrés", "don't fetch random pipelines from sources you don't trust.": "Ne récupérez pas des pipelines aléatoires à partir de sources non fiables.", @@ -493,11 +502,14 @@ "Done": "Terminé", "Download": "Télécharger", "Download & Delete": "Télécharger et supprimer", + "Download as JSON": "", "Download as SVG": "Télécharger au format SVG", "Download canceled": "Téléchargement annulé", "Download Database": "Télécharger la base de données", + "Downloading stats...": "", "Draw": "Match nul", "Drop any files here to upload": "Déposez des fichiers ici pour les téléverser", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "par ex. '30s', '10 min'. Les unités de temps valides sont 's', 'm', 'h'.", "e.g. \"json\" or a JSON schema": "par ex. \"json\" ou un schéma JSON", "e.g. 60": "par ex. 60", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "Entrez la clé API Bocha Search", "Enter Brave Search API Key": "Entrez la clé API Brave Search", "Enter certificate path": "Entrez le chemin du certificat", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "Entrez le chevauchement des chunks", "Enter Chunk Size": "Entrez la taille des chunks", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Entrez des paires \"token:valeur_biais\" séparées par des virgules (exemple : 5432:100, 413:-100)", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "Entrez l'URL de la recherche Web externe", "Enter Firecrawl API Base URL": "Entrez l'URL de base de l'API Firecrawl", "Enter Firecrawl API Key": "Entrez la clé API de Firecrawl", + "Enter Firecrawl Timeout": "", "Enter folder name": "", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "Entrez l'URL brute de GitHub", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "", "Enter ID": "", "Enter Image Size (e.g. 512x512)": "Entrez la taille de l'image (par ex. 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "Entrez la clé API Jina", "Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter Jupyter Password": "Entrez le mot de passe Jupyter", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "Entrez la clé API Kagi Search", "Enter Key Behavior": "Entrez la clé Behavior", "Enter language codes": "Entrez les codes de langue", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "", "Enter Mistral API Key": "Entrez la clé APU de Mistral", "Enter Model ID": "Entrez l'ID du modèle", @@ -736,6 +753,7 @@ "Failed to generate title": "", "Failed to import models": "", "Failed to load chat preview": "", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "Échec du chargement du contenu du fichier", "Failed to move chat": "", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "Fonctionnalités", "Features Permissions": "Autorisations des fonctionnalités", "February": "Février", + "Feedback": "", "Feedback deleted successfully": "", "Feedback Details": "Détails du retour d'information", "Feedback History": "Historique des avis", - "Feedbacks": "Avis", "Feel free to add specific details": "N'hésitez pas à ajouter des détails spécifiques", "Female": "", "File": "Fichier", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Spoofing détecté : impossible d'utiliser les initiales comme avatar. Retour à l'image de profil par défaut.", "Firecrawl API Base URL": "Url de l'API Base Firecrawl", "Firecrawl API Key": "Clé de l'API Firecrawl", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "", "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "Dossier supprimé avec succès", + "Folder Max File Count": "", "Folder Name": "", "Folder name cannot be empty.": "Le nom du dossier ne peut pas être vide.", "Folder name updated successfully": "Le nom du dossier a été mis à jour avec succès", @@ -826,7 +846,6 @@ "General": "Général", "Generate": "Génére", "Generate an image": "Génère une image", - "Generate Image": "Générer une image", "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Génération d'une requête de recherche", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "Démarrez avec {{WEBUI_NAME}}", "Global": "Globale", "Good Response": "Bonne réponse", + "Google": "", "Google Drive": "Google Drive", "Google PSE API Key": "Clé API Google PSE", "Google PSE Engine Id": "ID du moteur de recherche PSE de Google", "Gravatar": "", "Grid": "", + "Grokipedia": "", "Group": "Groupe", "Group Channel": "", "Group created successfully": "Groupe créé avec succès", @@ -895,7 +916,6 @@ "Image Prompt Generation": "Génération de prompts d'images", "Image Prompt Generation Prompt": "Prompt de génération de prompts d'images", "Image Size": "", - "Images": "Images", "Import": "Importer", "Import Chats": "Importer les conversations", "Import Config from JSON File": "Importer la configuration depuis un fichier JSON", @@ -927,6 +947,7 @@ "Integration": "Intégration", "Integrations": "", "Interface": "Interface utilisateur", + "Interface Settings Access": "", "Invalid file content": "Contenu de fichier invalide", "Invalid file format.": "Format de fichier non valide.", "Invalid JSON file": "Fichier JSON non valide", @@ -940,6 +961,7 @@ "is typing...": "est en train d'écrire...", "Italic": "", "January": "Janvier", + "Jina API Base URL": "", "Jina API Key": "Clé API Jina", "join our Discord for help.": "Rejoignez notre Discord pour obtenir de l'aide.", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "Laissez vide pour inclure tous les modèles de l'endpoint \"{{url}}/api/tags\"", "Leave empty to include all models from \"{{url}}/models\" endpoint": "Laissez vide pour inclure tous les modèles de l'endpoint \"{{url}}/models\"", "Leave empty to include all models or select specific models": "Laissez vide pour inclure tous les modèles ou sélectionnez des modèles spécifiques", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "", "Leave empty to use the default prompt, or enter a custom prompt": "Laissez vide pour utiliser le prompt par défaut, ou entrez un prompt personnalisé", "Leave model field empty to use the default model.": "Laisser le champ du modèle vide pour utiliser le modèle par défaut.", @@ -1029,10 +1052,12 @@ "Manage your account information.": "", "March": "Mars", "Markdown": "Markdown", - "Markdown (Header)": "", + "Markdown Header Text Splitter": "", "Max Speakers": "Nombre maximal d'intervenants", "Max Upload Count": "Nombre maximal de téléversements", "Max Upload Size": "Limite de taille de téléversement", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Un maximum de 3 modèles peut être téléchargé en même temps. Veuillez réessayer ultérieurement.", "May": "Mai", "MBR": "", @@ -1042,6 +1067,7 @@ "Member removed successfully": "", "Members": "", "Members added successfully": "", + "Memories": "", "Memories accessible by LLMs will be shown here.": "Les souvenirs accessibles par les LLMs seront affichées ici.", "Memory": "Mémoire", "Memory added successfully": "Souvenir ajoutée avec succès", @@ -1051,6 +1077,7 @@ "Merge Responses": "Fusionner les réponses", "Merged Response": "Réponse fusionnée", "Message": "", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "L'évaluation des messages doit être activée pour pouvoir utiliser cette fonctionnalité", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Les messages que vous envoyez après avoir créé votre lien ne seront pas partagés. Les utilisateurs disposant de l'URL pourront voir la conversation partagée.", "Microsoft OneDrive": "Microsoft OneDrive", @@ -1083,9 +1110,11 @@ "Model Name": "Nom du modèle", "Model name already exists, please choose a different one": "", "Model Name is required.": "", + "Model names and usage frequency": "", "Model not selected": "Modèle non sélectionné", "Model Params": "Réglages du modèle", "Model Permissions": "Autorisations du modèle", + "Model responses or outputs": "", "Model unloaded successfully": "Le modèle a été déchargé avec succès", "Model updated successfully": "Le modèle a été mis à jour avec succès", "Model(s) do not support file upload": "Le(s) modèle(s) ne supportent pas le téléversement de fichiers", @@ -1096,6 +1125,7 @@ "Models imported successfully": "", "Models Public Sharing": "Partage public des modèles", "Models Sharing": "", + "Mojeek": "", "Mojeek Search API Key": "Clé API Mojeek", "More": "Plus", "More Concise": "", @@ -1129,7 +1159,7 @@ "No conversation to save": "", "No distance available": "Aucune distance disponible", "No expiration can pose security risks.": "", - "No feedbacks found": "Aucun avis trouvé", + "No feedback found": "", "No file selected": "Aucun fichier sélectionné", "No files in this knowledge base.": "", "No functions found": "", @@ -1144,6 +1174,7 @@ "No models selected": "Aucun modèle sélectionné", "No Notes": "Pas de note", "No notes found": "", + "No one": "", "No pinned messages": "", "No prompts found": "", "No results": "Aucun résultat trouvé", @@ -1195,6 +1226,7 @@ "Only invited users can access": "", "Only markdown files are allowed": "Seul les fichiers markdown sont autorisés", "Only select users and groups with permission can access": "Seuls les utilisateurs et groupes autorisés peuvent accéder", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Oups ! Il semble que l'URL soit invalide. Veuillez vérifier à nouveau et réessayer.", "Oops! There are files still uploading. Please wait for the upload to complete.": "Oups ! Des fichiers sont encore en cours de téléversement. Veuillez patienter jusqu'à la fin du téléversement.", "Oops! There was an error in the previous response.": "Oups ! Il y a eu une erreur dans la réponse précédente.", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI peut utiliser les outils fournis par n'importe quel serveur OpenAPI.", "Open WebUI uses faster-whisper internally.": "Open WebUI utilise faster-whisper en interne.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI utilise SpeechT5 et les embeddings de locuteur CMU Arctic.", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "La version Open WebUI (v{{OPEN_WEBUI_VERSION}}) est inférieure à la version requise (v{{REQUIRED_VERSION}})", "OpenAI": "OpenAI", "OpenAI API": "API compatibles OpenAI", @@ -1235,6 +1268,8 @@ "page": "page", "Paginate": "Paginer", "Parameters": "Réglages", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "Mot de passe", "Passwords do not match.": "", "Paste Large Text as File": "Coller un texte volumineux comme fichier", @@ -1260,7 +1295,6 @@ "Pipe": "Pipeline", "Pipeline deleted successfully": "Le pipeline a été supprimé avec succès", "Pipeline downloaded successfully": "Le pipeline a été téléchargé avec succès", - "Pipelines": "Pipelines", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines est un système de plug‑ins permettant l’exécution arbitraire de code —", "Pipelines Not Detected": "Aucun pipelines détecté", "Pipelines Valves": "Vannes de pipelines", @@ -1499,6 +1533,7 @@ "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.": "Définit les séquences d'arrêt à utiliser. Lorsque ce motif est rencontré, le LLM cessera de générer du texte et retournera. Plusieurs motifs d'arrêt peuvent être définis en spécifiant plusieurs réglages d'arrêt distincts dans un fichier modèle.", "Setting": "", "Settings": "Réglages", + "Settings Permissions": "", "Settings saved successfully!": "Réglages enregistrés avec succès !", "Share": "Partager", "Share Chat": "Partage de conversation", @@ -1542,6 +1577,7 @@ "Speech recognition error: {{error}}": "Erreur de reconnaissance vocale : {{error}}", "Speech-to-Text": "Reconnaissance vocale", "Speech-to-Text Engine": "Moteur de reconnaissance vocale", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "", "Start of the channel": "Début du canal", "Start Tag": "", @@ -1552,6 +1588,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Stop", + "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Séquence d'arrêt", "Stream Chat Response": "Streamer la réponse de la conversation", @@ -1572,7 +1609,14 @@ "Support": "Supporter", "Support this plugin:": "Supporter ce module", "Supported MIME Types": "Types MIME pris en charge", + "Sync": "", + "Sync Complete!": "", "Sync directory": "Synchroniser le répertoire", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "Système", "System Instructions": "Instructions système", "System Prompt": "Prompt système", @@ -1617,6 +1661,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "", "The width in pixels to compress images to. Leave empty for no compression.": "Largeur en pixels à laquelle les images doivent être compressées. Laisser vide pour ne pas compresser.", "Theme": "Thème", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "En train de réfléchir...", "This action cannot be undone. Do you wish to continue?": "Cette action ne peut pas être annulée. Souhaitez-vous continuer ?", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "Ce canal a été créé le {{createdAt}}. Voici le tout début du canal {{channelName}}.", @@ -1731,6 +1776,7 @@ "Upload Pipeline": "Pipeline de téléchargement", "Upload Progress": "Progression de l'envoi", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploaded files or images": "", "Uploading file...": "", "URL": "URL", "URL is required": "", @@ -1748,6 +1794,7 @@ "User Groups": "", "User location successfully retrieved.": "L'emplacement de l'utilisateur a été récupéré avec succès.", "User menu": "Menu utilisateur", + "User ratings (thumbs up/down)": "", "User Webhooks": "Webhooks utilisateur", "Username": "Nom d'utilisateur", "users": "", @@ -1797,15 +1844,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI fera des requêtes à \"{{url}}/chat/completions\"", "What are you trying to achieve?": "Que cherchez-vous à accomplir ?", "What are you working on?": "Sur quoi travaillez-vous ?", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "Quoi de neuf dans", "What's on your mind?": "", "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.": "Lorsqu'il est activé, le modèle répondra à chaque message de la conversation en temps réel, générant une réponse dès que l'utilisateur envoie un message. Ce mode est utile pour les applications de conversation en direct, mais peut affecter les performances sur un matériel plus lent.", "wherever you are": "où que vous soyez", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "Indique si la sortie doit être paginée. Chaque page sera séparée par une règle horizontale et un numéro de page. La valeur par défaut est False.", "Whisper (Local)": "Whisper (local)", + "Who can share to this group": "", "Why?": "Pourquoi ?", "Widescreen Mode": "Mode grand écran", "Width": "", + "Wikipedia": "", "Won": "Victoires", "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.": "Fonctionne avec top-k. Une valeur élevée (par exemple, 0,95) conduira à un texte plus diversifié, tandis qu'une valeur plus faible (par exemple, 0,5) générera un texte plus ciblé et conservateur.", "Workspace": "Espace de travail", @@ -1817,6 +1868,8 @@ "Yacy Instance URL": "URL de l'instance Yacy", "Yacy Password": "Mot de passe Yacy", "Yacy Username": "Nom d'utilisateur Yacy", + "Yahoo": "", + "Yandex": "", "Yesterday": "Hier", "Yesterday at {{LOCALIZED_TIME}}": "", "You": "Vous", @@ -1824,6 +1877,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Vous ne pouvez discuter qu'avec un maximum de {{maxCount}} fichier(s) à la fois.", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Vous pouvez personnaliser vos interactions avec les LLM en ajoutant des mémoires à l'aide du bouton « Gérer » ci-dessous, ce qui les rendra plus utiles et mieux adaptées à vos besoins.", "You cannot upload an empty file.": "Vous ne pouvez pas envoyer un fichier vide.", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this thread.": "", "You do not have permission to upload files to this knowledge base.": "", @@ -1835,6 +1891,8 @@ "Your Account": "", "Your account status is currently pending activation.": "Votre statut de compte est actuellement en attente d'activation.", "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.": "L'intégralité de votre contribution ira directement au développeur du plugin ; Open WebUI ne prend aucun pourcentage. Cependant, la plateforme de financement choisie peut avoir ses propres frais.", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "YouTube", "Youtube Language": "Langue de Youtube", "Youtube Proxy URL": "URL du proxy YouTube" diff --git a/src/lib/i18n/locales/fr-FR/translation.json b/src/lib/i18n/locales/fr-FR/translation.json index 47f4e01f9..ba72240a4 100644 --- a/src/lib/i18n/locales/fr-FR/translation.json +++ b/src/lib/i18n/locales/fr-FR/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "L'ajustement de ces réglages appliquera universellement les changements à tous les utilisateurs.", "admin": "administrateur", "Admin": "Administrateur", + "Admin Contact Email": "", "Admin Panel": "Panneau d'administration", "Admin Settings": "Réglages d'administration", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Les administrateurs ont accès à tous les outils en permanence ; les utilisateurs doivent se voir attribuer des outils pour chaque modèle dans l'espace de travail.", @@ -101,7 +102,6 @@ "Allow Continue Response": "Autoriser la réponse continue", "Allow Delete Messages": "Autoriser la suppression des messages", "Allow File Upload": "Autoriser le téléversement de fichiers", - "Allow Group Sharing": "", "Allow Multiple Models in Chat": "Autoriser plusieurs modèles dans la conversation", "Allow non-local voices": "Autoriser les voix non locales", "Allow Rate Response": "", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "et {{COUNT}} autres", "and create a new shared link.": "et créer un nouveau lien partagé.", "Android": "Android", + "Anyone": "", "API Base URL": "URL de base de l'API", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "URL de base de l'API pour le service Datalab Marker. Par défaut : https://www.datalab.to/api/v1/marker", "API Key": "Clé d'API", @@ -175,6 +176,7 @@ "Authenticate": "Authentifier", "Authentication": "Authentification", "Auto": "Automatique", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "Copie automatique de la réponse vers le presse-papiers", "Auto-playback response": "Lire automatiquement la réponse", "Autocomplete Generation": "Génération des suggestions", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "AUTOMATIC1111 Chaîne d'authentification de l'API", "AUTOMATIC1111 Base URL": "URL de base AUTOMATIC1111", "AUTOMATIC1111 Base URL is required.": "L'URL de base {AUTOMATIC1111} est requise.", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "Liste disponible", "Available Tools": "Outils disponibles", "available users": "utilisateurs disponibles", @@ -201,6 +204,7 @@ "before": "avant", "Being lazy": "Être fainéant", "Beta": "Bêta", + "Bing": "", "Bing Search V7 Endpoint": "Point de terminaison Bing Search V7", "Bing Search V7 Subscription Key": "Clé d'abonnement Bing Search V7", "Bio": "Bio", @@ -209,7 +213,9 @@ "Bocha Search API Key": "Clé API Bocha Search", "Bold": "Gras", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Renforcer ou pénaliser des éléments spécifiques pour les réponses contraintes. Les valeurs du biais seront comprises entre -100 et 100 (inclus). (Par défaut : aucun)", + "Brave": "", "Brave Search API Key": "Clé API Brave Search", + "Builtin Tools": "", "Bullet List": "Liste à puces", "Button ID": "Button ID", "Button Label": "Button Label", @@ -256,8 +262,10 @@ "Check for updates": "Vérifier les mises à jour disponibles", "Checking for updates...": "Recherche de mises à jour...", "Choose a model before saving...": "Choisissez un modèle avant de sauvegarder...", + "Chunk Min Size Target": "", "Chunk Overlap": "Chevauchement des chunks", "Chunk Size": "Taille des chunks", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "Chiffres", "Citation": "Citation", "Citations": "Citations", @@ -293,7 +301,6 @@ "Code Block": "Bloc de code", "Code Editor": "", "Code execution": "Exécution de code", - "Code Execution": "Exécution de code", "Code Execution Engine": "Moteur d'execution de code", "Code Execution Timeout": "Délai d'exécution du code dépassé", "Code formatted successfully": "Le code a été formaté avec succès", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "Contacter l'administrateur pour obtenir l'accès à WebUI", "Content": "Contenu", "Content Extraction Engine": "Moteur d'extraction de contenu", + "Content lengths (character counts only)": "", "Continue Response": "Continuer la réponse", "Continue with {{provider}}": "Continuer avec {{provider}}", "Continue with Email": "Continuer avec l'email", @@ -393,6 +401,7 @@ "Database": "Base de données", "Datalab Marker API": "API Datalab Marker", "DD/MM/YYYY": "JJ/MM/AAAA", + "DDGS Backend": "", "December": "Décembre", "Decrease UI Scale": "", "Deepgram": "", @@ -474,6 +483,7 @@ "Dive into knowledge": "Plonger dans les connaissances", "Do not install functions from sources you do not fully trust.": "N'installez pas de fonctions provenant de sources auxquelles vous ne faites pas entièrement confiance.", "Do not install tools from sources you do not fully trust.": "N'installez pas d'outils provenant de sources auxquelles vous ne faites pas entièrement confiance.", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "Docling", "Docling Parameters": "", "Docling Server URL required.": "URL du serveur Docling requise.", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "Point de terminaison Document Intelligence requis.", "Document Intelligence Model": "", "Documentation": "Documentation", - "Documents": "Documents", "does not make any external connections, and your data stays securely on your locally hosted server.": "n'établit aucune connexion externe et garde vos données en sécurité sur votre serveur local.", "Domain Filter List": "Liste des domaines à filtrés", "don't fetch random pipelines from sources you don't trust.": "Ne récupérez pas des pipelines aléatoires depuis des sources non fiables.", @@ -493,11 +502,14 @@ "Done": "Terminé", "Download": "Télécharger", "Download & Delete": "Télécharger et supprimer", + "Download as JSON": "", "Download as SVG": "Télécharger au format SVG", "Download canceled": "Téléchargement annulé", "Download Database": "Télécharger la base de données", + "Downloading stats...": "", "Draw": "Match nul", "Drop any files here to upload": "Déposez des fichiers ici pour les téléverser", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "par ex. '30s', '10 min'. Les unités de temps valides sont 's', 'm', 'h'.", "e.g. \"json\" or a JSON schema": "par ex. \"json\" ou un schéma JSON", "e.g. 60": "par ex. 60", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "Entrez la clé API Bocha Search", "Enter Brave Search API Key": "Entrez la clé API Brave Search", "Enter certificate path": "Entrez le chemin du certificat", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "Entrez le chevauchement des chunks", "Enter Chunk Size": "Entrez la taille des chunks", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Entrez des paires \"token:valeur_biais\" séparées par des virgules (exemple : 5432:100, 413:-100)", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "Entrez l'URL de la recherche Web externe", "Enter Firecrawl API Base URL": "Entrez l'URL de base de l'API Firecrawl", "Enter Firecrawl API Key": "Entrez la clé API de Firecrawl", + "Enter Firecrawl Timeout": "", "Enter folder name": "Entrez le nom du dossier", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "Entrez l'URL brute de GitHub", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "Entrez la couleur hexadécimale (Ex : #FF0000)", "Enter ID": "Entrez l'ID", "Enter Image Size (e.g. 512x512)": "Entrez la taille de l'image (par ex. 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "Entrez la clé API Jina", "Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter Jupyter Password": "Entrez le mot de passe Jupyter", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "Entrez la clé API Kagi Search", "Enter Key Behavior": "Entrez la clé Behavior", "Enter language codes": "Entrez les codes de langue", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "", "Enter Mistral API Key": "Entrez la clé APU de Mistral", "Enter Model ID": "Entrez l'ID du modèle", @@ -736,6 +753,7 @@ "Failed to generate title": "Échec de la génération du titre", "Failed to import models": "", "Failed to load chat preview": "Échec du chargement de l'aperçu du chat", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "Échec du chargement du contenu du fichier", "Failed to move chat": "Échec du déplacement du chat", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "Fonctionnalités", "Features Permissions": "Autorisations des fonctionnalités", "February": "Février", + "Feedback": "", "Feedback deleted successfully": "", "Feedback Details": "Détails du retour d'information", "Feedback History": "Historique des avis", - "Feedbacks": "Avis", "Feel free to add specific details": "N'hésitez pas à ajouter des détails spécifiques", "Female": "Femme", "File": "Fichier", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Spoofing détecté : impossible d'utiliser les initiales comme avatar. Retour à l'image de profil par défaut.", "Firecrawl API Base URL": "Url de l'API Base Firecrawl", "Firecrawl API Key": "Clé de l'API Firecrawl", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "Actions rapides flottantes", "Focus Chat Input": "", "Folder": "", "Folder Background Image": "Image d'arrière-plan du dossier", "Folder deleted successfully": "Dossier supprimé avec succès", + "Folder Max File Count": "", "Folder Name": "Nom du dossier", "Folder name cannot be empty.": "Le nom du dossier ne peut pas être vide.", "Folder name updated successfully": "Le nom du dossier a été mis à jour avec succès", @@ -826,7 +846,6 @@ "General": "Général", "Generate": "Génére", "Generate an image": "Génère une image", - "Generate Image": "Générer une image", "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Génération d'une requête de recherche", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "Démarrez avec {{WEBUI_NAME}}", "Global": "Globale", "Good Response": "Bonne réponse", + "Google": "", "Google Drive": "Google Drive", "Google PSE API Key": "Clé API Google PSE", "Google PSE Engine Id": "ID du moteur de recherche PSE de Google", "Gravatar": "", "Grid": "", + "Grokipedia": "", "Group": "Groupe", "Group Channel": "", "Group created successfully": "Groupe créé avec succès", @@ -895,7 +916,6 @@ "Image Prompt Generation": "Génération de prompts d'images", "Image Prompt Generation Prompt": "Prompt de génération de prompts d'images", "Image Size": "", - "Images": "Images", "Import": "Importer", "Import Chats": "Importer les conversations", "Import Config from JSON File": "Importer la configuration depuis un fichier JSON", @@ -927,6 +947,7 @@ "Integration": "Intégration", "Integrations": "Integrations", "Interface": "Interface utilisateur", + "Interface Settings Access": "", "Invalid file content": "Contenu de fichier invalide", "Invalid file format.": "Format de fichier non valide.", "Invalid JSON file": "Fichier JSON non valide", @@ -940,6 +961,7 @@ "is typing...": "est en train d'écrire...", "Italic": "Italique", "January": "Janvier", + "Jina API Base URL": "", "Jina API Key": "Clé API Jina", "join our Discord for help.": "Rejoignez notre Discord pour obtenir de l'aide.", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "Laissez vide pour inclure tous les modèles de l'endpoint \"{{url}}/api/tags\"", "Leave empty to include all models from \"{{url}}/models\" endpoint": "Laissez vide pour inclure tous les modèles de l'endpoint \"{{url}}/models\"", "Leave empty to include all models or select specific models": "Laissez vide pour inclure tous les modèles ou sélectionnez des modèles spécifiques", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "", "Leave empty to use the default prompt, or enter a custom prompt": "Laissez vide pour utiliser le prompt par défaut, ou entrez un prompt personnalisé", "Leave model field empty to use the default model.": "Laisser le champ du modèle vide pour utiliser le modèle par défaut.", @@ -1029,10 +1052,12 @@ "Manage your account information.": "Gérez les informations de votre compte.", "March": "Mars", "Markdown": "Markdown", - "Markdown (Header)": "", + "Markdown Header Text Splitter": "", "Max Speakers": "Nombre maximal d'intervenants", "Max Upload Count": "Nombre maximal de téléversements", "Max Upload Size": "Limite de taille de téléversement", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Un maximum de 3 modèles peut être téléchargé en même temps. Veuillez réessayer ultérieurement.", "May": "Mai", "MBR": "", @@ -1042,6 +1067,7 @@ "Member removed successfully": "", "Members": "", "Members added successfully": "", + "Memories": "", "Memories accessible by LLMs will be shown here.": "Les souvenirs accessibles par les LLMs seront affichées ici.", "Memory": "Mémoire", "Memory added successfully": "Souvenir ajoutée avec succès", @@ -1051,6 +1077,7 @@ "Merge Responses": "Fusionner les réponses", "Merged Response": "Réponse fusionnée", "Message": "", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "L'évaluation des messages doit être activée pour pouvoir utiliser cette fonctionnalité", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Les messages que vous envoyez après avoir créé votre lien ne seront pas partagés. Les utilisateurs disposant de l'URL pourront voir la conversation partagée.", "Microsoft OneDrive": "Microsoft OneDrive", @@ -1083,9 +1110,11 @@ "Model Name": "Nom du modèle", "Model name already exists, please choose a different one": "Le nom du modèle existe déjà, veuillez en choisir un autre", "Model Name is required.": "Le nom du modèle est requis.", + "Model names and usage frequency": "", "Model not selected": "Modèle non sélectionné", "Model Params": "Réglages du modèle", "Model Permissions": "Autorisations du modèle", + "Model responses or outputs": "", "Model unloaded successfully": "Le modèle a été déchargé avec succès", "Model updated successfully": "Le modèle a été mis à jour avec succès", "Model(s) do not support file upload": "Le(s) modèle(s) ne supportent pas le téléversement de fichiers", @@ -1096,6 +1125,7 @@ "Models imported successfully": "", "Models Public Sharing": "Partage public des modèles", "Models Sharing": "", + "Mojeek": "", "Mojeek Search API Key": "Clé API Mojeek", "More": "Plus", "More Concise": "Plus concis", @@ -1129,7 +1159,7 @@ "No conversation to save": "Aucune conversation à sauvegarder", "No distance available": "Aucune distance disponible", "No expiration can pose security risks.": "", - "No feedbacks found": "Aucun avis trouvé", + "No feedback found": "", "No file selected": "Aucun fichier sélectionné", "No files in this knowledge base.": "", "No functions found": "", @@ -1144,6 +1174,7 @@ "No models selected": "Aucun modèle sélectionné", "No Notes": "Pas de note", "No notes found": "Aucune note trouvée", + "No one": "", "No pinned messages": "", "No prompts found": "", "No results": "Aucun résultat trouvé", @@ -1195,6 +1226,7 @@ "Only invited users can access": "", "Only markdown files are allowed": "Seul les fichiers markdown sont autorisés", "Only select users and groups with permission can access": "Seuls les utilisateurs et groupes autorisés peuvent accéder", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Oups ! Il semble que l'URL soit invalide. Veuillez vérifier à nouveau et réessayer.", "Oops! There are files still uploading. Please wait for the upload to complete.": "Oups ! Des fichiers sont encore en cours de téléversement. Veuillez patienter jusqu'à la fin du téléversement.", "Oops! There was an error in the previous response.": "Oups ! Il y a eu une erreur dans la réponse précédente.", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI peut utiliser les outils fournis par n'importe quel serveur OpenAPI.", "Open WebUI uses faster-whisper internally.": "Open WebUI utilise faster-whisper en interne.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI utilise SpeechT5 et les embeddings de locuteur CMU Arctic.", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "La version Open WebUI (v{{OPEN_WEBUI_VERSION}}) est inférieure à la version requise (v{{REQUIRED_VERSION}})", "OpenAI": "OpenAI", "OpenAI API": "API compatibles OpenAI", @@ -1235,6 +1268,8 @@ "page": "page", "Paginate": "Paginer", "Parameters": "Réglages", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "Mot de passe", "Passwords do not match.": "Les mots de passe ne correspondent pas.", "Paste Large Text as File": "Coller un texte volumineux comme fichier", @@ -1260,7 +1295,6 @@ "Pipe": "Pipeline", "Pipeline deleted successfully": "Le pipeline a été supprimé avec succès", "Pipeline downloaded successfully": "Le pipeline a été téléchargé avec succès", - "Pipelines": "Pipelines", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines est un système de plug‑ins permettant l’exécution arbitraire de code —", "Pipelines Not Detected": "Aucun pipelines détecté", "Pipelines Valves": "Vannes de pipelines", @@ -1499,6 +1533,7 @@ "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.": "Définit les séquences d'arrêt à utiliser. Lorsque ce motif est rencontré, le LLM cessera de générer du texte et retournera. Plusieurs motifs d'arrêt peuvent être définis en spécifiant plusieurs réglages d'arrêt distincts dans un fichier modèle.", "Setting": "", "Settings": "Réglages", + "Settings Permissions": "", "Settings saved successfully!": "Réglages enregistrés avec succès !", "Share": "Partager", "Share Chat": "Partage de conversation", @@ -1542,6 +1577,7 @@ "Speech recognition error: {{error}}": "Erreur de reconnaissance vocale : {{error}}", "Speech-to-Text": "Reconnaissance vocale", "Speech-to-Text Engine": "Moteur de reconnaissance vocale", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "", "Start of the channel": "Début du canal", "Start Tag": "Balise de départ", @@ -1552,6 +1588,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Stop", + "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Séquence d'arrêt", "Stream Chat Response": "Streamer la réponse de la conversation", @@ -1572,7 +1609,14 @@ "Support": "Supporter", "Support this plugin:": "Supporter ce module", "Supported MIME Types": "Types MIME pris en charge", + "Sync": "", + "Sync Complete!": "", "Sync directory": "Synchroniser le répertoire", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "Système", "System Instructions": "Instructions système", "System Prompt": "Prompt système", @@ -1617,6 +1661,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "", "The width in pixels to compress images to. Leave empty for no compression.": "Largeur en pixels à laquelle les images doivent être compressées. Laisser vide pour ne pas compresser.", "Theme": "Thème", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "En train de réfléchir...", "This action cannot be undone. Do you wish to continue?": "Cette action ne peut pas être annulée. Souhaitez-vous continuer ?", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "Ce canal a été créé le {{createdAt}}. Voici le tout début du canal {{channelName}}.", @@ -1731,6 +1776,7 @@ "Upload Pipeline": "Pipeline de téléchargement", "Upload Progress": "Progression de l'envoi", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Progression du téléchargement\u00a0: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", + "Uploaded files or images": "", "Uploading file...": "", "URL": "URL", "URL is required": "L'URL est requise", @@ -1748,6 +1794,7 @@ "User Groups": "Groupes d'utilisateurs", "User location successfully retrieved.": "L'emplacement de l'utilisateur a été récupéré avec succès.", "User menu": "Menu utilisateur", + "User ratings (thumbs up/down)": "", "User Webhooks": "Webhooks utilisateur", "Username": "Nom d'utilisateur", "users": "", @@ -1797,15 +1844,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI fera des requêtes à \"{{url}}/chat/completions\"", "What are you trying to achieve?": "Que cherchez-vous à accomplir ?", "What are you working on?": "Sur quoi travaillez-vous ?", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "Quoi de neuf dans", "What's on your mind?": "", "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.": "Lorsqu'il est activé, le modèle répondra à chaque message de la conversation en temps réel, générant une réponse dès que l'utilisateur envoie un message. Ce mode est utile pour les applications de conversation en direct, mais peut affecter les performances sur un matériel plus lent.", "wherever you are": "où que vous soyez", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "Indique si la sortie doit être paginée. Chaque page sera séparée par une règle horizontale et un numéro de page. La valeur par défaut est False.", "Whisper (Local)": "Whisper (local)", + "Who can share to this group": "", "Why?": "Pourquoi ?", "Widescreen Mode": "Mode grand écran", "Width": "Largeur", + "Wikipedia": "", "Won": "Victoires", "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.": "Fonctionne avec top-k. Une valeur élevée (par exemple, 0,95) conduira à un texte plus diversifié, tandis qu'une valeur plus faible (par exemple, 0,5) générera un texte plus ciblé et conservateur.", "Workspace": "Espace de travail", @@ -1817,6 +1868,8 @@ "Yacy Instance URL": "URL de l'instance Yacy", "Yacy Password": "Mot de passe Yacy", "Yacy Username": "Nom d'utilisateur Yacy", + "Yahoo": "", + "Yandex": "", "Yesterday": "Hier", "Yesterday at {{LOCALIZED_TIME}}": "Hier à {{LOCALIZED_TIME}}", "You": "Vous", @@ -1824,6 +1877,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Vous ne pouvez discuter qu'avec un maximum de {{maxCount}} fichier(s) à la fois.", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Vous pouvez personnaliser vos interactions avec les LLM en ajoutant des mémoires à l'aide du bouton « Gérer » ci-dessous, ce qui les rendra plus utiles et mieux adaptées à vos besoins.", "You cannot upload an empty file.": "Vous ne pouvez pas envoyer un fichier vide.", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this thread.": "", "You do not have permission to upload files to this knowledge base.": "", @@ -1835,6 +1891,8 @@ "Your Account": "Votre compte", "Your account status is currently pending activation.": "Votre statut de compte est actuellement en attente d'activation.", "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.": "L'intégralité de votre contribution ira directement au développeur du plugin ; Open WebUI ne prend aucun pourcentage. Cependant, la plateforme de financement choisie peut avoir ses propres frais.", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "YouTube", "Youtube Language": "Langue de Youtube", "Youtube Proxy URL": "URL du proxy YouTube" diff --git a/src/lib/i18n/locales/gl-ES/translation.json b/src/lib/i18n/locales/gl-ES/translation.json index 8ba25d5c1..cf7e9aef1 100644 --- a/src/lib/i18n/locales/gl-ES/translation.json +++ b/src/lib/i18n/locales/gl-ES/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "Axustar estas opcions aplicará os cambios universalmente a todos os usuarios.", "admin": "admin", "Admin": "Admin", + "Admin Contact Email": "", "Admin Panel": "Panel de Administración", "Admin Settings": "Configuración de Administrador", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Os administradores teñen acceso a todas as ferramentas en todo momento; os usuarios necesitan ferramentas asignadas por modelo no espacio de trabajo.", @@ -101,7 +102,6 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "Permitir asubida de Arquivos", - "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "Permitir voces non locales", "Allow Rate Response": "", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "e {{COUNT}} mais", "and create a new shared link.": "e xerar un novo enlace compartido.", "Android": "", + "Anyone": "", "API Base URL": "Dirección URL da API", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "", "API Key": "Chave da API ", @@ -175,6 +176,7 @@ "Authenticate": "Autenticar", "Authentication": "", "Auto": "", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "Copiar a resposta automáticamente o portapapeis", "Auto-playback response": "Respuesta de reproducción automática", "Autocomplete Generation": "xeneración de autocompletado", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "API de autenticación para a instancia de AUTOMATIC1111", "AUTOMATIC1111 Base URL": "Dirección URL de AUTOMATIC1111", "AUTOMATIC1111 Base URL is required.": "A dirección URL de AUTOMATIC1111 e requerida.", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "Lista dispoñible", "Available Tools": "", "available users": "usuarios dispoñibles", @@ -201,6 +204,7 @@ "before": "antes", "Being lazy": "Ser pregizeiro", "Beta": "Beta", + "Bing": "", "Bing Search V7 Endpoint": "Punto final da busqueda de Bing versión V7", "Bing Search V7 Subscription Key": "Chave de suscripción da busqueda de Bing versión V7", "Bio": "", @@ -209,7 +213,9 @@ "Bocha Search API Key": "", "Bold": "", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "", + "Brave": "", "Brave Search API Key": "Chave de API da busqueda Brave", + "Builtin Tools": "", "Bullet List": "", "Button ID": "", "Button Label": "", @@ -256,8 +262,10 @@ "Check for updates": "Verificar actualizacions", "Checking for updates...": "Verificando actualizacions...", "Choose a model before saving...": "Escolle un modelo antes de gardar os cambios...", + "Chunk Min Size Target": "", "Chunk Overlap": "Superposición de fragmentos", "Chunk Size": "Tamaño de fragmentos", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "Cifrado", "Citation": "Cita", "Citations": "", @@ -293,7 +301,6 @@ "Code Block": "", "Code Editor": "", "Code execution": "Execución de código", - "Code Execution": "Execución de código", "Code Execution Engine": "Motor de execución de código", "Code Execution Timeout": "Tempo de espera esgotado para a execución de código", "Code formatted successfully": "Formateouse correctamente o código.", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "Contacta o administrador para obter acceso o WebUI", "Content": "Contido", "Content Extraction Engine": "Motor extractor de contido", + "Content lengths (character counts only)": "", "Continue Response": "Continuar Respuesta", "Continue with {{provider}}": "Continuar co {{provider}}", "Continue with Email": "Continuar co email", @@ -393,6 +401,7 @@ "Database": "Base de datos", "Datalab Marker API": "", "DD/MM/YYYY": "", + "DDGS Backend": "", "December": "Decembro", "Decrease UI Scale": "", "Deepgram": "", @@ -474,6 +483,7 @@ "Dive into knowledge": "Sumérgete no coñecemento", "Do not install functions from sources you do not fully trust.": "Non instale funcións desde fontes nas que no confíe totalmente.", "Do not install tools from sources you do not fully trust.": "Non instale ferramentas desde fontes nas que no confíe totalmente.", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "", "Docling Parameters": "", "Docling Server URL required.": "", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "", "Document Intelligence Model": "", "Documentation": "Documentación", - "Documents": "Documentos", "does not make any external connections, and your data stays securely on your locally hosted server.": "non realiza ninguna conexión externa y sus datos permanecen seguros en su servidor alojado localmente.", "Domain Filter List": "", "don't fetch random pipelines from sources you don't trust.": "Non obteñas pipelines aleatorias de fontes non fiables.", @@ -493,11 +502,14 @@ "Done": "Feito", "Download": "Descargar", "Download & Delete": "Descargar e eliminar", + "Download as JSON": "", "Download as SVG": "", "Download canceled": "Descarga cancelada", "Download Database": "Descarga a Base de Datos", + "Downloading stats...": "", "Draw": "Dibujar", "Drop any files here to upload": "", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "p.ej. '30s','10m'. Unidades válidas detempo son 's', 'm', 'h'.", "e.g. \"json\" or a JSON schema": "", "e.g. 60": "e.g. 60", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "Ingresa a chave de API da busqueda de Bocha", "Enter Brave Search API Key": "Ingresa a chave de API de busqueda de Brave", "Enter certificate path": "Ingrese a ruta do certificado", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "Ingresar superposición de fragmentos", "Enter Chunk Size": "Ingrese o tamaño do fragmento", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "", "Enter Firecrawl API Base URL": "", "Enter Firecrawl API Key": "", + "Enter Firecrawl Timeout": "", "Enter folder name": "", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "Ingresa a URL sin procesar de Github", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "", "Enter ID": "", "Enter Image Size (e.g. 512x512)": "Ingrese o tamaño da imaxen (p.ej. 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "Ingrese a chave API de Jina", "Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter Jupyter Password": "Ingrese o contrasinal de Jupyter", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "Ingrese a chave API de Kagi Search", "Enter Key Behavior": "Ingrese o comportamento da chave", "Enter language codes": "Ingrese códigos de idioma", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "", "Enter Mistral API Key": "", "Enter Model ID": "Ingresa o ID do modelo", @@ -736,6 +753,7 @@ "Failed to generate title": "", "Failed to import models": "", "Failed to load chat preview": "", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "", "Failed to move chat": "", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "Características", "Features Permissions": "Permisos de características", "February": "Febreiro", + "Feedback": "", "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "Historial de retroalimentación", - "Feedbacks": "Retroalimentacions", "Feel free to add specific details": "Libre de agregar detalles específicos", "Female": "", "File": "Arquivo", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Destectouse suplantación de pegadas: Non puderon usarse as iniciais como avatar. Por defecto utilizase a imaxen de perfil predeterminada.", "Firecrawl API Base URL": "", "Firecrawl API Key": "", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "", "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "Carpeta eliminada correctamente", + "Folder Max File Count": "", "Folder Name": "", "Folder name cannot be empty.": "O nome da carpeta non pode estar vacío", "Folder name updated successfully": "Nombre da carpeta actualizado correctamente", @@ -826,7 +846,6 @@ "General": "General", "Generate": "", "Generate an image": "Generar unha imaxen", - "Generate Image": "Generar imaxen", "Generate Message Pair": "", "Generated Image": "", "Generating search query": "xeneración de consultas de búsqueda", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "Empezar con {{WEBUI_NAME}}", "Global": "Global", "Good Response": "Buena Respuesta", + "Google": "", "Google Drive": "Google Drive", "Google PSE API Key": "chave API de Google PSE", "Google PSE Engine Id": "ID do motor PSE de Google", "Gravatar": "", "Grid": "", + "Grokipedia": "", "Group": "Grupo", "Group Channel": "", "Group created successfully": "Grupo creado correctamente", @@ -895,7 +916,6 @@ "Image Prompt Generation": "xeneración de prompt de imaxen", "Image Prompt Generation Prompt": "Prompt de xeneración de prompt de imaxen", "Image Size": "", - "Images": "imaxes", "Import": "", "Import Chats": "Importar chats", "Import Config from JSON File": "Importar configuración desde Arquivo JSON", @@ -927,6 +947,7 @@ "Integration": "Integración", "Integrations": "", "Interface": "Interfaz", + "Interface Settings Access": "", "Invalid file content": "", "Invalid file format.": "Formato de Arquivo inválido.", "Invalid JSON file": "", @@ -940,6 +961,7 @@ "is typing...": "está escribindo...", "Italic": "", "January": "Xaneiro", + "Jina API Base URL": "", "Jina API Key": "chave API de Jina", "join our Discord for help.": "Únase o noso Discord para obter axuda.", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "", "Leave empty to include all models or select specific models": "Deixa vacío para incluir todos os modelos o seleccione modelos específicos", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "", "Leave empty to use the default prompt, or enter a custom prompt": "Deixa vacío para usar o prompt predeterminado, o ingrese un prompt personalizado", "Leave model field empty to use the default model.": "Deixa o campo do modelo vacío para usar o modelo predeterminado.", @@ -1029,10 +1052,12 @@ "Manage your account information.": "", "March": "Marzo", "Markdown": "", - "Markdown (Header)": "", + "Markdown Header Text Splitter": "", "Max Speakers": "", "Max Upload Count": "Cantidad máxima de cargas", "Max Upload Size": "Tamaño máximo de Cargas", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Podense descargar un máximo de 3 modelos simultáneamente. Por favor, intenteo de novo mais tarde.", "May": "Mayo", "MBR": "", @@ -1042,6 +1067,7 @@ "Member removed successfully": "", "Members": "", "Members added successfully": "", + "Memories": "", "Memories accessible by LLMs will be shown here.": "As memorias accesibles por os LLMs mostraránse aquí.", "Memory": "Memoria", "Memory added successfully": "Memoria añadida correctamente", @@ -1051,6 +1077,7 @@ "Merge Responses": "Fusionar Respuestas", "Merged Response": "Resposta combinada", "Message": "", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "a calificación de mensaxes debe estar habilitada para usar esta función", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Os mensaxes que envíe despois de xerar su enlace no compartiránse. os usuarios co enlace podrán ver o chat compartido.", "Microsoft OneDrive": "", @@ -1083,9 +1110,11 @@ "Model Name": "Nombre do modelo", "Model name already exists, please choose a different one": "", "Model Name is required.": "", + "Model names and usage frequency": "", "Model not selected": "Modelo no seleccionado", "Model Params": "Parámetros do modelo", "Model Permissions": "Permisos do modelo", + "Model responses or outputs": "", "Model unloaded successfully": "", "Model updated successfully": "Modelo actualizado correctamente", "Model(s) do not support file upload": "", @@ -1096,6 +1125,7 @@ "Models imported successfully": "", "Models Public Sharing": "", "Models Sharing": "", + "Mojeek": "", "Mojeek Search API Key": "chave API de Mojeek Search", "More": "mais", "More Concise": "", @@ -1129,7 +1159,7 @@ "No conversation to save": "", "No distance available": "Non ten distancia disponible", "No expiration can pose security risks.": "", - "No feedbacks found": "No se encontraron retroalimentacions", + "No feedback found": "", "No file selected": "Ningún arquivo fué seleccionado", "No files in this knowledge base.": "", "No functions found": "", @@ -1144,6 +1174,7 @@ "No models selected": "No se seleccionaron modelos", "No Notes": "", "No notes found": "", + "No one": "", "No pinned messages": "", "No prompts found": "", "No results": "No se han encontrado resultados", @@ -1195,6 +1226,7 @@ "Only invited users can access": "", "Only markdown files are allowed": "", "Only select users and groups with permission can access": "Solo os usuarios y grupos con permiso pueden acceder", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "¡Ups! Parece que a URL no es válida. Vuelva a verificar e inténtelo novamente.", "Oops! There are files still uploading. Please wait for the upload to complete.": "¡Ups! Todavía hay arquivos subiendo. Por favor, espere a que a subida se complete.", "Oops! There was an error in the previous response.": "¡Ups! Hubo un error en a resposta anterior.", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "Open WebUI usa faster-whisper internamente.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI usa SpeechT5 y embeddings de locutores CMU Arctic.", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Aversión de Open WebUI (v{{OPEN_WEBUI_VERSION}}) es inferior a aversión requerida (v{{REQUIRED_VERSION}})", "OpenAI": "OpenAI", "OpenAI API": "OpenAI API", @@ -1235,6 +1268,8 @@ "page": "Páxina", "Paginate": "", "Parameters": "", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "Contrasinal ", "Passwords do not match.": "", "Paste Large Text as File": "Pegar texto grande como arquivo", @@ -1260,7 +1295,6 @@ "Pipe": "", "Pipeline deleted successfully": "Pipeline borrada exitosamente", "Pipeline downloaded successfully": "Pipeline descargada exitosamente", - "Pipelines": "Pipelines", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines é un sistema de complementos con execución arbitraria de código —", "Pipelines Not Detected": "Pipeline No Detectada", "Pipelines Valves": "Tuberías Válvulas", @@ -1498,6 +1532,7 @@ "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.": "Establece as secuencias de parada a usar. Cuando se encuentre este patrón, o LLM dejará de generar texto y devolverá. Se pueden establecer varios patrones de parada especificando múltiples parámetros de parada separados en un arquivo de modelo.", "Setting": "", "Settings": "Configuración", + "Settings Permissions": "", "Settings saved successfully!": "¡Configuración gardada con éxito!", "Share": "Compartir", "Share Chat": "Compartir Chat", @@ -1541,6 +1576,7 @@ "Speech recognition error: {{error}}": "Error de recoñecemento de voz: {{error}}", "Speech-to-Text": "", "Speech-to-Text Engine": "Motor de voz a texto", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "", "Start of the channel": "Inicio da canle", "Start Tag": "", @@ -1551,6 +1587,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Detener", + "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Detener secuencia", "Stream Chat Response": "Transmitir resposta de chat", @@ -1571,7 +1608,14 @@ "Support": "Soporte", "Support this plugin:": "Brinda soporte a este plugin:", "Supported MIME Types": "", + "Sync": "", + "Sync Complete!": "", "Sync directory": "Sincroniza directorio", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "Sistema", "System Instructions": "Instruccions do sistema", "System Prompt": "Prompt do sistema", @@ -1616,6 +1660,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "", "The width in pixels to compress images to. Leave empty for no compression.": "", "Theme": "Tema", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "Pensando...", "This action cannot be undone. Do you wish to continue?": "Esta acción no se puede deshacer. ¿Desea continuar?", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "", @@ -1730,6 +1775,7 @@ "Upload Pipeline": "Subir Pipeline", "Upload Progress": "Progreso de carga", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploaded files or images": "", "Uploading file...": "", "URL": "URL", "URL is required": "", @@ -1747,6 +1793,7 @@ "User Groups": "", "User location successfully retrieved.": "Localización do usuario recuperada con éxito.", "User menu": "", + "User ratings (thumbs up/down)": "", "User Webhooks": "", "Username": "Nombre de usuario", "users": "", @@ -1796,15 +1843,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI hará solicitudes a \"{{url}}/chat/completions\"", "What are you trying to achieve?": "¿Qué estás tratando de lograr?", "What are you working on?": "¿En qué estás trabajando?", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "Novedades en", "What's on your mind?": "", "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.": "Cando está habilitado, o modelo responderá a cada mensaxe de chat en tempo real, generando unha resposta tan pronto como o usuario envíe un mensaxe. Este modo es útil para aplicacions de chat en vivo, pero puede afectar o rendimiento en hardware mais lento.", "wherever you are": "Donde queira que estés", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whisper (Local)": "Xextor de voz (Local)", + "Who can share to this group": "", "Why?": "¿Por qué?", "Widescreen Mode": "Modo de pantalla ancha", "Width": "", + "Wikipedia": "", "Won": "Ganado", "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.": "Funciona xunto con top-k. Un valor máis alto (por exemplo, 0,95) dará lugar a un texto máis diverso, mentres que un valor máis baixo (por exemplo, 0,5) xerará un texto máis centrado e conservador.", "Workspace": "Espacio de traballo", @@ -1816,6 +1867,8 @@ "Yacy Instance URL": "", "Yacy Password": "", "Yacy Username": "", + "Yahoo": "", + "Yandex": "", "Yesterday": "Onte", "Yesterday at {{LOCALIZED_TIME}}": "", "You": "Vostede", @@ -1823,6 +1876,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Solo puede chatear con un máximo de {{maxCount}} arquivo(s) a la vez.", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Puede personalizar as suas interaccions con LLMs añadiendo memorias a través do botón 'Xestionar' debajo, haciendo que sean mais útiles y personalizados para vostede.", "You cannot upload an empty file.": "Non pode subir un arquivo vacío.", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this thread.": "", "You do not have permission to upload files to this knowledge base.": "", @@ -1834,6 +1890,8 @@ "Your Account": "", "Your account status is currently pending activation.": "O estado da sua conta actualmente encontrase pendente de activación.", "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.": "A sua contribución completa irá directamente o desarrollador do plugin; Open WebUI non toma ningun porcentaxe. Sin embargo, a plataforma de financiación elegida podría ter as suas propias tarifas.", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "Youtube", "Youtube Language": "", "Youtube Proxy URL": "" diff --git a/src/lib/i18n/locales/he-IL/translation.json b/src/lib/i18n/locales/he-IL/translation.json index 074029803..e7a901361 100644 --- a/src/lib/i18n/locales/he-IL/translation.json +++ b/src/lib/i18n/locales/he-IL/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "התאמת הגדרות אלו תחול על כל המשתמשים.", "admin": "מנהל", "Admin": "מנהל", + "Admin Contact Email": "", "Admin Panel": "לוח בקרה למנהל", "Admin Settings": "הגדרות מנהל", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "", @@ -101,7 +102,6 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "אפשר העלאת קובץ", - "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "", "Allow Rate Response": "", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "", "and create a new shared link.": "וצור קישור משותף חדש.", "Android": "", + "Anyone": "", "API Base URL": "כתובת URL בסיסית ל-API", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "", "API Key": "מפתח API", @@ -175,6 +176,7 @@ "Authenticate": "", "Authentication": "", "Auto": "אוטומטי", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "העתקה אוטומטית של תגובה ללוח", "Auto-playback response": "תגובת השמעה אוטומטית", "Autocomplete Generation": "", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "", "AUTOMATIC1111 Base URL": "כתובת URL בסיסית של AUTOMATIC1111", "AUTOMATIC1111 Base URL is required.": "נדרשת כתובת URL בסיסית של AUTOMATIC1111", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "", "Available Tools": "כלים זמינים", "available users": "משתמשים זמינים", @@ -201,6 +204,7 @@ "before": "לפני", "Being lazy": "להיות עצלן", "Beta": "בטא", + "Bing": "", "Bing Search V7 Endpoint": "", "Bing Search V7 Subscription Key": "", "Bio": "", @@ -209,7 +213,9 @@ "Bocha Search API Key": "", "Bold": "", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "", + "Brave": "", "Brave Search API Key": "מפתח API של חיפוש אמיץ", + "Builtin Tools": "", "Bullet List": "", "Button ID": "", "Button Label": "", @@ -256,8 +262,10 @@ "Check for updates": "בדוק עדכונים", "Checking for updates...": "בודק עדכונים...", "Choose a model before saving...": "בחר מודל לפני השמירה...", + "Chunk Min Size Target": "", "Chunk Overlap": "חפיפת נתונים", "Chunk Size": "גודל נתונים", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "", "Citation": "ציטוט", "Citations": "", @@ -293,7 +301,6 @@ "Code Block": "", "Code Editor": "", "Code execution": "הרצת קוד", - "Code Execution": "הרצת קוד", "Code Execution Engine": "מנוע הרצת קוד", "Code Execution Timeout": "", "Code formatted successfully": "", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "", "Content": "תוכן", "Content Extraction Engine": "", + "Content lengths (character counts only)": "", "Continue Response": "המשך תגובה", "Continue with {{provider}}": "המשך עם {{provider}}", "Continue with Email": "המשך עם מייל", @@ -393,6 +401,7 @@ "Database": "מסד נתונים", "Datalab Marker API": "", "DD/MM/YYYY": "", + "DDGS Backend": "", "December": "דצמבר", "Decrease UI Scale": "", "Deepgram": "", @@ -474,6 +483,7 @@ "Dive into knowledge": "", "Do not install functions from sources you do not fully trust.": "", "Do not install tools from sources you do not fully trust.": "", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "", "Docling Parameters": "", "Docling Server URL required.": "", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "", "Document Intelligence Model": "", "Documentation": "", - "Documents": "מסמכים", "does not make any external connections, and your data stays securely on your locally hosted server.": "לא מבצע חיבורים חיצוניים, והנתונים שלך נשמרים באופן מאובטח בשרת המקומי שלך.", "Domain Filter List": "", "don't fetch random pipelines from sources you don't trust.": "אל תמשוך pipelines אקראיים ממקורות שאינך סומך עליהם.", @@ -493,11 +502,14 @@ "Done": "", "Download": "הורד", "Download & Delete": "הורדה ומחיקה", + "Download as JSON": "", "Download as SVG": "", "Download canceled": "ההורדה בוטלה", "Download Database": "הורד מסד נתונים", + "Downloading stats...": "", "Draw": "", "Drop any files here to upload": "", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "למשל '30s', '10m'. יחידות זמן חוקיות הן 's', 'm', 'h'.", "e.g. \"json\" or a JSON schema": "", "e.g. 60": "", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "", "Enter Brave Search API Key": "הזן מפתח API של חיפוש אמיץ", "Enter certificate path": "", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "הזן חפיפת נתונים", "Enter Chunk Size": "הזן גודל נתונים", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "", "Enter Firecrawl API Base URL": "", "Enter Firecrawl API Key": "", + "Enter Firecrawl Timeout": "", "Enter folder name": "", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "הזן כתובת URL של Github Raw", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "", "Enter ID": "", "Enter Image Size (e.g. 512x512)": "הזן גודל תמונה (למשל 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "", "Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter Jupyter Password": "", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "", "Enter Key Behavior": "", "Enter language codes": "הזן קודי שפה", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "", "Enter Mistral API Key": "", "Enter Model ID": "", @@ -736,6 +753,7 @@ "Failed to generate title": "", "Failed to import models": "", "Failed to load chat preview": "", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "", "Failed to move chat": "", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "", "Features Permissions": "", "February": "פברואר", + "Feedback": "", "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "", - "Feedbacks": "", "Feel free to add specific details": "נא להוסיף פרטים ספציפיים לפי רצון", "Female": "", "File": "", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "התגלתה הזיית טביעת אצבע: לא ניתן להשתמש בראשי תיבות כאווטאר. משתמש בתמונת פרופיל ברירת מחדל.", "Firecrawl API Base URL": "", "Firecrawl API Key": "", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "", "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "", + "Folder Max File Count": "", "Folder Name": "", "Folder name cannot be empty.": "", "Folder name updated successfully": "", @@ -826,7 +846,6 @@ "General": "כללי", "Generate": "", "Generate an image": "", - "Generate Image": "", "Generate Message Pair": "", "Generated Image": "", "Generating search query": "יצירת שאילתת חיפוש", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "", "Global": "גלובלי", "Good Response": "תגובה טובה", + "Google": "", "Google Drive": "", "Google PSE API Key": "מפתח API של Google PSE", "Google PSE Engine Id": "מזהה מנוע PSE של Google", "Gravatar": "", "Grid": "", + "Grokipedia": "", "Group": "קבוצה", "Group Channel": "", "Group created successfully": "", @@ -895,7 +916,6 @@ "Image Prompt Generation": "", "Image Prompt Generation Prompt": "", "Image Size": "", - "Images": "תמונות", "Import": "", "Import Chats": "יבוא צ'אטים", "Import Config from JSON File": "", @@ -927,6 +947,7 @@ "Integration": "", "Integrations": "", "Interface": "ממשק", + "Interface Settings Access": "", "Invalid file content": "", "Invalid file format.": "", "Invalid JSON file": "", @@ -940,6 +961,7 @@ "is typing...": "מקליד...", "Italic": "", "January": "ינואר", + "Jina API Base URL": "", "Jina API Key": "", "join our Discord for help.": "הצטרף ל-Discord שלנו לעזרה.", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "", "Leave empty to include all models or select specific models": "", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "", "Leave empty to use the default prompt, or enter a custom prompt": "", "Leave model field empty to use the default model.": "", @@ -1029,10 +1052,12 @@ "Manage your account information.": "", "March": "מרץ", "Markdown": "", - "Markdown (Header)": "", + "Markdown Header Text Splitter": "", "Max Speakers": "", "Max Upload Count": "", "Max Upload Size": "", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "ניתן להוריד מקסימום 3 מודלים בו זמנית. אנא נסה שוב מאוחר יותר.", "May": "מאי", "MBR": "", @@ -1042,6 +1067,7 @@ "Member removed successfully": "", "Members": "", "Members added successfully": "", + "Memories": "", "Memories accessible by LLMs will be shown here.": "מזכירים נגישים על ידי LLMs יוצגו כאן.", "Memory": "זיכרון", "Memory added successfully": "", @@ -1051,6 +1077,7 @@ "Merge Responses": "", "Merged Response": "תגובה ממוזגת", "Message": "", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "דירוג הודעות צריך להיות מאופשר כדי להשתמש בפיצ'ר הזה", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "הודעות שתשלח לאחר יצירת הקישור לא ישותפו. משתמשים עם כתובת האתר יוכלו לצפות בצ'אט המשותף.", "Microsoft OneDrive": "", @@ -1083,9 +1110,11 @@ "Model Name": "שם המודל", "Model name already exists, please choose a different one": "", "Model Name is required.": "", + "Model names and usage frequency": "", "Model not selected": "לא נבחר מודל", "Model Params": "פרמטרי המודל", "Model Permissions": "", + "Model responses or outputs": "", "Model unloaded successfully": "", "Model updated successfully": "", "Model(s) do not support file upload": "", @@ -1096,6 +1125,7 @@ "Models imported successfully": "", "Models Public Sharing": "", "Models Sharing": "", + "Mojeek": "", "Mojeek Search API Key": "", "More": "עוד", "More Concise": "", @@ -1129,7 +1159,7 @@ "No conversation to save": "", "No distance available": "", "No expiration can pose security risks.": "", - "No feedbacks found": "", + "No feedback found": "", "No file selected": "", "No files in this knowledge base.": "", "No functions found": "", @@ -1144,6 +1174,7 @@ "No models selected": "", "No Notes": "", "No notes found": "", + "No one": "", "No pinned messages": "", "No prompts found": "", "No results": "לא נמצאו תוצאות", @@ -1195,6 +1226,7 @@ "Only invited users can access": "", "Only markdown files are allowed": "", "Only select users and groups with permission can access": "", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "אופס! נראה שהכתובת URL אינה תקינה. אנא בדוק שוב ונסה שנית.", "Oops! There are files still uploading. Please wait for the upload to complete.": "", "Oops! There was an error in the previous response.": "", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "", "OpenAI": "OpenAI", "OpenAI API": "API של OpenAI", @@ -1235,6 +1268,8 @@ "page": "עמוד", "Paginate": "", "Parameters": "", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "סיסמה", "Passwords do not match.": "", "Paste Large Text as File": "", @@ -1260,7 +1295,6 @@ "Pipe": "", "Pipeline deleted successfully": "", "Pipeline downloaded successfully": "", - "Pipelines": "צינורות", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines הוא מערכת תוספים עם יכולת להריץ קוד שרירותי —", "Pipelines Not Detected": "", "Pipelines Valves": "צינורות שסתומים", @@ -1499,6 +1533,7 @@ "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.": "", "Setting": "", "Settings": "הגדרות", + "Settings Permissions": "", "Settings saved successfully!": "ההגדרות נשמרו בהצלחה!", "Share": "שתף", "Share Chat": "שתף צ'אט", @@ -1542,6 +1577,7 @@ "Speech recognition error: {{error}}": "שגיאת תחקור שמע: {{error}}", "Speech-to-Text": "", "Speech-to-Text Engine": "מנוע תחקור שמע", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "", "Start of the channel": "תחילת הערוץ", "Start Tag": "", @@ -1552,6 +1588,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "", + "Stop Download": "", "Stop Generating": "", "Stop Sequence": "סידור עצירה", "Stream Chat Response": "", @@ -1572,7 +1609,14 @@ "Support": "", "Support this plugin:": "", "Supported MIME Types": "", + "Sync": "", + "Sync Complete!": "", "Sync directory": "", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "מערכת", "System Instructions": "", "System Prompt": "תגובת מערכת", @@ -1617,6 +1661,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "", "The width in pixels to compress images to. Leave empty for no compression.": "", "Theme": "נושא", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "חושב...", "This action cannot be undone. Do you wish to continue?": "", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "", @@ -1731,6 +1776,7 @@ "Upload Pipeline": "", "Upload Progress": "תקדמות העלאה", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploaded files or images": "", "Uploading file...": "", "URL": "", "URL is required": "", @@ -1748,6 +1794,7 @@ "User Groups": "", "User location successfully retrieved.": "", "User menu": "", + "User ratings (thumbs up/down)": "", "User Webhooks": "", "Username": "", "users": "", @@ -1797,15 +1844,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "", "What are you trying to achieve?": "", "What are you working on?": "", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "מה חדש ב", "What's on your mind?": "", "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.": "", "wherever you are": "", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whisper (Local)": "", + "Who can share to this group": "", "Why?": "", "Widescreen Mode": "", "Width": "", + "Wikipedia": "", "Won": "", "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.": "", "Workspace": "סביבה", @@ -1817,6 +1868,8 @@ "Yacy Instance URL": "", "Yacy Password": "", "Yacy Username": "", + "Yahoo": "", + "Yandex": "", "Yesterday": "אתמול", "Yesterday at {{LOCALIZED_TIME}}": "", "You": "אתה", @@ -1824,6 +1877,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "", "You cannot upload an empty file.": "", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this thread.": "", "You do not have permission to upload files to this knowledge base.": "", @@ -1835,6 +1891,8 @@ "Your Account": "", "Your account status is currently pending activation.": "", "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.": "", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "Youtube", "Youtube Language": "", "Youtube Proxy URL": "" diff --git a/src/lib/i18n/locales/hi-IN/translation.json b/src/lib/i18n/locales/hi-IN/translation.json index 2e790c08f..d26713154 100644 --- a/src/lib/i18n/locales/hi-IN/translation.json +++ b/src/lib/i18n/locales/hi-IN/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "इन सेटिंग्स को समायोजित करने से परिवर्तन सभी उपयोगकर्ताओं पर सार्वभौमिक रूप से लागू होंगे।", "admin": "व्यवस्थापक", "Admin": "", + "Admin Contact Email": "", "Admin Panel": "व्यवस्थापक पैनल", "Admin Settings": "व्यवस्थापक सेटिंग्स", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "", @@ -101,7 +102,6 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "", - "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "", "Allow Rate Response": "", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "", "and create a new shared link.": "और एक नई साझा लिंक बनाएं.", "Android": "", + "Anyone": "", "API Base URL": "एपीआई बेस यूआरएल", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "", "API Key": "एपीआई कुंजी", @@ -175,6 +176,7 @@ "Authenticate": "", "Authentication": "", "Auto": "", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "क्लिपबोर्ड पर प्रतिक्रिया ऑटोकॉपी", "Auto-playback response": "ऑटो-प्लेबैक प्रतिक्रिया", "Autocomplete Generation": "", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "", "AUTOMATIC1111 Base URL": "AUTOMATIC1111 बेस यूआरएल", "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 का बेस यूआरएल आवश्यक है।", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "", "Available Tools": "", "available users": "उपलब्ध उपयोगकर्ता", @@ -201,6 +204,7 @@ "before": "पहले", "Being lazy": "आलसी होना", "Beta": "", + "Bing": "", "Bing Search V7 Endpoint": "", "Bing Search V7 Subscription Key": "", "Bio": "", @@ -209,7 +213,9 @@ "Bocha Search API Key": "", "Bold": "", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "", + "Brave": "", "Brave Search API Key": "Brave सर्च एपीआई कुंजी", + "Builtin Tools": "", "Bullet List": "", "Button ID": "", "Button Label": "", @@ -256,8 +262,10 @@ "Check for updates": "अपडेट के लिए जाँच", "Checking for updates...": "अपडेट के लिए जांच कर रहा है...", "Choose a model before saving...": "सहेजने से पहले एक मॉडल चुनें...", + "Chunk Min Size Target": "", "Chunk Overlap": "चंक ओवरलैप", "Chunk Size": "चंक आकार", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "", "Citation": "उद्धरण", "Citations": "", @@ -293,7 +301,6 @@ "Code Block": "", "Code Editor": "", "Code execution": "", - "Code Execution": "", "Code Execution Engine": "", "Code Execution Timeout": "", "Code formatted successfully": "", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "", "Content": "सामग्री", "Content Extraction Engine": "", + "Content lengths (character counts only)": "", "Continue Response": "प्रतिक्रिया जारी रखें", "Continue with {{provider}}": "", "Continue with Email": "", @@ -393,6 +401,7 @@ "Database": "डेटाबेस", "Datalab Marker API": "", "DD/MM/YYYY": "", + "DDGS Backend": "", "December": "डिसेंबर", "Decrease UI Scale": "", "Deepgram": "", @@ -474,6 +483,7 @@ "Dive into knowledge": "", "Do not install functions from sources you do not fully trust.": "", "Do not install tools from sources you do not fully trust.": "", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "", "Docling Parameters": "", "Docling Server URL required.": "", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "", "Document Intelligence Model": "", "Documentation": "", - "Documents": "दस्तावेज़", "does not make any external connections, and your data stays securely on your locally hosted server.": "कोई बाहरी कनेक्शन नहीं बनाता है, और आपका डेटा आपके स्थानीय रूप से होस्ट किए गए सर्वर पर सुरक्षित रूप से रहता है।", "Domain Filter List": "", "don't fetch random pipelines from sources you don't trust.": "अविश्वसनीय स्रोतों से यादृच्छिक पाइपलाइन न लें।", @@ -493,11 +502,14 @@ "Done": "", "Download": "डाउनलोड", "Download & Delete": "डाउनलोड और हटाएँ", + "Download as JSON": "", "Download as SVG": "", "Download canceled": "डाउनलोड रद्द किया गया", "Download Database": "डेटाबेस डाउनलोड करें", + "Downloading stats...": "", "Draw": "", "Drop any files here to upload": "", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "जैसे '30s', '10m', मान्य समय इकाइयाँ 's', 'm', 'h' हैं।", "e.g. \"json\" or a JSON schema": "", "e.g. 60": "", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "", "Enter Brave Search API Key": "Brave सर्च एपीआई कुंजी डालें", "Enter certificate path": "", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "चंक ओवरलैप दर्ज करें", "Enter Chunk Size": "खंड आकार दर्ज करें", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "", "Enter Firecrawl API Base URL": "", "Enter Firecrawl API Key": "", + "Enter Firecrawl Timeout": "", "Enter folder name": "", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "Github Raw URL दर्ज करें", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "", "Enter ID": "", "Enter Image Size (e.g. 512x512)": "छवि का आकार दर्ज करें (उदा. 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "", "Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter Jupyter Password": "", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "", "Enter Key Behavior": "", "Enter language codes": "भाषा कोड दर्ज करें", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "", "Enter Mistral API Key": "", "Enter Model ID": "", @@ -736,6 +753,7 @@ "Failed to generate title": "", "Failed to import models": "", "Failed to load chat preview": "", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "", "Failed to move chat": "", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "", "Features Permissions": "", "February": "फरवरी", + "Feedback": "", "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "", - "Feedbacks": "", "Feel free to add specific details": "विशिष्ट विवरण जोड़ने के लिए स्वतंत्र महसूस करें", "Female": "", "File": "", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "फ़िंगरप्रिंट स्पूफ़िंग का पता चला: प्रारंभिक अक्षरों को अवतार के रूप में उपयोग करने में असमर्थ। प्रोफ़ाइल छवि को डिफ़ॉल्ट पर डिफ़ॉल्ट किया जा रहा है.", "Firecrawl API Base URL": "", "Firecrawl API Key": "", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "", "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "", + "Folder Max File Count": "", "Folder Name": "", "Folder name cannot be empty.": "", "Folder name updated successfully": "", @@ -826,7 +846,6 @@ "General": "सामान्य", "Generate": "", "Generate an image": "", - "Generate Image": "", "Generate Message Pair": "", "Generated Image": "", "Generating search query": "खोज क्वेरी जनरेट करना", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "", "Global": "", "Good Response": "अच्छी प्रतिक्रिया", + "Google": "", "Google Drive": "", "Google PSE API Key": "Google PSE API कुंजी", "Google PSE Engine Id": "Google PSE इंजन आईडी", "Gravatar": "", "Grid": "", + "Grokipedia": "", "Group": "समूह", "Group Channel": "", "Group created successfully": "", @@ -895,7 +916,6 @@ "Image Prompt Generation": "", "Image Prompt Generation Prompt": "", "Image Size": "", - "Images": "इमेजिस", "Import": "", "Import Chats": "चैट आयात करें", "Import Config from JSON File": "", @@ -927,6 +947,7 @@ "Integration": "", "Integrations": "", "Interface": "इंटरफेस", + "Interface Settings Access": "", "Invalid file content": "", "Invalid file format.": "", "Invalid JSON file": "", @@ -940,6 +961,7 @@ "is typing...": "", "Italic": "", "January": "जनवरी", + "Jina API Base URL": "", "Jina API Key": "", "join our Discord for help.": "मदद के लिए हमारे डिस्कोर्ड में शामिल हों।", "JSON": "ज्ञान प्रकार", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "", "Leave empty to include all models or select specific models": "", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "", "Leave empty to use the default prompt, or enter a custom prompt": "", "Leave model field empty to use the default model.": "", @@ -1029,10 +1052,12 @@ "Manage your account information.": "", "March": "मार्च", "Markdown": "", - "Markdown (Header)": "", + "Markdown Header Text Splitter": "", "Max Speakers": "", "Max Upload Count": "", "Max Upload Size": "", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "अधिकतम 3 मॉडल एक साथ डाउनलोड किये जा सकते हैं। कृपया बाद में पुन: प्रयास करें।", "May": "मेई", "MBR": "", @@ -1042,6 +1067,7 @@ "Member removed successfully": "", "Members": "", "Members added successfully": "", + "Memories": "", "Memories accessible by LLMs will be shown here.": "एलएलएम द्वारा सुलभ यादें यहां दिखाई जाएंगी।", "Memory": "मेमोरी", "Memory added successfully": "", @@ -1051,6 +1077,7 @@ "Merge Responses": "", "Merged Response": "मिली-जुली प्रतिक्रिया", "Message": "", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "अपना लिंक बनाने के बाद आपके द्वारा भेजे गए संदेश साझा नहीं किए जाएंगे। यूआरएल वाले यूजर्स शेयर की गई चैट देख पाएंगे।", "Microsoft OneDrive": "", @@ -1083,9 +1110,11 @@ "Model Name": "", "Model name already exists, please choose a different one": "", "Model Name is required.": "", + "Model names and usage frequency": "", "Model not selected": "मॉडल चयनित नहीं है", "Model Params": "मॉडल Params", "Model Permissions": "", + "Model responses or outputs": "", "Model unloaded successfully": "", "Model updated successfully": "", "Model(s) do not support file upload": "", @@ -1096,6 +1125,7 @@ "Models imported successfully": "", "Models Public Sharing": "", "Models Sharing": "", + "Mojeek": "", "Mojeek Search API Key": "", "More": "और..", "More Concise": "", @@ -1129,7 +1159,7 @@ "No conversation to save": "", "No distance available": "", "No expiration can pose security risks.": "", - "No feedbacks found": "", + "No feedback found": "", "No file selected": "", "No files in this knowledge base.": "", "No functions found": "", @@ -1144,6 +1174,7 @@ "No models selected": "", "No Notes": "", "No notes found": "", + "No one": "", "No pinned messages": "", "No prompts found": "", "No results": "कोई परिणाम नहीं मिला", @@ -1195,6 +1226,7 @@ "Only invited users can access": "", "Only markdown files are allowed": "", "Only select users and groups with permission can access": "", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "उफ़! ऐसा लगता है कि यूआरएल अमान्य है. कृपया दोबारा जांचें और पुनः प्रयास करें।", "Oops! There are files still uploading. Please wait for the upload to complete.": "", "Oops! There was an error in the previous response.": "", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "", "OpenAI": "OpenAI", "OpenAI API": "OpenAI API", @@ -1235,6 +1268,8 @@ "page": "", "Paginate": "", "Parameters": "", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "पासवर्ड", "Passwords do not match.": "", "Paste Large Text as File": "", @@ -1260,7 +1295,6 @@ "Pipe": "", "Pipeline deleted successfully": "", "Pipeline downloaded successfully": "", - "Pipelines": "पाइपलाइनों", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines एक प्लगइन सिस्टम है जिसमें मनमाना कोड चलाया जा सकता है —", "Pipelines Not Detected": "", "Pipelines Valves": "पाइपलाइन वाल्व", @@ -1498,6 +1532,7 @@ "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.": "", "Setting": "", "Settings": "सेटिंग्स", + "Settings Permissions": "", "Settings saved successfully!": "सेटिंग्स सफलतापूर्वक सहेजी गईं!", "Share": "साझा करें", "Share Chat": "चैट साझा करें", @@ -1541,6 +1576,7 @@ "Speech recognition error: {{error}}": "वाक् पहचान त्रुटि: {{error}}", "Speech-to-Text": "", "Speech-to-Text Engine": "वाक्-से-पाठ इंजन", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "", "Start of the channel": "चैनल की शुरुआत", "Start Tag": "", @@ -1551,6 +1587,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "", + "Stop Download": "", "Stop Generating": "", "Stop Sequence": "अनुक्रम रोकें", "Stream Chat Response": "", @@ -1571,7 +1608,14 @@ "Support": "", "Support this plugin:": "", "Supported MIME Types": "", + "Sync": "", + "Sync Complete!": "", "Sync directory": "", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "सिस्टम", "System Instructions": "", "System Prompt": "सिस्टम प्रॉम्प्ट", @@ -1616,6 +1660,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "", "The width in pixels to compress images to. Leave empty for no compression.": "", "Theme": "थीम", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "", "This action cannot be undone. Do you wish to continue?": "", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "", @@ -1730,6 +1775,7 @@ "Upload Pipeline": "", "Upload Progress": "प्रगति अपलोड करें", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploaded files or images": "", "Uploading file...": "", "URL": "", "URL is required": "", @@ -1747,6 +1793,7 @@ "User Groups": "", "User location successfully retrieved.": "", "User menu": "", + "User ratings (thumbs up/down)": "", "User Webhooks": "", "Username": "", "users": "", @@ -1796,15 +1843,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "", "What are you trying to achieve?": "", "What are you working on?": "", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "इसमें नया क्या है", "What's on your mind?": "", "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.": "", "wherever you are": "", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whisper (Local)": "", + "Who can share to this group": "", "Why?": "", "Widescreen Mode": "", "Width": "", + "Wikipedia": "", "Won": "", "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.": "", "Workspace": "वर्कस्पेस", @@ -1816,6 +1867,8 @@ "Yacy Instance URL": "", "Yacy Password": "", "Yacy Username": "", + "Yahoo": "", + "Yandex": "", "Yesterday": "कल", "Yesterday at {{LOCALIZED_TIME}}": "", "You": "आप", @@ -1823,6 +1876,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "", "You cannot upload an empty file.": "", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this thread.": "", "You do not have permission to upload files to this knowledge base.": "", @@ -1834,6 +1890,8 @@ "Your Account": "", "Your account status is currently pending activation.": "", "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.": "", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "Youtube", "Youtube Language": "", "Youtube Proxy URL": "" diff --git a/src/lib/i18n/locales/hr-HR/translation.json b/src/lib/i18n/locales/hr-HR/translation.json index 889654a1a..146caa2db 100644 --- a/src/lib/i18n/locales/hr-HR/translation.json +++ b/src/lib/i18n/locales/hr-HR/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "Podešavanje će se primijeniti univerzalno na sve korisnike.", "admin": "administrator", "Admin": "Admin", + "Admin Contact Email": "", "Admin Panel": "Admin ploča", "Admin Settings": "Admin postavke", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "", @@ -101,7 +102,6 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "", - "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "Dopusti nelokalne glasove", "Allow Rate Response": "", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "", "and create a new shared link.": "i stvorite novu dijeljenu vezu.", "Android": "", + "Anyone": "", "API Base URL": "Osnovni URL API-ja", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "", "API Key": "API ključ", @@ -175,6 +176,7 @@ "Authenticate": "", "Authentication": "", "Auto": "", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "Automatsko kopiranje odgovora u međuspremnik", "Auto-playback response": "Automatska reprodukcija odgovora", "Autocomplete Generation": "", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "", "AUTOMATIC1111 Base URL": "AUTOMATIC1111 osnovni URL", "AUTOMATIC1111 Base URL is required.": "Potreban je AUTOMATIC1111 osnovni URL.", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "", "Available Tools": "", "available users": "dostupni korisnici", @@ -201,6 +204,7 @@ "before": "prije", "Being lazy": "Biti lijen", "Beta": "", + "Bing": "", "Bing Search V7 Endpoint": "", "Bing Search V7 Subscription Key": "", "Bio": "", @@ -209,7 +213,9 @@ "Bocha Search API Key": "", "Bold": "", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "", + "Brave": "", "Brave Search API Key": "Brave tražilica - API ključ", + "Builtin Tools": "", "Bullet List": "", "Button ID": "", "Button Label": "", @@ -256,8 +262,10 @@ "Check for updates": "Provjeri za ažuriranja", "Checking for updates...": "Provjeravam ažuriranja...", "Choose a model before saving...": "Odaberite model prije spremanja...", + "Chunk Min Size Target": "", "Chunk Overlap": "Preklapanje dijelova", "Chunk Size": "Veličina dijela", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "", "Citation": "Citiranje", "Citations": "", @@ -293,7 +301,6 @@ "Code Block": "", "Code Editor": "", "Code execution": "", - "Code Execution": "", "Code Execution Engine": "", "Code Execution Timeout": "", "Code formatted successfully": "", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "Kontaktirajte admina za WebUI pristup", "Content": "Sadržaj", "Content Extraction Engine": "", + "Content lengths (character counts only)": "", "Continue Response": "Nastavi odgovor", "Continue with {{provider}}": "", "Continue with Email": "", @@ -393,6 +401,7 @@ "Database": "Baza podataka", "Datalab Marker API": "", "DD/MM/YYYY": "", + "DDGS Backend": "", "December": "Prosinac", "Decrease UI Scale": "", "Deepgram": "", @@ -474,6 +483,7 @@ "Dive into knowledge": "", "Do not install functions from sources you do not fully trust.": "", "Do not install tools from sources you do not fully trust.": "", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "", "Docling Parameters": "", "Docling Server URL required.": "", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "", "Document Intelligence Model": "", "Documentation": "Dokumentacija", - "Documents": "Dokumenti", "does not make any external connections, and your data stays securely on your locally hosted server.": "ne uspostavlja vanjske veze, a vaši podaci ostaju sigurno na vašem lokalno hostiranom poslužitelju.", "Domain Filter List": "", "don't fetch random pipelines from sources you don't trust.": "Ne preuzimajte nasumične pipelines iz izvora kojima ne vjerujete.", @@ -493,11 +502,14 @@ "Done": "", "Download": "Preuzimanje", "Download & Delete": "Preuzmi i izbriši", + "Download as JSON": "", "Download as SVG": "", "Download canceled": "Preuzimanje otkazano", "Download Database": "Preuzmi bazu podataka", + "Downloading stats...": "", "Draw": "", "Drop any files here to upload": "", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "npr. '30s','10m'. Važeće vremenske jedinice su 's', 'm', 'h'.", "e.g. \"json\" or a JSON schema": "", "e.g. 60": "", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "", "Enter Brave Search API Key": "Unesite Brave Search API ključ", "Enter certificate path": "", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "Unesite preklapanje dijelova", "Enter Chunk Size": "Unesite veličinu dijela", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "", "Enter Firecrawl API Base URL": "", "Enter Firecrawl API Key": "", + "Enter Firecrawl Timeout": "", "Enter folder name": "", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "Unesite Github sirovi URL", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "", "Enter ID": "", "Enter Image Size (e.g. 512x512)": "Unesite veličinu slike (npr. 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "", "Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter Jupyter Password": "", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "", "Enter Key Behavior": "", "Enter language codes": "Unesite kodove jezika", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "", "Enter Mistral API Key": "", "Enter Model ID": "", @@ -736,6 +753,7 @@ "Failed to generate title": "", "Failed to import models": "", "Failed to load chat preview": "", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "", "Failed to move chat": "", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "", "Features Permissions": "", "February": "Veljača", + "Feedback": "", "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "", - "Feedbacks": "", "Feel free to add specific details": "Slobodno dodajte specifične detalje", "Female": "", "File": "", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Otkriveno krivotvorenje otisaka prstiju: Nemoguće je koristiti inicijale kao avatar. Postavljanje na zadanu profilnu sliku.", "Firecrawl API Base URL": "", "Firecrawl API Key": "", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "", "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "", + "Folder Max File Count": "", "Folder Name": "", "Folder name cannot be empty.": "", "Folder name updated successfully": "", @@ -826,7 +846,6 @@ "General": "Općenito", "Generate": "", "Generate an image": "", - "Generate Image": "Gneriraj sliku", "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Generiranje upita za pretraživanje", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "", "Global": "", "Good Response": "Dobar odgovor", + "Google": "", "Google Drive": "", "Google PSE API Key": "Google PSE API ključ", "Google PSE Engine Id": "ID Google PSE modula", "Gravatar": "", "Grid": "", + "Grokipedia": "", "Group": "Grupa", "Group Channel": "", "Group created successfully": "", @@ -895,7 +916,6 @@ "Image Prompt Generation": "", "Image Prompt Generation Prompt": "", "Image Size": "", - "Images": "Slike", "Import": "", "Import Chats": "Uvoz razgovora", "Import Config from JSON File": "", @@ -927,6 +947,7 @@ "Integration": "", "Integrations": "", "Interface": "Sučelje", + "Interface Settings Access": "", "Invalid file content": "", "Invalid file format.": "", "Invalid JSON file": "", @@ -940,6 +961,7 @@ "is typing...": "", "Italic": "", "January": "Siječanj", + "Jina API Base URL": "", "Jina API Key": "", "join our Discord for help.": "pridružite se našem Discordu za pomoć.", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "", "Leave empty to include all models or select specific models": "", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "", "Leave empty to use the default prompt, or enter a custom prompt": "", "Leave model field empty to use the default model.": "", @@ -1029,10 +1052,12 @@ "Manage your account information.": "", "March": "Ožujak", "Markdown": "", - "Markdown (Header)": "", + "Markdown Header Text Splitter": "", "Max Speakers": "", "Max Upload Count": "", "Max Upload Size": "", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maksimalno 3 modela se mogu preuzeti istovremeno. Pokušajte ponovo kasnije.", "May": "Svibanj", "MBR": "", @@ -1042,6 +1067,7 @@ "Member removed successfully": "", "Members": "", "Members added successfully": "", + "Memories": "", "Memories accessible by LLMs will be shown here.": "Ovdje će biti prikazana memorija kojoj mogu pristupiti LLM-ovi.", "Memory": "Memorija", "Memory added successfully": "", @@ -1051,6 +1077,7 @@ "Merge Responses": "", "Merged Response": "Spojeni odgovor", "Message": "", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Poruke koje pošaljete nakon stvaranja veze neće se dijeliti. Korisnici s URL-om moći će vidjeti zajednički chat.", "Microsoft OneDrive": "", @@ -1083,9 +1110,11 @@ "Model Name": "", "Model name already exists, please choose a different one": "", "Model Name is required.": "", + "Model names and usage frequency": "", "Model not selected": "Model nije odabran", "Model Params": "Model parametri", "Model Permissions": "", + "Model responses or outputs": "", "Model unloaded successfully": "", "Model updated successfully": "", "Model(s) do not support file upload": "", @@ -1096,6 +1125,7 @@ "Models imported successfully": "", "Models Public Sharing": "", "Models Sharing": "", + "Mojeek": "", "Mojeek Search API Key": "", "More": "Više", "More Concise": "", @@ -1129,7 +1159,7 @@ "No conversation to save": "", "No distance available": "", "No expiration can pose security risks.": "", - "No feedbacks found": "", + "No feedback found": "", "No file selected": "", "No files in this knowledge base.": "", "No functions found": "", @@ -1144,6 +1174,7 @@ "No models selected": "", "No Notes": "", "No notes found": "", + "No one": "", "No pinned messages": "", "No prompts found": "", "No results": "Nema rezultata", @@ -1195,6 +1226,7 @@ "Only invited users can access": "", "Only markdown files are allowed": "", "Only select users and groups with permission can access": "", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Ups! Izgleda da je URL nevažeći. Molimo provjerite ponovno i pokušajte ponovo.", "Oops! There are files still uploading. Please wait for the upload to complete.": "", "Oops! There was an error in the previous response.": "", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "", "OpenAI": "OpenAI", "OpenAI API": "OpenAI API", @@ -1235,6 +1268,8 @@ "page": "", "Paginate": "", "Parameters": "", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "Lozinka", "Passwords do not match.": "", "Paste Large Text as File": "", @@ -1260,7 +1295,6 @@ "Pipe": "", "Pipeline deleted successfully": "", "Pipeline downloaded successfully": "", - "Pipelines": "Cjevovodi", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines je sustav dodataka s proizvoljnim izvršavanjem koda —", "Pipelines Not Detected": "", "Pipelines Valves": "Ventili za cjevovode", @@ -1499,6 +1533,7 @@ "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.": "", "Setting": "", "Settings": "Postavke", + "Settings Permissions": "", "Settings saved successfully!": "Postavke su uspješno spremljene!", "Share": "Podijeli", "Share Chat": "Podijeli razgovor", @@ -1542,6 +1577,7 @@ "Speech recognition error: {{error}}": "Pogreška prepoznavanja govora: {{error}}", "Speech-to-Text": "", "Speech-to-Text Engine": "Stroj za prepoznavanje govora", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "", "Start of the channel": "Početak kanala", "Start Tag": "", @@ -1552,6 +1588,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "", + "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Zaustavi sekvencu", "Stream Chat Response": "", @@ -1572,7 +1609,14 @@ "Support": "", "Support this plugin:": "", "Supported MIME Types": "", + "Sync": "", + "Sync Complete!": "", "Sync directory": "", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "Sustav", "System Instructions": "", "System Prompt": "Sistemski prompt", @@ -1617,6 +1661,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "", "The width in pixels to compress images to. Leave empty for no compression.": "", "Theme": "Tema", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "Razmišljam", "This action cannot be undone. Do you wish to continue?": "", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "", @@ -1731,6 +1776,7 @@ "Upload Pipeline": "Prijenos kanala", "Upload Progress": "Napredak učitavanja", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploaded files or images": "", "Uploading file...": "", "URL": "", "URL is required": "", @@ -1748,6 +1794,7 @@ "User Groups": "", "User location successfully retrieved.": "", "User menu": "", + "User ratings (thumbs up/down)": "", "User Webhooks": "", "Username": "", "users": "", @@ -1797,15 +1844,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "", "What are you trying to achieve?": "", "What are you working on?": "", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "Što je novo u", "What's on your mind?": "", "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.": "", "wherever you are": "", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whisper (Local)": "Whisper (lokalno)", + "Who can share to this group": "", "Why?": "", "Widescreen Mode": "Mod širokog zaslona", "Width": "", + "Wikipedia": "", "Won": "", "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.": "", "Workspace": "Radna ploča", @@ -1817,6 +1868,8 @@ "Yacy Instance URL": "", "Yacy Password": "", "Yacy Username": "", + "Yahoo": "", + "Yandex": "", "Yesterday": "Jučer", "Yesterday at {{LOCALIZED_TIME}}": "", "You": "Vi", @@ -1824,6 +1877,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Možete personalizirati svoje interakcije s LLM-ima dodavanjem uspomena putem gumba 'Upravljanje' u nastavku, čineći ih korisnijima i prilagođenijima vama.", "You cannot upload an empty file.": "", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this thread.": "", "You do not have permission to upload files to this knowledge base.": "", @@ -1835,6 +1891,8 @@ "Your Account": "", "Your account status is currently pending activation.": "Status vašeg računa trenutno čeka aktivaciju.", "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.": "", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "YouTube", "Youtube Language": "", "Youtube Proxy URL": "" diff --git a/src/lib/i18n/locales/hu-HU/translation.json b/src/lib/i18n/locales/hu-HU/translation.json index 66773cb18..dc281904d 100644 --- a/src/lib/i18n/locales/hu-HU/translation.json +++ b/src/lib/i18n/locales/hu-HU/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "Ezen beállítások módosítása minden felhasználóra érvényes lesz.", "admin": "admin", "Admin": "Admin", + "Admin Contact Email": "", "Admin Panel": "Admin Panel", "Admin Settings": "Admin beállítások", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Az adminok mindig hozzáférnek minden eszközhöz; a felhasználóknak modellenként kell eszközöket hozzárendelni a munkaterületen.", @@ -101,7 +102,6 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "Fájlfeltöltés engedélyezése", - "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "Nem helyi hangok engedélyezése", "Allow Rate Response": "", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "és még {{COUNT}} db", "and create a new shared link.": "és hozz létre egy új megosztott linket.", "Android": "", + "Anyone": "", "API Base URL": "API alap URL", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "", "API Key": "API kulcs", @@ -175,6 +176,7 @@ "Authenticate": "Hitelesítés", "Authentication": "Hitelesítés", "Auto": "Automatikus", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "Válasz automatikus másolása a vágólapra", "Auto-playback response": "Automatikus válasz lejátszás", "Autocomplete Generation": "Automatikus kiegészítés generálása", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "AUTOMATIC1111 Api hitelesítési karakterlánc", "AUTOMATIC1111 Base URL": "AUTOMATIC1111 alap URL", "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 alap URL szükséges.", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "Elérhető lista", "Available Tools": "Elérhető eszközök", "available users": "elérhető felhasználók", @@ -201,6 +204,7 @@ "before": "előtt", "Being lazy": "Lustaság", "Beta": "Béta", + "Bing": "", "Bing Search V7 Endpoint": "Bing Search V7 végpont", "Bing Search V7 Subscription Key": "Bing Search V7 előfizetési kulcs", "Bio": "", @@ -209,7 +213,9 @@ "Bocha Search API Key": "Bocha Search API kulcs", "Bold": "", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Specifikus tokenek növelése vagy büntetése korlátozott válaszokhoz. Az elfogultság értékei -100 és 100 között lesznek rögzítve (beleértve). (Alapértelmezett: nincs)", + "Brave": "", "Brave Search API Key": "Brave Search API kulcs", + "Builtin Tools": "", "Bullet List": "", "Button ID": "", "Button Label": "", @@ -256,8 +262,10 @@ "Check for updates": "Frissítések keresése", "Checking for updates...": "Frissítések keresése...", "Choose a model before saving...": "Válassz modellt mentés előtt...", + "Chunk Min Size Target": "", "Chunk Overlap": "Darab átfedés", "Chunk Size": "Darab méret", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "Titkosítási algoritmusok", "Citation": "Idézet", "Citations": "", @@ -293,7 +301,6 @@ "Code Block": "", "Code Editor": "", "Code execution": "Kód végrehajtás", - "Code Execution": "Kód végrehajtás", "Code Execution Engine": "Kód végrehajtási motor", "Code Execution Timeout": "Kód végrehajtási időtúllépés", "Code formatted successfully": "Kód sikeresen formázva", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "Lépj kapcsolatba az adminnal a WebUI hozzáférésért", "Content": "Tartalom", "Content Extraction Engine": "Tartalom kinyerési motor", + "Content lengths (character counts only)": "", "Continue Response": "Válasz folytatása", "Continue with {{provider}}": "Folytatás {{provider}} szolgáltatóval", "Continue with Email": "Folytatás emaillel", @@ -393,6 +401,7 @@ "Database": "Adatbázis", "Datalab Marker API": "", "DD/MM/YYYY": "", + "DDGS Backend": "", "December": "December", "Decrease UI Scale": "", "Deepgram": "", @@ -474,6 +483,7 @@ "Dive into knowledge": "Merülj el a tudásban", "Do not install functions from sources you do not fully trust.": "Ne telepíts funkciókat olyan forrásokból, amelyekben nem bízol teljesen.", "Do not install tools from sources you do not fully trust.": "Ne telepíts eszközöket olyan forrásokból, amelyekben nem bízol teljesen.", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "Docling", "Docling Parameters": "", "Docling Server URL required.": "Docling szerver URL szükséges.", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "", "Document Intelligence Model": "", "Documentation": "Dokumentáció", - "Documents": "Dokumentumok", "does not make any external connections, and your data stays securely on your locally hosted server.": "nem létesít külső kapcsolatokat, és az adataid biztonságban maradnak a helyileg hosztolt szervereden.", "Domain Filter List": "Domain szűrőlista", "don't fetch random pipelines from sources you don't trust.": "Ne tölts le véletlenszerű pipeline-okat megbízhatatlan forrásokból.", @@ -493,11 +502,14 @@ "Done": "Kész", "Download": "Letöltés", "Download & Delete": "Letöltés és törlés", + "Download as JSON": "", "Download as SVG": "Letöltés SVG-ként", "Download canceled": "Letöltés megszakítva", "Download Database": "Adatbázis letöltése", + "Downloading stats...": "", "Draw": "Rajzolás", "Drop any files here to upload": "", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "pl. '30s','10m'. Érvényes időegységek: 's', 'm', 'h'.", "e.g. \"json\" or a JSON schema": "pl. \"json\" vagy egy JSON séma", "e.g. 60": "pl. 60", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "Add meg a Bocha Search API kulcsot", "Enter Brave Search API Key": "Add meg a Brave Search API kulcsot", "Enter certificate path": "Add meg a tanúsítvány útvonalát", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "Add meg a darab átfedést", "Enter Chunk Size": "Add meg a darab méretet", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Add meg vesszővel elválasztott \"token:bias_érték\" párokat (példa: 5432:100, 413:-100)", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "", "Enter Firecrawl API Base URL": "", "Enter Firecrawl API Key": "", + "Enter Firecrawl Timeout": "", "Enter folder name": "", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "Add meg a Github Raw URL-t", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "", "Enter ID": "", "Enter Image Size (e.g. 512x512)": "Add meg a kép méretet (pl. 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "Add meg a Jina API kulcsot", "Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter Jupyter Password": "Add meg a Jupyter jelszavát", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "Add meg a Kagi Search API kulcsot", "Enter Key Behavior": "Add meg a kulcs viselkedését", "Enter language codes": "Add meg a nyelvi kódokat", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "", "Enter Mistral API Key": "Add meg a Mistral API kulcsot", "Enter Model ID": "Add meg a modell azonosítót", @@ -736,6 +753,7 @@ "Failed to generate title": "", "Failed to import models": "", "Failed to load chat preview": "", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "", "Failed to move chat": "", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "Funkciók", "Features Permissions": "Funkciók engedélyei", "February": "Február", + "Feedback": "", "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "Visszajelzés előzmények", - "Feedbacks": "Visszajelzések", "Feel free to add specific details": "Nyugodtan adj hozzá specifikus részleteket", "Female": "", "File": "Fájl", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Ujjlenyomat hamisítás észlelve: Nem lehet a kezdőbetűket avatárként használni. Alapértelmezett profilkép használata.", "Firecrawl API Base URL": "", "Firecrawl API Key": "", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "", "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "Mappa sikeresen törölve", + "Folder Max File Count": "", "Folder Name": "", "Folder name cannot be empty.": "A mappa neve nem lehet üres.", "Folder name updated successfully": "Mappa neve sikeresen frissítve", @@ -826,7 +846,6 @@ "General": "Általános", "Generate": "", "Generate an image": "Kép generálása", - "Generate Image": "Kép generálása", "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Keresési lekérdezés generálása", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "Kezdj neki a {{WEBUI_NAME}}-val", "Global": "Globális", "Good Response": "Jó válasz", + "Google": "", "Google Drive": "Google Drive", "Google PSE API Key": "Google PSE API kulcs", "Google PSE Engine Id": "Google PSE motor azonosító", "Gravatar": "", "Grid": "", + "Grokipedia": "", "Group": "Csoport", "Group Channel": "", "Group created successfully": "Csoport sikeresen létrehozva", @@ -895,7 +916,6 @@ "Image Prompt Generation": "Kép prompt generálás", "Image Prompt Generation Prompt": "Kép prompt generálási prompt", "Image Size": "", - "Images": "Képek", "Import": "", "Import Chats": "Beszélgetések importálása", "Import Config from JSON File": "Konfiguráció importálása JSON fájlból", @@ -927,6 +947,7 @@ "Integration": "Integráció", "Integrations": "", "Interface": "Felület", + "Interface Settings Access": "", "Invalid file content": "", "Invalid file format.": "Érvénytelen fájlformátum.", "Invalid JSON file": "", @@ -940,6 +961,7 @@ "is typing...": "ír...", "Italic": "", "January": "Január", + "Jina API Base URL": "", "Jina API Key": "Jina API kulcs", "join our Discord for help.": "Csatlakozz a Discord szerverünkhöz segítségért.", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "Hagyja üresen, hogy az összes modellt tartalmazza a \"{{url}}/api/tags\" végpontból", "Leave empty to include all models from \"{{url}}/models\" endpoint": "Hagyja üresen, hogy az összes modellt tartalmazza a \"{{url}}/models\" végpontból", "Leave empty to include all models or select specific models": "Hagyja üresen az összes modell használatához, vagy válasszon ki konkrét modelleket", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "", "Leave empty to use the default prompt, or enter a custom prompt": "Hagyja üresen az alapértelmezett prompt használatához, vagy adjon meg egyéni promptot", "Leave model field empty to use the default model.": "Hagyja üresen a modell mezőt az alapértelmezett modell használatához.", @@ -1029,10 +1052,12 @@ "Manage your account information.": "", "March": "Március", "Markdown": "", - "Markdown (Header)": "", + "Markdown Header Text Splitter": "", "Max Speakers": "", "Max Upload Count": "Maximum feltöltések száma", "Max Upload Size": "Maximum feltöltési méret", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maximum 3 modell tölthető le egyszerre. Kérjük, próbálja újra később.", "May": "Május", "MBR": "", @@ -1042,6 +1067,7 @@ "Member removed successfully": "", "Members": "", "Members added successfully": "", + "Memories": "", "Memories accessible by LLMs will be shown here.": "Az LLM-ek által elérhető emlékek itt jelennek meg.", "Memory": "Memória", "Memory added successfully": "Memória sikeresen hozzáadva", @@ -1051,6 +1077,7 @@ "Merge Responses": "Válaszok egyesítése", "Merged Response": "Összevont válasz", "Message": "", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "Az üzenetértékelésnek engedélyezve kell lennie ehhez a funkcióhoz", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "A link létrehozása után küldött üzenetei nem lesznek megosztva. A URL-lel rendelkező felhasználók megtekinthetik a megosztott beszélgetést.", "Microsoft OneDrive": "", @@ -1083,9 +1110,11 @@ "Model Name": "Modell neve", "Model name already exists, please choose a different one": "", "Model Name is required.": "", + "Model names and usage frequency": "", "Model not selected": "Nincs kiválasztva modell", "Model Params": "Modell paraméterek", "Model Permissions": "Modell engedélyek", + "Model responses or outputs": "", "Model unloaded successfully": "", "Model updated successfully": "Modell sikeresen frissítve", "Model(s) do not support file upload": "", @@ -1096,6 +1125,7 @@ "Models imported successfully": "", "Models Public Sharing": "Modellek nyilvános megosztása", "Models Sharing": "", + "Mojeek": "", "Mojeek Search API Key": "Mojeek Search API kulcs", "More": "Több", "More Concise": "", @@ -1129,7 +1159,7 @@ "No conversation to save": "", "No distance available": "Nincs elérhető távolság", "No expiration can pose security risks.": "", - "No feedbacks found": "Nem található visszajelzés", + "No feedback found": "", "No file selected": "Nincs kiválasztva fájl", "No files in this knowledge base.": "", "No functions found": "", @@ -1144,6 +1174,7 @@ "No models selected": "Nincs kiválasztott modell", "No Notes": "", "No notes found": "", + "No one": "", "No pinned messages": "", "No prompts found": "", "No results": "Nincs találat", @@ -1195,6 +1226,7 @@ "Only invited users can access": "", "Only markdown files are allowed": "", "Only select users and groups with permission can access": "Csak a kiválasztott, engedéllyel rendelkező felhasználók és csoportok férhetnek hozzá", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Hoppá! Úgy tűnik, az URL érvénytelen. Kérjük, ellenőrizze és próbálja újra.", "Oops! There are files still uploading. Please wait for the upload to complete.": "Hoppá! Még vannak feltöltés alatt álló fájlok. Kérjük, várja meg a feltöltés befejezését.", "Oops! There was an error in the previous response.": "Hoppá! Hiba történt az előző válaszban.", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "Az Open WebUI bármely OpenAPI szerver által biztosított eszközöket használhat.", "Open WebUI uses faster-whisper internally.": "Az Open WebUI belsőleg a faster-whispert használja.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Az Open WebUI a SpeechT5-öt és a CMU Arctic hangszóró beágyazásokat használja.", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Az Open WebUI verzió (v{{OPEN_WEBUI_VERSION}}) alacsonyabb, mint a szükséges verzió (v{{REQUIRED_VERSION}})", "OpenAI": "OpenAI", "OpenAI API": "OpenAI API", @@ -1235,6 +1268,8 @@ "page": "oldal", "Paginate": "", "Parameters": "", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "Jelszó", "Passwords do not match.": "", "Paste Large Text as File": "Nagy szöveg beillesztése fájlként", @@ -1260,7 +1295,6 @@ "Pipe": "", "Pipeline deleted successfully": "Folyamat sikeresen törölve", "Pipeline downloaded successfully": "Folyamat sikeresen letöltve", - "Pipelines": "Folyamatok", "Pipelines are a plugin system with arbitrary code execution —": "A Pipelines egy bővítményrendszer tetszőleges kódvégrehajtással —", "Pipelines Not Detected": "Folyamatok nem észlelhetők", "Pipelines Valves": "Folyamat szelepek", @@ -1498,6 +1532,7 @@ "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.": "Beállítja a használandó leállítási szekvenciákat. Ha ezt a mintát észleli, az LLM leállítja a szöveg generálását és visszatér. Több leállítási minta is megadható különálló stop paraméterek megadásával egy modellfájlban.", "Setting": "", "Settings": "Beállítások", + "Settings Permissions": "", "Settings saved successfully!": "Beállítások sikeresen mentve!", "Share": "Megosztás", "Share Chat": "Beszélgetés megosztása", @@ -1541,6 +1576,7 @@ "Speech recognition error: {{error}}": "Beszédfelismerési hiba: {{error}}", "Speech-to-Text": "", "Speech-to-Text Engine": "Beszéd-szöveg motor", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "", "Start of the channel": "A csatorna eleje", "Start Tag": "", @@ -1551,6 +1587,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Leállítás", + "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Leállítási szekvencia", "Stream Chat Response": "Chat válasz streamelése", @@ -1571,7 +1608,14 @@ "Support": "Támogatás", "Support this plugin:": "Támogassa ezt a bővítményt:", "Supported MIME Types": "", + "Sync": "", + "Sync Complete!": "", "Sync directory": "Könyvtár szinkronizálása", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "Rendszer", "System Instructions": "Rendszer utasítások", "System Prompt": "Rendszer prompt", @@ -1616,6 +1660,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "", "The width in pixels to compress images to. Leave empty for no compression.": "", "Theme": "Téma", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "Gondolkodik...", "This action cannot be undone. Do you wish to continue?": "Ez a művelet nem vonható vissza. Szeretné folytatni?", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "Ez a csatorna {{createdAt}} időpontban jött létre. Ez a {{channelName}} csatorna legeslegeleje.", @@ -1730,6 +1775,7 @@ "Upload Pipeline": "Folyamat feltöltése", "Upload Progress": "Feltöltési folyamat", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploaded files or images": "", "Uploading file...": "", "URL": "URL", "URL is required": "", @@ -1747,6 +1793,7 @@ "User Groups": "", "User location successfully retrieved.": "Felhasználó helye sikeresen lekérve.", "User menu": "", + "User ratings (thumbs up/down)": "", "User Webhooks": "Felhasználói webhookok", "Username": "Felhasználónév", "users": "", @@ -1796,15 +1843,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "A WebUI kéréseket küld a \"{{url}}/chat/completions\" címre", "What are you trying to achieve?": "Mit próbálsz elérni?", "What are you working on?": "Min dolgozol?", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "Mi újság a", "What's on your mind?": "", "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.": "Ha engedélyezve van, a modell valós időben válaszol minden csevegőüzenetre, amint a felhasználó elküldi az üzenetet. Ez a mód hasznos élő csevegőalkalmazásokhoz, de lassabb hardveren befolyásolhatja a teljesítményt.", "wherever you are": "bárhol is vagy", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whisper (Local)": "Whisper (helyi)", + "Who can share to this group": "", "Why?": "Miért?", "Widescreen Mode": "Szélesvásznú mód", "Width": "", + "Wikipedia": "", "Won": "Nyert", "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.": "A top-k-val együtt működik. Magasabb érték (pl. 0,95) változatosabb szöveget eredményez, alacsonyabb érték (pl. 0,5) fókuszáltabb és konzervatívabb szöveget generál.", "Workspace": "Munkaterület", @@ -1816,6 +1867,8 @@ "Yacy Instance URL": "", "Yacy Password": "", "Yacy Username": "", + "Yahoo": "", + "Yandex": "", "Yesterday": "Tegnap", "Yesterday at {{LOCALIZED_TIME}}": "", "You": "Ön", @@ -1823,6 +1876,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Egyszerre maximum {{maxCount}} fájllal tud csevegni.", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Az LLM-ekkel való interakcióit személyre szabhatja emlékek hozzáadásával a lenti 'Kezelés' gomb segítségével, így azok még hasznosabbak és személyre szabottabbak lesznek.", "You cannot upload an empty file.": "Nem tölthet fel üres fájlt.", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this thread.": "", "You do not have permission to upload files to this knowledge base.": "", @@ -1834,6 +1890,8 @@ "Your Account": "", "Your account status is currently pending activation.": "Fiókja jelenleg aktiválásra vár.", "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.": "A teljes hozzájárulása közvetlenül a bővítmény fejlesztőjéhez kerül; az Open WebUI nem vesz le százalékot. Azonban a választott támogatási platformnak lehetnek saját díjai.", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "YouTube", "Youtube Language": "YouTube nyelv", "Youtube Proxy URL": "YouTube proxy URL" diff --git a/src/lib/i18n/locales/id-ID/translation.json b/src/lib/i18n/locales/id-ID/translation.json index f79eae18f..67cbf3d84 100644 --- a/src/lib/i18n/locales/id-ID/translation.json +++ b/src/lib/i18n/locales/id-ID/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "Menyesuaikan pengaturan ini akan menerapkan perubahan secara universal ke semua pengguna.", "admin": "admin", "Admin": "Admin", + "Admin Contact Email": "", "Admin Panel": "Panel Admin", "Admin Settings": "Pengaturan Admin", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Admin memiliki akses ke semua alat setiap saat; pengguna memerlukan alat yang ditetapkan per model di ruang kerja.", @@ -101,7 +102,6 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "", - "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "Izinkan suara non-lokal", "Allow Rate Response": "", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "", "and create a new shared link.": "dan membuat tautan bersama baru.", "Android": "", + "Anyone": "", "API Base URL": "URL Dasar API", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "", "API Key": "Kunci API", @@ -175,6 +176,7 @@ "Authenticate": "", "Authentication": "", "Auto": "", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "Tanggapan Salin Otomatis ke Papan Klip", "Auto-playback response": "Respons pemutaran otomatis", "Autocomplete Generation": "", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "AUTOMATIC1111 Api Auth String", "AUTOMATIC1111 Base URL": "URL Dasar AUTOMATIC1111", "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 URL Dasar diperlukan.", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "", "Available Tools": "", "available users": "pengguna yang tersedia", @@ -201,6 +204,7 @@ "before": "sebelum", "Being lazy": "Menjadi malas", "Beta": "", + "Bing": "", "Bing Search V7 Endpoint": "", "Bing Search V7 Subscription Key": "", "Bio": "", @@ -209,7 +213,9 @@ "Bocha Search API Key": "", "Bold": "", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "", + "Brave": "", "Brave Search API Key": "Kunci API Pencarian Berani", + "Builtin Tools": "", "Bullet List": "", "Button ID": "", "Button Label": "", @@ -256,8 +262,10 @@ "Check for updates": "Memeriksa pembaruan", "Checking for updates...": "Memeriksa pembaruan...", "Choose a model before saving...": "Pilih model sebelum menyimpan...", + "Chunk Min Size Target": "", "Chunk Overlap": "Tumpang Tindih Potongan", "Chunk Size": "Ukuran Potongan", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "", "Citation": "Kutipan", "Citations": "", @@ -293,7 +301,6 @@ "Code Block": "", "Code Editor": "", "Code execution": "", - "Code Execution": "", "Code Execution Engine": "", "Code Execution Timeout": "", "Code formatted successfully": "Kode berhasil diformat", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "Hubungi Admin untuk Akses WebUI", "Content": "Konten", "Content Extraction Engine": "", + "Content lengths (character counts only)": "", "Continue Response": "Lanjutkan Tanggapan", "Continue with {{provider}}": "Lanjutkan dengan {{provider}}", "Continue with Email": "", @@ -393,6 +401,7 @@ "Database": "Basis data", "Datalab Marker API": "", "DD/MM/YYYY": "", + "DDGS Backend": "", "December": "Desember", "Decrease UI Scale": "", "Deepgram": "", @@ -474,6 +483,7 @@ "Dive into knowledge": "", "Do not install functions from sources you do not fully trust.": "", "Do not install tools from sources you do not fully trust.": "", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "", "Docling Parameters": "", "Docling Server URL required.": "", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "", "Document Intelligence Model": "", "Documentation": "Dokumentasi", - "Documents": "Dokumen", "does not make any external connections, and your data stays securely on your locally hosted server.": "tidak membuat koneksi eksternal apa pun, dan data Anda tetap aman di server yang dihosting secara lokal.", "Domain Filter List": "", "don't fetch random pipelines from sources you don't trust.": "Jangan mengambil pipeline acak dari sumber yang tidak Anda percayai.", @@ -493,11 +502,14 @@ "Done": "Selesai", "Download": "Unduh", "Download & Delete": "Unduh & Hapus", + "Download as JSON": "", "Download as SVG": "", "Download canceled": "Unduh dibatalkan", "Download Database": "Unduh Basis Data", + "Downloading stats...": "", "Draw": "", "Drop any files here to upload": "", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "misalnya '30-an', '10m'. Satuan waktu yang valid adalah 's', 'm', 'h'.", "e.g. \"json\" or a JSON schema": "", "e.g. 60": "", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "", "Enter Brave Search API Key": "Masukkan Kunci API Pencarian Berani", "Enter certificate path": "", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "Masukkan Tumpang Tindih Chunk", "Enter Chunk Size": "Masukkan Ukuran Potongan", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "", "Enter Firecrawl API Base URL": "", "Enter Firecrawl API Key": "", + "Enter Firecrawl Timeout": "", "Enter folder name": "", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "Masukkan URL Mentah Github", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "", "Enter ID": "", "Enter Image Size (e.g. 512x512)": "Masukkan Ukuran Gambar (mis. 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "", "Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter Jupyter Password": "", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "", "Enter Key Behavior": "", "Enter language codes": "Masukkan kode bahasa", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "", "Enter Mistral API Key": "", "Enter Model ID": "", @@ -736,6 +753,7 @@ "Failed to generate title": "", "Failed to import models": "", "Failed to load chat preview": "", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "", "Failed to move chat": "", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "", "Features Permissions": "", "February": "Februari", + "Feedback": "", "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "", - "Feedbacks": "", "Feel free to add specific details": "Jangan ragu untuk menambahkan detail spesifik", "Female": "", "File": "Berkas", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Pemalsuan sidik jari terdeteksi: Tidak dapat menggunakan inisial sebagai avatar. Default ke gambar profil default.", "Firecrawl API Base URL": "", "Firecrawl API Key": "", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "", "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "", + "Folder Max File Count": "", "Folder Name": "", "Folder name cannot be empty.": "", "Folder name updated successfully": "", @@ -826,7 +846,6 @@ "General": "Umum", "Generate": "", "Generate an image": "", - "Generate Image": "Menghasilkan Gambar", "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Membuat kueri penelusuran", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "", "Global": "Global", "Good Response": "Respons yang Baik", + "Google": "", "Google Drive": "", "Google PSE API Key": "Kunci API Google PSE", "Google PSE Engine Id": "Id Mesin Google PSE", "Gravatar": "", "Grid": "", + "Grokipedia": "", "Group": "Grup", "Group Channel": "", "Group created successfully": "", @@ -895,7 +916,6 @@ "Image Prompt Generation": "", "Image Prompt Generation Prompt": "", "Image Size": "", - "Images": "Gambar", "Import": "", "Import Chats": "Impor Obrolan", "Import Config from JSON File": "", @@ -927,6 +947,7 @@ "Integration": "", "Integrations": "", "Interface": "Antarmuka", + "Interface Settings Access": "", "Invalid file content": "", "Invalid file format.": "", "Invalid JSON file": "", @@ -940,6 +961,7 @@ "is typing...": "", "Italic": "", "January": "Januari", + "Jina API Base URL": "", "Jina API Key": "", "join our Discord for help.": "bergabunglah dengan Discord kami untuk mendapatkan bantuan.", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "", "Leave empty to include all models or select specific models": "", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "", "Leave empty to use the default prompt, or enter a custom prompt": "", "Leave model field empty to use the default model.": "", @@ -1029,10 +1052,12 @@ "Manage your account information.": "", "March": "Maret", "Markdown": "", - "Markdown (Header)": "", + "Markdown Header Text Splitter": "", "Max Speakers": "", "Max Upload Count": "", "Max Upload Size": "", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maksimal 3 model dapat diunduh secara bersamaan. Silakan coba lagi nanti.", "May": "Mei", "MBR": "", @@ -1042,6 +1067,7 @@ "Member removed successfully": "", "Members": "", "Members added successfully": "", + "Memories": "", "Memories accessible by LLMs will be shown here.": "Memori yang dapat diakses oleh LLM akan ditampilkan di sini.", "Memory": "Memori", "Memory added successfully": "Memori berhasil ditambahkan", @@ -1051,6 +1077,7 @@ "Merge Responses": "", "Merged Response": "Tanggapan yang Digabungkan", "Message": "", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Pesan yang Anda kirim setelah membuat tautan tidak akan dibagikan. Pengguna yang memiliki URL tersebut akan dapat melihat obrolan yang dibagikan.", "Microsoft OneDrive": "", @@ -1083,9 +1110,11 @@ "Model Name": "", "Model name already exists, please choose a different one": "", "Model Name is required.": "", + "Model names and usage frequency": "", "Model not selected": "Model tidak dipilih", "Model Params": "Parameter Model", "Model Permissions": "", + "Model responses or outputs": "", "Model unloaded successfully": "", "Model updated successfully": "Model berhasil diperbarui", "Model(s) do not support file upload": "", @@ -1096,6 +1125,7 @@ "Models imported successfully": "", "Models Public Sharing": "", "Models Sharing": "", + "Mojeek": "", "Mojeek Search API Key": "", "More": "Lainnya", "More Concise": "", @@ -1129,7 +1159,7 @@ "No conversation to save": "", "No distance available": "", "No expiration can pose security risks.": "", - "No feedbacks found": "", + "No feedback found": "", "No file selected": "Tidak ada file yang dipilih", "No files in this knowledge base.": "", "No functions found": "", @@ -1144,6 +1174,7 @@ "No models selected": "", "No Notes": "", "No notes found": "", + "No one": "", "No pinned messages": "", "No prompts found": "", "No results": "Tidak ada hasil yang ditemukan", @@ -1195,6 +1226,7 @@ "Only invited users can access": "", "Only markdown files are allowed": "", "Only select users and groups with permission can access": "", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Ups! Sepertinya URL tidak valid. Mohon periksa ulang dan coba lagi.", "Oops! There are files still uploading. Please wait for the upload to complete.": "", "Oops! There was an error in the previous response.": "", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "", "OpenAI": "OpenAI", "OpenAI API": "API OpenAI", @@ -1235,6 +1268,8 @@ "page": "", "Paginate": "", "Parameters": "", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "Kata sandi", "Passwords do not match.": "", "Paste Large Text as File": "", @@ -1260,7 +1295,6 @@ "Pipe": "", "Pipeline deleted successfully": "Pipeline berhasil dihapus", "Pipeline downloaded successfully": "Saluran pipa berhasil diunduh", - "Pipelines": "Saluran pipa", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines adalah sistem plugin dengan eksekusi kode sewenang‑wenang —", "Pipelines Not Detected": "Saluran Pipa Tidak Terdeteksi", "Pipelines Valves": "Katup Saluran Pipa", @@ -1497,6 +1531,7 @@ "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.": "", "Setting": "", "Settings": "Pengaturan", + "Settings Permissions": "", "Settings saved successfully!": "Pengaturan berhasil disimpan!", "Share": "Berbagi", "Share Chat": "Bagikan Obrolan", @@ -1540,6 +1575,7 @@ "Speech recognition error: {{error}}": "Kesalahan pengenalan suara: {{error}}", "Speech-to-Text": "", "Speech-to-Text Engine": "Mesin Pengenal Ucapan ke Teks", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "", "Start of the channel": "Awal saluran", "Start Tag": "", @@ -1550,6 +1586,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "", + "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Hentikan Urutan", "Stream Chat Response": "", @@ -1570,7 +1607,14 @@ "Support": "", "Support this plugin:": "", "Supported MIME Types": "", + "Sync": "", + "Sync Complete!": "", "Sync directory": "", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "Sistem", "System Instructions": "", "System Prompt": "Permintaan Sistem", @@ -1615,6 +1659,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "", "The width in pixels to compress images to. Leave empty for no compression.": "", "Theme": "Tema", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "Berpikir", "This action cannot be undone. Do you wish to continue?": "Tindakan ini tidak dapat dibatalkan. Apakah Anda ingin melanjutkan?", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "", @@ -1729,6 +1774,7 @@ "Upload Pipeline": "Unggah Pipeline", "Upload Progress": "Kemajuan Unggah", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploaded files or images": "", "Uploading file...": "", "URL": "", "URL is required": "", @@ -1746,6 +1792,7 @@ "User Groups": "", "User location successfully retrieved.": "Lokasi pengguna berhasil diambil.", "User menu": "", + "User ratings (thumbs up/down)": "", "User Webhooks": "", "Username": "", "users": "", @@ -1795,15 +1842,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "", "What are you trying to achieve?": "", "What are you working on?": "", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "Apa yang Baru di", "What's on your mind?": "", "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.": "", "wherever you are": "", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whisper (Local)": "Bisikan (Lokal)", + "Who can share to this group": "", "Why?": "", "Widescreen Mode": "Mode Layar Lebar", "Width": "", + "Wikipedia": "", "Won": "", "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.": "", "Workspace": "Ruang Kerja", @@ -1815,6 +1866,8 @@ "Yacy Instance URL": "", "Yacy Password": "", "Yacy Username": "", + "Yahoo": "", + "Yandex": "", "Yesterday": "Kemarin", "Yesterday at {{LOCALIZED_TIME}}": "", "You": "Anda", @@ -1822,6 +1875,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Anda dapat mempersonalisasi interaksi Anda dengan LLM dengan menambahkan kenangan melalui tombol 'Kelola' di bawah ini, sehingga lebih bermanfaat dan disesuaikan untuk Anda.", "You cannot upload an empty file.": "", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this thread.": "", "You do not have permission to upload files to this knowledge base.": "", @@ -1833,6 +1889,8 @@ "Your Account": "", "Your account status is currently pending activation.": "Status akun Anda saat ini sedang menunggu aktivasi.", "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.": "", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "Youtube", "Youtube Language": "", "Youtube Proxy URL": "" diff --git a/src/lib/i18n/locales/ie-GA/translation.json b/src/lib/i18n/locales/ie-GA/translation.json index 8acf996d4..950fdab43 100644 --- a/src/lib/i18n/locales/ie-GA/translation.json +++ b/src/lib/i18n/locales/ie-GA/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "Cuirfear na socruithe seo ag coigeartú athruithe go huilíoch ar gach úsáideoir.", "admin": "riarachán", "Admin": "Riarachán", + "Admin Contact Email": "", "Admin Panel": "Painéal Riaracháin", "Admin Settings": "Socruithe Riaracháin", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Bíonn rochtain ag riarthóirí ar na huirlisí go léir i gcónaí; teastaíonn ó úsáideoirí uirlisí a shanntar de réir samhail sa spás oibre.", @@ -101,7 +102,6 @@ "Allow Continue Response": "Ceadaigh Leanúint ar aghaidh leis an bhFreagra", "Allow Delete Messages": "Ceadaigh Teachtaireachtaí a Scriosadh", "Allow File Upload": "Ceadaigh Uaslódáil Comhad", - "Allow Group Sharing": "", "Allow Multiple Models in Chat": "Ceadaigh Il-Samhlacha i gComhrá", "Allow non-local voices": "Lig guthanna neamh-áitiúla", "Allow Rate Response": "Ceadaigh Freagairt Ráta", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "agus {{COUNT}} eile", "and create a new shared link.": "agus cruthaigh nasc nua roinnte.", "Android": "Android", + "Anyone": "", "API Base URL": "URL Bonn API", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "URL Bunúsach API do sheirbhís Marcóra Datalab. Réamhshocraithe go: https://www.datalab.to/api/v1/marker", "API Key": "Eochair API", @@ -175,6 +176,7 @@ "Authenticate": "Fíordheimhnigh", "Authentication": "Fíordheimhniú", "Auto": "Uath", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "Freagra AutoCopy go Gearrthaisce", "Auto-playback response": "Freagra uathsheinm", "Autocomplete Generation": "Giniúint Uathchríochnaithe", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "UATHOIBRÍOCH1111 Api Auth Teaghrán", "AUTOMATIC1111 Base URL": "UATHOIBRÍOCH1111 Bun URL", "AUTOMATIC1111 Base URL is required.": "Tá URL bonn UATHOIBRÍOCH1111 ag teastáil.", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "Liosta atá ar fáil", "Available Tools": "Uirlisí ar Fáil", "available users": "úsáideoirí ar fáil", @@ -201,6 +204,7 @@ "before": "roimh", "Being lazy": "A bheith leisciúil", "Beta": "Béite", + "Bing": "", "Bing Search V7 Endpoint": "Cuardach Bing V7 Críochphointe", "Bing Search V7 Subscription Key": "Eochair Síntiúis Bing Cuardach V7", "Bio": "Beathaisnéis", @@ -209,7 +213,9 @@ "Bocha Search API Key": "Eochair API Cuardach Bocha", "Bold": "Trom", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Treisiú nó pionós a ghearradh ar chomharthaí sonracha as freagraí srianta. Déanfar luachanna laofachta a chlampáil idir -100 agus 100 (san áireamh). (Réamhshocrú: ceann ar bith)", + "Brave": "", "Brave Search API Key": "Eochair API Cuardaigh Brave", + "Builtin Tools": "", "Bullet List": "Liosta Urchair", "Button ID": "Aitheantas an Chnaipe", "Button Label": "Lipéad Cnaipe", @@ -256,8 +262,10 @@ "Check for updates": "Seiceáil nuashonruithe", "Checking for updates...": "Seiceáil le haghaidh nuashonruithe...", "Choose a model before saving...": "Roghnaigh samhail sula sábhálann tú...", + "Chunk Min Size Target": "", "Chunk Overlap": "Forluí smután", "Chunk Size": "Méid an Píosa", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "Cipéirí", "Citation": "Lua", "Citations": "Comhlua", @@ -293,7 +301,6 @@ "Code Block": "Bloc Cód", "Code Editor": "Eagarthóir Cód", "Code execution": "Cód a fhorghníomhú", - "Code Execution": "Forghníomhú Cóid", "Code Execution Engine": "Inneall Forghníomhaithe Cóid", "Code Execution Timeout": "Teorainn Ama Forghníomhaithe Cóid", "Code formatted successfully": "Cód formáidithe go rathúil", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "Déan teagmháil le Riarachán le haghaidh Rochtana WebUI", "Content": "Ábhar", "Content Extraction Engine": "Inneall Eastóscadh Ábhar", + "Content lengths (character counts only)": "", "Continue Response": "Leanúint ar aghaidh", "Continue with {{provider}}": "Lean ar aghaidh le {{provider}}", "Continue with Email": "Lean ar aghaidh le Ríomhphost", @@ -393,6 +401,7 @@ "Database": "Bunachar Sonraí", "Datalab Marker API": "API Marcóra Datalab", "DD/MM/YYYY": "LL/MM/LLLL", + "DDGS Backend": "", "December": "Nollaig", "Decrease UI Scale": "", "Deepgram": "Deepgram", @@ -474,6 +483,7 @@ "Dive into knowledge": "Léim isteach eolas", "Do not install functions from sources you do not fully trust.": "Ná suiteáil feidhmeanna ó fhoinsí nach bhfuil muinín iomlán agat.", "Do not install tools from sources you do not fully trust.": "Ná suiteáil uirlisí ó fhoinsí nach bhfuil muinín iomlán agat.", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "Docling", "Docling Parameters": "", "Docling Server URL required.": "URL Freastalaí Doling ag teastáil.", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "Críochphointe Faisnéise Doiciméad ag teastáil.", "Document Intelligence Model": "", "Documentation": "Doiciméadú", - "Documents": "Doiciméid", "does not make any external connections, and your data stays securely on your locally hosted server.": "ní dhéanann sé aon naisc sheachtracha, agus fanann do chuid sonraí go slán ar do fhreastalaí a óstáiltear go háitiúil.", "Domain Filter List": "Liosta Scagairí Fearainn", "don't fetch random pipelines from sources you don't trust.": "ná faigh píblínte randamacha ó fhoinsí nach bhfuil muinín agat astu.", @@ -493,11 +502,14 @@ "Done": "Déanta", "Download": "Íoslódáil", "Download & Delete": "Íoslódáil agus scrios", + "Download as JSON": "", "Download as SVG": "Íoslódáil i SVG", "Download canceled": "Íoslódáil cealaithe", "Download Database": "Íoslódáil Bunachair", + "Downloading stats...": "", "Draw": "Tarraing", "Drop any files here to upload": "Scaoil aon chomhaid anseo le huaslódáil", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "m.sh. '30s', '10m'. Is iad aonaid ama bailí ná 's', 'm', 'h'.", "e.g. \"json\" or a JSON schema": "m.sh. \"json\" nó scéimre JSON", "e.g. 60": "m.sh. 60", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "Cuir isteach Eochair API Bocha Cuardach", "Enter Brave Search API Key": "Cuir isteach Eochair API Brave Cuardach", "Enter certificate path": "Cuir isteach cosán an teastais", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "Cuir isteach Chunk Forluí", "Enter Chunk Size": "Cuir isteach Méid an Smután", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Cuir isteach péirí camóg-scartha \"comhartha:luach laofachta\" (mar shampla: 5432:100, 413:-100)", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "Cuir isteach URL Cuardaigh Gréasáin Sheachtrach", "Enter Firecrawl API Base URL": "Cuir isteach URL Bonn API Firecrawl", "Enter Firecrawl API Key": "Cuir isteach Eochair API Firecrawl", + "Enter Firecrawl Timeout": "", "Enter folder name": "Cuir isteach ainm an fhillteáin", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "Cuir isteach URL Github Raw", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "Cuir isteach dath heicsidheachúlach (m.sh. #FF0000)", "Enter ID": "Cuir isteach aitheantas", "Enter Image Size (e.g. 512x512)": "Iontráil Méid Íomhá (m.sh. 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "Cuir isteach Eochair API Jina", "Enter JSON config (e.g., {\"disable_links\": true})": "Cuir isteach cumraíocht JSON (m.sh., {\"disable_links\": true})", "Enter Jupyter Password": "Cuir isteach Pasfhocal Jupyter", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "Cuir isteach Eochair Kagi Cuardach API", "Enter Key Behavior": "Iontráil Iompar Eochair", "Enter language codes": "Cuir isteach cóid teanga", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "Cuir isteach URL Bunúsach API Mistral", "Enter Mistral API Key": "Cuir isteach Eochair API Mistral", "Enter Model ID": "Cuir isteach ID an tSamhail", @@ -736,6 +753,7 @@ "Failed to generate title": "Theip ar an teideal a ghiniúint", "Failed to import models": "Theip ar samhail a iompórtáil", "Failed to load chat preview": "Theip ar réamhamharc comhrá a lódáil", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "Theip ar lódáil ábhar an chomhaid.", "Failed to move chat": "Theip ar an gcomhrá a bhogadh", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "Gnéithe", "Features Permissions": "Ceadanna Gnéithe", "February": "Feabhra", + "Feedback": "", "Feedback deleted successfully": "", "Feedback Details": "Sonraí Aiseolais", "Feedback History": "Stair Aiseolais", - "Feedbacks": "Aiseolas", "Feel free to add specific details": "Ná bíodh leisce ort sonraí ar leith a chur leis", "Female": "Baineann", "File": "Comhad", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Braithíodh spoofing méarloirg: Ní féidir teachlitreacha a úsáid mar avatar. Réamhshocrú ar íomhá próifíle réamhshocraithe.", "Firecrawl API Base URL": "URL Bunús API Firecrawl", "Firecrawl API Key": "Eochair API Firecrawl", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "Gníomhartha Tapa Snámha", "Focus Chat Input": "Dírigh ar Ionchur Comhrá", "Folder": "Fillteán", "Folder Background Image": "Íomhá Chúlra Fillteáin", "Folder deleted successfully": "Scriosadh an fillteán go rathúil", + "Folder Max File Count": "", "Folder Name": "Ainm an Fhillteáin", "Folder name cannot be empty.": "Ní féidir ainm fillteáin a bheith folamh.", "Folder name updated successfully": "D'éirigh le hainm an fhillteáin a nuashonrú", @@ -826,7 +846,6 @@ "General": "Ginearálta", "Generate": "Gin", "Generate an image": "Gin íomhá", - "Generate Image": "Gin Íomhá", "Generate Message Pair": "Gin Péire Teachtaireachta", "Generated Image": "Íomhá Ginithe", "Generating search query": "Giniúint ceist cuardaigh", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "Cuir tús le {{WEBUI_NAME}}", "Global": "Domhanda", "Good Response": "Freagra Mhaith", + "Google": "", "Google Drive": "Google Drive", "Google PSE API Key": "Eochair API Google PSE", "Google PSE Engine Id": "ID Inneall Google PSE", "Gravatar": "Gravatar", "Grid": "", + "Grokipedia": "", "Group": "Grúpa", "Group Channel": "", "Group created successfully": "Grúpa cruthaithe go rathúil", @@ -895,7 +916,6 @@ "Image Prompt Generation": "Giniúint Leid Íomhá", "Image Prompt Generation Prompt": "Leid Giniúint Leide Íomhá", "Image Size": "Méid na hÍomhá", - "Images": "Íomhánna", "Import": "Iompórtáil", "Import Chats": "Comhráite iompórtá", "Import Config from JSON File": "Cumraíocht Iompórtáil ó Chomhad JSON", @@ -927,6 +947,7 @@ "Integration": "Comhtháthú", "Integrations": "Comhtháthúcháin", "Interface": "Comhéadan", + "Interface Settings Access": "", "Invalid file content": "Ábhar comhaid neamhbhailí", "Invalid file format.": "Formáid comhaid neamhbhailí.", "Invalid JSON file": "Comhad JSON neamhbhailí", @@ -940,6 +961,7 @@ "is typing...": "ag clóscríobh...", "Italic": "Iodálach", "January": "Eanáir", + "Jina API Base URL": "", "Jina API Key": "Jina API Eochair", "join our Discord for help.": "bí inár Discord chun cabhair a fháil.", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "Fág folamh chun gach samhail ó chríochphointe \"{{url}}/api/tags\" a chur san áireamh", "Leave empty to include all models from \"{{url}}/models\" endpoint": "Fág folamh chun gach samhail ón gcríochphointe \"{{url}}/models\" a chur san áireamh", "Leave empty to include all models or select specific models": "Fág folamh chun gach samhail a chur san áireamh nó roghnaigh samhail sonracha", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "Fág folamh chun an tsamhail réamhshocraithe (voxtral-mini-latest) a úsáid.", "Leave empty to use the default prompt, or enter a custom prompt": "Fág folamh chun an leid réamhshocraithe a úsáid, nó cuir isteach leid saincheaptha", "Leave model field empty to use the default model.": "Fág an réimse samhail folamh chun an tsamhail réamhshocraithe a úsáid.", @@ -1029,10 +1052,12 @@ "Manage your account information.": "Bainistigh faisnéis do chuntais.", "March": "Márta", "Markdown": "Marcáil síos", - "Markdown (Header)": "Marcáil síos (Ceanntásc)", + "Markdown Header Text Splitter": "", "Max Speakers": "Uasmhéid Cainteoirí", "Max Upload Count": "Líon Uaslódála Max", "Max Upload Size": "Méid Uaslódála Max", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Is féidir uasmhéid de 3 samhail a íoslódáil ag an am Bain triail as arís níos déanaí.", "May": "Bealtaine", "MBR": "", @@ -1042,6 +1067,7 @@ "Member removed successfully": "", "Members": "", "Members added successfully": "", + "Memories": "", "Memories accessible by LLMs will be shown here.": "Taispeánfar cuimhní atá inrochtana ag LLManna anseo.", "Memory": "Cuimhne", "Memory added successfully": "Cuireadh cuimhne leis go", @@ -1051,6 +1077,7 @@ "Merge Responses": "Cumaisc Freagraí", "Merged Response": "Freagra Cumaiscthe", "Message": "Teachtaireacht", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "Ba cheart rátáil teachtaireachta a chumasú chun an ghné seo a úsáid", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Ní roinnfear teachtaireachtaí a sheolann tú tar éis do nasc a chruthú. Beidh úsáideoirí leis an URL in ann féachaint ar an gcomhrá roinnte.", "Microsoft OneDrive": "Microsoft OneDrive", @@ -1083,9 +1110,11 @@ "Model Name": "Ainm an tSamhail", "Model name already exists, please choose a different one": "Tá ainm samhail ann cheana féin, roghnaigh ceann eile le do thoil", "Model Name is required.": "Tá Ainm an tSamhail de dhíth.", + "Model names and usage frequency": "", "Model not selected": "Níor roghnaíodh an tsamhail", "Model Params": "Paraiméadair Samhail", "Model Permissions": "Ceadanna Samhail", + "Model responses or outputs": "", "Model unloaded successfully": "Díluchtaíodh an tsamhail go rathúil", "Model updated successfully": "An tsamhail nuashonraithe", "Model(s) do not support file upload": "Ní thacaíonn samhail(í) le huaslódáil comhaid", @@ -1096,6 +1125,7 @@ "Models imported successfully": "Iompórtáladh samhlacha go rathúil", "Models Public Sharing": "Samhlacha Comhroinnt Phoiblí", "Models Sharing": "", + "Mojeek": "", "Mojeek Search API Key": "Eochair API Cuardach Mojeek", "More": "Tuilleadh", "More Concise": "Níos Gonta", @@ -1129,7 +1159,7 @@ "No conversation to save": "Gan aon chomhrá le sábháil", "No distance available": "Níl achar ar fáil", "No expiration can pose security risks.": "Ní féidir le haon dáta éaga rioscaí slándála a chruthú.", - "No feedbacks found": "Níor aimsíodh aon aiseolas", + "No feedback found": "", "No file selected": "Níl aon chomhad roghnaithe", "No files in this knowledge base.": "", "No functions found": "Níor aimsíodh aon fheidhmeanna", @@ -1144,6 +1174,7 @@ "No models selected": "Uimh samhlacha roghnaithe", "No Notes": "Gan Nótaí", "No notes found": "Níor aimsíodh aon nótaí", + "No one": "", "No pinned messages": "", "No prompts found": "Níor aimsíodh aon leideanna", "No results": "Níl aon torthaí le fáil", @@ -1195,6 +1226,7 @@ "Only invited users can access": "", "Only markdown files are allowed": "Ní cheadaítear ach comhaid marcála síos", "Only select users and groups with permission can access": "Ní féidir ach le húsáideoirí roghnaithe agus le grúpaí a bhfuil cead acu rochtain a fháil", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Ups! Is cosúil go bhfuil an URL neamhbhailí. Seiceáil faoi dhó le do thoil agus iarracht arís.", "Oops! There are files still uploading. Please wait for the upload to complete.": "Úps! Tá comhaid fós á n-uaslódáil. Fan go mbeidh an uaslódáil críochnaithe.", "Oops! There was an error in the previous response.": "Úps! Bhí earráid sa fhreagra roimhe seo.", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "Is féidir le WebUI Oscailte uirlisí a úsáid a sholáthraíonn aon fhreastalaí OpenAPI.", "Open WebUI uses faster-whisper internally.": "Úsáideann Open WebUI cogar níos tapúla go hinmheánach.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Úsáideann Open WebUI úsáidí SpeechT5 agus CMU leabaithe cainteoir Artach.", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Tá leagan WebUI oscailte (v{{OPEN_WEBUI_VERSION}}) níos ísle ná an leagan riachtanach (v{{REQUIRED_VERSION}})", "OpenAI": "OpenAI", "OpenAI API": "API OpenAI", @@ -1235,6 +1268,8 @@ "page": "leathanach", "Paginate": "Leathanaigh", "Parameters": "Paraiméadair", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "Pasfhocal", "Passwords do not match.": "Ní hionann na pasfhocail.", "Paste Large Text as File": "Greamaigh Téacs Mór mar Chomhad", @@ -1260,7 +1295,6 @@ "Pipe": "Píopa", "Pipeline deleted successfully": "Scriosta píblíne go rathúil", "Pipeline downloaded successfully": "Íoslódáilte píblíne", - "Pipelines": "Píblínte", "Pipelines are a plugin system with arbitrary code execution —": "Is córas breiseán é Pipelines a ligeann cód a rith go treallach —", "Pipelines Not Detected": "Níor aimsíodh píblínte", "Pipelines Valves": "Comhlaí Píblíne", @@ -1498,6 +1532,7 @@ "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.": "Socraíonn sé na stadanna le húsáid. Nuair a thagtar ar an bpatrún seo, stopfaidh an LLM ag giniúint téacs agus ag filleadh. Is féidir patrúin stad iolracha a shocrú trí pharaiméadair stadanna iolracha a shonrú i gcomhad samhail.", "Setting": "", "Settings": "Socruithe", + "Settings Permissions": "", "Settings saved successfully!": "Socruithe sábhálta go rathúil!", "Share": "Comhroinn", "Share Chat": "Comhroinn Comhrá", @@ -1541,6 +1576,7 @@ "Speech recognition error: {{error}}": "Earráid aitheantais cainte: {{error}}", "Speech-to-Text": "Urlabhra-go-Téacs", "Speech-to-Text Engine": "Inneall Cainte-go-Téacs", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "Tosaigh comhrá nua", "Start of the channel": "Tús an chainéil", "Start Tag": "Clib Tosaigh", @@ -1551,6 +1587,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "Céimeanna", "Stop": "Stad", + "Stop Download": "", "Stop Generating": "Stop a Ghiniúint", "Stop Sequence": "Stop Seicheamh", "Stream Chat Response": "Freagra Comhrá Sruth", @@ -1571,7 +1608,14 @@ "Support": "Tacaíocht", "Support this plugin:": "Tacaigh leis an mbreiseán seo:", "Supported MIME Types": "Cineálacha MIME a Tacaítear leo", + "Sync": "", + "Sync Complete!": "", "Sync directory": "Eolaire sioncronaithe", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "Córas", "System Instructions": "Treoracha Córas", "System Prompt": "Córas Leid", @@ -1616,6 +1660,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "Meáchan Chuardaigh Hibrideach BM25. 0 níos séimeantacha, 1 níos leicseach. Réamhshocrú 0.5", "The width in pixels to compress images to. Leave empty for no compression.": "An leithead i bpicteilíní le híomhánna a chomhbhrú. Fág folamh mura bhfuil aon chomhbhrú ann.", "Theme": "Téama", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "Ag smaoineamh...", "This action cannot be undone. Do you wish to continue?": "Ní féidir an gníomh seo a chur ar ais. Ar mhaith leat leanúint ar aghaidh?", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "Cruthaíodh an cainéal seo ar {{createdAt}}. Seo tús an chainéil {{channelName}}.", @@ -1730,6 +1775,7 @@ "Upload Pipeline": "Uaslódáil píblíne", "Upload Progress": "Dul Chun Cinn an Uaslódála", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Dul Chun Cinn Uaslódála: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", + "Uploaded files or images": "", "Uploading file...": "", "URL": "URL", "URL is required": "Tá URL ag teastáil", @@ -1747,6 +1793,7 @@ "User Groups": "Grúpaí Úsáideoirí", "User location successfully retrieved.": "Fuarthas suíomh an úsáideora go rathúil.", "User menu": "Roghchlár úsáideora", + "User ratings (thumbs up/down)": "", "User Webhooks": "Crúcaí Gréasáin Úsáideoir", "Username": "Ainm Úsáideora", "users": "", @@ -1796,15 +1843,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "Déanfaidh WebUI iarratais ar \"{{url}}/chat/completions\"", "What are you trying to achieve?": "Cad atá tú ag iarraidh a bhaint amach?", "What are you working on?": "Cad air a bhfuil tú ag obair?", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "Cad atá Nua i", "What's on your mind?": "", "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.": "Nuair a bheidh sé cumasaithe, freagróidh an tsamhail gach teachtaireacht comhrá i bhfíor-am, ag giniúint freagra a luaithe a sheolann an t-úsáideoir teachtaireacht. Tá an mód seo úsáideach le haghaidh feidhmchláir chomhrá beo, ach d'fhéadfadh tionchar a bheith aige ar fheidhmíocht ar chrua-earraí níos moille.", "wherever you are": "aon áit a bhfuil tú", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "Cibé acu an ndéanfar an t-aschur a roinnt le leathanaigh nó nach ndéanfar. Beidh riail chothrománach agus uimhir leathanaigh ag scartha ó gach leathanach. Is é Bréag an rogha réamhshocraithe.", "Whisper (Local)": "Whisper (Áitiúil)", + "Who can share to this group": "", "Why?": "Cén fáth?", "Widescreen Mode": "Mód Leathanscáileán", "Width": "Leithead", + "Wikipedia": "", "Won": "Bhuaigh", "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.": "Oibríonn sé le barr-k. Beidh téacs níos éagsúla mar thoradh ar luach níos airde (m.sh., 0.95), agus ginfidh luach níos ísle (m.sh., 0.5) téacs níos dírithe agus níos coimeádaí.", "Workspace": "Spás oibre", @@ -1816,6 +1867,8 @@ "Yacy Instance URL": "URL Cás Yacy", "Yacy Password": "Pasfhocal Yacy", "Yacy Username": "Ainm úsáideora Yacy", + "Yahoo": "", + "Yandex": "", "Yesterday": "Inné", "Yesterday at {{LOCALIZED_TIME}}": "Inné ag {{LOCALIZED_TIME}}", "You": "Tú", @@ -1823,6 +1876,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Ní féidir leat comhrá a dhéanamh ach le comhad {{maxCount}} ar a mhéad ag an am.", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Is féidir leat do chuid idirghníomhaíochtaí le LLManna a phearsantú ach cuimhní cinn a chur leis tríd an gcnaipe 'Bainistigh' thíos, rud a fhágann go mbeidh siad níos cabhrach agus níos oiriúnaí duit.", "You cannot upload an empty file.": "Ní féidir leat comhad folamh a uaslódáil.", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "Níl cead agat teachtaireachtaí a sheoladh sa chainéal seo.", "You do not have permission to send messages in this thread.": "Níl cead agat teachtaireachtaí a sheoladh sa snáithe seo.", "You do not have permission to upload files to this knowledge base.": "", @@ -1834,6 +1890,8 @@ "Your Account": "Do Chuntas", "Your account status is currently pending activation.": "Tá stádas do chuntais ar feitheamh faoi ghníomhachtú.", "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.": "Rachaidh do ranníocaíocht iomlán go díreach chuig an bhforbróir breiseán; Ní ghlacann Open WebUI aon chéatadán. Mar sin féin, d'fhéadfadh a tháillí féin a bheith ag an ardán maoinithe roghnaithe.", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "Youtube", "Youtube Language": "Teanga Youtube", "Youtube Proxy URL": "URL Seachfhreastalaí YouTube" diff --git a/src/lib/i18n/locales/it-IT/translation.json b/src/lib/i18n/locales/it-IT/translation.json index 4da276dd8..2e759b3bf 100644 --- a/src/lib/i18n/locales/it-IT/translation.json +++ b/src/lib/i18n/locales/it-IT/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "La modifica di queste impostazioni applicherà le modifiche universalmente a tutti gli utenti.", "admin": "amministratore", "Admin": "Amministratore", + "Admin Contact Email": "", "Admin Panel": "Pannello di amministrazione", "Admin Settings": "Impostazioni amministratore", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Gli amministratori hanno accesso a tutti gli strumenti in qualsiasi momento; gli utenti necessitano di strumenti assegnati per ogni modello nello spazio di lavoro.", @@ -101,7 +102,6 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "Consenti caricamento file", - "Allow Group Sharing": "", "Allow Multiple Models in Chat": "Consenti più modelli in chat", "Allow non-local voices": "Consenti voci non locali", "Allow Rate Response": "", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "e {{COUNT}} altro", "and create a new shared link.": "e crea un nuovo link condiviso.", "Android": "Android", + "Anyone": "", "API Base URL": "URL base per API", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "", "API Key": "Chiave API", @@ -175,6 +176,7 @@ "Authenticate": "Autentica", "Authentication": "Autenticazione", "Auto": "Automatico", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "Copia automatica della risposta negli appunti", "Auto-playback response": "Riproduzione automatica della risposta", "Autocomplete Generation": "Generazione dell'autocompletamento", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "Stringa autenticazione AUTOMATIC1111 Api", "AUTOMATIC1111 Base URL": "URL base AUTOMATIC1111", "AUTOMATIC1111 Base URL is required.": "L'URL base AUTOMATIC1111 è obbligatorio.", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "Elenco disponibile", "Available Tools": "Strumenti disponibili", "available users": "utenti disponibili", @@ -201,6 +204,7 @@ "before": "prima", "Being lazy": "Faccio il pigro", "Beta": "Beta", + "Bing": "", "Bing Search V7 Endpoint": "Endpoint di Bing Search V7", "Bing Search V7 Subscription Key": "Chiave di Iscrizione Bing Search V7", "Bio": "", @@ -209,7 +213,9 @@ "Bocha Search API Key": "Chiave API di Bocha Search", "Bold": "", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Potenziare o penalizzare token specifici per risposte vincolate. I valori di bias saranno limitati tra -100 e 100 (incluso). (Predefinito: nessuno)", + "Brave": "", "Brave Search API Key": "Chiave API di ricerca Brave", + "Builtin Tools": "", "Bullet List": "", "Button ID": "", "Button Label": "", @@ -256,8 +262,10 @@ "Check for updates": "Controlla aggiornamenti", "Checking for updates...": "Controllo aggiornamenti...", "Choose a model before saving...": "Scegli un modello prima di salvare...", + "Chunk Min Size Target": "", "Chunk Overlap": "Sovrapposizione chunk", "Chunk Size": "Dimensione chunk", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "Cifrari", "Citation": "Citazione", "Citations": "Citazioni", @@ -293,7 +301,6 @@ "Code Block": "", "Code Editor": "", "Code execution": "Esecuzione codice", - "Code Execution": "Esecuzione codice", "Code Execution Engine": "Motore di esecuzione codice", "Code Execution Timeout": "Timeout esecuzione codice", "Code formatted successfully": "Codice formattato con successo", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "Contatta l'amministratore per l'accesso al servizio WebUI", "Content": "Contenuto", "Content Extraction Engine": "Motore di estrazione contenuti", + "Content lengths (character counts only)": "", "Continue Response": "Continua risposta", "Continue with {{provider}}": "Continua con {{provider}}", "Continue with Email": "Continua con email", @@ -393,6 +401,7 @@ "Database": "Database", "Datalab Marker API": "Datalab Marker API", "DD/MM/YYYY": "", + "DDGS Backend": "", "December": "Dicembre", "Decrease UI Scale": "", "Deepgram": "", @@ -474,6 +483,7 @@ "Dive into knowledge": "Immergiti nella conoscenza", "Do not install functions from sources you do not fully trust.": "Non installare funzioni da fonti di cui non ti fidi completamente.", "Do not install tools from sources you do not fully trust.": "Non installare strumenti da fonti di cui non ti fidi completamente.", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "Docling", "Docling Parameters": "", "Docling Server URL required.": "L'URL del server Docling è obbligatoria.", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "", "Document Intelligence Model": "", "Documentation": "Documentazione", - "Documents": "Documenti", "does not make any external connections, and your data stays securely on your locally hosted server.": "non effettua connessioni esterne e i tuoi dati rimangono al sicuro sul tuo server ospitato localmente.", "Domain Filter List": "Elenco filtri dominio", "don't fetch random pipelines from sources you don't trust.": "Non recuperare pipeline casuali da fonti non affidabili.", @@ -493,11 +502,14 @@ "Done": "Fatto", "Download": "Scarica", "Download & Delete": "Scarica e elimina", + "Download as JSON": "", "Download as SVG": "Scarica come SVG", "Download canceled": "Scaricamento annullato", "Download Database": "Scarica database", + "Downloading stats...": "", "Draw": "Disegna", "Drop any files here to upload": "Rilascia qui i file per caricarli", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "ad esempio '30s','10m'. Le unità di tempo valide sono 's', 'm', 'h'.", "e.g. \"json\" or a JSON schema": "ad esempio \"json\" o uno schema JSON", "e.g. 60": "ad esempio 60", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "Inserisci Chiave API di Bocha Search", "Enter Brave Search API Key": "Inserisci Chiave API di Brave Search", "Enter certificate path": "Inserisci il percorso del certificato", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "Inserisci Sovrapposizione Chunk", "Enter Chunk Size": "Inserisci Dimensione Chunk", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Inserisci coppie \"token:valore_bias\" separate da virgole (esempio: 5432:100, 413:-100)", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "Inserisci URL di Ricerca Web Esterna", "Enter Firecrawl API Base URL": "Inserisci l'URL base dell'API Firecrawl", "Enter Firecrawl API Key": "Inserisci Chiave API Firecrawl", + "Enter Firecrawl Timeout": "", "Enter folder name": "", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "Inserisci URL Grezzo di Github", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "", "Enter ID": "", "Enter Image Size (e.g. 512x512)": "Inserisci Dimensione Immagine (ad esempio 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "Inserisci Chiave API Jina", "Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter Jupyter Password": "Inserisci Password Jupyter", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "Inserisci Chiave API Kagi Search", "Enter Key Behavior": "Comportamento Tasto Invio", "Enter language codes": "Inserisci i codici lingua", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "", "Enter Mistral API Key": "Inserisci Chiave API Mistral", "Enter Model ID": "Inserisci ID Modello", @@ -736,6 +753,7 @@ "Failed to generate title": "", "Failed to import models": "", "Failed to load chat preview": "", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "Impossibile caricare il contenuto del file.", "Failed to move chat": "", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "Caratteristiche", "Features Permissions": "Permessi delle funzionalità", "February": "Febbraio", + "Feedback": "", "Feedback deleted successfully": "", "Feedback Details": "Dettagli feedback", "Feedback History": "Storico feedback", - "Feedbacks": "Feedback", "Feel free to add specific details": "Sentiti libero/a di aggiungere dettagli specifici", "Female": "", "File": "File", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Rilevato spoofing delle impronte digitali: impossibile utilizzare le iniziali come avatar. Ripristino all'immagine del profilo predefinita.", "Firecrawl API Base URL": "URL base dell'API Firecrawl", "Firecrawl API Key": "Chiave API Firecrawl", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "", "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "Cartella rimossa con successo", + "Folder Max File Count": "", "Folder Name": "", "Folder name cannot be empty.": "Il nome della cartella non può essere vuoto.", "Folder name updated successfully": "Nome cartella aggiornato con successo", @@ -826,7 +846,6 @@ "General": "Generale", "Generate": "Genera", "Generate an image": "Genera un'immagine", - "Generate Image": "Genera Immagine", "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Generazione query di ricerca", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "Inizia con {{WEBUI_NAME}}", "Global": "Globale", "Good Response": "Buona Risposta", + "Google": "", "Google Drive": "Google Drive", "Google PSE API Key": "Chiave API PSE di Google", "Google PSE Engine Id": "ID motore PSE di Google", "Gravatar": "", "Grid": "", + "Grokipedia": "", "Group": "Gruppo", "Group Channel": "", "Group created successfully": "Gruppo creato con successo", @@ -895,7 +916,6 @@ "Image Prompt Generation": "Generazione Prompt Immagine", "Image Prompt Generation Prompt": "Prompt per la Generazione di Prompt Immagine", "Image Size": "", - "Images": "Immagini", "Import": "Importa", "Import Chats": "Importa Chat", "Import Config from JSON File": "Importa Configurazione da File JSON", @@ -927,6 +947,7 @@ "Integration": "Integrazione", "Integrations": "", "Interface": "Interfaccia", + "Interface Settings Access": "", "Invalid file content": "Contenuto del file non valido", "Invalid file format.": "Formato file non valido.", "Invalid JSON file": "File JSOn non valido", @@ -940,6 +961,7 @@ "is typing...": "sta digitando...", "Italic": "", "January": "Gennaio", + "Jina API Base URL": "", "Jina API Key": "Chiave API Jina", "join our Discord for help.": "unisciti al nostro Discord per ricevere aiuto.", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "Lascia vuoto per includere tutti i modelli dall'endpoint \"{{url}}/api/tags\"", "Leave empty to include all models from \"{{url}}/models\" endpoint": "Lascia vuoto per includere tutti i modelli dall'endpoint \"{{url}}/models\"", "Leave empty to include all models or select specific models": "Lascia vuoto per includere tutti i modelli o seleziona modelli specifici", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "", "Leave empty to use the default prompt, or enter a custom prompt": "Lascia vuoto per utilizzare il prompt predefinito o inserisci un prompt personalizzato", "Leave model field empty to use the default model.": "Lascia vuoto il campo modello per utilizzare il modello predefinito.", @@ -1029,10 +1052,12 @@ "Manage your account information.": "", "March": "Marzo", "Markdown": "", - "Markdown (Header)": "", + "Markdown Header Text Splitter": "", "Max Speakers": "Numero Massimo di Parlanti", "Max Upload Count": "Conteggio massimo di caricamenti", "Max Upload Size": "Dimensione massima di caricamento", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "È possibile scaricare un massimo di 3 modelli contemporaneamente. Riprova più tardi.", "May": "Maggio", "MBR": "", @@ -1042,6 +1067,7 @@ "Member removed successfully": "", "Members": "", "Members added successfully": "", + "Memories": "", "Memories accessible by LLMs will be shown here.": "I memori accessibili ai LLM saranno mostrati qui.", "Memory": "Memoria", "Memory added successfully": "Memoria aggiunta con successo", @@ -1051,6 +1077,7 @@ "Merge Responses": "Unisci Risposte", "Merged Response": "Risposta Unita", "Message": "", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "La valutazione dei messaggi deve essere abilitata per utilizzare questa funzionalità", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "I messaggi inviati dopo la creazione del link non verranno condivisi. Gli utenti con l'URL saranno in grado di visualizzare la chat condivisa.", "Microsoft OneDrive": "Microsoft OneDrive", @@ -1083,9 +1110,11 @@ "Model Name": "Nome modello", "Model name already exists, please choose a different one": "", "Model Name is required.": "", + "Model names and usage frequency": "", "Model not selected": "Modello non selezionato", "Model Params": "Parametri del modello", "Model Permissions": "Permessi del modello", + "Model responses or outputs": "", "Model unloaded successfully": "Scaricamento dalla memoria del modello riuscito", "Model updated successfully": "Modello aggiornato con successo", "Model(s) do not support file upload": "I/l modello/i non supporta il caricamento file", @@ -1096,6 +1125,7 @@ "Models imported successfully": "", "Models Public Sharing": "Conoscenza condivisione pubblica", "Models Sharing": "", + "Mojeek": "", "Mojeek Search API Key": "Chiave API di Mojeek Search", "More": "Altro", "More Concise": "", @@ -1129,7 +1159,7 @@ "No conversation to save": "", "No distance available": "Nessuna distanza disponibile", "No expiration can pose security risks.": "", - "No feedbacks found": "Nessun feedback trovato", + "No feedback found": "", "No file selected": "Nessun file selezionato", "No files in this knowledge base.": "", "No functions found": "", @@ -1144,6 +1174,7 @@ "No models selected": "Nessun modello selezionato", "No Notes": "Nessuna nota", "No notes found": "", + "No one": "", "No pinned messages": "", "No prompts found": "", "No results": "Nessun risultato trovato", @@ -1195,6 +1226,7 @@ "Only invited users can access": "", "Only markdown files are allowed": "Sono consentiti solo file markdown", "Only select users and groups with permission can access": "Solo gli utenti e i gruppi selezionati con autorizzazione possono accedere", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Ops! Sembra che l'URL non sia valido. Si prega di ricontrollare e riprovare.", "Oops! There are files still uploading. Please wait for the upload to complete.": "Ops! Ci sono file ancora in fase di caricamento. Si prega di attendere il completamento del caricamento.", "Oops! There was an error in the previous response.": "Ops! Si è verificato un errore nella risposta precedente.", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI può utilizzare tool forniti da qualsiasi server OpenAPI.", "Open WebUI uses faster-whisper internally.": "Open WebUI utilizza faster-whisper internamente.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI utilizza le incorporazioni vocali di SpeechT5 e CMU Arctic.", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "La versione di Open WebUI (v{{OPEN_WEBUI_VERSION}}) è inferiore alla versione richiesta (v{{REQUIRED_VERSION}})", "OpenAI": "OpenAI", "OpenAI API": "API OpenAI", @@ -1235,6 +1268,8 @@ "page": "pagina", "Paginate": "Paginazione", "Parameters": "Parametri", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "Password", "Passwords do not match.": "", "Paste Large Text as File": "Incolla Molto Testo come File", @@ -1260,7 +1295,6 @@ "Pipe": "", "Pipeline deleted successfully": "Pipeline rimossa con successo", "Pipeline downloaded successfully": "Pipeline scaricata con successo", - "Pipelines": "Pipeline", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines è un sistema di plugin con esecuzione arbitraria di codice —", "Pipelines Not Detected": "Pipeline Non Rilevate", "Pipelines Valves": "Valvole per pipelines", @@ -1499,6 +1533,7 @@ "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.": "Imposta le sequenze di arresto da utilizzare. Quando questo modello viene incontrato, l'LLM smetterà di generare testo e restituirà. Più modelli di arresto possono essere impostati specificando più parametri di arresto separati in un file modello.", "Setting": "", "Settings": "Impostazioni", + "Settings Permissions": "", "Settings saved successfully!": "Impostazioni salvate con successo!", "Share": "Condividi", "Share Chat": "Condividi chat", @@ -1542,6 +1577,7 @@ "Speech recognition error: {{error}}": "Errore di riconoscimento vocale: {{error}}", "Speech-to-Text": "", "Speech-to-Text Engine": "Motore da voce a testo", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "", "Start of the channel": "Inizio del canale", "Start Tag": "", @@ -1552,6 +1588,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Arresta", + "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Sequenza di arresto", "Stream Chat Response": "Stream risposta chat", @@ -1572,7 +1609,14 @@ "Support": "Supporto", "Support this plugin:": "Supporta questo plugin:", "Supported MIME Types": "", + "Sync": "", + "Sync Complete!": "", "Sync directory": "Sincronizza directory", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "Sistema", "System Instructions": "Istruzioni di sistema", "System Prompt": "Prompt di sistema", @@ -1617,6 +1661,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "", "The width in pixels to compress images to. Leave empty for no compression.": "La larghezza in pixel per comprimere le immagini. Lascia vuoto per nessuna compressione.", "Theme": "Tema", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "Sto pensando...", "This action cannot be undone. Do you wish to continue?": "Questa azione non può essere annullata. Vuoi continuare?", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "Questo canale è stato creato il {{createdAt}}. Questo è l'inizio del canale {{channelName}}.", @@ -1731,6 +1776,7 @@ "Upload Pipeline": "Carica Pipeline", "Upload Progress": "Avanzamento Caricamento", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploaded files or images": "", "Uploading file...": "", "URL": "URL", "URL is required": "", @@ -1748,6 +1794,7 @@ "User Groups": "", "User location successfully retrieved.": "Posizione utente recuperata con successo.", "User menu": "", + "User ratings (thumbs up/down)": "", "User Webhooks": "Webhook Utente", "Username": "Nome Utente", "users": "", @@ -1797,15 +1844,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI farà richieste a \"{{url}}/chat/completions\"", "What are you trying to achieve?": "Cosa stai cercando di ottenere?", "What are you working on?": "Su cosa stai lavorando?", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "Novità in", "What's on your mind?": "", "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.": "Quando abilitato, il modello risponderà a ciascun messaggio della chat in tempo reale, generando una risposta non appena l'utente invia un messaggio. Questa modalità è utile per le applicazioni di chat dal vivo, ma potrebbe influire sulle prestazioni su hardware più lento.", "wherever you are": "Ovunque tu sia", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "Specifica se paginare l'output. Ogni pagina sarà separata da una riga orizzontale e dal numero di pagina. Predefinito è Falso.", "Whisper (Local)": "Whisper (Locale)", + "Who can share to this group": "", "Why?": "Perché?", "Widescreen Mode": "Modalità widescreen", "Width": "", + "Wikipedia": "", "Won": "Vinto", "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.": "Lavora insieme a top-k. Un valore più alto (ad esempio, 0,95) porterà a un testo più vario, mentre un valore più basso (ad esempio, 0,5) genererà un testo più focalizzato e conservativo.", "Workspace": "Spazio di lavoro", @@ -1817,6 +1868,8 @@ "Yacy Instance URL": "URL dell'istanza Yacy", "Yacy Password": "Password Yacy", "Yacy Username": "Nome utente Yacy", + "Yahoo": "", + "Yandex": "", "Yesterday": "Ieri", "Yesterday at {{LOCALIZED_TIME}}": "", "You": "Tu", @@ -1824,6 +1877,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Puoi chattare solo con un massimo di {{maxCount}} file alla volta.", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Puoi personalizzare le tue interazioni con LLM aggiungendo memorie tramite il pulsante 'Gestisci' qui sotto, rendendole più utili e su misura per te.", "You cannot upload an empty file.": "Non puoi caricare un file vuoto.", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this thread.": "", "You do not have permission to upload files to this knowledge base.": "", @@ -1835,6 +1891,8 @@ "Your Account": "", "Your account status is currently pending activation.": "Lo stato del tuo account è attualmente in attesa di attivazione.", "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.": "Il tuo intero contributo andrà direttamente allo sviluppatore del plugin; Open WebUI non prende alcuna percentuale. Tuttavia, la piattaforma di finanziamento scelta potrebbe avere le proprie commissioni.", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "Youtube", "Youtube Language": "Lingua Youtube", "Youtube Proxy URL": "URL proxy Youtube" diff --git a/src/lib/i18n/locales/ja-JP/translation.json b/src/lib/i18n/locales/ja-JP/translation.json index c7bac7568..fd7f62b01 100644 --- a/src/lib/i18n/locales/ja-JP/translation.json +++ b/src/lib/i18n/locales/ja-JP/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "これらの設定を変更すると、すべてのユーザーに変更が適用されます。", "admin": "管理者", "Admin": "管理者", + "Admin Contact Email": "", "Admin Panel": "管理者パネル", "Admin Settings": "管理者設定", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "管理者は全てのツールにアクセスできます。ユーザーからはワークスペースのモデルごとに割り当てられたツールのみ使用可能です。", @@ -101,7 +102,6 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "ファイルのアップロードを許可", - "Allow Group Sharing": "", "Allow Multiple Models in Chat": "チャットで複数のモデルを許可", "Allow non-local voices": "ローカル以外のボイスを許可", "Allow Rate Response": "", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "および{{COUNT}}件", "and create a new shared link.": "そして、新しい共有リンクを作成します。", "Android": "", + "Anyone": "", "API Base URL": "API ベース URL", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "Datalab MarkerサービスのAPIベースURL。デフォルトは https://www.datalab.to/api/v1/marker です", "API Key": "API キー", @@ -175,6 +176,7 @@ "Authenticate": "認証", "Authentication": "認証", "Auto": "自動", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "クリップボードへの応答の自動コピー", "Auto-playback response": "応答の自動再生", "Autocomplete Generation": "自動補完の生成", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "AUTOMATIC1111のAuthを入力", "AUTOMATIC1111 Base URL": "AUTOMATIC1111 ベース URL", "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 ベース URL が必要です。", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "利用可能リスト", "Available Tools": "利用可能ツール", "available users": "利用可能なユーザー", @@ -201,6 +204,7 @@ "before": "以前", "Being lazy": "怠惰な", "Beta": "ベータ", + "Bing": "", "Bing Search V7 Endpoint": "Bing Search V7 エンドポイント", "Bing Search V7 Subscription Key": "Bing Search V7 サブスクリプションキー", "Bio": "自己紹介", @@ -209,7 +213,9 @@ "Bocha Search API Key": "Bocha Search APIキー", "Bold": "太字", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "特定のトークンの強調またはペナルティを適用します。バイアス値は-100から100(包括的)にクランプされます。(デフォルト:なし)", + "Brave": "", "Brave Search API Key": "Brave Search APIキー", + "Builtin Tools": "", "Bullet List": "箇条書きリスト", "Button ID": "ボタンID", "Button Label": "ボタンラベル", @@ -256,8 +262,10 @@ "Check for updates": "アップデートを確認", "Checking for updates...": "アップデートを確認しています...", "Choose a model before saving...": "保存する前にモデルを選択してください...", + "Chunk Min Size Target": "", "Chunk Overlap": "チャンクのオーバーラップ", "Chunk Size": "チャンクサイズ", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "暗号化方式", "Citation": "引用", "Citations": "引用", @@ -293,7 +301,6 @@ "Code Block": "コードブロック", "Code Editor": "", "Code execution": "コードの実行", - "Code Execution": "コードの実行", "Code Execution Engine": "コードの実行エンジン", "Code Execution Timeout": "コードの実行タイムアウト", "Code formatted successfully": "コードフォーマットに成功しました", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "WEBUIへのアクセスについて管理者に問い合わせ下さい。", "Content": "コンテンツ", "Content Extraction Engine": "コンテンツ抽出エンジン", + "Content lengths (character counts only)": "", "Continue Response": "続きの応答", "Continue with {{provider}}": "{{provider}}で続ける", "Continue with Email": "メールで続ける", @@ -393,6 +401,7 @@ "Database": "データベース", "Datalab Marker API": "", "DD/MM/YYYY": "YYYY/MM/DD", + "DDGS Backend": "", "December": "12月", "Decrease UI Scale": "", "Deepgram": "", @@ -474,6 +483,7 @@ "Dive into knowledge": "知識に飛び込む", "Do not install functions from sources you do not fully trust.": "信頼できないソースからFunctionをインストールしないでください。", "Do not install tools from sources you do not fully trust.": "信頼できないソースからツールをインストールしないでください。", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "", "Docling Parameters": "", "Docling Server URL required.": "DoclingサーバーURLが必要です。", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "", "Document Intelligence Model": "", "Documentation": "ドキュメント", - "Documents": "ドキュメント", "does not make any external connections, and your data stays securely on your locally hosted server.": "は外部接続を行わず、データはローカルでホストされているサーバー上に安全に保持されます。", "Domain Filter List": "ドメインフィルターリスト", "don't fetch random pipelines from sources you don't trust.": "信頼できないソースからやみくもにパイプラインを取得しないでください。", @@ -493,11 +502,14 @@ "Done": "完了", "Download": "ダウンロード", "Download & Delete": "ダウンロードして削除", + "Download as JSON": "", "Download as SVG": "SVGとしてダウンロード", "Download canceled": "ダウンロードをキャンセルしました", "Download Database": "データベースをダウンロード", + "Downloading stats...": "", "Draw": "引き分け", "Drop any files here to upload": "ここにファイルをドロップしてアップロード", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "例: '30s'、'10m'。有効な時間単位は 's'、'm'、'h' です。", "e.g. \"json\" or a JSON schema": "例: \"json\" または JSON スキーマ", "e.g. 60": "", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "Bocha Search APIキーを入力", "Enter Brave Search API Key": "Brave Search APIキーの入力", "Enter certificate path": "証明書パスを入力", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "チャンクオーバーラップを入力", "Enter Chunk Size": "チャンクサイズを入力", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "カンマ区切りの \"token:bias_value\" ペアを入力 (例: 5432:100, 413:-100)", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "外部Web検索のURLを入力", "Enter Firecrawl API Base URL": "Firecrawl API Base URLを入力", "Enter Firecrawl API Key": "Firecrawl APIキーを入力", + "Enter Firecrawl Timeout": "", "Enter folder name": "フォルダ名を入力", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "Github Raw URLを入力", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "16進数で色を入力", "Enter ID": "IDを入力", "Enter Image Size (e.g. 512x512)": "画像サイズを入力 (例: 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "Jina APIキーを入力", "Enter JSON config (e.g., {\"disable_links\": true})": "JSON 設定を入力 (例: {\"disable_links\": true})", "Enter Jupyter Password": "Jupyterパスワードを入力", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "Kagi Search APIキーを入力", "Enter Key Behavior": "Enter Keyの動作", "Enter language codes": "言語コードを入力", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "", "Enter Mistral API Key": "Mistral APIキーを入力", "Enter Model ID": "モデルIDを入力", @@ -736,6 +753,7 @@ "Failed to generate title": "タイトルの生成に失敗しました。", "Failed to import models": "", "Failed to load chat preview": "チャットプレビューを読み込めませんでした。", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "ファイルの内容を読み込めませんでした。", "Failed to move chat": "チャットの移動に失敗しました。", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "機能", "Features Permissions": "機能の許可", "February": "2月", + "Feedback": "", "Feedback deleted successfully": "", "Feedback Details": "フィードバックの詳細", "Feedback History": "フィードバック履歴", - "Feedbacks": "フィードバック", "Feel free to add specific details": "詳細を追加できます", "Female": "女性", "File": "ファイル", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "フィンガープリントのスプーフィングが検出されました: イニシャルをアバターとして使用できません。デフォルトのプロファイル画像が使用されます。", "Firecrawl API Base URL": "Firecrawl API ベースURL", "Firecrawl API Key": "Firecrawl APIキー", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "フローティング クイックアクション", "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "フォルダー削除が成功しました。", + "Folder Max File Count": "", "Folder Name": "フォルダ名", "Folder name cannot be empty.": "フォルダー名を入力してください。", "Folder name updated successfully": "フォルダー名の変更に成功しました。", @@ -826,7 +846,6 @@ "General": "一般", "Generate": "生成", "Generate an image": "画像を生成", - "Generate Image": "画像生成", "Generate Message Pair": "", "Generated Image": "", "Generating search query": "検索クエリの生成", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "{{WEBUI_NAME}}をはじめる", "Global": "グローバル", "Good Response": "良い応答", + "Google": "", "Google Drive": "Google ドライブ", "Google PSE API Key": "Google PSE APIキー", "Google PSE Engine Id": "Google PSE エンジン ID", "Gravatar": "", "Grid": "", + "Grokipedia": "", "Group": "グループ", "Group Channel": "", "Group created successfully": "グループの作成が成功しました。", @@ -895,7 +916,6 @@ "Image Prompt Generation": "画像プロンプト生成", "Image Prompt Generation Prompt": "画像プロンプト生成プロンプト", "Image Size": "", - "Images": "画像", "Import": "インポート", "Import Chats": "チャットをインポート", "Import Config from JSON File": "設定をJSONファイルからインポート", @@ -927,6 +947,7 @@ "Integration": "連携", "Integrations": "", "Interface": "インターフェース", + "Interface Settings Access": "", "Invalid file content": "無効なファイル内容", "Invalid file format.": "無効なファイル形式", "Invalid JSON file": "無効なJSONファイル", @@ -940,6 +961,7 @@ "is typing...": "入力中...", "Italic": "斜体", "January": "1月", + "Jina API Base URL": "", "Jina API Key": "Jina APIキー", "join our Discord for help.": "ヘルプについては、Discord に参加してください。", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "空欄にすると \"{{url}}/api/tags\" エンドポイントからすべてのモデルを読み込みます", "Leave empty to include all models from \"{{url}}/models\" endpoint": "空欄にすると \"{{url}}/models\" エンドポイントからすべてのモデルを読み込みます", "Leave empty to include all models or select specific models": "モデルを選択。空欄にするとすべてのモデルを読み込みます", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "", "Leave empty to use the default prompt, or enter a custom prompt": "カスタムプロンプトを入力。空欄ならデフォルトプロンプト", "Leave model field empty to use the default model.": "モデル欄を空欄にしてデフォルトモデルを使用", @@ -1029,10 +1052,12 @@ "Manage your account information.": "あなたのアカウント情報を管理", "March": "3月", "Markdown": "マークダウン", - "Markdown (Header)": "マークダウン (見出し)", + "Markdown Header Text Splitter": "", "Max Speakers": "最大話者数", "Max Upload Count": "最大アップロード数", "Max Upload Size": "最大アップロードサイズ", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "同時にダウンロードできるモデルは最大 3 つです。後でもう一度お試しください。", "May": "5月", "MBR": "", @@ -1042,6 +1067,7 @@ "Member removed successfully": "", "Members": "", "Members added successfully": "", + "Memories": "", "Memories accessible by LLMs will be shown here.": "LLM がアクセスできるメモリはここに表示されます。", "Memory": "メモリ", "Memory added successfully": "メモリに追加されました。", @@ -1051,6 +1077,7 @@ "Merge Responses": "応答を統合", "Merged Response": "統合された応答", "Message": "", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "この機能を使用するには、メッセージ評価を有効にする必要があります。", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "リンクを作成した後で送信したメッセージは共有されません。URL を持つユーザーは共有チャットを閲覧できます。", "Microsoft OneDrive": "Microsoft OneDrive", @@ -1083,9 +1110,11 @@ "Model Name": "モデル名", "Model name already exists, please choose a different one": "モデル名はすでに存在します。他の名前を入力してください。", "Model Name is required.": "モデル名は必須です。", + "Model names and usage frequency": "", "Model not selected": "モデルが選択されていません", "Model Params": "モデルパラメータ", "Model Permissions": "モデルの許可", + "Model responses or outputs": "", "Model unloaded successfully": "モデルのアンロードが成功しました", "Model updated successfully": "モデルが正常に更新されました", "Model(s) do not support file upload": "モデルはファイルアップロードをサポートしていません", @@ -1096,6 +1125,7 @@ "Models imported successfully": "", "Models Public Sharing": "モデルの公開共有", "Models Sharing": "", + "Mojeek": "", "Mojeek Search API Key": "Mojeek Search APIキー", "More": "もっと見る", "More Concise": "より簡潔に", @@ -1129,7 +1159,7 @@ "No conversation to save": "保存する会話がありません。", "No distance available": "距離が利用できません", "No expiration can pose security risks.": "", - "No feedbacks found": "フィードバックが見つかりません", + "No feedback found": "", "No file selected": "ファイルが選択されていません", "No files in this knowledge base.": "", "No functions found": "", @@ -1144,6 +1174,7 @@ "No models selected": "モデルが選択されていません", "No Notes": "ノートがありません", "No notes found": "", + "No one": "", "No pinned messages": "", "No prompts found": "", "No results": "結果が見つかりません", @@ -1195,6 +1226,7 @@ "Only invited users can access": "", "Only markdown files are allowed": "マークダウンファイルのみが許可されています", "Only select users and groups with permission can access": "許可されたユーザーとグループのみがアクセスできます", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "おっと! URL が無効なようです。もう一度確認してやり直してください。", "Oops! There are files still uploading. Please wait for the upload to complete.": "おっと! アップロードが完了するまで待ってください。", "Oops! There was an error in the previous response.": "おっと! 前の応答にエラーがありました。", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "OpenWebUI は任意のOpenAPI サーバーが提供するツールを使用できます。", "Open WebUI uses faster-whisper internally.": "OpenWebUI は内部でfaster-whisperを使用します。", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "OpenWebUI は SpeechT5とCMU Arctic スピーカー埋め込みを使用します。", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "OpenWebUI のバージョン (v{{OPEN_WEBUI_VERSION}}) は要求されたバージョン (v{{REQUIRED_VERSION}}) より低いです。", "OpenAI": "OpenAI", "OpenAI API": "OpenAI API", @@ -1235,6 +1268,8 @@ "page": "ページ", "Paginate": "ページ分け", "Parameters": "パラメータ", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "パスワード", "Passwords do not match.": "パスワードが一致しません。", "Paste Large Text as File": "大きなテキストをファイルとして貼り付ける", @@ -1260,7 +1295,6 @@ "Pipe": "パイプ", "Pipeline deleted successfully": "パイプラインが正常に削除されました", "Pipeline downloaded successfully": "パイプラインが正常にダウンロードされました", - "Pipelines": "パイプライン", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines は任意のコード実行が可能なプラグインシステムです —", "Pipelines Not Detected": "パイプラインは検出されませんでした", "Pipelines Valves": "パイプラインのバルブ", @@ -1497,6 +1531,7 @@ "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.": "停止シーケンスを設定します。このパターンに達するとLLMはテキスト生成を停止し、結果を返します。複数の停止パターンは、モデルファイル内で複数のstopパラメータを指定することで設定可能です。", "Setting": "", "Settings": "設定", + "Settings Permissions": "", "Settings saved successfully!": "設定が正常に保存されました!", "Share": "共有", "Share Chat": "チャットを共有", @@ -1540,6 +1575,7 @@ "Speech recognition error: {{error}}": "音声認識エラー: {{error}}", "Speech-to-Text": "音声テキスト変換", "Speech-to-Text Engine": "音声テキスト変換エンジン", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "", "Start of the channel": "チャンネルの開始", "Start Tag": "", @@ -1550,6 +1586,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "停止", + "Stop Download": "", "Stop Generating": "", "Stop Sequence": "ストップシーケンス", "Stream Chat Response": "チャットレスポンスのストリーム", @@ -1570,7 +1607,14 @@ "Support": "サポート", "Support this plugin:": "このプラグインを支援する:", "Supported MIME Types": "対応するMIMEタイプ", + "Sync": "", + "Sync Complete!": "", "Sync directory": "ディレクトリを同期", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "システム", "System Instructions": "システムインストラクション", "System Prompt": "システムプロンプト", @@ -1615,6 +1659,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "", "The width in pixels to compress images to. Leave empty for no compression.": "画像の圧縮後のピクセル単位での幅。空欄で圧縮を無効化します", "Theme": "テーマ", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "思考中...", "This action cannot be undone. Do you wish to continue?": "このアクションは取り消し不可です。続けますか?", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "このチャンネルは{{createdAt}}に作成されました。これは{{channelName}}チャンネルの始まりです。", @@ -1729,6 +1774,7 @@ "Upload Pipeline": "パイプラインをアップロード", "Upload Progress": "アップロードの進行状況", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "アップロード状況: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", + "Uploaded files or images": "", "Uploading file...": "", "URL": "", "URL is required": "URLは必須です", @@ -1746,6 +1792,7 @@ "User Groups": "ユーザーグループ", "User location successfully retrieved.": "ユーザーの位置情報が正常に取得されました。", "User menu": "ユーザーメニュー", + "User ratings (thumbs up/down)": "", "User Webhooks": "ユーザWebhook", "Username": "ユーザー名", "users": "", @@ -1795,15 +1842,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUIは\"{{url}}/chat/completions\"にリクエストを行います", "What are you trying to achieve?": "何を達成したいですか?", "What are you working on?": "何に取り組んでいますか?", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "新機能", "What's on your mind?": "", "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.": "有効にすると、ユーザのメッセージ送信と同時にリアルタイムで応答を生成します。ライブチャット用途に適しますが、性能の低い環境では動作が重くなる可能性があります。", "wherever you are": "どこにいても", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "出力をページ分けするかどうか。各ページは水平線とページ番号で分割されます。デフォルトでは無効", "Whisper (Local)": "Whisper (ローカル)", + "Who can share to this group": "", "Why?": "どうしてですか?", "Widescreen Mode": "ワイドスクリーンモード", "Width": "幅", + "Wikipedia": "", "Won": "勝ち", "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.": "top-k と併用されます。値が高い(例:0.95)ほど多様なテキストが生成され、低い値(例:0.5)ではより集中した保守的なテキストが生成されます。", "Workspace": "ワークスペース", @@ -1815,6 +1866,8 @@ "Yacy Instance URL": "YacyインスタンスURL", "Yacy Password": "Yacyパスワード", "Yacy Username": "Yacyユーザー名", + "Yahoo": "", + "Yandex": "", "Yesterday": "昨日", "Yesterday at {{LOCALIZED_TIME}}": "", "You": "あなた", @@ -1822,6 +1875,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "同時にチャットに使用できるファイルは最大{{maxCount}}個までです。", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "メモリを追加することで、LLMとの対話をカスタマイズできます。", "You cannot upload an empty file.": "空のファイルをアップロードできません。", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this thread.": "", "You do not have permission to upload files to this knowledge base.": "", @@ -1833,6 +1889,8 @@ "Your Account": "あなたのアカウント", "Your account status is currently pending activation.": "あなたのアカウント状態は現在登録認証待ちです。", "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.": "あなたの全ての寄付はプラグイン開発者へ直接送られます。Open WebUI は手数料を一切取りません。ただし、選択した資金提供プラットフォーム側に手数料が発生する場合があります。", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "YouTube", "Youtube Language": "YouTubeの言語", "Youtube Proxy URL": "YouTubeのプロキシURL" diff --git a/src/lib/i18n/locales/ka-GE/translation.json b/src/lib/i18n/locales/ka-GE/translation.json index 0aa54524f..eeeb80951 100644 --- a/src/lib/i18n/locales/ka-GE/translation.json +++ b/src/lib/i18n/locales/ka-GE/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "ამ პარამეტრების რეგულირება ცვლილებებს უნივერსალურად გამოიყენებს ყველა მომხმარებლისთვის.", "admin": "ადმინისტრატორი", "Admin": "ადმინი", + "Admin Contact Email": "", "Admin Panel": "ადმინისტრატორის პანელი", "Admin Settings": "ადმინისტრატორის მორგება", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "", @@ -101,7 +102,6 @@ "Allow Continue Response": "პასუხის გაგრძელების დაშვება", "Allow Delete Messages": "შეტყობინებების წაშლის დაშვება", "Allow File Upload": "ფაილის ატვირთვის დაშვება", - "Allow Group Sharing": "", "Allow Multiple Models in Chat": "ერთზე მეტი მოდელის დაშვება ჩატში", "Allow non-local voices": "არალოკალური ხმების დაშვება", "Allow Rate Response": "პასუხის შეფასების დაშვება", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "და კიდევ {{COUNT}}", "and create a new shared link.": "და ახალი გაზიარებული ბმულის შექმნა.", "Android": "Android", + "Anyone": "", "API Base URL": "API-ის საბაზისო URL", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "", "API Key": "API გასაღები", @@ -175,6 +176,7 @@ "Authenticate": "ავთენტიკაცია", "Authentication": "ავთენტიკაცია", "Auto": "ავტო", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "პასუხის ავტომატური კოპირება ბუფერში", "Auto-playback response": "ავტომატური დაკვრის პასუხი", "Autocomplete Generation": "ავტოდასრულების გენერაცია", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "", "AUTOMATIC1111 Base URL": "AUTOMATIC1111 საბაზისო მისამართი", "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 საბაზისო მისამართი აუცილებელია.", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "ხელმისაწვდომი სია", "Available Tools": "ხელმისაწვდომი ხელსაწყოები", "available users": "ხელმისაწვდომი მომხმარებლები", @@ -201,6 +204,7 @@ "before": "მითითებულ დრომდე", "Being lazy": "ზარმაცობა", "Beta": "ბეტა", + "Bing": "", "Bing Search V7 Endpoint": "Bing Search V7-ის ბოლოწერტილი", "Bing Search V7 Subscription Key": "Bing Search V7-ის გამოწერის გასაღები", "Bio": "ბიო", @@ -209,7 +213,9 @@ "Bocha Search API Key": "Bocha-ის ძებნის API-ის გასაღები", "Bold": "სქელი", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "", + "Brave": "", "Brave Search API Key": "Brave Search API-ის გასაღები", + "Builtin Tools": "", "Bullet List": "დაუნომრავი სია", "Button ID": "ღილაკის ID", "Button Label": "ღილაკის ჭდე", @@ -256,8 +262,10 @@ "Check for updates": "განახლებების შემოწმება", "Checking for updates...": "განახლებების შემოწმება...", "Choose a model before saving...": "აირჩიეთ მოდელი შენახვამდე...", + "Chunk Min Size Target": "", "Chunk Overlap": "ფრაგმენტის გადაფარვა", "Chunk Size": "ფრაგმენტის ზომა", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "შიფრები", "Citation": "ციტატა", "Citations": "ციტატები", @@ -293,7 +301,6 @@ "Code Block": "კოდის ბლოკი", "Code Editor": "", "Code execution": "კოდის შესრულება", - "Code Execution": "კოდის შესრულება", "Code Execution Engine": "კოდის შესრულების ძრავა", "Code Execution Timeout": "კოდის შესრულების დროის ამოწურვა", "Code formatted successfully": "კოდი წარმატებით დაფორმატდა", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "", "Content": "შემცველობა", "Content Extraction Engine": "", + "Content lengths (character counts only)": "", "Continue Response": "პასუხის გაგრძელება", "Continue with {{provider}}": "გაგრძელება {{provider}}-ით", "Continue with Email": "გაგრძელება ელფოსტით", @@ -393,6 +401,7 @@ "Database": "მონაცემთა ბაზა", "Datalab Marker API": "Datalab Marker-ის API", "DD/MM/YYYY": "დდ/თთ/წწწწ", + "DDGS Backend": "", "December": "დეკემბერი", "Decrease UI Scale": "", "Deepgram": "Deepgram", @@ -474,6 +483,7 @@ "Dive into knowledge": "", "Do not install functions from sources you do not fully trust.": "", "Do not install tools from sources you do not fully trust.": "", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "Docling", "Docling Parameters": "", "Docling Server URL required.": "", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "დოკუმენტის ანალიზის ბოლოწერტილი აუცილებელია.", "Document Intelligence Model": "", "Documentation": "დოკუმენტაცია", - "Documents": "დოკუმენტები", "does not make any external connections, and your data stays securely on your locally hosted server.": "არ ამყარებს გარე კავშირებს და თქვენი მონაცემები უსაფრთხოდ რჩება თქვენს ლოკალურ სერვერზე.", "Domain Filter List": "დომენის ფილტრების სია", "don't fetch random pipelines from sources you don't trust.": "არ ჩამოტვირთოთ შემთხვევითი pipelines არასანდო წყაროებიდან.", @@ -493,11 +502,14 @@ "Done": "დასრულებული", "Download": "გადმოწერა", "Download & Delete": "ჩამოტვირთვა და წაშლა", + "Download as JSON": "", "Download as SVG": "გადმოწერა SVG-ის სახით", "Download canceled": "გადმოწერა გაუქმდა", "Download Database": "მონაცემთა ბაზის გადმოწერა", + "Downloading stats...": "", "Draw": "ხატვა", "Drop any files here to upload": "", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "მაგ: '30წ', '10მ'. მოქმედი დროის ერთეულები: 'წ', 'წთ', 'სთ'.", "e.g. \"json\" or a JSON schema": "", "e.g. 60": "მაგ: 60", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "", "Enter Brave Search API Key": "შეიყვანეთ Brave Search API-ის გასაღები", "Enter certificate path": "შეიყვანეთ სერტიფიკატის ბილიკი", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "შეიყვანეთ ფრაგმენტის გადაფარვა", "Enter Chunk Size": "შეიყვანე ფრაგმენტის ზომა", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "", "Enter Firecrawl API Base URL": "", "Enter Firecrawl API Key": "", + "Enter Firecrawl Timeout": "", "Enter folder name": "შეიყვანეთ საქაღალდის სახელი", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "შეიყვანეთ Github Raw URL", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "", "Enter ID": "შეიყვანეთ ID", "Enter Image Size (e.g. 512x512)": "შეიყვანეთ სურათის ზომა (მაგ. 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "შეიყვანეთ Jina API-ის გასაღები", "Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter Jupyter Password": "შეიყვანეთ Jupyter-ის პაროლი", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "", "Enter Key Behavior": "შეიყვანეთ გასაღების ქცევა", "Enter language codes": "შეიყვანეთ ენის კოდები", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "", "Enter Mistral API Key": "", "Enter Model ID": "შეიყვანეთ მოდელის ID", @@ -736,6 +753,7 @@ "Failed to generate title": "სათაურის გენერაცია ჩავარდა", "Failed to import models": "მოდელების შემოტანა ჩავარდა", "Failed to load chat preview": "ვიდეოს მინიატურის ჩატვირთვა ჩავარდა", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "ფაილის შემცველობის ჩატვირთვა ჩავარდა.", "Failed to move chat": "ჩატის გადატანა ჩავარდა", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "მახასიათებლები", "Features Permissions": "უფლებები ფუნქციებზე", "February": "თებერვალი", + "Feedback": "", "Feedback deleted successfully": "", "Feedback Details": "უკუკავშირის დეტალები", "Feedback History": "უკუკავშირის ისტორია", - "Feedbacks": "უკუკავშირები", "Feel free to add specific details": "სპეციფიკური დეტალების დამატება პრობლემა არაა", "Female": "მდედრობითი", "File": "ფაილი", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "აღმოჩენილია ანაბეჭდის გაყალბება: ინიციალების გამოყენება ავატარად შეუძლებელია. გამოყენებული იქნეა ნაგულისხმევი პროფილის სურათი.", "Firecrawl API Base URL": "Firecrawl API-ის საბაზისო URL", "Firecrawl API Key": "Firecrawl API-ის გასაღები", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "", "Focus Chat Input": "", "Folder": "საქაღალდე", "Folder Background Image": "საქაღალდის ფონის სურათი", "Folder deleted successfully": "საქაღალდე წარმატებით წაიშალა", + "Folder Max File Count": "", "Folder Name": "საქაღალდის სახელი", "Folder name cannot be empty.": "საქაღალდის სახელი ცარიელი ვერ იქნება.", "Folder name updated successfully": "საქაღალდის სახელი წარმატებით განახლდა", @@ -826,7 +846,6 @@ "General": "ზოგადი", "Generate": "გენერაცია", "Generate an image": "გამოსახულების გენერაცია", - "Generate Image": "სურათის განერაცია", "Generate Message Pair": "", "Generated Image": "გენერირებული გამოსახულება", "Generating search query": "ძებნის მოთხოვნის გენერაცია", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "", "Global": "გლობალური", "Good Response": "კარგი პასუხი", + "Google": "", "Google Drive": "Google Drive", "Google PSE API Key": "Google PSE API გასაღები", "Google PSE Engine Id": "Google PSE ძრავის Id", "Gravatar": "გრავატარი", "Grid": "", + "Grokipedia": "", "Group": "ჯგუფი", "Group Channel": "", "Group created successfully": "ჯგუფი წარმატებით შეიქმნა", @@ -895,7 +916,6 @@ "Image Prompt Generation": "", "Image Prompt Generation Prompt": "", "Image Size": "", - "Images": "გამოსახულებები", "Import": "შემოტანა", "Import Chats": "ჩატების შემოტანა", "Import Config from JSON File": "", @@ -927,6 +947,7 @@ "Integration": "ინტეგრაცია", "Integrations": "ინტეგრაციები", "Interface": "ინტერფეისი", + "Interface Settings Access": "", "Invalid file content": "არასწორი ფაილის შემცველობა", "Invalid file format.": "არასწორი ფაილის ფორმატი.", "Invalid JSON file": "არასწორი JSON ფაილი", @@ -940,6 +961,7 @@ "is typing...": "კრეფს...", "Italic": "კურსივი", "January": "იანვარი", + "Jina API Base URL": "", "Jina API Key": "Jina API-ის გასაღები", "join our Discord for help.": "დახმარებისთვის შემოდით ჩვენს Discord-ზე.", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "", "Leave empty to include all models or select specific models": "", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "", "Leave empty to use the default prompt, or enter a custom prompt": "", "Leave model field empty to use the default model.": "", @@ -1029,10 +1052,12 @@ "Manage your account information.": "მართეთ თქვენი ანგარიშის ინფორმაცია.", "March": "მარტი", "Markdown": "Markdown", - "Markdown (Header)": "Markdown (თავსართი)", + "Markdown Header Text Splitter": "", "Max Speakers": "დინამიკების მაქს. რაოდენობა", "Max Upload Count": "მაქს. ატვირთვების რაოდენობა", "Max Upload Size": "მაქს. ატვირთვის ზომა", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "ერთდროულად მაქსიმუმ 3 მოდელის ჩამოტვირთვაა შესაძლებელია. მოგვიანებით სცადეთ.", "May": "მაისი", "MBR": "", @@ -1042,6 +1067,7 @@ "Member removed successfully": "", "Members": "", "Members added successfully": "", + "Memories": "", "Memories accessible by LLMs will be shown here.": "LLM-ებისთვის ხელმისაწვდომი მეხსიერებები აქ გამოჩნდება.", "Memory": "მეხსიერება", "Memory added successfully": "მოგონება წარმატებით დაემატა", @@ -1051,6 +1077,7 @@ "Merge Responses": "პასუხების შერწყმა", "Merged Response": "შერწყმული პასუხი", "Message": "", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "შეტყობინებები, რომელსაც თქვენ აგზავნით თქვენი ბმულის შექმნის შემდეგ, არ იქნება გაზიარებული. URL– ის მქონე მომხმარებლებს შეეძლებათ ნახონ საერთო ჩატი.", "Microsoft OneDrive": "Microsoft OneDrive", @@ -1083,9 +1110,11 @@ "Model Name": "Მოდელის სახელი", "Model name already exists, please choose a different one": "", "Model Name is required.": "", + "Model names and usage frequency": "", "Model not selected": "მოდელი არჩეული არაა", "Model Params": "მოდელის პარამეტრები", "Model Permissions": "მოდელის წვდომები", + "Model responses or outputs": "", "Model unloaded successfully": "", "Model updated successfully": "", "Model(s) do not support file upload": "", @@ -1096,6 +1125,7 @@ "Models imported successfully": "", "Models Public Sharing": "", "Models Sharing": "", + "Mojeek": "", "Mojeek Search API Key": "", "More": "მეტი", "More Concise": "", @@ -1129,7 +1159,7 @@ "No conversation to save": "შესანახი საუბრების გარეშე", "No distance available": "მანძილი ხელმისაწვდომი არაა", "No expiration can pose security risks.": "", - "No feedbacks found": "უკუკავშირები აღმოჩენილი არაა", + "No feedback found": "", "No file selected": "ფაილი არჩეული არაა", "No files in this knowledge base.": "", "No functions found": "ფუნქციები აღმოჩენილი არაა", @@ -1144,6 +1174,7 @@ "No models selected": "მოდელები არჩეული არაა", "No Notes": "შენიშვნების გარეშე", "No notes found": "სანიშნების გარეშე", + "No one": "", "No pinned messages": "", "No prompts found": "შეყვანები აღმოჩენილი არაა", "No results": "შედეგების გარეშე", @@ -1195,6 +1226,7 @@ "Only invited users can access": "", "Only markdown files are allowed": "", "Only select users and groups with permission can access": "", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "უი! როგორც ჩანს, მისამართი არასწორია. გთხოვთ, გადაამოწმოთ და ისევ სცადოთ.", "Oops! There are files still uploading. Please wait for the upload to complete.": "", "Oops! There was an error in the previous response.": "", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "", "OpenAI": "OpenAI", "OpenAI API": "OpenAI API", @@ -1235,6 +1268,8 @@ "page": "პანელი", "Paginate": "გვერდებად დაყოფა", "Parameters": "პარამეტრები", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "პაროლი", "Passwords do not match.": "პაროლები არ ემთხვევა.", "Paste Large Text as File": "დიდი ტექსტის ჩასმა ფაილის სახით", @@ -1260,7 +1295,6 @@ "Pipe": "ფაიფი", "Pipeline deleted successfully": "", "Pipeline downloaded successfully": "", - "Pipelines": "მილსადენები", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines არის პლაგინების სისტემა თვითნებური კოდის გაშვებით —", "Pipelines Not Detected": "", "Pipelines Valves": "მილსადენის სარქველები", @@ -1498,6 +1532,7 @@ "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.": "", "Setting": "", "Settings": "მორგება", + "Settings Permissions": "", "Settings saved successfully!": "პარამეტრები შენახვა წარმატებულია!", "Share": "გაზიარება", "Share Chat": "ჩატის გაზიარება", @@ -1541,6 +1576,7 @@ "Speech recognition error: {{error}}": "საუბრის ამოცნობის შეცდომა: {{error}}", "Speech-to-Text": "", "Speech-to-Text Engine": "საუბრიდან-ტექსტამდე-ის ძრავი", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "", "Start of the channel": "არხის დასაწყისი", "Start Tag": "დაწყების ჭდე", @@ -1551,6 +1587,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "გაჩერება", + "Stop Download": "", "Stop Generating": "", "Stop Sequence": "შეჩერების მიმდევრობა", "Stream Chat Response": "", @@ -1571,7 +1608,14 @@ "Support": "მხარდაჭერა", "Support this plugin:": "დაუჭირეთ მხარი ამ დამატებას:", "Supported MIME Types": "მხარდაჭერილი MIME ტიპები", + "Sync": "", + "Sync Complete!": "", "Sync directory": "სინქრონიზაციის საქაღალდე", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "სისტემა", "System Instructions": "სისტემური ინსტრუქციები", "System Prompt": "სისტემური მოთხოვნა", @@ -1616,6 +1660,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "", "The width in pixels to compress images to. Leave empty for no compression.": "", "Theme": "თემა", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "ვფიქრობ...", "This action cannot be undone. Do you wish to continue?": "", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "", @@ -1730,6 +1775,7 @@ "Upload Pipeline": "ფაიფლაინის ატვირთვა", "Upload Progress": "ატვირთვის მიმდინარეობა", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploaded files or images": "", "Uploading file...": "", "URL": "URL", "URL is required": "URL საჭიროა", @@ -1747,6 +1793,7 @@ "User Groups": "მომხმარებლის ჯგუფები", "User location successfully retrieved.": "", "User menu": "მომხმარებლის მენიუ", + "User ratings (thumbs up/down)": "", "User Webhooks": "ვებჰუკების გამოყენება", "Username": "მომხმარებლის სახელი", "users": "", @@ -1796,15 +1843,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "", "What are you trying to achieve?": "რას ცდილობთ, მიაღწიოთ?", "What are you working on?": "რაზე მუშაობთ?", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "რა არის ახალი", "What's on your mind?": "", "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.": "", "wherever you are": "სადაც არ უნდა ბრძანდებოდეთ", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whisper (Local)": "Whisper (ლოკალური)", + "Who can share to this group": "", "Why?": "რატომ?", "Widescreen Mode": "ფართოეკრანიანი რეჟიმი", "Width": "სიგანე", + "Wikipedia": "", "Won": "ვონი", "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.": "", "Workspace": "სამუშაო სივრცე", @@ -1816,6 +1867,8 @@ "Yacy Instance URL": "Yacy-ის გაშვებული ასლის URL", "Yacy Password": "Yacy-ის პაროლი", "Yacy Username": "Yacy-ის მომხმარებლის სახელი", + "Yahoo": "", + "Yandex": "", "Yesterday": "გუშინ", "Yesterday at {{LOCALIZED_TIME}}": "გუშინ, {{LOCALIZED_TIME}}", "You": "თქვენ", @@ -1823,6 +1876,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "", "You cannot upload an empty file.": "ცარიელ ფაილს ვერ ატვირთავთ.", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "ამ არხზე შეტყობინების გაგზავნის უფლება არ გაქვთ.", "You do not have permission to send messages in this thread.": "ამ ნაკადში შეტყობინების გაგზავნის უფლება არ გაქვთ.", "You do not have permission to upload files to this knowledge base.": "", @@ -1834,6 +1890,8 @@ "Your Account": "თქვენი ანგარიში", "Your account status is currently pending activation.": "თქვენი ანგარიშის სტატუსი ამჟამად ელოდება აქტივაციას.", "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.": "", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "Youtube", "Youtube Language": "Youtube-ის ენა", "Youtube Proxy URL": "Youtube-ის პროქსის URL" diff --git a/src/lib/i18n/locales/kab-DZ/translation.json b/src/lib/i18n/locales/kab-DZ/translation.json index 3810556c0..8d0e3aa13 100644 --- a/src/lib/i18n/locales/kab-DZ/translation.json +++ b/src/lib/i18n/locales/kab-DZ/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "Aswati n yiɣewwaren-a ad yessuter ibeddilen s wudem ameɣradan i yiseqdacen akk.", "admin": "anedbal", "Admin": "Anebdal", + "Admin Contact Email": "", "Admin Panel": "Agalis n tedbelt", "Admin Settings": "Iɣewwaṛen n unedbal", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Inedbalen sɛan anekcum ɣer meṛṛa ifecka melmi i bɣan; iseqdacen ilaq ad asen-ttwamudden yifecka i yal tamudemt deg tallunt n umahil.", @@ -101,7 +102,6 @@ "Allow Continue Response": "Sireg akemmel n tririt", "Allow Delete Messages": "Sireg tukksa n yiznan", "Allow File Upload": "Sireg asali n yifuyla", - "Allow Group Sharing": "", "Allow Multiple Models in Chat": "Sireg ugar n timudmiwin deg usqerdec", "Allow non-local voices": "Sireg tuɣac tirdiganin", "Allow Rate Response": "", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "d {{COUNT}} nniḍen", "and create a new shared link.": "rnu aseɣwen n beṭṭu amaynut.", "Android": "Android", + "Anyone": "", "API Base URL": "Tansa URL n taffa i API", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "", "API Key": "Tasarutt API", @@ -175,6 +176,7 @@ "Authenticate": "Sesteb", "Authentication": "Asesteb", "Auto": "Awurman", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "Anɣal n tiririt tawurmant ɣer tecfawt", "Auto-playback response": "Taɣuṛi tawurmant n tririt", "Autocomplete Generation": "Asirew n yisumar", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "Azrir AUTOMATIC1111 n usesteb n API", "AUTOMATIC1111 Base URL": "URL n taffa i AUTOMATIC1111", "AUTOMATIC1111 Base URL is required.": "L'URL n uzadur {AUTOMATIC1111} yettwasra.", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "Tabdart i yellan", "Available Tools": "Ifecka i yellan", "available users": "Iseqdacen yellan", @@ -201,6 +204,7 @@ "before": "send", "Being lazy": "Ili-k d ameɛdaz", "Beta": "Biṭa", + "Bing": "", "Bing Search V7 Endpoint": "", "Bing Search V7 Subscription Key": "Tasarut n umulteɣ Bing Search V7", "Bio": "Tameddurt", @@ -209,7 +213,9 @@ "Bocha Search API Key": "Tasarut API n Bocha Search", "Bold": "Azuran", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Aserkem neɣ angal n yiqenṭaren ulmisen i tririt yettwaḥeṛsen. Azalen ibirusanen ad ttwakecfen gar 100 d 100 (asekcam). Lmut: ala", + "Brave": "", "Brave Search API Key": "Tasarut API n Brave Search", + "Builtin Tools": "", "Bullet List": "Tabdart s tlilac", "Button ID": "Asulay ID n tqeffalt", "Button Label": "Tabzimt n tqeffalt", @@ -256,8 +262,10 @@ "Check for updates": "Nadi ileqman", "Checking for updates...": "Anadi n yileqman...", "Choose a model before saving...": "Fren tamudemt uqbel ad tsellkeḍ...", + "Chunk Min Size Target": "", "Chunk Overlap": "", "Chunk Size": "Tiddi n iceqqfan", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "Izwilen", "Citation": "Tanebdurt", "Citations": "Tinebdurin", @@ -293,7 +301,6 @@ "Code Block": "Iḥder n tengalt", "Code Editor": "", "Code execution": "Aselkem n tengalt", - "Code Execution": "Aselkem n tengalt", "Code Execution Engine": "Amsadday n uselkem n tengalt", "Code Execution Timeout": "Tanzagt n uselkem n tengalt, tɛedda", "Code formatted successfully": "Tangalt tettwamsel akken iwata", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "Admin n unermis i WebUI", "Content": "Agbur", "Content Extraction Engine": "Amsedday n uselkem n ugbur", + "Content lengths (character counts only)": "", "Continue Response": "Kemmel tiririt", "Continue with {{provider}}": "Kemmel s {{provider}}", "Continue with Email": "Kemmel s yimayl", @@ -393,6 +401,7 @@ "Database": "Taffa n isefka", "Datalab Marker API": "API n Datalab Marker", "DD/MM/YYYY": "JJ/MM/AAAA", + "DDGS Backend": "", "December": "Duǧambeṛ", "Decrease UI Scale": "", "Deepgram": "Deepgram", @@ -474,6 +483,7 @@ "Dive into knowledge": "Kcem daxel n tmussniwin", "Do not install functions from sources you do not fully trust.": "Ur sebdad ara tisɣunin seg iɣbula ur tettamneḍ ara akken iwata.", "Do not install tools from sources you do not fully trust.": "Ur srusuy ara ifecka seg iɣbula ur tettamneḍ ara akken iwata.", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "Docling", "Docling Parameters": "", "Docling Server URL required.": "Tansa URL n uqeddac tuḥwaǧ.", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "", "Document Intelligence Model": "", "Documentation": "Tasemlit", - "Documents": "Isemliyen", "does not make any external connections, and your data stays securely on your locally hosted server.": "ur teqqen ara ɣer tuqqniwin tizɣarayin, akka isefka-k⋅m ad qqimen d iɣellsanen ɣef uqeddac-ik⋅im adigan.", "Domain Filter List": "Tabdart n taɣulin ara yettwasizedgen", "don't fetch random pipelines from sources you don't trust.": "ur d-awi ara pipelines igacuranen seg yiɣbula ur tettamneḍ ara.", @@ -493,11 +502,14 @@ "Done": "Immed", "Download": "Azdam", "Download & Delete": "Zdem & Kkes", + "Download as JSON": "", "Download as SVG": "Zdem am SVG", "Download canceled": "Ittwasefsex usider", "Download Database": "Zdem-d tafa n isefka", + "Downloading stats...": "", "Draw": "Suneɣ", "Drop any files here to upload": "Ssers-d ifuyla da akken ad ten-tessaliḍ", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "e.g. '30s','10m'. Tiyunin n wakud ameɣtu d 's', 'm', 'h'.", "e.g. \"json\" or a JSON schema": "amedya: \"json\" neɣ azenziɣ JSON", "e.g. 60": "amedya. 60", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "Sekcem tasarut API n Bocha Search", "Enter Brave Search API Key": "Sekcem-d tasarut n API Brave Search", "Enter certificate path": "Sekcem abrid n uselkin", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "Sekcem ambiwel n yifendasen", "Enter Chunk Size": "Sekcem tiddi n iceqqfan", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Kcem ɣer tyugiwin \"token:bias_value\" i d-yezgan gar-asent (amedya: 5432:100, 413:-100)", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "Sekcem-d tansa URL yeffɣen n unadi ɣef Web", "Enter Firecrawl API Base URL": "Sekcem tansa URL n taffa n isefka API", "Enter Firecrawl API Key": "Sekcem API n Firecrawl Tasarut", + "Enter Firecrawl Timeout": "", "Enter folder name": "Sekcem isem n ukaram", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "Sekcem tansa URL tazegzawt n Github", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "", "Enter ID": "Sekcem-d asulay ID", "Enter Image Size (e.g. 512x512)": "Sekcem tugna Size (amedya 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "Sekcem tasarut API n Jina", "Enter JSON config (e.g., {\"disable_links\": true})": "Sekcem-d tawila JSON (amedya, {\"disable_links\": true})", "Enter Jupyter Password": "Sekcem-d awal n uɛeddi n Jupyter", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "Sekcem-d tasarut API n Kagi Search", "Enter Key Behavior": "Kcem ɣer tsarut Behavior", "Enter language codes": "Sekcem-d tangalin n tutlayin", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "", "Enter Mistral API Key": "Enter Mistral API Tasarut", "Enter Model ID": "Senkcem-d asulay n tmudemt", @@ -736,6 +753,7 @@ "Failed to generate title": "Ur yessaweḍ ara ad d-yawi azwel", "Failed to import models": "", "Failed to load chat preview": "Yecceḍ usali n teskant n udiwenni", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "Ur yessaweḍ ara ad d-yessali agbur n yifuyla.", "Failed to move chat": "Tuccḍa deg unkaz n udiwenni", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "Timahilin", "Features Permissions": "Tisirag n tmehilin", "February": "Fuṛaṛ", + "Feedback": "", "Feedback deleted successfully": "", "Feedback Details": "Talqayt n tamawin", "Feedback History": "Azray n tamawin", - "Feedbacks": "Timuɣliwin", "Feel free to add specific details": "Ur ttkukru ara ad ternuḍ ttfaṣil ulmisen", "Female": "Tawtemt", "File": "Afaylu", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Tban-d tɣenǧawt n uskenjbir Ur yezmir yiwen ad yesseqdec inizjali d avatar. Ma nmuqel tugna n umaɣnu amezwer.", "Firecrawl API Base URL": "Tansa URL n taffa n isefka", "Firecrawl API Key": "Tasarut API n Firecrawl", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "Tigawin tiruradin yettifliwen", "Focus Chat Input": "", "Folder": "Akaram", "Folder Background Image": "Tugna n ugilal n ukaram", "Folder deleted successfully": "Akaram-nni yettwakkes akken iwata", + "Folder Max File Count": "", "Folder Name": "Isem n ukaram", "Folder name cannot be empty.": "Isem n ukaram ur yezmir ara ad yili d ilem.", "Folder name updated successfully": "Isem n ukaram yettwaleqqem akken iwata", @@ -826,7 +846,6 @@ "General": "Amatu", "Generate": "Sirew", "Generate an image": "Sarew tugna", - "Generate Image": "Sirew-d tugna", "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Asirew n tuttra n unadi", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "Bdu s {{WEBUI_NAME}}", "Global": "Amatu", "Good Response": "Tiririt yelhan", + "Google": "", "Google Drive": "Google Drive", "Google PSE API Key": "Tasarut API n Google PSE", "Google PSE Engine Id": "Asulay n umsadday n unadi PSE n Google", "Gravatar": "Gravatar", "Grid": "", + "Grokipedia": "", "Group": "Agraw", "Group Channel": "", "Group created successfully": "Agraw yennulfa-d akken iwata", @@ -895,7 +916,6 @@ "Image Prompt Generation": "Asirew n yineftaɣen n tugniwin", "Image Prompt Generation Prompt": "Aneftaɣ n usirew n yineftaɣen n tugniwin", "Image Size": "", - "Images": "Tugniwin", "Import": "Kter", "Import Chats": "Asifeḍ n yidiwenniyen", "Import Config from JSON File": "Kter-d Config seg ufaylu JSON", @@ -927,6 +947,7 @@ "Integration": "Tamsideft", "Integrations": "Timsidaf", "Interface": "Agrudem", + "Interface Settings Access": "", "Invalid file content": "Agbur n ufaylu d arameɣtu", "Invalid file format.": "Amasal n ufaylu d arameɣtu.", "Invalid JSON file": "Afaylu JSON arameɣtu", @@ -940,6 +961,7 @@ "is typing...": "yettaru…", "Italic": "Uknan", "January": "Yennayer", + "Jina API Base URL": "", "Jina API Key": "Tasarut API n Jina", "join our Discord for help.": "nadi-d ɣef tallalt-nneɣ.", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "", "Leave empty to include all models or select specific models": "Eǧǧ-it d ilem akken ad ternuḍ akk timudmiwin neɣ ad tferneḍ timudmiwin tulmisin", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "", "Leave empty to use the default prompt, or enter a custom prompt": "Eǧǧ-it d ilem akken ad tesqedceḍ aneftaɣ-nni amezwaru, naɣ sekcem-d yiwen n uneftaɣ udmawan", "Leave model field empty to use the default model.": "Eǧǧ urti n tmudemt d ilem i useqdec n tmudemt-nni tamezwarut.", @@ -1029,10 +1052,12 @@ "Manage your account information.": "Sefrek ilɣa-inek·inem n umiḍan.", "March": "Meɣres", "Markdown": "Markdown", - "Markdown (Header)": "Ticreḍt (Aqerru)", + "Markdown Header Text Splitter": "", "Max Speakers": "Amḍan afellay n wid d-yemmseslayen", "Max Upload Count": "Amḍan afellay n uzdam", "Max Upload Size": "Teɣzi tafellayt n uzdam", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maximum n 3 n tmudmin yezmer ad d-yettwasider seg-a ɣer da. Ttxil-k, ɛreḍ tikkelt niḍen ticki.", "May": "Mayyu", "MBR": "", @@ -1042,6 +1067,7 @@ "Member removed successfully": "", "Members": "", "Members added successfully": "", + "Memories": "", "Memories accessible by LLMs will be shown here.": "Da ara d-banent teḥkayin ara yaweḍ yiwen ɣer LLMs.", "Memory": "Takatut", "Memory added successfully": "Asmekti yettwarna akken iwata", @@ -1051,6 +1077,7 @@ "Merge Responses": "Smezdi tiririyin", "Merged Response": "Tiririyin mmezdint", "Message": "", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "A win yufan, tazmilt n yizen ad tettwasireg i useqdec n tmahilt-a", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Izen ara d-tazneḍ mi ara d-tesnulfuḍ aseɣwen-ik ur yettwabḍu ara. Iseqdacen yesɛan tansa URL ad izmiren ad walin adiwenni-nni yettwabḍan.", "Microsoft OneDrive": "Microsoft OneDrive", @@ -1083,9 +1110,11 @@ "Model Name": "Isem n tmudemt", "Model name already exists, please choose a different one": "Yella yakan yisem n tmudemt, ma ulac aɣilif fren wayeḍ yemwalafen", "Model Name is required.": "Isem n timudemt yettwasra.", + "Model names and usage frequency": "", "Model not selected": "Ur tettwafran ara tmudemt", "Model Params": "Iɣewwaren n timudemt", "Model Permissions": "Tisirag n timudemt", + "Model responses or outputs": "", "Model unloaded successfully": "Tamudemt ur d-uli ara akken iwata", "Model updated successfully": "Tamudemt tettwaleqqem akken iwata", "Model(s) do not support file upload": "Mudd(s) ur ssefrak ara afaylu usali n ufaylu", @@ -1096,6 +1125,7 @@ "Models imported successfully": "", "Models Public Sharing": "Beṭṭu azayaz n tmudmiwin", "Models Sharing": "", + "Mojeek": "", "Mojeek Search API Key": "Tasarut API n Mojeek", "More": "Ugar", "More Concise": "Awezlan ugar", @@ -1129,7 +1159,7 @@ "No conversation to save": "Ulac adiwenni i usekles", "No distance available": "Ulac ameccaq yettwafen", "No expiration can pose security risks.": "", - "No feedbacks found": "Ulac awennit i yettwafen", + "No feedback found": "", "No file selected": "Ulac afaylu i yettwafernen", "No files in this knowledge base.": "", "No functions found": "", @@ -1144,6 +1174,7 @@ "No models selected": "Ulac timudmin yettwafernen", "No Notes": "Ulac tizmilin", "No notes found": "Ulac tizmilin yettwafen", + "No one": "", "No pinned messages": "", "No prompts found": "", "No results": "Ulac igmaḍ yettwafen", @@ -1195,6 +1226,7 @@ "Only invited users can access": "", "Only markdown files are allowed": "Ala ifuyla n tuccar i yettusirgen", "Only select users and groups with permission can access": "Ala iseqdacen akked yegrawen yesɛan tisirag i izemren ad kecmen", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Ayhuh! Yettban-d dakken URL-nni ur tṣeḥḥa ara. Ttxil-k, ssefqed snat n tikkal yernu ɛreḍ tikkelt niḍen.", "Oops! There are files still uploading. Please wait for the upload to complete.": "", "Oops! There was an error in the previous response.": "Ayhuh! Teḍra-d tuccḍa deg tririt-nni yezrin.", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI yezmer ad yesseqdec ifecka i d-yettak yal aqeddac OpenAPI.", "Open WebUI uses faster-whisper internally.": "Open WebUI yesseqdac faster-whisper sdaxel-is.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Ldi WebUI yesseqdac SpeechT5 akked CMU Arktik.", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "", "OpenAI": "OpenAI", "OpenAI API": "API OpenAI", @@ -1235,6 +1268,8 @@ "page": "asebter", "Paginate": "Smiḍen", "Parameters": "Isefranen", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "Awal n uɛeddi", "Passwords do not match.": "Awalen n uɛeddi ur mṣadan ara.", "Paste Large Text as File": "Senteḍ aḍris meqqren am ufaylu", @@ -1260,7 +1295,6 @@ "Pipe": "Aselda", "Pipeline deleted successfully": "Aselda yettwakkes akken iwata", "Pipeline downloaded successfully": "Aselda yettuzdem-d akken iwata", - "Pipelines": "Iseldayen", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines d unagraw n izegrar s uselkem n tengalt awurman —", "Pipelines Not Detected": "Ulac aselda i yettwafen", "Pipelines Valves": "", @@ -1498,6 +1532,7 @@ "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.": "Sbadu tiseddarin n uḥbas i useqdec. Mi ara d-temlil temɛawdit-a, LLM ad teḥbes asegrew n uḍris d tuɣalin. Timɛayin n uḥbas yeggten zemrent ad ttwasbeddent s usbadu n waṭas n yizamulen n uḥbas yemgaraden deg tmudemt.", "Setting": "", "Settings": "Iɣewwaren", + "Settings Permissions": "", "Settings saved successfully!": "Iɣewwaṛen ttwakelsen akken iwata!", "Share": "Bḍu", "Share Chat": "Bḍu asqerdec", @@ -1541,6 +1576,7 @@ "Speech recognition error: {{error}}": "Tuccḍa n uɛqal n wawal: {{error}}", "Speech-to-Text": "Aɛqal n taɣect", "Speech-to-Text Engine": "Amsadday n uɛqal n taɣect", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "", "Start of the channel": "Tazwara n ubadu", "Start Tag": "", @@ -1551,6 +1587,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Seḥbes", + "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Tagzemt n uḥbas", "Stream Chat Response": "Suddem tiririt n udiwenni", @@ -1571,7 +1608,14 @@ "Support": "Tallalt", "Support this plugin:": "Ɛiwen asiɣzef-a:", "Supported MIME Types": "Anawen MIME ttwasefraken", + "Sync": "", + "Sync Complete!": "", "Sync directory": "Mtawi akaram", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "Anagraw", "System Instructions": "Tanaḍin n unagraw", "System Prompt": "Aneftaɣ n unagraw", @@ -1616,6 +1660,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "", "The width in pixels to compress images to. Leave empty for no compression.": "Tehri s ipiksilen i tussda n tugniwin. Eǧǧ-it d ilem i war tussda.", "Theme": "Asentel", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "Yettxemmim…", "This action cannot be undone. Do you wish to continue?": "Tigawt-a ur tettwakkes ara. Tebɣiḍ ad tkemmleḍ?", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "Abadu-a yettwasnulaf-d deg {{created} Ɣef}}. D ta i d tazwara maḍi n ubadu {{channelName}}.", @@ -1730,6 +1775,7 @@ "Upload Pipeline": "Aselda n uɛebbi", "Upload Progress": "", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Tikli n uɛebbi: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", + "Uploaded files or images": "", "Uploading file...": "", "URL": "URL", "URL is required": "Tlaq tansa URL", @@ -1747,6 +1793,7 @@ "User Groups": "Agraw n iseqdacen", "User location successfully retrieved.": "", "User menu": "Umuɣ n useqdac", + "User ratings (thumbs up/down)": "", "User Webhooks": "Webhooks n yiseqdacen", "Username": "Isem n useqdac", "users": "", @@ -1796,15 +1843,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI ad ssutreɣ i \"{url}}/chat/completions\"", "What are you trying to achieve?": "Sanda ay tettarmed ad tessiwḍed?", "What are you working on?": "Ɣef wacu ay la tettmahaled?", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "D acu d amaynut deg", "What's on your mind?": "", "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.": "", "wherever you are": "anda yebɣu tiliḍ", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "Ma tebɣiḍ ad d-tessugneḍ tuffɣa. Yal asebter ad yebḍu s ulugen igli d wuṭṭun n usebter. Imezwura ɣer False.", "Whisper (Local)": "Whisper (adigan)", + "Who can share to this group": "", "Why?": "Ayɣer?", "Widescreen Mode": "Askar n ugdil aččuran", "Width": "Tehri", + "Wikipedia": "", "Won": "Yerbaḥ", "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.": "", "Workspace": "Tamnaḍṭ n umahil", @@ -1816,6 +1867,8 @@ "Yacy Instance URL": "URL n tummant Yacy", "Yacy Password": "Awal n uɛeddi n Yacy", "Yacy Username": "Isem n useqdac Yacy", + "Yahoo": "", + "Yandex": "", "Yesterday": "Iḍelli", "Yesterday at {{LOCALIZED_TIME}}": "Iḍelli, ɣef {{LOCALIZED_TIME}}", "You": "Kečč·mm", @@ -1823,6 +1876,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Tzemreḍ kan ad tqeṣṣreḍ s afellay n ufaylu(s) n {{maxCount}} ɣef tikelt.", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "", "You cannot upload an empty file.": "Ur tezmireḍ ad tessaliḍ afaylu ilem.", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this thread.": "", "You do not have permission to upload files to this knowledge base.": "", @@ -1834,6 +1890,8 @@ "Your Account": "Amiḍan-ik·im", "Your account status is currently pending activation.": "Addad-nnem n umiḍan atan yettṛaju armad.", "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.": "", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "YouTube", "Youtube Language": "Tutlayt n Youtube", "Youtube Proxy URL": "Tansa URL n upṛuksi Youtube" diff --git a/src/lib/i18n/locales/ko-KR/translation.json b/src/lib/i18n/locales/ko-KR/translation.json index 9fd174864..c5e8f4513 100644 --- a/src/lib/i18n/locales/ko-KR/translation.json +++ b/src/lib/i18n/locales/ko-KR/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "이 설정을 조정하면 모든 사용자에게 변경 사항이 일괄 적용됩니다.", "admin": "관리자", "Admin": "관리자", + "Admin Contact Email": "", "Admin Panel": "관리자 패널", "Admin Settings": "관리자 설정", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "관리자는 항상 모든 도구에 접근할 수 있지만, 사용자는 워크스페이스에서 모델마다 도구를 할당받아야 합니다.", @@ -101,7 +102,6 @@ "Allow Continue Response": "계속 응답 허용", "Allow Delete Messages": "메시지 삭제 허용", "Allow File Upload": "파일 업로드 허용", - "Allow Group Sharing": "", "Allow Multiple Models in Chat": "채팅에서 여러 모델 허용", "Allow non-local voices": "외부 음성 허용", "Allow Rate Response": "", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "그리고 {{COUNT}}개 더", "and create a new shared link.": "새로운 공유 링크를 생성합니다.", "Android": "안드로이드", + "Anyone": "", "API Base URL": "API 기본 URL", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "Datalab Marker 서비스의 API URL. 기본값: https://www.datalab.to/api/v1/marker", "API Key": "API 키", @@ -175,6 +176,7 @@ "Authenticate": "인증하다", "Authentication": "인증", "Auto": "자동", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "응답을 클립보드에 자동 복사", "Auto-playback response": "응답 자동 재생", "Autocomplete Generation": "자동완성 생성", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "Automatic1111 API 인증 문자", "AUTOMATIC1111 Base URL": "AUTOMATIC1111 기본 URL", "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 기본 URL 설정이 필요합니다.", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "가능한 목록", "Available Tools": "사용 가능한 도구", "available users": "사용 가능 사용자", @@ -201,6 +204,7 @@ "before": "이전", "Being lazy": "게으름 피우기", "Beta": "베타", + "Bing": "", "Bing Search V7 Endpoint": "Bing Search V7 엔드포인트", "Bing Search V7 Subscription Key": "Bing Search V7 구독 키", "Bio": "소개", @@ -209,7 +213,9 @@ "Bocha Search API Key": "Bocha Search API 키", "Bold": "굵게", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "특정 토큰을 가중 상향/하향하여 응답을 제약합니다. 값은 -100 ~ 100(기본값: 없음)", + "Brave": "", "Brave Search API Key": "Brave Search API 키", + "Builtin Tools": "", "Bullet List": "글머리 기호 목록", "Button ID": "버튼 ID", "Button Label": "버튼 레이블", @@ -256,8 +262,10 @@ "Check for updates": "업데이트 확인", "Checking for updates...": "업데이트 확인중...", "Choose a model before saving...": "저장하기 전에 모델을 선택하세요...", + "Chunk Min Size Target": "", "Chunk Overlap": "청크 중첩", "Chunk Size": "청크 크기", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "암호", "Citation": "인용", "Citations": "인용", @@ -293,7 +301,6 @@ "Code Block": "코드 블록", "Code Editor": "코드 편집기", "Code execution": "코드 실행", - "Code Execution": "코드 실행", "Code Execution Engine": "코드 실행 엔진", "Code Execution Timeout": "코드 실행 시간 초과", "Code formatted successfully": "코드 포맷팅이 성공적으로 완료되었습니다.", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "WebUI 접속을 위해서는 관리자에게 연락에 연락하십시오", "Content": "내용", "Content Extraction Engine": "콘텐츠 추출 엔진", + "Content lengths (character counts only)": "", "Continue Response": "응답 이어 받기", "Continue with {{provider}}": "{{provider}}로 계속", "Continue with Email": "이메일로 계속", @@ -393,6 +401,7 @@ "Database": "데이터베이스", "Datalab Marker API": "Datalab Marker API", "DD/MM/YYYY": "YYYY/MM/DD", + "DDGS Backend": "", "December": "12월", "Decrease UI Scale": "", "Deepgram": "", @@ -474,6 +483,7 @@ "Dive into knowledge": "지식 탐구", "Do not install functions from sources you do not fully trust.": "불분명한 출처를 가진 함수를 설치하지마세요", "Do not install tools from sources you do not fully trust.": "불분명한 출처를 가진 도구를 설치하지마세요", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "", "Docling Parameters": "", "Docling Server URL required.": "Docling 서버 URL이 필요합니다.", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "", "Document Intelligence Model": "", "Documentation": "문서", - "Documents": "문서", "does not make any external connections, and your data stays securely on your locally hosted server.": "외부와 어떠한 연결도 하지 않으며, 데이터는 로컬에서 호스팅되는 서버에 안전하게 유지됩니다.", "Domain Filter List": "도메인 필터 목록", "don't fetch random pipelines from sources you don't trust.": "신뢰하지 않는 출처에서 임의의 파이프라인을 가져오지 마세요.", @@ -493,11 +502,14 @@ "Done": "완료됨", "Download": "다운로드", "Download & Delete": "다운로드 및 삭제", + "Download as JSON": "", "Download as SVG": "SVG로 다운로드", "Download canceled": "다운로드 취소", "Download Database": "데이터베이스 다운로드", + "Downloading stats...": "", "Draw": "그리기", "Drop any files here to upload": "여기에 파일을 끌어다 놓아 업로드하세요", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "예: '30초','10분'. 올바른 시간 단위는 '초', '분', '시'입니다.", "e.g. \"json\" or a JSON schema": "예: \\\"json\\\" 또는 JSON 스키마", "e.g. 60": "예: 60", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "Bocha 검색 API 키 입력", "Enter Brave Search API Key": "Brave Search API Key 입력", "Enter certificate path": "인증서 경로 입력", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "청크 중첩 입력", "Enter Chunk Size": "청크 크기 입력", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "쉼표로 구분된 \\\"토큰:편향_값\\\" 쌍 입력 (예: 5432:100, 413:-100)", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "외부 웹 검색 URL 입력", "Enter Firecrawl API Base URL": "Firecrawl API 기본 URL 입력", "Enter Firecrawl API Key": "Firecrawl API 키 입력", + "Enter Firecrawl Timeout": "", "Enter folder name": "폴더 이름 입력", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "Github Raw URL 입력", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "색상 hex 입력 (예: #FF0000)", "Enter ID": "ID 입력", "Enter Image Size (e.g. 512x512)": "이미지 크기 입력(예: 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "Jina API 키 입력", "Enter JSON config (e.g., {\"disable_links\": true})": "JSON 설정 입력 (예: {\"disable_links\": true})", "Enter Jupyter Password": "Jupyter 비밀번호 입력", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "Kagi Search API 키 입력", "Enter Key Behavior": "키 동작 입력", "Enter language codes": "언어 코드 입력", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "Mistral API Base URL 입력", "Enter Mistral API Key": "Mistral API 키 입력", "Enter Model ID": "모델 ID 입력", @@ -736,6 +753,7 @@ "Failed to generate title": "제목 생성 실패", "Failed to import models": "모델 가져오기 실패", "Failed to load chat preview": "채팅 미리보기 로드 실패", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "파일 내용 로드 실패.", "Failed to move chat": "채팅 이동 실패", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "기능", "Features Permissions": "기능 권한", "February": "2월", + "Feedback": "", "Feedback deleted successfully": "", "Feedback Details": "피드백 상세내용", "Feedback History": "피드백 기록", - "Feedbacks": "피드백", "Feel free to add specific details": "자세한 내용을 자유롭게 추가하세요.", "Female": "여성", "File": "파일", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Fingerprint spoofing 감지: 이니셜을 아바타로 사용할 수 없습니다. 기본 프로필 이미지로 설정합니다.", "Firecrawl API Base URL": "Firecrawl API 기본 URL", "Firecrawl API Key": "Firecrawl API 키", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "", "Focus Chat Input": "채팅 입력창에 포커스", "Folder": "폴더", "Folder Background Image": "폴더 배경 이미지", "Folder deleted successfully": "성공적으로 폴더가 삭제되었습니다", + "Folder Max File Count": "", "Folder Name": "폴더 이름", "Folder name cannot be empty.": "폴더 이름을 작성해주세요", "Folder name updated successfully": "성공적으로 폴더 이름이 저장되었습니다", @@ -826,7 +846,6 @@ "General": "일반", "Generate": "생성", "Generate an image": "이미지 생성", - "Generate Image": "이미지 생성", "Generate Message Pair": "", "Generated Image": "생성된 이미지", "Generating search query": "검색 쿼리 생성", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "{{WEBUI_NAME}} 시작하기", "Global": "글로벌", "Good Response": "좋은 응답", + "Google": "", "Google Drive": "구글 드라이브", "Google PSE API Key": "Google PSE API 키", "Google PSE Engine Id": "Google PSE 엔진 ID", "Gravatar": "", "Grid": "", + "Grokipedia": "", "Group": "그룹", "Group Channel": "", "Group created successfully": "성공적으로 그룹을 생성했습니다", @@ -895,7 +916,6 @@ "Image Prompt Generation": "이미지 프롬프트 생성", "Image Prompt Generation Prompt": "이미지 프롬프트를 생성하기 위한 프롬프트", "Image Size": "이미지 크기", - "Images": "이미지", "Import": "가져오기", "Import Chats": "채팅 가져오기", "Import Config from JSON File": "JSON 파일에서 설정 가져오기", @@ -927,6 +947,7 @@ "Integration": "통합", "Integrations": "통합", "Interface": "인터페이스", + "Interface Settings Access": "", "Invalid file content": "잘못된 파일 내용", "Invalid file format.": "잘못된 파일 형식", "Invalid JSON file": "잘못된 JSON 파일", @@ -940,6 +961,7 @@ "is typing...": "입력 중...", "Italic": "기울임", "January": "1월", + "Jina API Base URL": "", "Jina API Key": "Jina API 키", "join our Discord for help.": "도움말을 보려면 Discord에 가입하세요.", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "\"{{url}}/api/tags\" 엔드포인트의 모든 모델을 포함하려면 비워 두세요", "Leave empty to include all models from \"{{url}}/models\" endpoint": "\"{{url}}/models\" 엔드포인트의 모든 모델을 포함하려면 비워 두세요", "Leave empty to include all models or select specific models": "비워두면 모든 모델이 포함되며, 특정 모델을 선택할 수도 있습니다.", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "비워두면 기본 모델(voxtral-mini-latest)을 사용합니다.", "Leave empty to use the default prompt, or enter a custom prompt": "기본 프롬프트를 사용하기 위해 빈칸으로 남겨두거나, 커스텀 프롬프트를 입력하세요", "Leave model field empty to use the default model.": "기본 모델을 사용하려면 모델 필드를 비워 두세요.", @@ -1029,10 +1052,12 @@ "Manage your account information.": "계정 정보를 관리하세요.", "March": "3월", "Markdown": "마크다운", - "Markdown (Header)": "마크다운 (헤더)", + "Markdown Header Text Splitter": "", "Max Speakers": "최대 화자 수", "Max Upload Count": "업로드 최대 수", "Max Upload Size": "업로드 최대 사이즈", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "최대 3개의 모델을 동시에 다운로드할 수 있습니다. 나중에 다시 시도하세요.", "May": "5월", "MBR": "", @@ -1042,6 +1067,7 @@ "Member removed successfully": "멤버 삭제에 성공했습니다", "Members": "멤버", "Members added successfully": "멤버 추가에 성공했습니다", + "Memories": "", "Memories accessible by LLMs will be shown here.": "LLM에서 접근할 수 있는 메모리는 여기에 표시됩니다.", "Memory": "메모리", "Memory added successfully": "성공적으로 메모리가 추가되었습니다", @@ -1051,6 +1077,7 @@ "Merge Responses": "응답들 결합하기", "Merged Response": "결합된 응답", "Message": "메시지", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "이 기능을 사용하려면 메시지 평가가 활성화되어야합니다", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "링크 생성 후에 보낸 메시지는 공유되지 않습니다. URL이 있는 사용자는 공유된 채팅을 볼 수 있습니다.", "Microsoft OneDrive": "", @@ -1083,9 +1110,11 @@ "Model Name": "모델 이름", "Model name already exists, please choose a different one": "이 모델 이름은 이미 존재합니다. 다른 이름을 선택해주세요.", "Model Name is required.": "모델 이름이 필요합니다", + "Model names and usage frequency": "", "Model not selected": "모델이 선택되지 않았습니다.", "Model Params": "모델 매개변수", "Model Permissions": "모델 권한", + "Model responses or outputs": "", "Model unloaded successfully": "성공적으로 모델이 언로드되었습니다", "Model updated successfully": "성공적으로 모델이 업데이트되었습니다", "Model(s) do not support file upload": "모델이 파일 업로드를 지원하지 않습니다", @@ -1096,6 +1125,7 @@ "Models imported successfully": "모델을 성공적으로 가져왔습니다.", "Models Public Sharing": "모델 공개 공유", "Models Sharing": "", + "Mojeek": "", "Mojeek Search API Key": "Mojeek Search API 키", "More": "더보기", "More Concise": "더 간결하게", @@ -1129,7 +1159,7 @@ "No conversation to save": "저장할 대화가 없습니다", "No distance available": "거리 불가능", "No expiration can pose security risks.": "만료 기한이 없으면 보안 위험이 발생할 수 있습니다.", - "No feedbacks found": "피드백을 찾을 수 없습니다", + "No feedback found": "", "No file selected": "파일이 선택되지 않았습니다", "No files in this knowledge base.": "", "No functions found": "함수를 찾을 수 없습니다", @@ -1144,6 +1174,7 @@ "No models selected": "모델이 선택되지 않았습니다", "No Notes": "노트가 없습니다", "No notes found": "노트를 찾을 수 없습니다", + "No one": "", "No pinned messages": "고정된 메시지가 없습니다", "No prompts found": "프롬프트를 찾을 수 없습니다", "No results": "결과가 없습니다", @@ -1195,6 +1226,7 @@ "Only invited users can access": "초대된 사용자만 접근할 수 있습니다.", "Only markdown files are allowed": "마크다운 파일만 허용됩니다", "Only select users and groups with permission can access": "권한이 있는 사용자와 그룹만 접근 가능합니다.", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "이런! URL이 잘못된 것 같습니다. 다시 한번 확인하고 다시 시도해주세요.", "Oops! There are files still uploading. Please wait for the upload to complete.": "이런! 파일이 계속 업로드중 입니다. 업로드가 완료될 때까지 잠시만 기다려주세요.", "Oops! There was an error in the previous response.": "이런! 이전 응답에 에러가 있었던 것 같습니다.", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI는 모든 OpenAPI 서버에서 제공하는 도구를 사용할 수 있습니다.", "Open WebUI uses faster-whisper internally.": "Open WebUI는 내부적으로 패스트 위스퍼를 사용합니다.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI는 SpeechT5와 CMU Arctic 스피커 임베딩을 사용합니다.", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "열린 WebUI 버젼(v{{OPEN_WEBUI_VERSION}})은 최소 버젼 (v{{REQUIRED_VERSION}})보다 낮습니다", "OpenAI": "OpenAI", "OpenAI API": "OpenAI API", @@ -1235,6 +1268,8 @@ "page": "페이지", "Paginate": "페이지 나누기", "Parameters": "매개변수", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "비밀번호", "Passwords do not match.": "비밀번호가 일치하지 않습니다.", "Paste Large Text as File": "큰 텍스트를 파일로 붙여넣기", @@ -1260,7 +1295,6 @@ "Pipe": "파이프", "Pipeline deleted successfully": "성공적으로 파이프라인이 삭제되었습니다.", "Pipeline downloaded successfully": "성공적으로 파이프라인이 설치되었습니다.", - "Pipelines": "파이프라인", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines는 임의 코드 실행이 가능한 플러그인 시스템입니다 —", "Pipelines Not Detected": "파이프라인이 발견되지 않았습니다.", "Pipelines Valves": "파이프라인 밸브", @@ -1497,6 +1531,7 @@ "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.": "중단 시퀀스를 설정합니다. 이 패턴이 발생하면 LLM은 텍스트 생성을 중단하고 반환합니다. 여러 중단 패턴은 모델 파일에서 여러 개의 별도 중단 매개변수를 지정하여 설정할 수 있습니다.", "Setting": "설정", "Settings": "설정", + "Settings Permissions": "", "Settings saved successfully!": "설정이 성공적으로 저장되었습니다!", "Share": "공유", "Share Chat": "채팅 공유", @@ -1540,6 +1575,7 @@ "Speech recognition error: {{error}}": "음성 인식 오류: {{error}}", "Speech-to-Text": "음성-텍스트 변환", "Speech-to-Text Engine": "음성-텍스트 변환 엔진", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "새 대화 시작", "Start of the channel": "채널 시작", "Start Tag": "시작 태그", @@ -1550,6 +1586,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "정지", + "Stop Download": "", "Stop Generating": "생성 중지", "Stop Sequence": "중지 시퀀스", "Stream Chat Response": "스트림 채팅 응답", @@ -1570,7 +1607,14 @@ "Support": "지원", "Support this plugin:": "플러그인 지원", "Supported MIME Types": "지원하는 MIME 타입", + "Sync": "", + "Sync Complete!": "", "Sync directory": "디렉토리 연동", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "시스템", "System Instructions": "시스템 지침", "System Prompt": "시스템 프롬프트", @@ -1615,6 +1659,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "BM25 하이브리드 검색의 가중치. 0에 가까울수록 의미(semantic) 기반, 1에 가까울수록 어휘(lexical) 기반. 기본값 0.5", "The width in pixels to compress images to. Leave empty for no compression.": "이미지를 압축할 픽셀 너비입니다. 압축하지 않으려면 비워 두세요.", "Theme": "테마", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "생각 중...", "This action cannot be undone. Do you wish to continue?": "이 행동은 되돌릴 수 없습니다. 계속 하시겠습니까?", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "{{createdAt}}에 {{channelName}} 채널이 처음 만들어졌습니다. 대화를 시작해보세요.", @@ -1729,6 +1774,7 @@ "Upload Pipeline": "업로드 파이프라인", "Upload Progress": "업로드 진행 상황", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploaded files or images": "", "Uploading file...": "파일 업로드중...", "URL": "URL", "URL is required": "URL이 필요합니다.", @@ -1746,6 +1792,7 @@ "User Groups": "사용자 그룹", "User location successfully retrieved.": "성공적으로 사용자의 위치를 불러왔습니다", "User menu": "사용자 메뉴", + "User ratings (thumbs up/down)": "", "User Webhooks": "사용자 웹훅", "Username": "사용자 이름", "users": "사용자", @@ -1795,15 +1842,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI가 \"{{url}}/chat/completions\"로 요청을 보냅니다", "What are you trying to achieve?": "무엇을 성취하고 싶으신가요?", "What are you working on?": "어떤 작업을 하고 계신가요?", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "새로운 기능:", "What's on your mind?": "무슨 생각을 하고 계신가요?", "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.": "활성화하면 모델이 각 채팅 메시지에 실시간으로 응답하여 사용자가 메시지를 보내는 즉시 응답을 생성합니다. 이 모드는 실시간 채팅 애플리케이션에 유용하지만, 느린 하드웨어에서는 성능에 영향을 미칠 수 있습니다.", "wherever you are": "당신이 어디에 있든", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "출력을 페이지로 나눌지 여부입니다. 각 페이지는 구분선과 페이지 번호로 구분됩니다. 기본값은 False입니다.", "Whisper (Local)": "Whisper (로컬)", + "Who can share to this group": "", "Why?": "이유는?", "Widescreen Mode": "와이드스크린 모드", "Width": "", + "Wikipedia": "", "Won": "승리", "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.": "top-k와 함께 작동합니다. 값이 높을수록(예: 0.95) 더 다양한 텍스트가 생성되고, 값이 낮을수록(예: 0.5) 더 집중적이고 보수적인 텍스트가 생성됩니다.", "Workspace": "워크스페이스", @@ -1815,6 +1866,8 @@ "Yacy Instance URL": "Yacy 인스턴스 URL", "Yacy Password": "Yacy 비밀번호", "Yacy Username": "Yacy 사용자 이름", + "Yahoo": "", + "Yandex": "", "Yesterday": "어제", "Yesterday at {{LOCALIZED_TIME}}": "어제 {{LOCALIZED_TIME}}", "You": "당신", @@ -1822,6 +1875,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "최대 {{maxCount}}개의 파일과만 동시에 대화할 수 있습니다 ", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "아래 '관리' 버튼으로 메모리를 추가하여 LLM들과의 상호작용을 개인화할 수 있습니다. 이를 통해 더 유용하고 맞춤화된 경험을 제공합니다.", "You cannot upload an empty file.": "빈 파일을 업로드 할 수 없습니다", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this thread.": "", "You do not have permission to upload files to this knowledge base.": "", @@ -1833,6 +1889,8 @@ "Your Account": "계정", "Your account status is currently pending activation.": "현재 계정은 아직 활성화되지 않았습니다.", "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.": "당신의 모든 기여는 곧바로 플러그인 개발자에게 갑니다; Open WebUI는 수수료를 받지 않습니다. 다만, 선택한 후원 플랫폼은 수수료를 가져갈 수 있습니다.", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "유튜브", "Youtube Language": "Youtube 언어", "Youtube Proxy URL": "Youtube 프록시 URL" diff --git a/src/lib/i18n/locales/lt-LT/translation.json b/src/lib/i18n/locales/lt-LT/translation.json index 224af8a35..3cdf2316b 100644 --- a/src/lib/i18n/locales/lt-LT/translation.json +++ b/src/lib/i18n/locales/lt-LT/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "Šių nustatymų pakeitimas bus pritakytas visiems naudotojams.", "admin": "Administratorius", "Admin": "Administratorius", + "Admin Contact Email": "", "Admin Panel": "Administratorių panelė", "Admin Settings": "Administratorių nustatymai", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administratoriai visada turi visus įrankius. Naudotojai turi tuėti prieigą prie dokumentų per modelių nuostatas", @@ -101,7 +102,6 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "", - "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "Leisti nelokalius balsus", "Allow Rate Response": "", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "", "and create a new shared link.": "sukurti naują dalinimosi nuorodą", "Android": "", + "Anyone": "", "API Base URL": "API basės nuoroda", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "", "API Key": "API raktas", @@ -175,6 +176,7 @@ "Authenticate": "", "Authentication": "", "Auto": "", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "Automatiškai nukopijuoti atsakymą", "Auto-playback response": "Automatinis atsakymo skaitymas", "Autocomplete Generation": "", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "AUTOMATIC1111 Api Auth String", "AUTOMATIC1111 Base URL": "AUTOMATIC1111 bazės nuoroda", "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 bazės nuoroda reikalinga.", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "", "Available Tools": "", "available users": "galimi naudotojai", @@ -201,6 +204,7 @@ "before": "prieš", "Being lazy": "Būvimas tingiu", "Beta": "", + "Bing": "", "Bing Search V7 Endpoint": "", "Bing Search V7 Subscription Key": "", "Bio": "", @@ -209,7 +213,9 @@ "Bocha Search API Key": "", "Bold": "", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "", + "Brave": "", "Brave Search API Key": "Brave Search API raktas", + "Builtin Tools": "", "Bullet List": "", "Button ID": "", "Button Label": "", @@ -256,8 +262,10 @@ "Check for updates": "Patikrinti atnaujinimus", "Checking for updates...": "Ieškoma atnaujinimų...", "Choose a model before saving...": "Pasirinkite modelį prieš išsaugant...", + "Chunk Min Size Target": "", "Chunk Overlap": "Blokų persidengimas", "Chunk Size": "Blokų dydis", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "", "Citation": "Citata", "Citations": "", @@ -293,7 +301,6 @@ "Code Block": "", "Code Editor": "", "Code execution": "", - "Code Execution": "", "Code Execution Engine": "", "Code Execution Timeout": "", "Code formatted successfully": "Kodas suformatuotas sėkmingai", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "Susisiekite su administratoriumi dėl prieigos", "Content": "Turinys", "Content Extraction Engine": "", + "Content lengths (character counts only)": "", "Continue Response": "Tęsti atsakymą", "Continue with {{provider}}": "Tęsti su {{tiekėju}}", "Continue with Email": "", @@ -393,6 +401,7 @@ "Database": "Duomenų bazė", "Datalab Marker API": "", "DD/MM/YYYY": "", + "DDGS Backend": "", "December": "Gruodis", "Decrease UI Scale": "", "Deepgram": "", @@ -474,6 +483,7 @@ "Dive into knowledge": "", "Do not install functions from sources you do not fully trust.": "Neinstaliuokite funkcijų iš nepatikimų šaltinių", "Do not install tools from sources you do not fully trust.": "Neinstaliuokite įrankių iš nepatikimų šaltinių", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "", "Docling Parameters": "", "Docling Server URL required.": "", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "", "Document Intelligence Model": "", "Documentation": "Dokumentacija", - "Documents": "Dokumentai", "does not make any external connections, and your data stays securely on your locally hosted server.": "neturi jokių išorinių ryšių ir duomenys lieka serveryje.", "Domain Filter List": "", "don't fetch random pipelines from sources you don't trust.": "Neatsisiųskite atsitiktinių pipelines iš nepatikimų šaltinių.", @@ -493,11 +502,14 @@ "Done": "Atlikta", "Download": "Parsisiųsti", "Download & Delete": "Atsisiųsti ir ištrinti", + "Download as JSON": "", "Download as SVG": "", "Download canceled": "Parsisiuntimas atšauktas", "Download Database": "Parsisiųsti duomenų bazę", + "Downloading stats...": "", "Draw": "", "Drop any files here to upload": "", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "pvz. '30s', '10m'. Laiko vienetai yra 's', 'm', 'h'.", "e.g. \"json\" or a JSON schema": "", "e.g. 60": "", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "", "Enter Brave Search API Key": "Įveskite Bravo Search API raktą", "Enter certificate path": "", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "Įveskite blokų persidengimą", "Enter Chunk Size": "Įveskite blokų dydį", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "", "Enter Firecrawl API Base URL": "", "Enter Firecrawl API Key": "", + "Enter Firecrawl Timeout": "", "Enter folder name": "", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "Įveskite GitHub Raw nuorodą", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "", "Enter ID": "", "Enter Image Size (e.g. 512x512)": "Įveskite paveiksliuko dydį (pvz. 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "", "Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter Jupyter Password": "", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "", "Enter Key Behavior": "", "Enter language codes": "Įveskite kalbos kodus", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "", "Enter Mistral API Key": "", "Enter Model ID": "", @@ -736,6 +753,7 @@ "Failed to generate title": "", "Failed to import models": "", "Failed to load chat preview": "", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "", "Failed to move chat": "", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "", "Features Permissions": "", "February": "Vasaris", + "Feedback": "", "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "", - "Feedbacks": "", "Feel free to add specific details": "Galite pridėti specifinių detalių", "Female": "", "File": "Rinkmena", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Nepavyko nsutatyti profilio nuotraukos", "Firecrawl API Base URL": "", "Firecrawl API Key": "", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "", "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "", + "Folder Max File Count": "", "Folder Name": "", "Folder name cannot be empty.": "", "Folder name updated successfully": "", @@ -826,7 +846,6 @@ "General": "Bendri", "Generate": "", "Generate an image": "", - "Generate Image": "Generuoti paveikslėlį", "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Generuoti paieškos užklausą", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "", "Global": "Globalu", "Good Response": "Geras atsakymas", + "Google": "", "Google Drive": "", "Google PSE API Key": "Google PSE API raktas", "Google PSE Engine Id": "Google PSE variklio ID", "Gravatar": "", "Grid": "", + "Grokipedia": "", "Group": "Grupė", "Group Channel": "", "Group created successfully": "", @@ -895,7 +916,6 @@ "Image Prompt Generation": "", "Image Prompt Generation Prompt": "", "Image Size": "", - "Images": "Vaizdai", "Import": "", "Import Chats": "Importuoti pokalbius", "Import Config from JSON File": "", @@ -927,6 +947,7 @@ "Integration": "", "Integrations": "", "Interface": "Sąsaja", + "Interface Settings Access": "", "Invalid file content": "", "Invalid file format.": "", "Invalid JSON file": "", @@ -940,6 +961,7 @@ "is typing...": "", "Italic": "", "January": "Sausis", + "Jina API Base URL": "", "Jina API Key": "", "join our Discord for help.": "prisijunkite prie mūsų Discord.", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "", "Leave empty to include all models or select specific models": "", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "", "Leave empty to use the default prompt, or enter a custom prompt": "", "Leave model field empty to use the default model.": "", @@ -1029,10 +1052,12 @@ "Manage your account information.": "", "March": "Kovas", "Markdown": "", - "Markdown (Header)": "", + "Markdown Header Text Splitter": "", "Max Speakers": "", "Max Upload Count": "", "Max Upload Size": "", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Daugiausiai trys modeliai gali būti parsisiunčiami vienu metu.", "May": "gegužė", "MBR": "", @@ -1042,6 +1067,7 @@ "Member removed successfully": "", "Members": "", "Members added successfully": "", + "Memories": "", "Memories accessible by LLMs will be shown here.": "Atminitis prieinama kalbos modelio bus rodoma čia.", "Memory": "Atmintis", "Memory added successfully": "Atmintis pridėta sėkmingai", @@ -1051,6 +1077,7 @@ "Merge Responses": "", "Merged Response": "Sujungtas atsakymas", "Message": "", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Žinutės, kurias siunčiate po nuorodos sukūrimo nebus matomos nuorodos turėtojams. Naudotojai su nuoroda matys žinutes iki nuorodos sukūrimo.", "Microsoft OneDrive": "", @@ -1083,9 +1110,11 @@ "Model Name": "", "Model name already exists, please choose a different one": "", "Model Name is required.": "", + "Model names and usage frequency": "", "Model not selected": "Modelis nepasirinktas", "Model Params": "Modelio parametrai", "Model Permissions": "", + "Model responses or outputs": "", "Model unloaded successfully": "", "Model updated successfully": "Modelis atnaujintas sėkmingai", "Model(s) do not support file upload": "", @@ -1096,6 +1125,7 @@ "Models imported successfully": "", "Models Public Sharing": "", "Models Sharing": "", + "Mojeek": "", "Mojeek Search API Key": "", "More": "Daugiau", "More Concise": "", @@ -1129,7 +1159,7 @@ "No conversation to save": "", "No distance available": "", "No expiration can pose security risks.": "", - "No feedbacks found": "", + "No feedback found": "", "No file selected": "Nėra pasirinktų dokumentų", "No files in this knowledge base.": "", "No functions found": "", @@ -1144,6 +1174,7 @@ "No models selected": "", "No Notes": "", "No notes found": "", + "No one": "", "No pinned messages": "", "No prompts found": "", "No results": "Rezultatų nerasta", @@ -1195,6 +1226,7 @@ "Only invited users can access": "", "Only markdown files are allowed": "", "Only select users and groups with permission can access": "", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Regis nuoroda nevalidi. Prašau patikrtinkite ir pabandykite iš naujo.", "Oops! There are files still uploading. Please wait for the upload to complete.": "", "Oops! There was an error in the previous response.": "", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Tortue Chat versija per sena. Reikalinga (v{{REQUIRED_VERSION}}) versija.", "OpenAI": "OpenAI", "OpenAI API": "OpenAI API", @@ -1235,6 +1268,8 @@ "page": "", "Paginate": "", "Parameters": "", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "Slaptažodis", "Passwords do not match.": "", "Paste Large Text as File": "", @@ -1260,7 +1295,6 @@ "Pipe": "", "Pipeline deleted successfully": "Procesas ištrintas sėkmingai", "Pipeline downloaded successfully": "Procesas atsisiųstas sėkmingai", - "Pipelines": "Procesai", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines yra papildinių sistema, leidžianti vykdyti bet kokį kodą —", "Pipelines Not Detected": "Procesai neaptikti", "Pipelines Valves": "Procesų įeitys", @@ -1500,6 +1534,7 @@ "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.": "", "Setting": "", "Settings": "Nustatymai", + "Settings Permissions": "", "Settings saved successfully!": "Parametrai sėkmingai išsaugoti!", "Share": "Dalintis", "Share Chat": "Dalintis pokalbiu", @@ -1543,6 +1578,7 @@ "Speech recognition error: {{error}}": "Balso atpažinimo problema: {{error}}", "Speech-to-Text": "", "Speech-to-Text Engine": "Balso atpažinimo modelis", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "", "Start of the channel": "Kanalo pradžia", "Start Tag": "", @@ -1553,6 +1589,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "", + "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Baigt sekvenciją", "Stream Chat Response": "", @@ -1573,7 +1610,14 @@ "Support": "Palaikyti", "Support this plugin:": "Palaikykite šitą modulį", "Supported MIME Types": "", + "Sync": "", + "Sync Complete!": "", "Sync directory": "", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "Sistema", "System Instructions": "", "System Prompt": "Sistemos užklausa", @@ -1618,6 +1662,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "", "The width in pixels to compress images to. Leave empty for no compression.": "", "Theme": "Tema", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "Mąsto...", "This action cannot be undone. Do you wish to continue?": "Šis veiksmas negali būti atšauktas. Ar norite tęsti?", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "", @@ -1732,6 +1777,7 @@ "Upload Pipeline": "Atnaujinti procesą", "Upload Progress": "Įkėlimo progresas", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploaded files or images": "", "Uploading file...": "", "URL": "", "URL is required": "", @@ -1749,6 +1795,7 @@ "User Groups": "", "User location successfully retrieved.": "Naudotojo vieta sėkmingai gauta", "User menu": "", + "User ratings (thumbs up/down)": "", "User Webhooks": "", "Username": "", "users": "", @@ -1798,15 +1845,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "", "What are you trying to achieve?": "", "What are you working on?": "", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "Kas naujo", "What's on your mind?": "", "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.": "", "wherever you are": "", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whisper (Local)": "Whisper (lokalus)", + "Who can share to this group": "", "Why?": "", "Widescreen Mode": "Plataus ekrano rėžimas", "Width": "", + "Wikipedia": "", "Won": "", "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.": "", "Workspace": "Nuostatos", @@ -1818,6 +1869,8 @@ "Yacy Instance URL": "", "Yacy Password": "", "Yacy Username": "", + "Yahoo": "", + "Yandex": "", "Yesterday": "Vakar", "Yesterday at {{LOCALIZED_TIME}}": "", "You": "Jūs", @@ -1825,6 +1878,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Galite pagerinti modelių darbą suteikdami jiems atminties funkcionalumą.", "You cannot upload an empty file.": "", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this thread.": "", "You do not have permission to upload files to this knowledge base.": "", @@ -1836,6 +1892,8 @@ "Your Account": "", "Your account status is currently pending activation.": "Jūsų paskyra laukia administratoriaus patvirtinimo.", "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.": "Jūsų finansinis prisidėjimas tiesiogiai keliaus modulio kūrėjui.", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "Youtube", "Youtube Language": "", "Youtube Proxy URL": "" diff --git a/src/lib/i18n/locales/ms-MY/translation.json b/src/lib/i18n/locales/ms-MY/translation.json index 508e3c599..36b22ac49 100644 --- a/src/lib/i18n/locales/ms-MY/translation.json +++ b/src/lib/i18n/locales/ms-MY/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "Melaraskan tetapan ini akan menggunakan perubahan secara universal kepada semua pengguna.", "admin": "pentadbir", "Admin": "Pentadbir", + "Admin Contact Email": "", "Admin Panel": "Panel Pentadbir", "Admin Settings": "Tetapan Pentadbir", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Pentadbir mempunyai akses kepada semua alat pada setiap masa; pengguna memerlukan alat yang ditetapkan mengikut model dalam ruang kerja.", @@ -101,7 +102,6 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "", - "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "Benarkan suara bukan tempatan ", "Allow Rate Response": "", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "", "and create a new shared link.": "dan cipta pautan kongsi baharu", "Android": "", + "Anyone": "", "API Base URL": "URL Asas API", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "", "API Key": "Kunci API", @@ -175,6 +176,7 @@ "Authenticate": "", "Authentication": "", "Auto": "", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "Salin Response secara Automatik ke Papan Klip", "Auto-playback response": "Main semula respons secara automatik", "Autocomplete Generation": "", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "AUTOMATIC1111 Api Auth String", "AUTOMATIC1111 Base URL": "URL Asas AUTOMATIC1111", "AUTOMATIC1111 Base URL is required.": "URL Asas AUTOMATIC1111 diperlukan.", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "", "Available Tools": "", "available users": "pengguna tersedia", @@ -201,6 +204,7 @@ "before": "sebelum,", "Being lazy": "Menjadi Malas", "Beta": "", + "Bing": "", "Bing Search V7 Endpoint": "", "Bing Search V7 Subscription Key": "", "Bio": "", @@ -209,7 +213,9 @@ "Bocha Search API Key": "", "Bold": "", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "", + "Brave": "", "Brave Search API Key": "Kunci API Carian Brave", + "Builtin Tools": "", "Bullet List": "", "Button ID": "", "Button Label": "", @@ -256,8 +262,10 @@ "Check for updates": "Semak kemas kini", "Checking for updates...": "Kemas kini sedang disemak", "Choose a model before saving...": "Pilih model sebelum menyimpan", + "Chunk Min Size Target": "", "Chunk Overlap": "Tindihan 'Çhunk'", "Chunk Size": "Saiz 'Chunk'", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "", "Citation": "Petikan", "Citations": "", @@ -293,7 +301,6 @@ "Code Block": "", "Code Editor": "", "Code execution": "", - "Code Execution": "", "Code Execution Engine": "", "Code Execution Timeout": "", "Code formatted successfully": "Kod berjaya diformatkan", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "Hubungi admin untuk akses WebUI", "Content": "Kandungan", "Content Extraction Engine": "", + "Content lengths (character counts only)": "", "Continue Response": "Teruskan Respons", "Continue with {{provider}}": "Teruskan dengan {{provider}}", "Continue with Email": "", @@ -393,6 +401,7 @@ "Database": "Pangkalan Data", "Datalab Marker API": "", "DD/MM/YYYY": "", + "DDGS Backend": "", "December": "Disember", "Decrease UI Scale": "", "Deepgram": "", @@ -474,6 +483,7 @@ "Dive into knowledge": "", "Do not install functions from sources you do not fully trust.": "Jangan pasang fungsi daripada sumber yang anda tidak percayai sepenuhnya.", "Do not install tools from sources you do not fully trust.": "Jangan pasang alat daripada sumber yang anda tidak percaya sepenuhnya.", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "", "Docling Parameters": "", "Docling Server URL required.": "", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "", "Document Intelligence Model": "", "Documentation": "Dokumentasi", - "Documents": "Dokumen", "does not make any external connections, and your data stays securely on your locally hosted server.": "tidak membuat sebarang sambungan luaran, dan data anda kekal selamat pada pelayan yang dihoskan ditempat anda", "Domain Filter List": "", "don't fetch random pipelines from sources you don't trust.": "Jangan ambil pipeline rawak daripada sumber yang anda tidak percayai.", @@ -493,11 +502,14 @@ "Done": "Selesai", "Download": "Muat Turun", "Download & Delete": "Muat turun & Padam", + "Download as JSON": "", "Download as SVG": "", "Download canceled": "Muat Turun dibatalkan", "Download Database": "Muat turun Pangkalan Data", + "Downloading stats...": "", "Draw": "", "Drop any files here to upload": "", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "cth '30s','10m'. Unit masa yang sah ialah 's', 'm', 'h'.", "e.g. \"json\" or a JSON schema": "", "e.g. 60": "", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "", "Enter Brave Search API Key": "Masukkan Kekunci API carian Brave", "Enter certificate path": "", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "Masukkan Tindihan 'Chunk'", "Enter Chunk Size": "Masukkan Saiz 'Chunk'", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "", "Enter Firecrawl API Base URL": "", "Enter Firecrawl API Key": "", + "Enter Firecrawl Timeout": "", "Enter folder name": "", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "Masukkan URL 'Github Raw'", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "", "Enter ID": "", "Enter Image Size (e.g. 512x512)": "Masukkan Saiz Imej (cth 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "", "Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter Jupyter Password": "", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "", "Enter Key Behavior": "", "Enter language codes": "Masukkan kod bahasa", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "", "Enter Mistral API Key": "", "Enter Model ID": "", @@ -736,6 +753,7 @@ "Failed to generate title": "", "Failed to import models": "", "Failed to load chat preview": "", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "", "Failed to move chat": "", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "", "Features Permissions": "", "February": "Febuari", + "Feedback": "", "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "", - "Feedbacks": "", "Feel free to add specific details": "Jangan ragu untuk menambah butiran khusus", "Female": "", "File": "Fail", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Peniruan cap jari dikesan, tidak dapat menggunakan nama pendek sebagai avatar. Lalai kepada imej profail asal", "Firecrawl API Base URL": "", "Firecrawl API Key": "", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "", "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "", + "Folder Max File Count": "", "Folder Name": "", "Folder name cannot be empty.": "", "Folder name updated successfully": "", @@ -826,7 +846,6 @@ "General": "Umum", "Generate": "", "Generate an image": "", - "Generate Image": "Jana Imej", "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Jana pertanyaan carian", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "", "Global": "Global", "Good Response": "Respons Baik", + "Google": "", "Google Drive": "", "Google PSE API Key": "Kunci API Google PSE", "Google PSE Engine Id": "ID Enjin Google PSE", "Gravatar": "", "Grid": "", + "Grokipedia": "", "Group": "Kumpulan", "Group Channel": "", "Group created successfully": "", @@ -895,7 +916,6 @@ "Image Prompt Generation": "", "Image Prompt Generation Prompt": "", "Image Size": "", - "Images": "Imej", "Import": "", "Import Chats": "Import Perbualan", "Import Config from JSON File": "", @@ -927,6 +947,7 @@ "Integration": "", "Integrations": "", "Interface": "Antaramuka", + "Interface Settings Access": "", "Invalid file content": "", "Invalid file format.": "", "Invalid JSON file": "", @@ -940,6 +961,7 @@ "is typing...": "", "Italic": "", "January": "Januari", + "Jina API Base URL": "", "Jina API Key": "", "join our Discord for help.": "sertai Discord kami untuk mendapatkan bantuan.", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "", "Leave empty to include all models or select specific models": "", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "", "Leave empty to use the default prompt, or enter a custom prompt": "", "Leave model field empty to use the default model.": "", @@ -1029,10 +1052,12 @@ "Manage your account information.": "", "March": "Mac", "Markdown": "", - "Markdown (Header)": "", + "Markdown Header Text Splitter": "", "Max Speakers": "", "Max Upload Count": "", "Max Upload Size": "", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maksimum 3 model boleh dimuat turun serentak. Sila cuba sebentar lagi.", "May": "Mei", "MBR": "", @@ -1042,6 +1067,7 @@ "Member removed successfully": "", "Members": "", "Members added successfully": "", + "Memories": "", "Memories accessible by LLMs will be shown here.": "Memori yang boleh diakses oleh LLM akan ditunjukkan di sini.", "Memory": "Memori", "Memory added successfully": "Memori berjaya ditambah", @@ -1051,6 +1077,7 @@ "Merge Responses": "", "Merged Response": "Respons Digabungkan", "Message": "", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Mesej yang anda hantar selepas membuat pautan anda tidak akan dikongsi. Pengguna dengan URL akan dapat melihat perbualan yang dikongsi.", "Microsoft OneDrive": "", @@ -1083,9 +1110,11 @@ "Model Name": "", "Model name already exists, please choose a different one": "", "Model Name is required.": "", + "Model names and usage frequency": "", "Model not selected": "Model tidak dipilih", "Model Params": "Model Params", "Model Permissions": "", + "Model responses or outputs": "", "Model unloaded successfully": "", "Model updated successfully": "Model berjaya dikemas kini", "Model(s) do not support file upload": "", @@ -1096,6 +1125,7 @@ "Models imported successfully": "", "Models Public Sharing": "", "Models Sharing": "", + "Mojeek": "", "Mojeek Search API Key": "", "More": "Lagi", "More Concise": "", @@ -1129,7 +1159,7 @@ "No conversation to save": "", "No distance available": "", "No expiration can pose security risks.": "", - "No feedbacks found": "", + "No feedback found": "", "No file selected": "Tiada fail dipilih", "No files in this knowledge base.": "", "No functions found": "", @@ -1144,6 +1174,7 @@ "No models selected": "", "No Notes": "", "No notes found": "", + "No one": "", "No pinned messages": "", "No prompts found": "", "No results": "Tiada keputusan dijumpai", @@ -1195,6 +1226,7 @@ "Only invited users can access": "", "Only markdown files are allowed": "", "Only select users and groups with permission can access": "", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Maaf, didapati URL tidak sah. Sila semak semula dan cuba lagi.", "Oops! There are files still uploading. Please wait for the upload to complete.": "", "Oops! There was an error in the previous response.": "", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) adalah lebih rendah daripada versi yang diperlukan iaitu (v{{REQUIRED_VERSION}})", "OpenAI": "OpenAI", "OpenAI API": "API OpenAI", @@ -1235,6 +1268,8 @@ "page": "", "Paginate": "", "Parameters": "", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "Kata Laluan", "Passwords do not match.": "", "Paste Large Text as File": "", @@ -1260,7 +1295,6 @@ "Pipe": "", "Pipeline deleted successfully": "'Pipeline' berjaya dipadam", "Pipeline downloaded successfully": "'Pipeline' berjaya dimuat turun", - "Pipelines": "'Pipeline'", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines ialah sistem pemalam dengan pelaksanaan kod sewenang‑wenangnya —", "Pipelines Not Detected": "'Pipeline' tidak ditemui", "Pipelines Valves": "'Pipeline Valves'", @@ -1497,6 +1531,7 @@ "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.": "", "Setting": "", "Settings": "Tetapan", + "Settings Permissions": "", "Settings saved successfully!": "Tetapan berjaya disimpan!", "Share": "Kongsi", "Share Chat": "Kongsi Perbualan", @@ -1540,6 +1575,7 @@ "Speech recognition error: {{error}}": "Ralat pengecaman pertuturan: {{error}}", "Speech-to-Text": "", "Speech-to-Text Engine": "Enjin Ucapan-ke-Teks", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "", "Start of the channel": "Permulaan saluran", "Start Tag": "", @@ -1550,6 +1586,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "", + "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Jujukan Henti", "Stream Chat Response": "", @@ -1570,7 +1607,14 @@ "Support": "Sokongan", "Support this plugin:": "Sokong plugin ini", "Supported MIME Types": "", + "Sync": "", + "Sync Complete!": "", "Sync directory": "", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "Sistem", "System Instructions": "", "System Prompt": "Gesaan Sistem", @@ -1615,6 +1659,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "", "The width in pixels to compress images to. Leave empty for no compression.": "", "Theme": "Tema", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "Berfikir...", "This action cannot be undone. Do you wish to continue?": "Tindakan ini tidak boleh diubah semula kepada asal. Adakah anda ingin teruskan", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "", @@ -1729,6 +1774,7 @@ "Upload Pipeline": "Muatnaik 'Pipeline'", "Upload Progress": "Kemajuan Muatnaik", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploaded files or images": "", "Uploading file...": "", "URL": "", "URL is required": "", @@ -1746,6 +1792,7 @@ "User Groups": "", "User location successfully retrieved.": "Lokasi pengguna berjaya diambil.", "User menu": "", + "User ratings (thumbs up/down)": "", "User Webhooks": "", "Username": "", "users": "", @@ -1795,15 +1842,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "", "What are you trying to achieve?": "", "What are you working on?": "", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "Apakah yang terbaru dalam", "What's on your mind?": "", "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.": "", "wherever you are": "", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whisper (Local)": "Whisper (Local)", + "Who can share to this group": "", "Why?": "", "Widescreen Mode": "Mod Skrin Lebar", "Width": "", + "Wikipedia": "", "Won": "", "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.": "", "Workspace": "Ruangan Kerja", @@ -1815,6 +1866,8 @@ "Yacy Instance URL": "", "Yacy Password": "", "Yacy Username": "", + "Yahoo": "", + "Yandex": "", "Yesterday": "Semalam", "Yesterday at {{LOCALIZED_TIME}}": "", "You": "Anda", @@ -1822,6 +1875,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Anda boleh memperibadikan interaksi anda dengan LLM dengan menambahkan memori melalui butang 'Urus' di bawah, menjadikannya lebih membantu dan disesuaikan dengan anda.", "You cannot upload an empty file.": "", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this thread.": "", "You do not have permission to upload files to this knowledge base.": "", @@ -1833,6 +1889,8 @@ "Your Account": "", "Your account status is currently pending activation.": "Status akaun anda ialah sedang menunggu pengaktifan.", "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.": "Seluruh sumbangan anda akan dihantar terus kepada pembangun 'plugin'; Open WebUI tidak mengambil sebarang peratusan keuntungan daripadanya. Walau bagaimanapun, platform pembiayaan yang dipilih mungkin mempunyai caj tersendiri.", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "Youtube", "Youtube Language": "", "Youtube Proxy URL": "" diff --git a/src/lib/i18n/locales/nb-NO/translation.json b/src/lib/i18n/locales/nb-NO/translation.json index 309b20c07..ba54f4f51 100644 --- a/src/lib/i18n/locales/nb-NO/translation.json +++ b/src/lib/i18n/locales/nb-NO/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "Endring av disse innstillingene vil gjelde for alle brukere på tvers av systemet.", "admin": "administrator", "Admin": "Administrator", + "Admin Contact Email": "", "Admin Panel": "Administratorpanel", "Admin Settings": "Administratorinnstillinger", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administratorer har alltid tilgang til alle verktøy. Brukere må få tildelt verktøy per modell i arbeidsområdet.", @@ -101,7 +102,6 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "Tillatt opplasting av filer", - "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "Tillat ikke-lokale stemmer", "Allow Rate Response": "", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "og {{COUNT}} til", "and create a new shared link.": "og opprett en ny delt lenke.", "Android": "", + "Anyone": "", "API Base URL": "Absolutt API-URL", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "", "API Key": "API-nøkkel", @@ -175,6 +176,7 @@ "Authenticate": "Godkjenn", "Authentication": "Godkjenning", "Auto": "", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "Kopier svar automatisk til utklippstavlen", "Auto-playback response": "Spill av svar automatisk", "Autocomplete Generation": "Generering av autofullføring", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "API-Autentiseringsstreng for AUTOMATIC1111", "AUTOMATIC1111 Base URL": "Absolutt URL for AUTOMATIC1111", "AUTOMATIC1111 Base URL is required.": "Absolutt URL for AUTOMATIC1111 kreves.", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "Tilgjengelig liste", "Available Tools": "", "available users": "tilgjengelige brukere", @@ -201,6 +204,7 @@ "before": "før", "Being lazy": "Er lat", "Beta": "Beta", + "Bing": "", "Bing Search V7 Endpoint": "Endepunkt for Bing Search V7", "Bing Search V7 Subscription Key": "Abonnementsnøkkel for Bing Search V7", "Bio": "", @@ -209,7 +213,9 @@ "Bocha Search API Key": "API-nøkkel for Bocha Search", "Bold": "", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "", + "Brave": "", "Brave Search API Key": "API-nøkkel for Brave Search", + "Builtin Tools": "", "Bullet List": "", "Button ID": "", "Button Label": "", @@ -256,8 +262,10 @@ "Check for updates": "Sjekk for oppdateringer", "Checking for updates...": "Sjekker for oppdateringer ...", "Choose a model before saving...": "Velg en modell før du lagrer ...", + "Chunk Min Size Target": "", "Chunk Overlap": "Chunk-overlapp", "Chunk Size": "Chunk-størrelse", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "Chiffer", "Citation": "Kildehenvisning", "Citations": "", @@ -293,7 +301,6 @@ "Code Block": "", "Code Editor": "", "Code execution": "Kodekjøring", - "Code Execution": "Kodekjøring", "Code Execution Engine": "Motor for kodekjøring", "Code Execution Timeout": "Tidsavbrudd for kodekjøring", "Code formatted successfully": "Koden er formatert", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "Kontakt administrator for å få tilgang til WebUI", "Content": "Innhold", "Content Extraction Engine": "", + "Content lengths (character counts only)": "", "Continue Response": "Fortsett svar", "Continue with {{provider}}": "Fortsett med {{provider}}", "Continue with Email": "Fortsett med e-post", @@ -393,6 +401,7 @@ "Database": "Database", "Datalab Marker API": "", "DD/MM/YYYY": "", + "DDGS Backend": "", "December": "desember", "Decrease UI Scale": "", "Deepgram": "", @@ -474,6 +483,7 @@ "Dive into knowledge": "Bli kjent med kunnskap", "Do not install functions from sources you do not fully trust.": "Ikke installer funksjoner fra kilder du ikke stoler på.", "Do not install tools from sources you do not fully trust.": "Ikke installer verktøy fra kilder du ikke stoler på.", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "", "Docling Parameters": "", "Docling Server URL required.": "", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "", "Document Intelligence Model": "", "Documentation": "Dokumentasjon", - "Documents": "Dokumenter", "does not make any external connections, and your data stays securely on your locally hosted server.": "ikke ingen tilkobling til eksterne tjenester. Dataene dine forblir sikkert på den lokale serveren.", "Domain Filter List": "Liste over domenefiltre", "don't fetch random pipelines from sources you don't trust.": "Ikke hent tilfeldige pipelines fra kilder du ikke stoler på.", @@ -493,11 +502,14 @@ "Done": "Ferdig", "Download": "Last ned", "Download & Delete": "Last ned og slett", + "Download as JSON": "", "Download as SVG": "Last ned som SVG", "Download canceled": "Nedlasting avbrutt", "Download Database": "Last ned database", + "Downloading stats...": "", "Draw": "Tegne", "Drop any files here to upload": "", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "f.eks. '30s','10m'. Gyldige tidsenheter er 's', 'm', 't'.", "e.g. \"json\" or a JSON schema": "", "e.g. 60": "f.eks. 60", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "Aktiver API-nøkkel for Bocha Search", "Enter Brave Search API Key": "Angi API-nøkkel for Brave Search", "Enter certificate path": "Angi sertifikatets bane", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "Angi Chunk-overlapp", "Enter Chunk Size": "Angi Chunk-størrelse", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "", "Enter Firecrawl API Base URL": "", "Enter Firecrawl API Key": "", + "Enter Firecrawl Timeout": "", "Enter folder name": "", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "Angi Github Raw-URL", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "", "Enter ID": "", "Enter Image Size (e.g. 512x512)": "Angi bildestørrelse (f.eks. 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "Angi API-nøkkel for Jina", "Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter Jupyter Password": "Angi passord for Jupyter", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "Angi API-nøkkel for Kagi Search", "Enter Key Behavior": "", "Enter language codes": "Angi språkkoder", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "", "Enter Mistral API Key": "", "Enter Model ID": "Angi modellens ID", @@ -736,6 +753,7 @@ "Failed to generate title": "", "Failed to import models": "", "Failed to load chat preview": "", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "", "Failed to move chat": "", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "Funksjoner", "Features Permissions": "Tillatelser for funksjoner", "February": "februar", + "Feedback": "", "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "Tilbakemeldingslogg", - "Feedbacks": "Tilbakemeldinger", "Feel free to add specific details": "Legg gjerne til bestemte detaljer", "Female": "", "File": "Fil", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Fingeravtrykk-spoofing oppdaget: kan ikke bruke initialer som avatar. Bruker standard profilbilde.", "Firecrawl API Base URL": "", "Firecrawl API Key": "", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "", "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "Mappe slettet", + "Folder Max File Count": "", "Folder Name": "", "Folder name cannot be empty.": "Mappenavn kan ikke være tomt.", "Folder name updated successfully": "Mappenavn oppdatert", @@ -826,7 +846,6 @@ "General": "Generelt", "Generate": "", "Generate an image": "Genrer et bilde", - "Generate Image": "Generer bilde", "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Genererer søkespørring", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "Kom i gang med {{WEBUI_NAME}}", "Global": "Globalt", "Good Response": "Godt svar", + "Google": "", "Google Drive": "Google Drive", "Google PSE API Key": "API-nøkkel for Google PSE", "Google PSE Engine Id": "Motor-ID for Google PSE", "Gravatar": "", "Grid": "", + "Grokipedia": "", "Group": "Gruppe", "Group Channel": "", "Group created successfully": "Gruppe opprettet", @@ -895,7 +916,6 @@ "Image Prompt Generation": "Generering av ledetekster for bilder", "Image Prompt Generation Prompt": "Ledetekst for generering av bilde", "Image Size": "", - "Images": "Bilder", "Import": "", "Import Chats": "Importer chatter", "Import Config from JSON File": "Importer konfigurasjon fra en JSON-fil", @@ -927,6 +947,7 @@ "Integration": "", "Integrations": "", "Interface": "Grensesnitt", + "Interface Settings Access": "", "Invalid file content": "", "Invalid file format.": "Ugyldig filformat.", "Invalid JSON file": "", @@ -940,6 +961,7 @@ "is typing...": "Skriver...", "Italic": "", "January": "januar", + "Jina API Base URL": "", "Jina API Key": "API-nøkkel for Jina", "join our Discord for help.": "bli med i Discord-fellesskapet vårt for å få hjelp.", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "", "Leave empty to include all models or select specific models": "La stå tomt for å inkludere alle modeller", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "", "Leave empty to use the default prompt, or enter a custom prompt": "La stå tomt for å bruke standard ledetekst, eller angi en tilpasset ledetekst", "Leave model field empty to use the default model.": "La modellfeltet stå tomt for å bruke standard modell.", @@ -1029,10 +1052,12 @@ "Manage your account information.": "", "March": "mars", "Markdown": "", - "Markdown (Header)": "", + "Markdown Header Text Splitter": "", "Max Speakers": "", "Max Upload Count": "Maks antall opplastinger", "Max Upload Size": "Maks størrelse på opplasting", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maksimalt tre modeller kan lastes ned samtidig. Prøv igjen senere.", "May": "mai", "MBR": "", @@ -1042,6 +1067,7 @@ "Member removed successfully": "", "Members": "", "Members added successfully": "", + "Memories": "", "Memories accessible by LLMs will be shown here.": "Språkmodellers tilgjengelige minner vises her.", "Memory": "Minne", "Memory added successfully": "Minne lagt til", @@ -1051,6 +1077,7 @@ "Merge Responses": "Flette svar", "Merged Response": "Sammenslått svar", "Message": "", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "Vurdering av meldinger må være aktivert for å ta i bruk denne funksjonen", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Meldinger du sender etter at du har opprettet lenken, blir ikke delt. Brukere med URL-en vil kunne se den delte chatten.", "Microsoft OneDrive": "", @@ -1083,9 +1110,11 @@ "Model Name": "Modell", "Model name already exists, please choose a different one": "", "Model Name is required.": "", + "Model names and usage frequency": "", "Model not selected": "Modell ikke valgt", "Model Params": "Modellparametere", "Model Permissions": "Modelltillatelser", + "Model responses or outputs": "", "Model unloaded successfully": "", "Model updated successfully": "Modell oppdatert", "Model(s) do not support file upload": "", @@ -1096,6 +1125,7 @@ "Models imported successfully": "", "Models Public Sharing": "", "Models Sharing": "", + "Mojeek": "", "Mojeek Search API Key": "API-nøekkel for Mojeek Search", "More": "Mer", "More Concise": "", @@ -1129,7 +1159,7 @@ "No conversation to save": "", "No distance available": "Ingen avstand tilgjengelig", "No expiration can pose security risks.": "", - "No feedbacks found": "Finner ingen tilbakemeldinger", + "No feedback found": "", "No file selected": "Ingen fil valgt", "No files in this knowledge base.": "", "No functions found": "", @@ -1144,6 +1174,7 @@ "No models selected": "Ingen modeller er valgt", "No Notes": "", "No notes found": "", + "No one": "", "No pinned messages": "", "No prompts found": "", "No results": "Finner ingen resultater", @@ -1195,6 +1226,7 @@ "Only invited users can access": "", "Only markdown files are allowed": "", "Only select users and groups with permission can access": "Bare utvalgte brukere og grupper med tillatelse kan få tilgang", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Oi! Det ser ut som URL-en er ugyldig. Dobbeltsjekk, og prøv på nytt.", "Oops! There are files still uploading. Please wait for the upload to complete.": "Oi! Det er fortsatt filer som lastes opp. Vent til opplastingen er ferdig.", "Oops! There was an error in the previous response.": "Oi! Det er en feil i det forrige svaret.", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "Open WebUI bruker faster-whisper internt.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI bruker SpeechT5 og CMU Arctic-høytalerinnbygginger", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Open WebUI-versjonen (v{{OPEN_WEBUI_VERSION}}) er lavere enn den påkrevde versjonen (v{{REQUIRED_VERSION}})", "OpenAI": "OpenAI", "OpenAI API": "OpenAI-API", @@ -1235,6 +1268,8 @@ "page": "side", "Paginate": "", "Parameters": "", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "Passord", "Passwords do not match.": "", "Paste Large Text as File": "Lim inn mye tekst som fil", @@ -1260,7 +1295,6 @@ "Pipe": "", "Pipeline deleted successfully": "Pipeline slettet", "Pipeline downloaded successfully": "Pipeline lastet ned", - "Pipelines": "Pipelines", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines er et programtilleggssystem med vilkårlig kodekjøring —", "Pipelines Not Detected": "Ingen pipelines oppdaget", "Pipelines Valves": "Pipeline-ventiler", @@ -1498,6 +1532,7 @@ "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.": "Angir hvilke stoppsekvenser som skal brukes. Når dette mønsteret forekommer, stopper LLM genereringen av tekst og returnerer. Du kan angi flere stoppmønstre ved å spesifisere flere separate stoppparametere i en modellfil.", "Setting": "", "Settings": "Innstillinger", + "Settings Permissions": "", "Settings saved successfully!": "Innstillinger lagret!", "Share": "Del", "Share Chat": "Del chat", @@ -1541,6 +1576,7 @@ "Speech recognition error: {{error}}": "Feil ved talegjenkjenning: {{error}}", "Speech-to-Text": "", "Speech-to-Text Engine": "Motor for Tale-til-tekst", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "", "Start of the channel": "Starten av kanalen", "Start Tag": "", @@ -1551,6 +1587,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Stopp", + "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Stoppsekvens", "Stream Chat Response": "Strømme chat-svar", @@ -1571,7 +1608,14 @@ "Support": "Bidra", "Support this plugin:": "Bidra til denne utvidelsen:", "Supported MIME Types": "", + "Sync": "", + "Sync Complete!": "", "Sync directory": "Synkroniseringsmappe", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "System", "System Instructions": "Systeminstruksjoner", "System Prompt": "Systemledetekst", @@ -1616,6 +1660,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "", "The width in pixels to compress images to. Leave empty for no compression.": "", "Theme": "Tema", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "Tenker ...", "This action cannot be undone. Do you wish to continue?": "Denne handlingen kan ikke angres. Vil du fortsette?", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "", @@ -1730,6 +1775,7 @@ "Upload Pipeline": "Last opp pipeline", "Upload Progress": "Opplastingsfremdrift", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploaded files or images": "", "Uploading file...": "", "URL": "URL", "URL is required": "", @@ -1747,6 +1793,7 @@ "User Groups": "", "User location successfully retrieved.": "Brukerens lokasjon hentet", "User menu": "", + "User ratings (thumbs up/down)": "", "User Webhooks": "", "Username": "Brukernavn", "users": "", @@ -1796,15 +1843,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI vil rette forespørsler til \"{{url}}/chat/completions\"", "What are you trying to achieve?": "Hva prøver du å oppnå?", "What are you working on?": "Hva jobber du på nå?", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "Hva er nytt i", "What's on your mind?": "", "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.", "wherever you are": "uansett hvor du er", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whisper (Local)": "Whisper (Lokal)", + "Who can share to this group": "", "Why?": "Hvorfor?", "Widescreen Mode": "Bredskjermmodus", "Width": "", + "Wikipedia": "", "Won": "Vant", "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.": "", "Workspace": "Arbeidsområde", @@ -1816,6 +1867,8 @@ "Yacy Instance URL": "", "Yacy Password": "", "Yacy Username": "", + "Yahoo": "", + "Yandex": "", "Yesterday": "I går", "Yesterday at {{LOCALIZED_TIME}}": "", "You": "Du", @@ -1823,6 +1876,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Du kan bare chatte med maksimalt {{maxCount}} fil(er) om gangen.", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Du kan tilpasse interaksjonene dine med språkmodeller ved å legge til minner gjennom Administrer-knappen nedenfor, slik at de blir mer til nyttige og tilpasset deg.", "You cannot upload an empty file.": "Du kan ikke laste opp en tom fil.", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this thread.": "", "You do not have permission to upload files to this knowledge base.": "", @@ -1834,6 +1890,8 @@ "Your Account": "", "Your account status is currently pending activation.": "Status på kontoen din er for øyeblikket ventende på aktivering.", "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.": "Hele beløpet går uavkortet til utvikleren av tillegget. Open WebUI mottar ikke deler av beløpet. Den valgte betalingsplattformen kan ha gebyrer.", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "Youtube", "Youtube Language": "", "Youtube Proxy URL": "" diff --git a/src/lib/i18n/locales/nl-NL/translation.json b/src/lib/i18n/locales/nl-NL/translation.json index ea479ef23..c4ffad00a 100644 --- a/src/lib/i18n/locales/nl-NL/translation.json +++ b/src/lib/i18n/locales/nl-NL/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "Het aanpassen van deze instellingen zal universeel worden toegepast op alle gebruikers.", "admin": "beheerder", "Admin": "Beheerder", + "Admin Contact Email": "", "Admin Panel": "Beheerderspaneel", "Admin Settings": "Beheerdersinstellingen", "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.", @@ -101,7 +102,6 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "Bestandenupload toestaan", - "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "Niet-lokale stemmen toestaan", "Allow Rate Response": "", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "en {{COUNT}} meer", "and create a new shared link.": "en maak een nieuwe gedeelde link.", "Android": "", + "Anyone": "", "API Base URL": "API Base URL", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "", "API Key": "API-sleutel", @@ -175,6 +176,7 @@ "Authenticate": "Authenticeer", "Authentication": "Authenticatie", "Auto": "", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "Antwoord automatisch kopiëren naar klembord", "Auto-playback response": "Automatisch afspelen van antwoord", "Autocomplete Generation": "Automatische aanvullingsgeneratie", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "Automatic1111 Api Auth String", "AUTOMATIC1111 Base URL": "AUTOMATIC1111 Basis-URL", "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Basis-URL is verplicht", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "Beschikbare lijst", "Available Tools": "", "available users": "beschikbare gebruikers", @@ -201,6 +204,7 @@ "before": "voor", "Being lazy": "Lui zijn", "Beta": "Beta", + "Bing": "", "Bing Search V7 Endpoint": "Bing Search V7 Endpoint", "Bing Search V7 Subscription Key": "Bing Search V7 Subscription Key", "Bio": "", @@ -209,7 +213,9 @@ "Bocha Search API Key": "Bocha Search API-sleutel", "Bold": "", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Versterken of bestraffen van specifieke tokens voor beperkte reacties. Biaswaarden worden geklemd tussen -100 en 100 (inclusief). (Standaard: none)", + "Brave": "", "Brave Search API Key": "Brave Search API-sleutel", + "Builtin Tools": "", "Bullet List": "", "Button ID": "", "Button Label": "", @@ -256,8 +262,10 @@ "Check for updates": "Controleer op updates", "Checking for updates...": "Controleren op updates...", "Choose a model before saving...": "Kies een model voordat je opslaat...", + "Chunk Min Size Target": "", "Chunk Overlap": "Chunkoverlap", "Chunk Size": "Chunkgrootte", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "Versleutelingen", "Citation": "Citaat", "Citations": "Citaten", @@ -293,7 +301,6 @@ "Code Block": "", "Code Editor": "", "Code execution": "Code uitvoeren", - "Code Execution": "Code-uitvoer", "Code Execution Engine": "Code-uitvoer engine", "Code Execution Timeout": "Code-uitvoer time-out", "Code formatted successfully": "Code succesvol geformateerd", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "Neem contact op met de beheerder voor WebUI-toegang", "Content": "Inhoud", "Content Extraction Engine": "Inhoudsextractie engine", + "Content lengths (character counts only)": "", "Continue Response": "Doorgaan met antwoord", "Continue with {{provider}}": "Ga verder met {{provider}}", "Continue with Email": "Ga door met E-mail", @@ -393,6 +401,7 @@ "Database": "Database", "Datalab Marker API": "", "DD/MM/YYYY": "", + "DDGS Backend": "", "December": "December", "Decrease UI Scale": "", "Deepgram": "", @@ -474,6 +483,7 @@ "Dive into knowledge": "Duik in kennis", "Do not install functions from sources you do not fully trust.": "Installeer geen functies vanuit bronnen die je niet volledig vertrouwt", "Do not install tools from sources you do not fully trust.": "Installeer geen tools vanuit bronnen die je niet volledig vertrouwt.", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "Docling", "Docling Parameters": "", "Docling Server URL required.": "Docling server-URL benodigd", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "", "Document Intelligence Model": "", "Documentation": "Documentatie", - "Documents": "Documenten", "does not make any external connections, and your data stays securely on your locally hosted server.": "maakt geen externe verbindingen, en je gegevens blijven veilig op je lokaal gehoste server.", "Domain Filter List": "Domein-filterlijst", "don't fetch random pipelines from sources you don't trust.": "Haal geen willekeurige pipelines op van onbetrouwbare bronnen.", @@ -493,11 +502,14 @@ "Done": "Voltooid", "Download": "Download", "Download & Delete": "Downloaden en verwijderen", + "Download as JSON": "", "Download as SVG": "Download als SVG", "Download canceled": "Download geannuleerd", "Download Database": "Download database", + "Downloading stats...": "", "Draw": "Teken", "Drop any files here to upload": "", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "bijv. '30s', '10m'. Geldige tijdseenheden zijn 's', 'm', 'h'.", "e.g. \"json\" or a JSON schema": "bijv. \"json\" of een JSON-schema", "e.g. 60": "bijv. 60", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "Voer Bocha Search API-sleutel in", "Enter Brave Search API Key": "Voer de Brave Search API-sleutel in", "Enter certificate path": "Voer pad naar certificaat in", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "Voeg Chunk Overlap toe", "Enter Chunk Size": "Voeg Chunk Size toe", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Voer kommagescheiden \"token:bias_waarde\" paren in (bijv. 5432:100, 413:-100)", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "", "Enter Firecrawl API Base URL": "", "Enter Firecrawl API Key": "", + "Enter Firecrawl Timeout": "", "Enter folder name": "", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "Voer de Github Raw-URL in", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "", "Enter ID": "", "Enter Image Size (e.g. 512x512)": "Voeg afbeelding formaat toe (Bijv. 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "Voer Jina API-sleutel in", "Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter Jupyter Password": "Voer Jupyter-wachtwoord in", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "Voer Kagi Search API-sleutel in", "Enter Key Behavior": "Voer sleutelgedrag in", "Enter language codes": "Voeg taalcodes toe", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "", "Enter Mistral API Key": "", "Enter Model ID": "Voer model-ID in", @@ -736,6 +753,7 @@ "Failed to generate title": "", "Failed to import models": "", "Failed to load chat preview": "", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "", "Failed to move chat": "", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "Functies", "Features Permissions": "Functietoestemmingen", "February": "Februari", + "Feedback": "", "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "Feedback geschiedenis", - "Feedbacks": "Feedback", "Feel free to add specific details": "Voeg specifieke details toe", "Female": "", "File": "Bestand", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Vingerafdruk spoofing gedetecteerd: kan initialen niet gebruiken als avatar. Standaardprofielafbeelding wordt gebruikt.", "Firecrawl API Base URL": "", "Firecrawl API Key": "", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "", "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "Map succesvol verwijderd", + "Folder Max File Count": "", "Folder Name": "", "Folder name cannot be empty.": "Mapnaam kan niet leeg zijn", "Folder name updated successfully": "Mapnaam succesvol aangepast", @@ -826,7 +846,6 @@ "General": "Algemeen", "Generate": "", "Generate an image": "Genereer een afbeelding", - "Generate Image": "Genereer afbeelding", "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Zoekopdracht genereren", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "Begin met {{WEBUI_NAME}}", "Global": "Globaal", "Good Response": "Goed antwoord", + "Google": "", "Google Drive": "Google Drive", "Google PSE API Key": "Google PSE API-sleutel", "Google PSE Engine Id": "Google PSE-engine-ID", "Gravatar": "", "Grid": "", + "Grokipedia": "", "Group": "Groep", "Group Channel": "", "Group created successfully": "Groep succesvol aangemaakt", @@ -895,7 +916,6 @@ "Image Prompt Generation": "Afbeeldingspromptgeneratie", "Image Prompt Generation Prompt": "Afbeeldingspromptgeneratie prompt", "Image Size": "", - "Images": "Afbeeldingen", "Import": "", "Import Chats": "Importeer Chats", "Import Config from JSON File": "Importeer configuratie vanuit JSON-bestand", @@ -927,6 +947,7 @@ "Integration": "Integratie", "Integrations": "", "Interface": "Interface", + "Interface Settings Access": "", "Invalid file content": "", "Invalid file format.": "Ongeldig bestandsformaat", "Invalid JSON file": "", @@ -940,6 +961,7 @@ "is typing...": "is aan het schrijven...", "Italic": "", "January": "Januari", + "Jina API Base URL": "", "Jina API Key": "Jina API-sleutel", "join our Discord for help.": "join onze Discord voor hulp.", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "Laat leeg om alle modellen van het \"{{url}}/api/tags\"-endpoint mee te nemen", "Leave empty to include all models from \"{{url}}/models\" endpoint": "Laat leeg om alle modellen van \"{{url}}/models\"-endpoint mee te nemen", "Leave empty to include all models or select specific models": "Laat leeg om alle modellen mee te nemen, of selecteer specifieke modellen", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "", "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", "Leave model field empty to use the default model.": "Laat modelveld leeg om het standaardmodel te gebruiken.", @@ -1029,10 +1052,12 @@ "Manage your account information.": "", "March": "Maart", "Markdown": "", - "Markdown (Header)": "", + "Markdown Header Text Splitter": "", "Max Speakers": "", "Max Upload Count": "Maximale Uploadhoeveelheid", "Max Upload Size": "Maximale Uploadgrootte", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maximaal 3 modellen kunnen tegelijkertijd worden gedownload. Probeer het later opnieuw.", "May": "Mei", "MBR": "", @@ -1042,6 +1067,7 @@ "Member removed successfully": "", "Members": "", "Members added successfully": "", + "Memories": "", "Memories accessible by LLMs will be shown here.": "Geheugen toegankelijk voor LLMs wordt hier getoond.", "Memory": "Geheugen", "Memory added successfully": "Geheugen succesvol toegevoegd", @@ -1051,6 +1077,7 @@ "Merge Responses": "Voeg antwoorden samen", "Merged Response": "Samengevoegd antwoord", "Message": "", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "Berichtbeoordeling moet ingeschakeld zijn om deze functie te gebruiken", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Berichten die je verzendt nadat je jouw link hebt gemaakt, worden niet gedeeld. Gebruikers met de URL kunnen de gedeelde chat bekijken.", "Microsoft OneDrive": "", @@ -1083,9 +1110,11 @@ "Model Name": "Modelnaam", "Model name already exists, please choose a different one": "", "Model Name is required.": "", + "Model names and usage frequency": "", "Model not selected": "Model niet geselecteerd", "Model Params": "Modelparams", "Model Permissions": "Modeltoestemmingen", + "Model responses or outputs": "", "Model unloaded successfully": "", "Model updated successfully": "Model succesvol bijgewerkt", "Model(s) do not support file upload": "", @@ -1096,6 +1125,7 @@ "Models imported successfully": "", "Models Public Sharing": "Modellen publiek delen", "Models Sharing": "", + "Mojeek": "", "Mojeek Search API Key": "Mojeek Search API-sleutel", "More": "Meer", "More Concise": "", @@ -1129,7 +1159,7 @@ "No conversation to save": "", "No distance available": "Geen afstand beschikbaar", "No expiration can pose security risks.": "", - "No feedbacks found": "Geen feedback gevonden", + "No feedback found": "", "No file selected": "Geen bestand geselecteerd", "No files in this knowledge base.": "", "No functions found": "", @@ -1144,6 +1174,7 @@ "No models selected": "Geen modellen geselecteerd", "No Notes": "", "No notes found": "", + "No one": "", "No pinned messages": "", "No prompts found": "", "No results": "Geen resultaten gevonden", @@ -1195,6 +1226,7 @@ "Only invited users can access": "", "Only markdown files are allowed": "", "Only select users and groups with permission can access": "Alleen geselecteerde gebruikers en groepen met toestemming hebben toegang", + "Only sync new/updated chats": "", "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.", "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.", "Oops! There was an error in the previous response.": "Oeps! Er was een fout in de vorige reactie.", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "Open WebUI gebruikt faster-whisper intern", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI gebruikt SpeechT5 en CMU Arctic spreker-embeddings", + "Open WebUI version": "", "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}})", "OpenAI": "OpenAI", "OpenAI API": "OpenAI API", @@ -1235,6 +1268,8 @@ "page": "pagina", "Paginate": "", "Parameters": "", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "Wachtwoord", "Passwords do not match.": "", "Paste Large Text as File": "Plak grote tekst als bestand", @@ -1260,7 +1295,6 @@ "Pipe": "", "Pipeline deleted successfully": "Pijpleiding succesvol verwijderd", "Pipeline downloaded successfully": "Pijpleiding succesvol gedownload", - "Pipelines": "Pijpleidingen", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines is een plug‑insysteem met willekeurige code‑uitvoering —", "Pipelines Not Detected": "Pijpleiding niet gedetecteerd", "Pipelines Valves": "Pijpleidingen Kleppen", @@ -1498,6 +1532,7 @@ "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 stopsequentie 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.", "Setting": "", "Settings": "Instellingen", + "Settings Permissions": "", "Settings saved successfully!": "Instellingen succesvol opgeslagen!", "Share": "Delen", "Share Chat": "Deel chat", @@ -1541,6 +1576,7 @@ "Speech recognition error: {{error}}": "Spraakherkenning fout: {{error}}", "Speech-to-Text": "", "Speech-to-Text Engine": "Spraak-naar-tekst Engine", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "", "Start of the channel": "Begin van het kanaal", "Start Tag": "", @@ -1551,6 +1587,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Stop", + "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Stopsequentie", "Stream Chat Response": "Stream chat-antwoord", @@ -1571,7 +1608,14 @@ "Support": "Ondersteuning", "Support this plugin:": "ondersteun deze plugin", "Supported MIME Types": "", + "Sync": "", + "Sync Complete!": "", "Sync directory": "Synchroniseer map", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "Systeem", "System Instructions": "Systeem instructies", "System Prompt": "Systeem prompt", @@ -1616,6 +1660,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "", "The width in pixels to compress images to. Leave empty for no compression.": "", "Theme": "Thema", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "Aan het denken...", "This action cannot be undone. Do you wish to continue?": "Deze actie kan niet ongedaan worden gemaakt. Wilt u doorgaan?", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "Dit kanaal is aangemaakt op {{createdAt}}. Dit is het begin van het kanaal {{channelName}}.", @@ -1730,6 +1775,7 @@ "Upload Pipeline": "Upload Pijpleiding", "Upload Progress": "Upload Voortgang", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploaded files or images": "", "Uploading file...": "", "URL": "URL", "URL is required": "", @@ -1747,6 +1793,7 @@ "User Groups": "", "User location successfully retrieved.": "Gebruikerslocatie succesvol opgehaald", "User menu": "", + "User ratings (thumbs up/down)": "", "User Webhooks": "Gebruiker-webhooks", "Username": "Gebruikersnaam", "users": "", @@ -1796,15 +1843,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI zal verzoeken doen aan \"{{url}}/chat/completions\"", "What are you trying to achieve?": "Wat probeer je te bereiken?", "What are you working on?": "Waar werk je aan?", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "Wat is nieuw in", "What's on your mind?": "", "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.", "wherever you are": "waar je ook bent", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whisper (Local)": "Whisper (Lokaal)", + "Who can share to this group": "", "Why?": "Waarom?", "Widescreen Mode": "Breedschermmodus", "Width": "", + "Wikipedia": "", "Won": "Gewonnen", "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.": "Werkt samen met top-k. Een hogere waarde (bijv. 0,95) leidt tot meer diverse tekst, terwijl een lagere waarde (bijv. 0,5) meer gerichte en conservatieve tekst genereert.", "Workspace": "Werkruimte", @@ -1816,6 +1867,8 @@ "Yacy Instance URL": "", "Yacy Password": "", "Yacy Username": "", + "Yahoo": "", + "Yandex": "", "Yesterday": "Gisteren", "Yesterday at {{LOCALIZED_TIME}}": "", "You": "Jij", @@ -1823,6 +1876,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Je kunt slechts met maximaal {{maxCount}} bestand(en) tegelijk chatten", "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 voor jou op maat gemaakt worden.", "You cannot upload an empty file.": "Je kunt een leeg bestand niet uploaden.", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this thread.": "", "You do not have permission to upload files to this knowledge base.": "", @@ -1834,6 +1890,8 @@ "Your Account": "", "Your account status is currently pending activation.": "Je accountstatus wacht nu op activatie", "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.", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "Youtube", "Youtube Language": "Youtube-taal", "Youtube Proxy URL": "Youtube-proxy-URL" diff --git a/src/lib/i18n/locales/pa-IN/translation.json b/src/lib/i18n/locales/pa-IN/translation.json index 2d56f565a..e7406474c 100644 --- a/src/lib/i18n/locales/pa-IN/translation.json +++ b/src/lib/i18n/locales/pa-IN/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "ਇਹ ਸੈਟਿੰਗਾਂ ਨੂੰ ਠੀਕ ਕਰਨ ਨਾਲ ਸਾਰੇ ਉਪਭੋਗਤਾਵਾਂ ਲਈ ਬਦਲਾਅ ਲਾਗੂ ਹੋਣਗੇ।", "admin": "ਪ੍ਰਬੰਧਕ", "Admin": "", + "Admin Contact Email": "", "Admin Panel": "ਪ੍ਰਬੰਧਕ ਪੈਨਲ", "Admin Settings": "ਪ੍ਰਬੰਧਕ ਸੈਟਿੰਗਾਂ", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "", @@ -101,7 +102,6 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "", - "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "", "Allow Rate Response": "", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "", "and create a new shared link.": "ਅਤੇ ਇੱਕ ਨਵਾਂ ਸਾਂਝਾ ਲਿੰਕ ਬਣਾਓ।", "Android": "", + "Anyone": "", "API Base URL": "API ਬੇਸ URL", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "", "API Key": "API ਕੁੰਜੀ", @@ -175,6 +176,7 @@ "Authenticate": "", "Authentication": "", "Auto": "", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "ਜਵਾਬ ਆਟੋ ਕਾਪੀ ਕਲਿੱਪਬੋਰਡ 'ਤੇ", "Auto-playback response": "ਆਟੋ-ਪਲੇਬੈਕ ਜਵਾਬ", "Autocomplete Generation": "", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "", "AUTOMATIC1111 Base URL": "AUTOMATIC1111 ਬੇਸ URL", "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 ਬੇਸ URL ਦੀ ਲੋੜ ਹੈ।", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "", "Available Tools": "", "available users": "ਉਪਲਬਧ ਯੂਜ਼ਰ", @@ -201,6 +204,7 @@ "before": "ਪਹਿਲਾਂ", "Being lazy": "ਆਲਸੀ ਹੋਣਾ", "Beta": "", + "Bing": "", "Bing Search V7 Endpoint": "", "Bing Search V7 Subscription Key": "", "Bio": "", @@ -209,7 +213,9 @@ "Bocha Search API Key": "", "Bold": "", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "", + "Brave": "", "Brave Search API Key": "ਬਹਾਦਰ ਖੋਜ API ਕੁੰਜੀ", + "Builtin Tools": "", "Bullet List": "", "Button ID": "", "Button Label": "", @@ -256,8 +262,10 @@ "Check for updates": "ਅੱਪਡੇਟ ਲਈ ਜਾਂਚ ਕਰੋ", "Checking for updates...": "ਅੱਪਡੇਟ ਲਈ ਜਾਂਚ ਰਿਹਾ ਹੈ...", "Choose a model before saving...": "ਸੰਭਾਲਣ ਤੋਂ ਪਹਿਲਾਂ ਇੱਕ ਮਾਡਲ ਚੁਣੋ...", + "Chunk Min Size Target": "", "Chunk Overlap": "ਚੰਕ ਓਵਰਲੈਪ", "Chunk Size": "ਚੰਕ ਆਕਾਰ", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "", "Citation": "ਹਵਾਲਾ", "Citations": "", @@ -293,7 +301,6 @@ "Code Block": "", "Code Editor": "", "Code execution": "", - "Code Execution": "", "Code Execution Engine": "", "Code Execution Timeout": "", "Code formatted successfully": "", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "", "Content": "ਸਮੱਗਰੀ", "Content Extraction Engine": "", + "Content lengths (character counts only)": "", "Continue Response": "ਜਵਾਬ ਜਾਰੀ ਰੱਖੋ", "Continue with {{provider}}": "", "Continue with Email": "", @@ -393,6 +401,7 @@ "Database": "ਡਾਟਾਬੇਸ", "Datalab Marker API": "", "DD/MM/YYYY": "", + "DDGS Backend": "", "December": "ਦਸੰਬਰ", "Decrease UI Scale": "", "Deepgram": "", @@ -474,6 +483,7 @@ "Dive into knowledge": "", "Do not install functions from sources you do not fully trust.": "", "Do not install tools from sources you do not fully trust.": "", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "", "Docling Parameters": "", "Docling Server URL required.": "", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "", "Document Intelligence Model": "", "Documentation": "", - "Documents": "ਡਾਕੂਮੈਂਟ", "does not make any external connections, and your data stays securely on your locally hosted server.": "ਕੋਈ ਬਾਹਰੀ ਕਨੈਕਸ਼ਨ ਨਹੀਂ ਬਣਾਉਂਦਾ, ਅਤੇ ਤੁਹਾਡਾ ਡਾਟਾ ਤੁਹਾਡੇ ਸਥਾਨਕ ਸਰਵਰ 'ਤੇ ਸੁਰੱਖਿਅਤ ਰਹਿੰਦਾ ਹੈ।", "Domain Filter List": "", "don't fetch random pipelines from sources you don't trust.": "ਅਣਵਿਸ਼ਵਾਸਯੋਗ ਸਰੋਤਾਂ ਤੋਂ ਰੈਂਡਮ ਪਾਈਪਲਾਈਨ ਨਾ ਲਓ।", @@ -493,11 +502,14 @@ "Done": "", "Download": "ਡਾਊਨਲੋਡ", "Download & Delete": "ਡਾਊਨਲੋਡ ਅਤੇ ਮਿਟਾਓ", + "Download as JSON": "", "Download as SVG": "", "Download canceled": "ਡਾਊਨਲੋਡ ਰੱਦ ਕੀਤਾ ਗਿਆ", "Download Database": "ਡਾਟਾਬੇਸ ਡਾਊਨਲੋਡ ਕਰੋ", + "Downloading stats...": "", "Draw": "", "Drop any files here to upload": "", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "ਉਦਾਹਰਣ ਲਈ '30ਸ','10ਮਿ'. ਸਹੀ ਸਮਾਂ ਇਕਾਈਆਂ ਹਨ 'ਸ', 'ਮ', 'ਘੰ'.", "e.g. \"json\" or a JSON schema": "", "e.g. 60": "", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "", "Enter Brave Search API Key": "ਬਹਾਦਰ ਖੋਜ API ਕੁੰਜੀ ਦਾਖਲ ਕਰੋ", "Enter certificate path": "", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "ਚੰਕ ਓਵਰਲੈਪ ਦਰਜ ਕਰੋ", "Enter Chunk Size": "ਚੰਕ ਆਕਾਰ ਦਰਜ ਕਰੋ", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "", "Enter Firecrawl API Base URL": "", "Enter Firecrawl API Key": "", + "Enter Firecrawl Timeout": "", "Enter folder name": "", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "Github ਕੱਚਾ URL ਦਾਖਲ ਕਰੋ", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "", "Enter ID": "", "Enter Image Size (e.g. 512x512)": "ਚਿੱਤਰ ਆਕਾਰ ਦਰਜ ਕਰੋ (ਉਦਾਹਰਣ ਲਈ 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "", "Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter Jupyter Password": "", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "", "Enter Key Behavior": "", "Enter language codes": "ਭਾਸ਼ਾ ਕੋਡ ਦਰਜ ਕਰੋ", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "", "Enter Mistral API Key": "", "Enter Model ID": "", @@ -736,6 +753,7 @@ "Failed to generate title": "", "Failed to import models": "", "Failed to load chat preview": "", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "", "Failed to move chat": "", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "", "Features Permissions": "", "February": "ਫਰਵਰੀ", + "Feedback": "", "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "", - "Feedbacks": "", "Feel free to add specific details": "ਖੁੱਲ੍ਹੇ ਦਿਲ ਨਾਲ ਖਾਸ ਵੇਰਵੇ ਸ਼ਾਮਲ ਕਰੋ", "Female": "", "File": "", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "ਫਿੰਗਰਪ੍ਰਿੰਟ ਸਪੂਫਿੰਗ ਪਾਈ ਗਈ: ਅਵਤਾਰ ਵਜੋਂ ਸ਼ੁਰੂਆਤੀ ਅੱਖਰ ਵਰਤਣ ਵਿੱਚ ਅਸਮਰੱਥ। ਮੂਲ ਪ੍ਰੋਫਾਈਲ ਚਿੱਤਰ 'ਤੇ ਡਿਫਾਲਟ।", "Firecrawl API Base URL": "", "Firecrawl API Key": "", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "", "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "", + "Folder Max File Count": "", "Folder Name": "", "Folder name cannot be empty.": "", "Folder name updated successfully": "", @@ -826,7 +846,6 @@ "General": "ਆਮ", "Generate": "", "Generate an image": "", - "Generate Image": "", "Generate Message Pair": "", "Generated Image": "", "Generating search query": "ਖੋਜ ਪੁੱਛਗਿੱਛ ਤਿਆਰ ਕਰਨਾ", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "", "Global": "", "Good Response": "ਵਧੀਆ ਜਵਾਬ", + "Google": "", "Google Drive": "", "Google PSE API Key": "Google PSE API ਕੁੰਜੀ", "Google PSE Engine Id": "ਗੂਗਲ PSE ਇੰਜਣ ID", "Gravatar": "", "Grid": "", + "Grokipedia": "", "Group": "ਗਰੁੱਪ", "Group Channel": "", "Group created successfully": "", @@ -895,7 +916,6 @@ "Image Prompt Generation": "", "Image Prompt Generation Prompt": "", "Image Size": "", - "Images": "ਚਿੱਤਰ", "Import": "", "Import Chats": "ਗੱਲਾਂ ਆਯਾਤ ਕਰੋ", "Import Config from JSON File": "", @@ -927,6 +947,7 @@ "Integration": "", "Integrations": "", "Interface": "ਇੰਟਰਫੇਸ", + "Interface Settings Access": "", "Invalid file content": "", "Invalid file format.": "", "Invalid JSON file": "", @@ -940,6 +961,7 @@ "is typing...": "", "Italic": "", "January": "ਜਨਵਰੀ", + "Jina API Base URL": "", "Jina API Key": "", "join our Discord for help.": "ਮਦਦ ਲਈ ਸਾਡੇ ਡਿਸਕੋਰਡ ਵਿੱਚ ਸ਼ਾਮਲ ਹੋਵੋ।", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "", "Leave empty to include all models or select specific models": "", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "", "Leave empty to use the default prompt, or enter a custom prompt": "", "Leave model field empty to use the default model.": "", @@ -1029,10 +1052,12 @@ "Manage your account information.": "", "March": "ਮਾਰਚ", "Markdown": "", - "Markdown (Header)": "", + "Markdown Header Text Splitter": "", "Max Speakers": "", "Max Upload Count": "", "Max Upload Size": "", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "ਇੱਕ ਸਮੇਂ ਵਿੱਚ ਵੱਧ ਤੋਂ ਵੱਧ 3 ਮਾਡਲ ਡਾਊਨਲੋਡ ਕੀਤੇ ਜਾ ਸਕਦੇ ਹਨ। ਕਿਰਪਾ ਕਰਕੇ ਬਾਅਦ ਵਿੱਚ ਦੁਬਾਰਾ ਕੋਸ਼ਿਸ਼ ਕਰੋ।", "May": "ਮਈ", "MBR": "", @@ -1042,6 +1067,7 @@ "Member removed successfully": "", "Members": "", "Members added successfully": "", + "Memories": "", "Memories accessible by LLMs will be shown here.": "LLMs ਲਈ ਸਮਰੱਥ ਕਾਰਨ ਇੱਕ ਸੂਚਨਾ ਨੂੰ ਸ਼ਾਮਲ ਕੀਤਾ ਗਿਆ ਹੈ।", "Memory": "ਮੀਮਰ", "Memory added successfully": "", @@ -1051,6 +1077,7 @@ "Merge Responses": "", "Merged Response": "ਮਿਲਾਇਆ ਗਿਆ ਜਵਾਬ", "Message": "", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "ਤੁਹਾਡਾ ਲਿੰਕ ਬਣਾਉਣ ਤੋਂ ਬਾਅਦ ਤੁਹਾਡੇ ਵੱਲੋਂ ਭੇਜੇ ਗਏ ਸੁਨੇਹੇ ਸਾਂਝੇ ਨਹੀਂ ਕੀਤੇ ਜਾਣਗੇ। URL ਵਾਲੇ ਉਪਭੋਗਤਾ ਸਾਂਝੀ ਚੈਟ ਨੂੰ ਵੇਖ ਸਕਣਗੇ।", "Microsoft OneDrive": "", @@ -1083,9 +1110,11 @@ "Model Name": "", "Model name already exists, please choose a different one": "", "Model Name is required.": "", + "Model names and usage frequency": "", "Model not selected": "ਮਾਡਲ ਚੁਣਿਆ ਨਹੀਂ ਗਿਆ", "Model Params": "ਮਾਡਲ ਪਰਮਜ਼", "Model Permissions": "", + "Model responses or outputs": "", "Model unloaded successfully": "", "Model updated successfully": "", "Model(s) do not support file upload": "", @@ -1096,6 +1125,7 @@ "Models imported successfully": "", "Models Public Sharing": "", "Models Sharing": "", + "Mojeek": "", "Mojeek Search API Key": "", "More": "ਹੋਰ", "More Concise": "", @@ -1129,7 +1159,7 @@ "No conversation to save": "", "No distance available": "", "No expiration can pose security risks.": "", - "No feedbacks found": "", + "No feedback found": "", "No file selected": "", "No files in this knowledge base.": "", "No functions found": "", @@ -1144,6 +1174,7 @@ "No models selected": "", "No Notes": "", "No notes found": "", + "No one": "", "No pinned messages": "", "No prompts found": "", "No results": "ਕੋਈ ਨਤੀਜੇ ਨਹੀਂ ਮਿਲੇ", @@ -1195,6 +1226,7 @@ "Only invited users can access": "", "Only markdown files are allowed": "", "Only select users and groups with permission can access": "", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "ਓਹੋ! ਲੱਗਦਾ ਹੈ ਕਿ URL ਗਲਤ ਹੈ। ਕਿਰਪਾ ਕਰਕੇ ਦੁਬਾਰਾ ਜਾਂਚ ਕਰੋ ਅਤੇ ਮੁੜ ਕੋਸ਼ਿਸ਼ ਕਰੋ।", "Oops! There are files still uploading. Please wait for the upload to complete.": "", "Oops! There was an error in the previous response.": "", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "", "OpenAI": "ਓਪਨਏਆਈ", "OpenAI API": "ਓਪਨਏਆਈ API", @@ -1235,6 +1268,8 @@ "page": "", "Paginate": "", "Parameters": "", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "ਪਾਸਵਰਡ", "Passwords do not match.": "", "Paste Large Text as File": "", @@ -1260,7 +1295,6 @@ "Pipe": "", "Pipeline deleted successfully": "", "Pipeline downloaded successfully": "", - "Pipelines": "ਪਾਈਪਲਾਈਨਾਂ", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines ਇੱਕ ਪਲੱਗਇਨ ਸਿਸਟਮ ਹੈ ਜਿਸ ਵਿੱਚ ਮਨਚਾਹਾ ਕੋਡ ਚੱਲ ਸਕਦਾ ਹੈ —", "Pipelines Not Detected": "", "Pipelines Valves": "ਪਾਈਪਲਾਈਨਾਂ ਵਾਲਵ", @@ -1498,6 +1532,7 @@ "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.": "", "Setting": "", "Settings": "ਸੈਟਿੰਗਾਂ", + "Settings Permissions": "", "Settings saved successfully!": "ਸੈਟਿੰਗਾਂ ਸਫਲਤਾਪੂਰਵਕ ਸੰਭਾਲੀਆਂ ਗਈਆਂ!", "Share": "ਸਾਂਝਾ ਕਰੋ", "Share Chat": "ਗੱਲਬਾਤ ਸਾਂਝੀ ਕਰੋ", @@ -1541,6 +1576,7 @@ "Speech recognition error: {{error}}": "ਬੋਲ ਪਛਾਣ ਗਲਤੀ: {{error}}", "Speech-to-Text": "", "Speech-to-Text Engine": "ਬੋਲ-ਤੋਂ-ਪਾਠ ਇੰਜਣ", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "", "Start of the channel": "ਚੈਨਲ ਦੀ ਸ਼ੁਰੂਆਤ", "Start Tag": "", @@ -1551,6 +1587,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "", + "Stop Download": "", "Stop Generating": "", "Stop Sequence": "ਰੋਕੋ ਕ੍ਰਮ", "Stream Chat Response": "", @@ -1571,7 +1608,14 @@ "Support": "", "Support this plugin:": "", "Supported MIME Types": "", + "Sync": "", + "Sync Complete!": "", "Sync directory": "", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "ਸਿਸਟਮ", "System Instructions": "", "System Prompt": "ਸਿਸਟਮ ਪ੍ਰੰਪਟ", @@ -1616,6 +1660,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "", "The width in pixels to compress images to. Leave empty for no compression.": "", "Theme": "ਥੀਮ", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "", "This action cannot be undone. Do you wish to continue?": "", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "", @@ -1730,6 +1775,7 @@ "Upload Pipeline": "", "Upload Progress": "ਅਪਲੋਡ ਪ੍ਰਗਤੀ", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploaded files or images": "", "Uploading file...": "", "URL": "", "URL is required": "", @@ -1747,6 +1793,7 @@ "User Groups": "", "User location successfully retrieved.": "", "User menu": "", + "User ratings (thumbs up/down)": "", "User Webhooks": "", "Username": "", "users": "", @@ -1796,15 +1843,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "", "What are you trying to achieve?": "", "What are you working on?": "", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "ਨਵਾਂ ਕੀ ਹੈ", "What's on your mind?": "", "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.": "", "wherever you are": "", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whisper (Local)": "", + "Who can share to this group": "", "Why?": "", "Widescreen Mode": "", "Width": "", + "Wikipedia": "", "Won": "", "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.": "", "Workspace": "ਕਾਰਜਸਥਲ", @@ -1816,6 +1867,8 @@ "Yacy Instance URL": "", "Yacy Password": "", "Yacy Username": "", + "Yahoo": "", + "Yandex": "", "Yesterday": "ਕੱਲ੍ਹ", "Yesterday at {{LOCALIZED_TIME}}": "", "You": "ਤੁਸੀਂ", @@ -1823,6 +1876,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "", "You cannot upload an empty file.": "", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this thread.": "", "You do not have permission to upload files to this knowledge base.": "", @@ -1834,6 +1890,8 @@ "Your Account": "", "Your account status is currently pending activation.": "", "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.": "", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "ਯੂਟਿਊਬ", "Youtube Language": "", "Youtube Proxy URL": "" diff --git a/src/lib/i18n/locales/pl-PL/translation.json b/src/lib/i18n/locales/pl-PL/translation.json index 21a909c89..04b6c5200 100644 --- a/src/lib/i18n/locales/pl-PL/translation.json +++ b/src/lib/i18n/locales/pl-PL/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "Zmiana tych ustawień wpłynie na wszystkich użytkowników.", "admin": "administrator", "Admin": "Administrator", + "Admin Contact Email": "", "Admin Panel": "Panel administracyjny", "Admin Settings": "Ustawienia administratora", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administratorzy mają zawsze dostęp do wszystkich narzędzi; użytkownicy muszą mieć przypisane narzędzia do modelu w obszarze roboczym.", @@ -101,7 +102,6 @@ "Allow Continue Response": "Zezwól na kontynuację odpowiedzi", "Allow Delete Messages": "Zezwól na usuwanie wiadomości", "Allow File Upload": "Zezwól na przesyłanie plików", - "Allow Group Sharing": "Zezwól na udostępnianie grupowe", "Allow Multiple Models in Chat": "Zezwól na wiele modeli w czacie", "Allow non-local voices": "Zezwól na głosy nielokalne", "Allow Rate Response": "Zezwól na ocenianie odpowiedzi", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "i {{COUNT}} więcej", "and create a new shared link.": "i utwórz nowy link udostępniania.", "Android": "Android", + "Anyone": "", "API Base URL": "Bazowy adres URL API", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "Bazowy adres URL API dla usługi Datalab Marker. Domyślnie: https://www.datalab.to/api/v1/marker", "API Key": "Klucz API", @@ -175,6 +176,7 @@ "Authenticate": "Uwierzytelnij", "Authentication": "Uwierzytelnianie", "Auto": "Auto", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "Automatycznie kopiuj odpowiedź do schowka", "Auto-playback response": "Automatyczne odtwarzanie odpowiedzi", "Autocomplete Generation": "Generowanie autouzupełniania", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "Ciąg autoryzacji API AUTOMATIC1111", "AUTOMATIC1111 Base URL": "Bazowy adres URL AUTOMATIC1111", "AUTOMATIC1111 Base URL is required.": "Bazowy adres URL AUTOMATIC1111 jest wymagany.", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "Dostępna lista", "Available Tools": "Dostępne narzędzia", "available users": "dostępni użytkownicy", @@ -201,6 +204,7 @@ "before": "przed", "Being lazy": "Bezczynny", "Beta": "Beta", + "Bing": "", "Bing Search V7 Endpoint": "Punkt końcowy Bing Search V7", "Bing Search V7 Subscription Key": "Klucz subskrypcji Bing Search V7", "Bio": "Bio", @@ -209,7 +213,9 @@ "Bocha Search API Key": "Klucz API Bocha Search", "Bold": "Pogrubienie", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Wzmacnianie lub karanie tokenów. Wartości bias (obciążenia) są ograniczone do zakresu -100 do 100. (Domyślnie: brak)", + "Brave": "", "Brave Search API Key": "Klucz API Brave Search", + "Builtin Tools": "", "Bullet List": "Lista punktowana", "Button ID": "ID Przycisku", "Button Label": "Etykieta przycisku", @@ -256,8 +262,10 @@ "Check for updates": "Sprawdź dostępność aktualizacji", "Checking for updates...": "Sprawdzanie aktualizacji...", "Choose a model before saving...": "Wybierz model przed zapisaniem...", + "Chunk Min Size Target": "", "Chunk Overlap": "Chunk Overlap", "Chunk Size": "Chunk Size", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "Szyfry", "Citation": "Cytat", "Citations": "Cytaty", @@ -293,7 +301,6 @@ "Code Block": "Blok kodu", "Code Editor": "Edytor kodu", "Code execution": "Wykonywanie kodu", - "Code Execution": "Wykonywanie kodu", "Code Execution Engine": "Silnik wykonywania kodu", "Code Execution Timeout": "Limit czasu wykonywania kodu", "Code formatted successfully": "Sformatowano kod pomyślnie", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "Skontaktuj się z administratorem, aby uzyskać dostęp.", "Content": "Treść", "Content Extraction Engine": "Silnik ekstrakcji treści", + "Content lengths (character counts only)": "", "Continue Response": "Kontynuuj odpowiedź", "Continue with {{provider}}": "Kontynuuj przez {{provider}}", "Continue with Email": "Kontynuuj przez Email", @@ -393,6 +401,7 @@ "Database": "Baza danych", "Datalab Marker API": "API Datalab Marker", "DD/MM/YYYY": "DD/MM/YYYY", + "DDGS Backend": "", "December": "Grudzień", "Decrease UI Scale": "Zmniejsz skalę UI", "Deepgram": "Deepgram", @@ -474,6 +483,7 @@ "Dive into knowledge": "Zanurz się w wiedzy", "Do not install functions from sources you do not fully trust.": "Nie instaluj funkcji z niezaufanych źródeł.", "Do not install tools from sources you do not fully trust.": "Nie instaluj narzędzi z niezaufanych źródeł.", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "Docling", "Docling Parameters": "Parametry Docling", "Docling Server URL required.": "Wymagany URL serwera Docling.", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "Wymagany endpoint Document Intelligence.", "Document Intelligence Model": "Model Document Intelligence", "Documentation": "Dokumentacja", - "Documents": "Dokumenty", "does not make any external connections, and your data stays securely on your locally hosted server.": "nie nawiązuje połączeń zewnętrznych, a Twoje dane zostają lokalnie.", "Domain Filter List": "Lista filtrowania domen", "don't fetch random pipelines from sources you don't trust.": "nie pobieraj pipeline'ów z niezaufanych źródeł.", @@ -493,11 +502,14 @@ "Done": "Gotowe", "Download": "Pobierz", "Download & Delete": "Pobierz i usuń", + "Download as JSON": "", "Download as SVG": "Pobierz jako SVG", "Download canceled": "Pobieranie anulowane", "Download Database": "Pobierz bazę danych", + "Downloading stats...": "", "Draw": "Rysuj", "Drop any files here to upload": "Upuść pliki tutaj, aby przesłać", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "np. '30s','10m'. Jednostki: 's' (sek), 'm' (min), 'h' (godz).", "e.g. \"json\" or a JSON schema": "np. \"json\" lub schemat JSON", "e.g. 60": "np. 60", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "Wprowadź klucz API Bocha Search", "Enter Brave Search API Key": "Wprowadź klucz API Brave Search", "Enter certificate path": "Wprowadź ścieżkę certyfikatu", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "Wprowadź Chunk Overlap", "Enter Chunk Size": "Wprowadź Chunk Size", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Wprowadź pary \"token:bias\" po przecinku (np. 5432:100, 413:-100)", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "Wprowadź URL External Web Search", "Enter Firecrawl API Base URL": "Wprowadź Base URL Firecrawl API", "Enter Firecrawl API Key": "Wprowadź klucz API Firecrawl", + "Enter Firecrawl Timeout": "", "Enter folder name": "Wprowadź nazwę folderu", "Enter function name filter list (e.g. func1, !func2)": "Wprowadź listę filtrów funkcji (np. func1, !func2)", "Enter Github Raw URL": "Wprowadź Github Raw URL", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "Wprowadź kolor hex (np. #FF0000)", "Enter ID": "Wprowadź ID", "Enter Image Size (e.g. 512x512)": "Wprowadź rozmiar obrazu (np. 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "Wprowadź klucz API Jina", "Enter JSON config (e.g., {\"disable_links\": true})": "Wprowadź konfigurację JSON (np. {\"disable_links\": true})", "Enter Jupyter Password": "Wprowadź hasło Jupyter", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "Wprowadź klucz API Kagi Search", "Enter Key Behavior": "Zachowanie klawisza Enter", "Enter language codes": "Wprowadź kody języków", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "Wprowadź Base URL Mistral API", "Enter Mistral API Key": "Wprowadź klucz API Mistral", "Enter Model ID": "Wprowadź ID modelu", @@ -736,6 +753,7 @@ "Failed to generate title": "Nie udało się wygenerować tytułu", "Failed to import models": "Nie udało się zaimportować modeli", "Failed to load chat preview": "Nie udało się załadować podglądu czatu", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "Nie udało się załadować zawartości pliku.", "Failed to move chat": "Nie udało się przenieść czatu", "Failed to process URL: {{url}}": "Nie udało się przetworzyć URL: {{url}}", @@ -752,10 +770,10 @@ "Features": "Funkcje", "Features Permissions": "Uprawnienia funkcji", "February": "Luty", + "Feedback": "", "Feedback deleted successfully": "Opinia usunięta pomyślnie", "Feedback Details": "Szczegóły opinii", "Feedback History": "Historia opinii", - "Feedbacks": "Opinie", "Feel free to add specific details": "Możesz dodać szczegóły", "Female": "Kobieta", "File": "Plik", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Wykryto spoofing (Fingerprint): Nie można użyć inicjałów jako awatara. Używam domyślnego obrazka.", "Firecrawl API Base URL": "Base URL Firecrawl API", "Firecrawl API Key": "Klucz API Firecrawl", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "Pływające szybkie akcje", "Focus Chat Input": "Skupienie na polu czatu", "Folder": "Folder", "Folder Background Image": "Tło folderu", "Folder deleted successfully": "Folder usunięty pomyślnie", + "Folder Max File Count": "", "Folder Name": "Nazwa folderu", "Folder name cannot be empty.": "Nazwa folderu nie może być pusta.", "Folder name updated successfully": "Nazwa folderu zaktualizowana pomyślnie", @@ -826,7 +846,6 @@ "General": "Ogólne", "Generate": "Generuj", "Generate an image": "Wygeneruj obraz", - "Generate Image": "Generuj obraz", "Generate Message Pair": "Generuj parę wiadomości", "Generated Image": "Wygenerowany obraz", "Generating search query": "Generowanie zapytania wyszukiwania", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "Rozpocznij z {{WEBUI_NAME}}", "Global": "Globalne", "Good Response": "Dobra odpowiedź", + "Google": "", "Google Drive": "Google Drive", "Google PSE API Key": "Klucz API Google PSE", "Google PSE Engine Id": "ID silnika Google PSE", "Gravatar": "Gravatar", "Grid": "Siatka", + "Grokipedia": "", "Group": "Grupa", "Group Channel": "Kanał grupowy", "Group created successfully": "Grupa utworzona pomyślnie", @@ -895,7 +916,6 @@ "Image Prompt Generation": "Generowanie promptu dla obrazu", "Image Prompt Generation Prompt": "Prompt generujący prompt dla obrazu", "Image Size": "Rozmiar obrazu", - "Images": "Obrazy", "Import": "Importuj", "Import Chats": "Importuj czaty", "Import Config from JSON File": "Importuj konfigurację z JSON", @@ -927,6 +947,7 @@ "Integration": "Integracja", "Integrations": "Integracje", "Interface": "Interfejs", + "Interface Settings Access": "", "Invalid file content": "Nieprawidłowa zawartość pliku", "Invalid file format.": "Nieprawidłowy format pliku.", "Invalid JSON file": "Nieprawidłowy plik JSON", @@ -940,6 +961,7 @@ "is typing...": "pisze...", "Italic": "Kursywa", "January": "Styczeń", + "Jina API Base URL": "", "Jina API Key": "Klucz API Jina", "join our Discord for help.": "dołącz do Discorda po pomoc.", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "Zostaw puste, aby dołączyć wszystkie modele z \"{{url}}/api/tags\"", "Leave empty to include all models from \"{{url}}/models\" endpoint": "Zostaw puste, aby dołączyć wszystkie modele z \"{{url}}/models\"", "Leave empty to include all models or select specific models": "Zostaw puste, aby uwzględnić wszystkie, lub wybierz konkretne", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "Zostaw puste, aby użyć domyślnego modelu (voxtral-mini-latest).", "Leave empty to use the default prompt, or enter a custom prompt": "Zostaw puste dla domyślnego, lub wpisz własny", "Leave model field empty to use the default model.": "Zostaw puste, aby użyć modelu domyślnego.", @@ -1029,10 +1052,12 @@ "Manage your account information.": "Zarządzaj informacjami o koncie.", "March": "Marzec", "Markdown": "Markdown", - "Markdown (Header)": "Markdown (Nagłówek)", + "Markdown Header Text Splitter": "", "Max Speakers": "Maks. mówców", "Max Upload Count": "Maks. liczba plików", "Max Upload Size": "Maks. rozmiar pliku", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maksymalnie 3 modele mogą być pobierane jednocześnie. Spróbuj później.", "May": "Maj", "MBR": "MBR", @@ -1042,6 +1067,7 @@ "Member removed successfully": "Członek usunięty pomyślnie", "Members": "Członkowie", "Members added successfully": "Członkowie dodani pomyślnie", + "Memories": "", "Memories accessible by LLMs will be shown here.": "Wspomnienia dostępne dla LLM pojawią się tutaj.", "Memory": "Pamięć", "Memory added successfully": "Wspomnienie dodane pomyślnie", @@ -1051,6 +1077,7 @@ "Merge Responses": "Połącz odpowiedzi", "Merged Response": "Połączona odpowiedź", "Message": "Wiadomość", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "Ocenianie wiadomości musi być włączone, aby użyć tej funkcji", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Wiadomości wysłane po utworzeniu linku nie będą udostępniane. Użytkownicy z linkiem zobaczą udostępniony czat.", "Microsoft OneDrive": "Microsoft OneDrive", @@ -1083,9 +1110,11 @@ "Model Name": "Nazwa modelu", "Model name already exists, please choose a different one": "Nazwa modelu już istnieje, wybierz inną", "Model Name is required.": "Nazwa modelu jest wymagana.", + "Model names and usage frequency": "", "Model not selected": "Nie wybrano modelu", "Model Params": "Parametry modelu", "Model Permissions": "Uprawnienia modelu", + "Model responses or outputs": "", "Model unloaded successfully": "Model odładowany pomyślnie", "Model updated successfully": "Model zaktualizowany pomyślnie", "Model(s) do not support file upload": "Model(e) nie obsługują przesyłania plików", @@ -1096,6 +1125,7 @@ "Models imported successfully": "Modele zaimportowane pomyślnie", "Models Public Sharing": "Publiczne udostępnianie modeli", "Models Sharing": "Udostępnianie modeli", + "Mojeek": "", "Mojeek Search API Key": "Klucz API Mojeek Search", "More": "Więcej", "More Concise": "Bardziej zwięzły", @@ -1129,7 +1159,7 @@ "No conversation to save": "Brak rozmowy do zapisania", "No distance available": "Brak dostępnego dystansu", "No expiration can pose security risks.": "Brak wygaśnięcia może stanowić ryzyko bezpieczeństwa.", - "No feedbacks found": "Nie znaleziono opinii", + "No feedback found": "", "No file selected": "Nie wybrano pliku", "No files in this knowledge base.": "Brak plików w tej bazie wiedzy.", "No functions found": "Nie znaleziono funkcji", @@ -1144,6 +1174,7 @@ "No models selected": "Nie wybrano modeli", "No Notes": "Brak notatek", "No notes found": "Nie znaleziono notatek", + "No one": "", "No pinned messages": "Brak przypiętych wiadomości", "No prompts found": "Nie znaleziono promptów", "No results": "Brak wyników", @@ -1195,6 +1226,7 @@ "Only invited users can access": "Tylko zaproszeni użytkownic mają dostęp", "Only markdown files are allowed": "Tylko pliki markdown są dozwolone", "Only select users and groups with permission can access": "Tylko wybrani użytkownicy z uprawnieniami mają dostęp", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Ups! URL wygląda na nieprawidłowy. Sprawdź i spróbuj ponownie.", "Oops! There are files still uploading. Please wait for the upload to complete.": "Ups! Pliki wciąż się przesyłają. Poczekaj na zakończenie.", "Oops! There was an error in the previous response.": "Ups! Wystąpił błąd w poprzedniej odpowiedzi.", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI może używać narzędzi z dowolnego serwera OpenAPI.", "Open WebUI uses faster-whisper internally.": "Open WebUI używa wewnętrznie faster-whisper.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI używa SpeechT5 i embeddingów CMU Arctic.", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Wersja Open WebUI (v{{OPEN_WEBUI_VERSION}}) jest niższa niż wymagana (v{{REQUIRED_VERSION}})", "OpenAI": "OpenAI", "OpenAI API": "API OpenAI", @@ -1235,6 +1268,8 @@ "page": "strona", "Paginate": "Stronicowanie", "Parameters": "Parametry", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "Hasło", "Passwords do not match.": "Hasła nie pasują do siebie.", "Paste Large Text as File": "Wklej duży tekst jako plik", @@ -1260,7 +1295,6 @@ "Pipe": "Pipe", "Pipeline deleted successfully": "Pipeline usunięty pomyślnie", "Pipeline downloaded successfully": "Pipeline pobrany pomyślnie", - "Pipelines": "Pipelines", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines to system wtyczek z wykonywaniem dowolnego kodu —", "Pipelines Not Detected": "Nie wykryto Pipeline'ów", "Pipelines Valves": "Pipelines Valves", @@ -1500,6 +1534,7 @@ "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.": "Ustawia sekwencje stop. Gdy wystąpią, LLM przerywa generowanie.", "Setting": "Ustawienie", "Settings": "Ustawienia", + "Settings Permissions": "", "Settings saved successfully!": "Ustawienia zapisane pomyślnie!", "Share": "Udostępnij", "Share Chat": "Udostępnij czat", @@ -1543,6 +1578,7 @@ "Speech recognition error: {{error}}": "Błąd rozpoznawania mowy: {{error}}", "Speech-to-Text": "Speech-to-Text", "Speech-to-Text Engine": "Silnik Speech-to-Text", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "Rozpocznij nową rozmowę", "Start of the channel": "Początek kanału", "Start Tag": "Tag startowy", @@ -1553,6 +1589,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "Kroki (Steps)", "Stop": "Przerwij", + "Stop Download": "", "Stop Generating": "Przerwij generowanie", "Stop Sequence": "Sekwencja stop", "Stream Chat Response": "Strumieniuj odpowiedź czatu", @@ -1573,7 +1610,14 @@ "Support": "Wsparcie", "Support this plugin:": "Wesprzyj ten plugin:", "Supported MIME Types": "Obsługiwane typy MIME", + "Sync": "", + "Sync Complete!": "", "Sync directory": "Katalog synchronizacji", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "System", "System Instructions": "Instrukcje systemowe", "System Prompt": "Prompt systemowy", @@ -1618,6 +1662,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "Waga BM25 w wyszukiwaniu hybrydowym. 0 = semantyczne, 1 = leksykalne. Domyślnie 0.5", "The width in pixels to compress images to. Leave empty for no compression.": "Szerokość (px) do kompresji obrazów. Zostaw puste dla braku kompresji.", "Theme": "Motyw", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "Myślę...", "This action cannot be undone. Do you wish to continue?": "Tej akcji nie można cofnąć. Kontynuować?", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "Ten kanał utworzono {{createdAt}}. To początek kanału {{channelName}}.", @@ -1732,6 +1777,7 @@ "Upload Pipeline": "Prześlij Pipeline", "Upload Progress": "Postęp przesyłania", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Postęp: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", + "Uploaded files or images": "", "Uploading file...": "Przesyłanie pliku...", "URL": "URL", "URL is required": "URL jest wymagany", @@ -1749,6 +1795,7 @@ "User Groups": "Grupy użytkowników", "User location successfully retrieved.": "Lokalizacja użytkownika pobrana pomyślnie.", "User menu": "Menu użytkownika", + "User ratings (thumbs up/down)": "", "User Webhooks": "Webhooki użytkownika", "Username": "Nazwa użytkownika", "users": "użytkownicy", @@ -1798,15 +1845,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI będzie wysyłać żądania do \"{{url}}/chat/completions\"", "What are you trying to achieve?": "Co chcesz osiągnąć?", "What are you working on?": "Nad czym pracujesz?", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "Co nowego w", "What's on your mind?": "O czym myślisz?", "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.": "Gdy włączone, model odpowiada w czasie rzeczywistym.", "wherever you are": "gdziekolwiek jesteś", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "Czy stronicować wyjście. Domyślnie Fałsz.", "Whisper (Local)": "Whisper (Lokalny)", + "Who can share to this group": "", "Why?": "Dlaczego?", "Widescreen Mode": "Tryb szerokoekranowy", "Width": "Szerokość", + "Wikipedia": "", "Won": "Wygrano", "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.": "Działa razem z top-k. Wyższa wartość = większa różnorodność.", "Workspace": "Obszar roboczy", @@ -1818,6 +1869,8 @@ "Yacy Instance URL": "URL instancji Yacy", "Yacy Password": "Hasło Yacy", "Yacy Username": "Nazwa użytkownika Yacy", + "Yahoo": "", + "Yandex": "", "Yesterday": "Wczoraj", "Yesterday at {{LOCALIZED_TIME}}": "Wczoraj o {{LOCALIZED_TIME}}", "You": "Ty", @@ -1825,6 +1878,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Możesz rozmawiać z maksymalnie {{maxCount}} plikami naraz.", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Możesz personalizować interakcje dodając wspomnienia przyciskiem 'Zarządzaj'.", "You cannot upload an empty file.": "Nie możesz przesłać pustego pliku.", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "Nie masz uprawnień do wysyłania wiadomości w tym kanale.", "You do not have permission to send messages in this thread.": "Nie masz uprawnień do wysyłania wiadomości w tym wątku.", "You do not have permission to upload files to this knowledge base.": "Nie masz uprawnień do przesyłania plików do tej bazy wiedzy.", @@ -1836,6 +1892,8 @@ "Your Account": "Twoje konto", "Your account status is currently pending activation.": "Twoje konto oczekuje na aktywację.", "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.": "Cała wpłata trafia do twórcy pluginu; Open WebUI nie pobiera prowizji.", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "YouTube", "Youtube Language": "Język YouTube", "Youtube Proxy URL": "URL Proxy YouTube" diff --git a/src/lib/i18n/locales/pt-BR/translation.json b/src/lib/i18n/locales/pt-BR/translation.json index 8d9887653..f509e38be 100644 --- a/src/lib/i18n/locales/pt-BR/translation.json +++ b/src/lib/i18n/locales/pt-BR/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "Ajustar essas configurações aplicará mudanças para todos os usuários.", "admin": "admin", "Admin": "Admin", + "Admin Contact Email": "", "Admin Panel": "Painel do Admin", "Admin Settings": "Configurações do Admin", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Os administradores têm acesso a todas as ferramentas o tempo todo; os usuários precisam de ferramentas atribuídas, por modelo, no workspace.", @@ -101,7 +102,6 @@ "Allow Continue Response": "Permitir Resposta Contínua", "Allow Delete Messages": "Permitir Exclusão de Mensagens", "Allow File Upload": "Permitir Envio de arquivos", - "Allow Group Sharing": "Permitir compartilhamento em grupo", "Allow Multiple Models in Chat": "Permitir Vários Modelos no Chat", "Allow non-local voices": "Permitir vozes não locais", "Allow Rate Response": "Permitir Avaliar Resposta", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "e mais {{COUNT}}", "and create a new shared link.": "e criar um novo link compartilhado.", "Android": "Android", + "Anyone": "", "API Base URL": "URL Base da API", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "URL base da API para o serviço Datalab Marker. O padrão é: https://www.datalab.to/api/v1/marker", "API Key": "Chave API", @@ -175,6 +176,7 @@ "Authenticate": "Autenticar", "Authentication": "Autenticação", "Auto": "Auto", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "Cópia Automática da Resposta para a Área de Transferência", "Auto-playback response": "Resposta de reprodução automática", "Autocomplete Generation": "Geração de preenchimento automático", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "String de Autenticação da API AUTOMATIC1111", "AUTOMATIC1111 Base URL": "URL Base AUTOMATIC1111", "AUTOMATIC1111 Base URL is required.": "URL Base AUTOMATIC1111 é necessária.", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "Lista disponível", "Available Tools": "Ferramentas disponíveis", "available users": "usuários disponíveis", @@ -201,6 +204,7 @@ "before": "antes", "Being lazy": "Sendo preguiçoso", "Beta": "Beta", + "Bing": "", "Bing Search V7 Endpoint": "Endpoint do Bing Search V7", "Bing Search V7 Subscription Key": "Chave de assinatura do Bing Search V7", "Bio": "Sobre você", @@ -209,7 +213,9 @@ "Bocha Search API Key": "Chave da API de pesquisa Bocha", "Bold": "Negrito", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Aumentar ou penalizar tokens específicos para respostas restritas. Os valores de viés serão fixados entre -100 e 100 (inclusive). (Padrão: nenhum)", + "Brave": "", "Brave Search API Key": "Chave API do Brave Search", + "Builtin Tools": "", "Bullet List": "Lista com marcadores", "Button ID": "ID do botão", "Button Label": "Rótulo do botão", @@ -256,8 +262,10 @@ "Check for updates": "Verificar atualizações", "Checking for updates...": "Verificando atualizações...", "Choose a model before saving...": "Escolha um modelo antes de salvar...", + "Chunk Min Size Target": "", "Chunk Overlap": "Sobreposição de Chunk", "Chunk Size": "Tamanho do Chunk", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "Cifras", "Citation": "Citação", "Citations": "Citações", @@ -293,7 +301,6 @@ "Code Block": "Bloco de código", "Code Editor": "Editor de código", "Code execution": "Execução de código", - "Code Execution": "Execução de código", "Code Execution Engine": "Mecanismo de execução de código", "Code Execution Timeout": "Tempo limite de execução do código", "Code formatted successfully": "Código formatado com sucesso", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "Contate o Administrador para verificar seu acesso", "Content": "Conteúdo", "Content Extraction Engine": "Mecanismo de Extração de Conteúdo", + "Content lengths (character counts only)": "", "Continue Response": "Continuar Resposta", "Continue with {{provider}}": "Continuar com {{provider}}", "Continue with Email": "Continuar com Email", @@ -393,6 +401,7 @@ "Database": "Banco de Dados", "Datalab Marker API": "API do Marcador do Datalab", "DD/MM/YYYY": "DD/MM/AAAA", + "DDGS Backend": "", "December": "Dezembro", "Decrease UI Scale": "Diminuir a escala da interface do usuário", "Deepgram": "", @@ -474,6 +483,7 @@ "Dive into knowledge": "Explorar base de conhecimento", "Do not install functions from sources you do not fully trust.": "Não instale funções de origens nas quais você não confia totalmente.", "Do not install tools from sources you do not fully trust.": "Não instale ferramentas de origens nas quais você não confia totalmente.", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "", "Docling Parameters": "Parâmetros Docling", "Docling Server URL required.": "URL do servidor Docling necessária.", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "É necessário o endpoint do Document Intelligence.", "Document Intelligence Model": "Modelo de Inteligência de Documentos", "Documentation": "Documentação", - "Documents": "Documentos", "does not make any external connections, and your data stays securely on your locally hosted server.": "não faz nenhuma conexão externa, e seus dados permanecem seguros no seu servidor local.", "Domain Filter List": "Lista de filtros de domínio", "don't fetch random pipelines from sources you don't trust.": "Não busque pipelines aleatórios de fontes não confiáveis.", @@ -493,11 +502,14 @@ "Done": "Concluído", "Download": "Baixar", "Download & Delete": "Baixar e excluir", + "Download as JSON": "", "Download as SVG": "Baixar como SVG", "Download canceled": "Download cancelado", "Download Database": "Download do Banco de Dados", + "Downloading stats...": "", "Draw": "Empate", "Drop any files here to upload": "Solte qualquer arquivo aqui para fazer upload", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "por exemplo, '30s', '10m'. Unidades de tempo válidas são 's', 'm', 'h'.", "e.g. \"json\" or a JSON schema": "por exemplo, \"json\" ou um esquema JSON", "e.g. 60": "por exemplo, 60", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "Insira a chave da API de pesquisa do Bocha", "Enter Brave Search API Key": "Insira a chave da API de pesquisa do Brave", "Enter certificate path": "Digite o caminho do certificado", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "Digite a Sobreposição de Chunk", "Enter Chunk Size": "Digite o Tamanho do Chunk", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Insira pares \"token:bias_value\" separados por vírgulas (exemplo: 5432:100, 413:-100)", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "Insira a URL de pesquisa na Web externa", "Enter Firecrawl API Base URL": "Insira a URL base da API do Firecrawl", "Enter Firecrawl API Key": "Insira a chave da API do Firecrawl", + "Enter Firecrawl Timeout": "", "Enter folder name": "Digite o nome da pasta", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "Digite a URL bruta do Github", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "Digite a cor hexadecimal (por exemplo, #FF0000)", "Enter ID": "Digite o ID", "Enter Image Size (e.g. 512x512)": "Digite o Tamanho da Imagem (por exemplo, 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "Digite a Chave API Jina", "Enter JSON config (e.g., {\"disable_links\": true})": "Insira a configuração JSON (por exemplo, {\"disable_links\": true})", "Enter Jupyter Password": "Digite a senha do Jupyter", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "Insira a chave da API de pesquisa do Kagi", "Enter Key Behavior": "Comportamento da tecla Enter", "Enter language codes": "Digite os códigos de idioma", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "Insira a URL base da API Mistral", "Enter Mistral API Key": "Insira a chave da API Mistral", "Enter Model ID": "Digite o ID do modelo", @@ -736,6 +753,7 @@ "Failed to generate title": "Falha ao gerar título", "Failed to import models": "Falha ao importar modelos", "Failed to load chat preview": "Falha ao carregar a pré-visualização do chat", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "Falha ao carregar o conteúdo do arquivo.", "Failed to move chat": "Falha ao mover o chat", "Failed to process URL: {{url}}": "Falha ao processar URL: {{url}}", @@ -752,10 +770,10 @@ "Features": "Funcionalidades", "Features Permissions": "Permissões das Funcionalidades", "February": "Fevereiro", + "Feedback": "", "Feedback deleted successfully": "O feedback foi excluído com sucesso.", "Feedback Details": "Detalhes do comentário", "Feedback History": "Histórico de comentários", - "Feedbacks": "Comentários", "Feel free to add specific details": "Sinta-se à vontade para adicionar detalhes específicos", "Female": "Feminino", "File": "Arquivo", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Falsificação de impressão digital detectada: Não foi possível usar as iniciais como avatar. Usando a imagem de perfil padrão.", "Firecrawl API Base URL": "URL base da API do Firecrawl", "Firecrawl API Key": "Chave de API do Firecrawl", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "Ações rápidas flutuantes", "Focus Chat Input": "Foco na janela do Chat", "Folder": "Pasta", "Folder Background Image": "Imagem de fundo da pasta", "Folder deleted successfully": "Pasta excluída com sucesso", + "Folder Max File Count": "", "Folder Name": "Nome da Pasta", "Folder name cannot be empty.": "Nome da pasta não pode estar vazio.", "Folder name updated successfully": "Nome da pasta atualizado com sucesso", @@ -826,7 +846,6 @@ "General": "Geral", "Generate": "Gerar", "Generate an image": "Gerar uma imagem", - "Generate Image": "Gerar Imagem", "Generate Message Pair": "Gerar par de mensagens", "Generated Image": "Imagem gerada", "Generating search query": "Gerando consulta de pesquisa", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "Iniciar com {{WEBUI_NAME}}", "Global": "Global", "Good Response": "Boa Resposta", + "Google": "", "Google Drive": "", "Google PSE API Key": "Chave API do Google PSE", "Google PSE Engine Id": "ID do Motor do Google PSE", "Gravatar": "", "Grid": "Grade", + "Grokipedia": "", "Group": "Grupo", "Group Channel": "Canal do grupo", "Group created successfully": "Grupo criado com sucesso", @@ -895,7 +916,6 @@ "Image Prompt Generation": "Geração de prompt de imagem", "Image Prompt Generation Prompt": "Prompt de geração de prompt de imagem", "Image Size": "Tamanho da imagem", - "Images": "Imagens", "Import": "Importar", "Import Chats": "Importar Chats", "Import Config from JSON File": "Importar Configurações de JSON", @@ -927,6 +947,7 @@ "Integration": "Integração", "Integrations": "Integrações", "Interface": "Interface", + "Interface Settings Access": "", "Invalid file content": "Conteúdo de arquivo inválido", "Invalid file format.": "Formato de arquivo inválido.", "Invalid JSON file": "Arquivo JSON inválido", @@ -940,6 +961,7 @@ "is typing...": "está digitando...", "Italic": "Itálico", "January": "Janeiro", + "Jina API Base URL": "", "Jina API Key": "Chave de API Jina", "join our Discord for help.": "junte-se ao nosso Discord para ajudar.", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "Deixe em branco para incluir todos os modelos do ponto final \"{{url}}/api/tags\"", "Leave empty to include all models from \"{{url}}/models\" endpoint": "Deixe em branco para incluir todos os modelos do ponto final \"{{url}}/models\"", "Leave empty to include all models or select specific models": "Deixe vazio para incluir todos os modelos ou selecione modelos especificos", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "Deixe em branco para usar o modelo padrão (voxtral-mini-latest).", "Leave empty to use the default prompt, or enter a custom prompt": "Deixe vazio para usar o prompt padrão, ou insira um prompt personalizado", "Leave model field empty to use the default model.": "Deixe o campo do modelo vazio para usar o modelo padrão.", @@ -1029,10 +1052,12 @@ "Manage your account information.": "Gerencie as informações da sua conta.", "March": "Março", "Markdown": "", - "Markdown (Header)": "Markdown (Cabeçalho)", + "Markdown Header Text Splitter": "", "Max Speakers": "", "Max Upload Count": "Quantidade máxima de anexos", "Max Upload Size": "Tamanho máximo do arquivo", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Máximo de 3 modelos podem ser baixados simultaneamente. Por favor, tente novamente mais tarde.", "May": "Maio", "MBR": "", @@ -1042,6 +1067,7 @@ "Member removed successfully": "Membro removido com sucesso", "Members": "Membros", "Members added successfully": "Membros adicionados com sucesso", + "Memories": "", "Memories accessible by LLMs will be shown here.": "Memórias acessíveis por LLMs serão mostradas aqui.", "Memory": "Memória", "Memory added successfully": "Memória adicionada com sucesso", @@ -1051,6 +1077,7 @@ "Merge Responses": "Mesclar respostas", "Merged Response": "Resposta Mesclada", "Message": "Mensagem", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "Mensagem de avaliação deve estar habilitada para usar esta função", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Mensagens enviadas após criar seu link não serão compartilhadas. Usuários com o URL poderão visualizar o chat compartilhado.", "Microsoft OneDrive": "", @@ -1083,9 +1110,11 @@ "Model Name": "Nome do Modelo", "Model name already exists, please choose a different one": "O nome do modelo já existe, escolha um diferente", "Model Name is required.": "O nome do modelo é obrigatório.", + "Model names and usage frequency": "", "Model not selected": "Modelo não selecionado", "Model Params": "Parâmetros do Modelo", "Model Permissions": "Permissões do Modelo", + "Model responses or outputs": "", "Model unloaded successfully": "Modelo descarregado com sucesso", "Model updated successfully": "Modelo atualizado com sucesso", "Model(s) do not support file upload": "Modelo(s) não suportam upload de arquivo", @@ -1096,6 +1125,7 @@ "Models imported successfully": "", "Models Public Sharing": "Compartilhamento Público de Modelos", "Models Sharing": "Compartilhamento de Modelos", + "Mojeek": "", "Mojeek Search API Key": "Chave de API Mojeel Search", "More": "Mais", "More Concise": "Mais conciso", @@ -1129,7 +1159,7 @@ "No conversation to save": "Nenhuma conversa para salvar", "No distance available": "Sem distância disponível", "No expiration can pose security risks.": "Nenhuma expiração pode representar riscos de segurança.", - "No feedbacks found": "Comentários não encontrados", + "No feedback found": "", "No file selected": "Nenhum arquivo selecionado", "No files in this knowledge base.": "Não existem arquivos nesta base de conhecimento.", "No functions found": "Nenhuma função encontrada", @@ -1144,6 +1174,7 @@ "No models selected": "Nenhum modelo selecionado", "No Notes": "Sem Notas", "No notes found": "Notas não encontradas", + "No one": "", "No pinned messages": "Nenhuma mensagem fixada", "No prompts found": "Nenhum prompt encontrado", "No results": "Nenhum resultado encontrado", @@ -1195,6 +1226,7 @@ "Only invited users can access": "Somente usuários convidados podem acessar.", "Only markdown files are allowed": "Somente arquivos markdown são permitidos", "Only select users and groups with permission can access": "Somente usuários e grupos selecionados com permissão podem acessar.", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Ops! Parece que a URL é inválida. Por favor, verifique novamente e tente de novo.", "Oops! There are files still uploading. Please wait for the upload to complete.": "Ops! Existem arquivos a serem carregados. Por favor, aguarde que o carregamento tenha concluído.", "Oops! There was an error in the previous response.": "Ops! Houve um erro na resposta anterior.", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "O Open WebUI pode usar ferramentas fornecidas por qualquer servidor OpenAPI.", "Open WebUI uses faster-whisper internally.": "Open WebUI usa faster-whisper internamente.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "A Open WebUI usa os embeddings de voz do SpeechT5 e do CMU Arctic.", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "A versão do Open WebUI (v{{OPEN_WEBUI_VERSION}}) é inferior à versão necessária (v{{REQUIRED_VERSION}})", "OpenAI": "OpenAI", "OpenAI API": "API OpenAI", @@ -1235,6 +1268,8 @@ "page": "página", "Paginate": "Paginar", "Parameters": "Parâmetros", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "Senha", "Passwords do not match.": "As senhas não coincidem.", "Paste Large Text as File": "Cole Textos Longos como Arquivo", @@ -1260,7 +1295,6 @@ "Pipe": "", "Pipeline deleted successfully": "Pipeline excluído com sucesso", "Pipeline downloaded successfully": "Pipeline baixado com sucesso", - "Pipelines": "Pipelines", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines é um sistema de plugins com execução arbitrária de código —", "Pipelines Not Detected": "Pipelines Não Detectados", "Pipelines Valves": "Configurações de Pipelines", @@ -1499,6 +1533,7 @@ "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.": "Define as sequências de parada a serem usadas. Quando esse padrão for encontrado, o modelo de linguagem (LLM) parará de gerar texto e retornará. Vários padrões de parada podem ser definidos especificando parâmetros de parada separados em um arquivo de modelo.", "Setting": "Configuração", "Settings": "Configurações", + "Settings Permissions": "", "Settings saved successfully!": "Configurações salvas com sucesso!", "Share": "Compartilhar", "Share Chat": "Compartilhar Chat", @@ -1542,6 +1577,7 @@ "Speech recognition error: {{error}}": "Erro de reconhecimento de fala: {{error}}", "Speech-to-Text": "Fala-para-Texto", "Speech-to-Text Engine": "Motor de Transcrição de Fala", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "Iniciar uma nova conversa", "Start of the channel": "Início do canal", "Start Tag": "Tag inicial", @@ -1552,6 +1588,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "Passos", "Stop": "Parar", + "Stop Download": "", "Stop Generating": "Pare de gerar", "Stop Sequence": "Sequência de Parada", "Stream Chat Response": "Stream Resposta do Chat", @@ -1572,7 +1609,14 @@ "Support": "Suporte", "Support this plugin:": "Apoie este plugin:", "Supported MIME Types": "Tipos MIME suportados", + "Sync": "", + "Sync Complete!": "", "Sync directory": "Sincronizar Diretório", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "Sistema", "System Instructions": "Instruções do sistema", "System Prompt": "Prompt do Sistema", @@ -1617,6 +1661,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "O Peso da Busca Híbrida BM25. 0 a mais semântico, 1 a mais lexical. Padrão 0,5", "The width in pixels to compress images to. Leave empty for no compression.": "A largura em pixels para compactar as imagens. Deixe em branco para não compactar.", "Theme": "Tema", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "Pensando...", "This action cannot be undone. Do you wish to continue?": "Esta ação não pode ser desfeita. Você deseja continuar?", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "Este canal foi criado em {{createdAt}}. Este é o início do canal {{channelName}}.", @@ -1731,6 +1776,7 @@ "Upload Pipeline": "Fazer upload de Pipeline", "Upload Progress": "Progresso do Upload", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Progresso do upload: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", + "Uploaded files or images": "", "Uploading file...": "Enviando arquivo...", "URL": "", "URL is required": "URL é obrigratória", @@ -1748,6 +1794,7 @@ "User Groups": "Grupos de usuários", "User location successfully retrieved.": "Localização do usuário recuperada com sucesso.", "User menu": "Menu do usuário", + "User ratings (thumbs up/down)": "", "User Webhooks": "Webhooks do usuário", "Username": "Nome do Usuário", "users": "usuários", @@ -1797,15 +1844,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "A WebUI fará requisições para \"{{url}}/chat/completions\".", "What are you trying to achieve?": "O que está tentando alcançar?", "What are you working on?": "No que está trabalhando?", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "O que há de novo em", "What's on your mind?": "O que você têm em mente?", "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.": "Quando habilitado, o modelo responderá a cada mensagem de chat em tempo real, gerando uma resposta assim que o usuário enviar uma mensagem. Este modo é útil para aplicativos de chat ao vivo, mas pode impactar o desempenho em hardware mais lento.", "wherever you are": "onde quer que você esteja.", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "Se a saída deve ser paginada. Cada página será separada por uma régua horizontal e um número de página. O padrão é Falso.", "Whisper (Local)": "Whisper (Local)", + "Who can share to this group": "", "Why?": "Por que?", "Widescreen Mode": "Modo Tela Cheia", "Width": "Largura", + "Wikipedia": "", "Won": "Ganhou", "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.": "Funciona em conjunto com o top-k. Um valor mais alto (por exemplo, 0,95) resultará em um texto mais diverso, enquanto um valor mais baixo (por exemplo, 0,5) gerará um texto mais focado e conservador.", "Workspace": "Espaço de Trabalho", @@ -1817,6 +1868,8 @@ "Yacy Instance URL": "", "Yacy Password": "", "Yacy Username": "", + "Yahoo": "", + "Yandex": "", "Yesterday": "Ontem", "Yesterday at {{LOCALIZED_TIME}}": "Ontem às {{LOCALIZED_TIME}}", "You": "Você", @@ -1824,6 +1877,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Você só pode conversar com no máximo {{maxCount}} arquivo(s) de cada vez.", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Você pode personalizar suas interações com LLMs adicionando memórias através do botão 'Gerenciar' abaixo, tornando-as mais úteis e adaptadas a você.", "You cannot upload an empty file.": "Você não pode carregar um arquivo vazio.", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "Você não tem permissão para enviar mensagens neste canal.", "You do not have permission to send messages in this thread.": "Você não tem permissão para enviar mensagens neste tópico.", "You do not have permission to upload files to this knowledge base.": "Você não tem permissão para enviar arquivos para esta base de conhecimento.", @@ -1835,6 +1891,8 @@ "Your Account": "Sua conta", "Your account status is currently pending activation.": "O status da sua conta está atualmente aguardando ativação.", "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.": "Toda a sua contribuição irá diretamente para o desenvolvedor do plugin; o Open WebUI não retém nenhuma porcentagem. No entanto, a plataforma de financiamento escolhida pode ter suas próprias taxas.", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "", "Youtube Language": "", "Youtube Proxy URL": "" diff --git a/src/lib/i18n/locales/pt-PT/translation.json b/src/lib/i18n/locales/pt-PT/translation.json index d450b5da6..947c47f4b 100644 --- a/src/lib/i18n/locales/pt-PT/translation.json +++ b/src/lib/i18n/locales/pt-PT/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "Ajustar essas configurações aplicará alterações universalmente a todos os utilizadores.", "admin": "administrador", "Admin": "Admin", + "Admin Contact Email": "", "Admin Panel": "Painel do Administrador", "Admin Settings": "Configurações do Administrador", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "", @@ -101,7 +102,6 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "", - "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "Permitir vozes não locais", "Allow Rate Response": "", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "", "and create a new shared link.": "e criar um novo link partilhado.", "Android": "", + "Anyone": "", "API Base URL": "URL Base da API", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "", "API Key": "Chave da API", @@ -175,6 +176,7 @@ "Authenticate": "", "Authentication": "", "Auto": "", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "Cópia Automática da Resposta para a Área de Transferência", "Auto-playback response": "Reprodução automática da resposta", "Autocomplete Generation": "", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "", "AUTOMATIC1111 Base URL": "URL Base do AUTOMATIC1111", "AUTOMATIC1111 Base URL is required.": "O URL Base do AUTOMATIC1111 é obrigatório.", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "", "Available Tools": "", "available users": "utilizadores disponíveis", @@ -201,6 +204,7 @@ "before": "antes", "Being lazy": "Ser preguiçoso", "Beta": "", + "Bing": "", "Bing Search V7 Endpoint": "", "Bing Search V7 Subscription Key": "", "Bio": "", @@ -209,7 +213,9 @@ "Bocha Search API Key": "", "Bold": "", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "", + "Brave": "", "Brave Search API Key": "Chave da API de Pesquisa Brave", + "Builtin Tools": "", "Bullet List": "", "Button ID": "", "Button Label": "", @@ -256,8 +262,10 @@ "Check for updates": "Verificar atualizações", "Checking for updates...": "Verificando atualizações...", "Choose a model before saving...": "Escolha um modelo antes de guardar...", + "Chunk Min Size Target": "", "Chunk Overlap": "Sobreposição de Fragmento", "Chunk Size": "Tamanho do Fragmento", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "", "Citation": "Citação", "Citations": "", @@ -293,7 +301,6 @@ "Code Block": "", "Code Editor": "", "Code execution": "", - "Code Execution": "", "Code Execution Engine": "", "Code Execution Timeout": "", "Code formatted successfully": "", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "Contatar Admin para acesso ao WebUI", "Content": "Conteúdo", "Content Extraction Engine": "", + "Content lengths (character counts only)": "", "Continue Response": "Continuar resposta", "Continue with {{provider}}": "", "Continue with Email": "", @@ -393,6 +401,7 @@ "Database": "Base de dados", "Datalab Marker API": "", "DD/MM/YYYY": "", + "DDGS Backend": "", "December": "Dezembro", "Decrease UI Scale": "", "Deepgram": "", @@ -474,6 +483,7 @@ "Dive into knowledge": "", "Do not install functions from sources you do not fully trust.": "", "Do not install tools from sources you do not fully trust.": "", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "", "Docling Parameters": "", "Docling Server URL required.": "", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "", "Document Intelligence Model": "", "Documentation": "Documentação", - "Documents": "Documentos", "does not make any external connections, and your data stays securely on your locally hosted server.": "não faz conexões externas e os seus dados permanecem seguros no seu servidor alojado localmente.", "Domain Filter List": "", "don't fetch random pipelines from sources you don't trust.": "Não obtenha pipelines aleatórias de fontes não confiáveis.", @@ -493,11 +502,14 @@ "Done": "", "Download": "Descarregar", "Download & Delete": "Transferir e eliminar", + "Download as JSON": "", "Download as SVG": "", "Download canceled": "Download cancelado", "Download Database": "Descarregar Base de Dados", + "Downloading stats...": "", "Draw": "", "Drop any files here to upload": "", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "por exemplo, '30s', '10m'. Unidades de tempo válidas são 's', 'm', 'h'.", "e.g. \"json\" or a JSON schema": "", "e.g. 60": "", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "", "Enter Brave Search API Key": "Escreva a chave da API do Brave Search", "Enter certificate path": "", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "Escreva a Sobreposição de Fragmento", "Enter Chunk Size": "Escreva o Tamanho do Fragmento", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "", "Enter Firecrawl API Base URL": "", "Enter Firecrawl API Key": "", + "Enter Firecrawl Timeout": "", "Enter folder name": "", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "Escreva o URL cru do Github", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "", "Enter ID": "", "Enter Image Size (e.g. 512x512)": "Escreva o Tamanho da Imagem (por exemplo, 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "", "Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter Jupyter Password": "", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "", "Enter Key Behavior": "", "Enter language codes": "Escreva os códigos de idioma", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "", "Enter Mistral API Key": "", "Enter Model ID": "", @@ -736,6 +753,7 @@ "Failed to generate title": "", "Failed to import models": "", "Failed to load chat preview": "", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "", "Failed to move chat": "", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "", "Features Permissions": "", "February": "Fevereiro", + "Feedback": "", "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "", - "Feedbacks": "", "Feel free to add specific details": "Sinta-se à vontade para adicionar detalhes específicos", "Female": "", "File": "", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Detectada falsificação da impressão digital: Não é possível usar iniciais como avatar. A usar a imagem de perfil padrão.", "Firecrawl API Base URL": "", "Firecrawl API Key": "", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "", "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "", + "Folder Max File Count": "", "Folder Name": "", "Folder name cannot be empty.": "", "Folder name updated successfully": "", @@ -826,7 +846,6 @@ "General": "Geral", "Generate": "", "Generate an image": "", - "Generate Image": "Gerar imagem", "Generate Message Pair": "", "Generated Image": "", "Generating search query": "A gerar a consulta da pesquisa", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "", "Global": "", "Good Response": "Boa Resposta", + "Google": "", "Google Drive": "", "Google PSE API Key": "Chave da API PSE do Google", "Google PSE Engine Id": "ID do mecanismo PSE do Google", "Gravatar": "", "Grid": "", + "Grokipedia": "", "Group": "Grupo", "Group Channel": "", "Group created successfully": "", @@ -895,7 +916,6 @@ "Image Prompt Generation": "", "Image Prompt Generation Prompt": "", "Image Size": "", - "Images": "Imagens", "Import": "", "Import Chats": "Importar Conversas", "Import Config from JSON File": "", @@ -927,6 +947,7 @@ "Integration": "", "Integrations": "", "Interface": "Interface", + "Interface Settings Access": "", "Invalid file content": "", "Invalid file format.": "", "Invalid JSON file": "", @@ -940,6 +961,7 @@ "is typing...": "", "Italic": "", "January": "Janeiro", + "Jina API Base URL": "", "Jina API Key": "", "join our Discord for help.": "junte-se ao nosso Discord para obter ajuda.", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "", "Leave empty to include all models or select specific models": "", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "", "Leave empty to use the default prompt, or enter a custom prompt": "", "Leave model field empty to use the default model.": "", @@ -1029,10 +1052,12 @@ "Manage your account information.": "", "March": "Março", "Markdown": "", - "Markdown (Header)": "", + "Markdown Header Text Splitter": "", "Max Speakers": "", "Max Upload Count": "", "Max Upload Size": "", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "O máximo de 3 modelos podem ser descarregados simultaneamente. Tente novamente mais tarde.", "May": "Maio", "MBR": "", @@ -1042,6 +1067,7 @@ "Member removed successfully": "", "Members": "", "Members added successfully": "", + "Memories": "", "Memories accessible by LLMs will be shown here.": "Memórias acessíveis por LLMs serão mostradas aqui.", "Memory": "Memória", "Memory added successfully": "", @@ -1051,6 +1077,7 @@ "Merge Responses": "", "Merged Response": "Resposta Fundida", "Message": "", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Mensagens que você enviar após criar o seu link não serão partilhadas. Os utilizadores com o URL poderão visualizar a conversa partilhada.", "Microsoft OneDrive": "", @@ -1083,9 +1110,11 @@ "Model Name": "", "Model name already exists, please choose a different one": "", "Model Name is required.": "", + "Model names and usage frequency": "", "Model not selected": "Modelo não selecionado", "Model Params": "Params Modelo", "Model Permissions": "", + "Model responses or outputs": "", "Model unloaded successfully": "", "Model updated successfully": "", "Model(s) do not support file upload": "", @@ -1096,6 +1125,7 @@ "Models imported successfully": "", "Models Public Sharing": "", "Models Sharing": "", + "Mojeek": "", "Mojeek Search API Key": "", "More": "Mais", "More Concise": "", @@ -1129,7 +1159,7 @@ "No conversation to save": "", "No distance available": "", "No expiration can pose security risks.": "", - "No feedbacks found": "", + "No feedback found": "", "No file selected": "", "No files in this knowledge base.": "", "No functions found": "", @@ -1144,6 +1174,7 @@ "No models selected": "", "No Notes": "", "No notes found": "", + "No one": "", "No pinned messages": "", "No prompts found": "", "No results": "Não foram encontrados resultados", @@ -1195,6 +1226,7 @@ "Only invited users can access": "", "Only markdown files are allowed": "", "Only select users and groups with permission can access": "", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Epá! Parece que o URL é inválido. Verifique novamente e tente outra vez.", "Oops! There are files still uploading. Please wait for the upload to complete.": "", "Oops! There was an error in the previous response.": "", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "", "OpenAI": "OpenAI", "OpenAI API": "API OpenAI", @@ -1235,6 +1268,8 @@ "page": "", "Paginate": "", "Parameters": "", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "Senha", "Passwords do not match.": "", "Paste Large Text as File": "", @@ -1260,7 +1295,6 @@ "Pipe": "", "Pipeline deleted successfully": "", "Pipeline downloaded successfully": "", - "Pipelines": "Condutas", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines é um sistema de plugins com execução arbitrária de código —", "Pipelines Not Detected": "", "Pipelines Valves": "Válvulas de Condutas", @@ -1499,6 +1533,7 @@ "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.": "", "Setting": "", "Settings": "Configurações", + "Settings Permissions": "", "Settings saved successfully!": "Configurações guardadas com sucesso!", "Share": "Partilhar", "Share Chat": "Partilhar Conversa", @@ -1542,6 +1577,7 @@ "Speech recognition error: {{error}}": "Erro de reconhecimento de fala: {{error}}", "Speech-to-Text": "", "Speech-to-Text Engine": "Motor de Fala para Texto", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "", "Start of the channel": "Início do canal", "Start Tag": "", @@ -1552,6 +1588,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "", + "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Sequência de Paragem", "Stream Chat Response": "", @@ -1572,7 +1609,14 @@ "Support": "", "Support this plugin:": "", "Supported MIME Types": "", + "Sync": "", + "Sync Complete!": "", "Sync directory": "", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "Sistema", "System Instructions": "", "System Prompt": "Prompt do Sistema", @@ -1617,6 +1661,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "", "The width in pixels to compress images to. Leave empty for no compression.": "", "Theme": "Tema", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "A pensar...", "This action cannot be undone. Do you wish to continue?": "", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "", @@ -1731,6 +1776,7 @@ "Upload Pipeline": "Carregar Pipeline", "Upload Progress": "Progresso do Carregamento", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploaded files or images": "", "Uploading file...": "", "URL": "", "URL is required": "", @@ -1748,6 +1794,7 @@ "User Groups": "", "User location successfully retrieved.": "", "User menu": "", + "User ratings (thumbs up/down)": "", "User Webhooks": "", "Username": "", "users": "", @@ -1797,15 +1844,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "", "What are you trying to achieve?": "", "What are you working on?": "", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "O que há de novo em", "What's on your mind?": "", "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.": "", "wherever you are": "", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whisper (Local)": "Whisper (Local)", + "Who can share to this group": "", "Why?": "", "Widescreen Mode": "Modo Widescreen", "Width": "", + "Wikipedia": "", "Won": "", "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.": "", "Workspace": "Espaço de Trabalho", @@ -1817,6 +1868,8 @@ "Yacy Instance URL": "", "Yacy Password": "", "Yacy Username": "", + "Yahoo": "", + "Yandex": "", "Yesterday": "Ontem", "Yesterday at {{LOCALIZED_TIME}}": "", "You": "Você", @@ -1824,6 +1877,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Você pode personalizar as suas interações com LLMs adicionando memórias através do botão 'Gerir' abaixo, tornando-as mais úteis e personalizadas para você.", "You cannot upload an empty file.": "", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this thread.": "", "You do not have permission to upload files to this knowledge base.": "", @@ -1835,6 +1891,8 @@ "Your Account": "", "Your account status is currently pending activation.": "O status da sua conta está atualmente com a ativação pendente.", "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.": "", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "Youtube", "Youtube Language": "", "Youtube Proxy URL": "" diff --git a/src/lib/i18n/locales/ro-RO/translation.json b/src/lib/i18n/locales/ro-RO/translation.json index 54774bb45..8b5e0efa9 100644 --- a/src/lib/i18n/locales/ro-RO/translation.json +++ b/src/lib/i18n/locales/ro-RO/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "Ajustarea acestor setări va aplica modificările universal pentru toți utilizatorii.", "admin": "administrator", "Admin": "Administrator", + "Admin Contact Email": "", "Admin Panel": "Panoul de administrare", "Admin Settings": "Setări pentru administrator", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administratorii au acces la toate instrumentele în orice moment; utilizatorii au nevoie de instrumente asignate pe model în spațiul de lucru.", @@ -101,7 +102,6 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "Permite încărcarea fișierelor", - "Allow Group Sharing": "", "Allow Multiple Models in Chat": "Permite modele multiple în chat", "Allow non-local voices": "Permite voci non-locale", "Allow Rate Response": "", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "și {{COUNT}} mai multe", "and create a new shared link.": "și creează un nou link partajat.", "Android": "Android", + "Anyone": "", "API Base URL": "URL Bază API", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "", "API Key": "Cheie API", @@ -175,6 +176,7 @@ "Authenticate": "Autentifică", "Authentication": "Autentificare", "Auto": "", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "Copiere Automată a Răspunsului în Clipboard", "Auto-playback response": "Redare automată a răspunsului", "Autocomplete Generation": "Generare automată a completării", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "Șir de Autentificare API AUTOMATIC1111", "AUTOMATIC1111 Base URL": "URL Bază AUTOMATIC1111", "AUTOMATIC1111 Base URL is required.": "Este necesar URL-ul Bază AUTOMATIC1111.", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "Listă disponibilă", "Available Tools": "Instrumente disponibile", "available users": "utilizatori disponibili", @@ -201,6 +204,7 @@ "before": "înainte", "Being lazy": "Fiind leneș", "Beta": "", + "Bing": "", "Bing Search V7 Endpoint": "", "Bing Search V7 Subscription Key": "", "Bio": "", @@ -209,7 +213,9 @@ "Bocha Search API Key": "", "Bold": "", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "", + "Brave": "", "Brave Search API Key": "Cheie API Brave Search", + "Builtin Tools": "", "Bullet List": "", "Button ID": "", "Button Label": "", @@ -256,8 +262,10 @@ "Check for updates": "Verifică actualizări", "Checking for updates...": "Se verifică actualizările...", "Choose a model before saving...": "Alege un model înainte de a salva...", + "Chunk Min Size Target": "", "Chunk Overlap": "Suprapunere Bloc", "Chunk Size": "Dimensiune Bloc", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "Cifruri", "Citation": "Citație", "Citations": "Citații", @@ -293,7 +301,6 @@ "Code Block": "", "Code Editor": "", "Code execution": "Executarea codului", - "Code Execution": "", "Code Execution Engine": "Motor de executare cod", "Code Execution Timeout": "Timp limită pentru executarea codului", "Code formatted successfully": "Cod formatat cu succes", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "Contactează administratorul pentru acces WebUI", "Content": "Conținut", "Content Extraction Engine": "", + "Content lengths (character counts only)": "", "Continue Response": "Continuă Răspunsul", "Continue with {{provider}}": "Continuă cu {{provider}}", "Continue with Email": "Continuă cu email", @@ -393,6 +401,7 @@ "Database": "Bază de Date", "Datalab Marker API": "", "DD/MM/YYYY": "", + "DDGS Backend": "", "December": "Decembrie", "Decrease UI Scale": "", "Deepgram": "", @@ -474,6 +483,7 @@ "Dive into knowledge": "", "Do not install functions from sources you do not fully trust.": "Nu instalați funcții din surse în care nu aveți încredere completă.", "Do not install tools from sources you do not fully trust.": "Nu instalați instrumente din surse în care nu aveți încredere completă.", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "", "Docling Parameters": "", "Docling Server URL required.": "", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "", "Document Intelligence Model": "", "Documentation": "Documentație", - "Documents": "Documente", "does not make any external connections, and your data stays securely on your locally hosted server.": "nu face nicio conexiune externă, iar datele tale rămân în siguranță pe serverul găzduit local.", "Domain Filter List": "", "don't fetch random pipelines from sources you don't trust.": "Nu prelua pipelines aleatoare din surse în care nu ai încredere.", @@ -493,11 +502,14 @@ "Done": "Gata", "Download": "Descarcă", "Download & Delete": "Descărcare și ștergere", + "Download as JSON": "", "Download as SVG": "", "Download canceled": "Descărcare anulată", "Download Database": "Descarcă Baza de Date", + "Downloading stats...": "", "Draw": "Desenează", "Drop any files here to upload": "", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "de ex. '30s', '10m'. Unitățile de timp valide sunt 's', 'm', 'h'.", "e.g. \"json\" or a JSON schema": "", "e.g. 60": "", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "", "Enter Brave Search API Key": "Introduceți Cheia API Brave Search", "Enter certificate path": "", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "Introduceți Suprapunerea Blocului", "Enter Chunk Size": "Introduceți Dimensiunea Blocului", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "", "Enter Firecrawl API Base URL": "", "Enter Firecrawl API Key": "", + "Enter Firecrawl Timeout": "", "Enter folder name": "", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "Introduceți URL-ul Raw de pe Github", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "", "Enter ID": "", "Enter Image Size (e.g. 512x512)": "Introduceți Dimensiunea Imaginii (de ex. 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "", "Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter Jupyter Password": "", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "", "Enter Key Behavior": "", "Enter language codes": "Introduceți codurile limbilor", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "", "Enter Mistral API Key": "", "Enter Model ID": "Introdu codul modelului", @@ -736,6 +753,7 @@ "Failed to generate title": "", "Failed to import models": "", "Failed to load chat preview": "", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "", "Failed to move chat": "", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "", "Features Permissions": "", "February": "Februarie", + "Feedback": "", "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "Istoricul feedback-ului", - "Feedbacks": "", "Feel free to add specific details": "Adăugați detalii specifice fără nicio ezitare", "Female": "", "File": "Fișier", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Detectată falsificarea amprentelor: Nu se pot folosi inițialele ca avatar. Se utilizează imaginea de profil implicită.", "Firecrawl API Base URL": "", "Firecrawl API Key": "", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "", "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "Folder șters cu succes", + "Folder Max File Count": "", "Folder Name": "", "Folder name cannot be empty.": "Numele folderului nu poate fi gol.", "Folder name updated successfully": "Numele folderului a fost actualizat cu succes", @@ -826,7 +846,6 @@ "General": "General", "Generate": "", "Generate an image": "", - "Generate Image": "Generează Imagine", "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Se generează interogarea de căutare", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "", "Global": "Global", "Good Response": "Răspuns Bun", + "Google": "", "Google Drive": "", "Google PSE API Key": "Cheie API Google PSE", "Google PSE Engine Id": "ID Motor Google PSE", "Gravatar": "", "Grid": "", + "Grokipedia": "", "Group": "Grup", "Group Channel": "", "Group created successfully": "", @@ -895,7 +916,6 @@ "Image Prompt Generation": "", "Image Prompt Generation Prompt": "", "Image Size": "", - "Images": "Imagini", "Import": "", "Import Chats": "Importă Conversațiile", "Import Config from JSON File": "Importarea configurației dintr-un fișier JSON", @@ -927,6 +947,7 @@ "Integration": "", "Integrations": "", "Interface": "Interfață", + "Interface Settings Access": "", "Invalid file content": "", "Invalid file format.": "Format de fișier invalid.", "Invalid JSON file": "", @@ -940,6 +961,7 @@ "is typing...": "", "Italic": "", "January": "Ianuarie", + "Jina API Base URL": "", "Jina API Key": "", "join our Discord for help.": "alătură-te Discord-ului nostru pentru ajutor.", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "", "Leave empty to include all models or select specific models": "Lăsați gol pentru a include toate modelele sau selectați modele specifice", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "", "Leave empty to use the default prompt, or enter a custom prompt": "Lăsați gol pentru a utiliza promptul implicit sau introduceți un prompt personalizat", "Leave model field empty to use the default model.": "", @@ -1029,10 +1052,12 @@ "Manage your account information.": "", "March": "Martie", "Markdown": "", - "Markdown (Header)": "", + "Markdown Header Text Splitter": "", "Max Speakers": "", "Max Upload Count": "Număr maxim de încărcări", "Max Upload Size": "Dimensiune Maximă de Încărcare", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maxim 3 modele pot fi descărcate simultan. Vă rugăm să încercați din nou mai târziu.", "May": "Mai", "MBR": "", @@ -1042,6 +1067,7 @@ "Member removed successfully": "", "Members": "", "Members added successfully": "", + "Memories": "", "Memories accessible by LLMs will be shown here.": "Memoriile accesibile de LLM-uri vor fi afișate aici.", "Memory": "Memorie", "Memory added successfully": "Memoria a fost adăugată cu succes", @@ -1051,6 +1077,7 @@ "Merge Responses": "Combină răspunsurile", "Merged Response": "Răspuns Combinat", "Message": "", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "Evaluarea mesajelor ar trebui să fie activată pentru a utiliza această funcționalitate.", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Mesajele pe care le trimiteți după crearea link-ului dvs. nu vor fi partajate. Utilizatorii cu URL-ul vor putea vizualiza conversația partajată.", "Microsoft OneDrive": "", @@ -1083,9 +1110,11 @@ "Model Name": "Nume model", "Model name already exists, please choose a different one": "", "Model Name is required.": "", + "Model names and usage frequency": "", "Model not selected": "Modelul nu a fost selectat", "Model Params": "Parametri Model", "Model Permissions": "", + "Model responses or outputs": "", "Model unloaded successfully": "", "Model updated successfully": "Modelul a fost actualizat cu succes", "Model(s) do not support file upload": "", @@ -1096,6 +1125,7 @@ "Models imported successfully": "", "Models Public Sharing": "", "Models Sharing": "", + "Mojeek": "", "Mojeek Search API Key": "", "More": "Mai multe", "More Concise": "", @@ -1129,7 +1159,7 @@ "No conversation to save": "", "No distance available": "Nicio distanță disponibilă", "No expiration can pose security risks.": "", - "No feedbacks found": "Niciun feedback găsit", + "No feedback found": "", "No file selected": "Nu a fost selectat niciun fișier", "No files in this knowledge base.": "", "No functions found": "", @@ -1144,6 +1174,7 @@ "No models selected": "", "No Notes": "", "No notes found": "", + "No one": "", "No pinned messages": "", "No prompts found": "", "No results": "Nu au fost găsite rezultate", @@ -1195,6 +1226,7 @@ "Only invited users can access": "", "Only markdown files are allowed": "", "Only select users and groups with permission can access": "", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Oops! Se pare că URL-ul este invalid. Vă rugăm să verificați din nou și să încercați din nou.", "Oops! There are files still uploading. Please wait for the upload to complete.": "Ups! Încă mai există fișiere care se încarcă. Vă rugăm să așteptați până se finalizează încărcarea.", "Oops! There was an error in the previous response.": "Ups! A apărut o eroare în răspunsul anterior.", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "Open WebUI folosește faster-whisper intern.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Versiunea Open WebUI (v{{OPEN_WEBUI_VERSION}}) este mai mică decât versiunea necesară (v{{REQUIRED_VERSION}})", "OpenAI": "OpenAI", "OpenAI API": "API OpenAI", @@ -1235,6 +1268,8 @@ "page": "pagina", "Paginate": "", "Parameters": "", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "Parolă", "Passwords do not match.": "", "Paste Large Text as File": "", @@ -1260,7 +1295,6 @@ "Pipe": "", "Pipeline deleted successfully": "Conducta a fost ștearsă cu succes", "Pipeline downloaded successfully": "Conducta a fost descărcată cu succes", - "Pipelines": "Conducte", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines este un sistem de pluginuri cu execuție arbitrară de cod —", "Pipelines Not Detected": "Conducte Nedetectate", "Pipelines Valves": "Valvele Conductelor", @@ -1499,6 +1533,7 @@ "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.": "", "Setting": "", "Settings": "Setări", + "Settings Permissions": "", "Settings saved successfully!": "Setările au fost salvate cu succes!", "Share": "Partajează", "Share Chat": "Partajează Conversația", @@ -1542,6 +1577,7 @@ "Speech recognition error: {{error}}": "Eroare de recunoaștere vocală: {{error}}", "Speech-to-Text": "", "Speech-to-Text Engine": "Motor de Conversie a Vocii în Text", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "", "Start of the channel": "Începutul canalului", "Start Tag": "", @@ -1552,6 +1588,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Oprire", + "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Oprește Secvența", "Stream Chat Response": "Răspuns Stream Chat", @@ -1572,7 +1609,14 @@ "Support": "Suport", "Support this plugin:": "Susține acest plugin:", "Supported MIME Types": "", + "Sync": "", + "Sync Complete!": "", "Sync directory": "Sincronizează directorul", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "Sistem", "System Instructions": "Instrucțiuni pentru sistem", "System Prompt": "Prompt de Sistem", @@ -1617,6 +1661,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "", "The width in pixels to compress images to. Leave empty for no compression.": "", "Theme": "Temă", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "Gândește...", "This action cannot be undone. Do you wish to continue?": "Această acțiune nu poate fi anulată. Doriți să continuați?", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "", @@ -1731,6 +1776,7 @@ "Upload Pipeline": "Încarcă Conducta", "Upload Progress": "Progres Încărcare", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploaded files or images": "", "Uploading file...": "", "URL": "", "URL is required": "", @@ -1748,6 +1794,7 @@ "User Groups": "", "User location successfully retrieved.": "Localizarea utilizatorului a fost preluată cu succes.", "User menu": "", + "User ratings (thumbs up/down)": "", "User Webhooks": "", "Username": "", "users": "", @@ -1797,15 +1844,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "", "What are you trying to achieve?": "", "What are you working on?": "", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "Ce e Nou în", "What's on your mind?": "", "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.": "", "wherever you are": "", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whisper (Local)": "Whisper (Local)", + "Who can share to this group": "", "Why?": "", "Widescreen Mode": "Mod Ecran Larg", "Width": "", + "Wikipedia": "", "Won": "Câștigat", "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.": "", "Workspace": "Spațiu de Lucru", @@ -1817,6 +1868,8 @@ "Yacy Instance URL": "", "Yacy Password": "", "Yacy Username": "", + "Yahoo": "", + "Yandex": "", "Yesterday": "Ieri", "Yesterday at {{LOCALIZED_TIME}}": "", "You": "Tu", @@ -1824,6 +1877,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Puteți discuta cu un număr maxim de {{maxCount}} fișier(e) simultan.", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Puteți personaliza interacțiunile dvs. cu LLM-urile adăugând amintiri prin butonul 'Gestionează' de mai jos, făcându-le mai utile și adaptate la dvs.", "You cannot upload an empty file.": "Nu poți încărca un fișier gol.", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this thread.": "", "You do not have permission to upload files to this knowledge base.": "", @@ -1835,6 +1891,8 @@ "Your Account": "", "Your account status is currently pending activation.": "Statusul contului dvs. este în așteptare pentru activare.", "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.": "Întreaga dvs. contribuție va merge direct la dezvoltatorul plugin-ului; Open WebUI nu ia niciun procent. Cu toate acestea, platforma de finanțare aleasă ar putea avea propriile taxe.", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "Youtube", "Youtube Language": "", "Youtube Proxy URL": "" diff --git a/src/lib/i18n/locales/ru-RU/translation.json b/src/lib/i18n/locales/ru-RU/translation.json index b54b582e2..4bc36df2b 100644 --- a/src/lib/i18n/locales/ru-RU/translation.json +++ b/src/lib/i18n/locales/ru-RU/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "Изменения в этих настройках будут применены для всех пользователей.", "admin": "админ", "Admin": "Админ", + "Admin Contact Email": "", "Admin Panel": "Панель администратора", "Admin Settings": "Настройки администратора", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Администраторы всегда имеют доступ ко всем инструментам; пользователям нужны инструменты, назначенные для каждой модели в рабочем пространстве.", @@ -101,7 +102,6 @@ "Allow Continue Response": "Разрешить продолжение ответа", "Allow Delete Messages": "Разрешить удаление сообщений", "Allow File Upload": "Разрешить загрузку файлов", - "Allow Group Sharing": "", "Allow Multiple Models in Chat": "Разрешить использование нескольких моделей в чате", "Allow non-local voices": "Разрешить не локальные голоса", "Allow Rate Response": "Разрешить оценку ответа", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "и еще {{COUNT}}", "and create a new shared link.": "и создайте новую общую ссылку.", "Android": "Android", + "Anyone": "", "API Base URL": "Базовый адрес API", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "Базовый URL API для сервиса Datalab Marker. По умолчанию: https://www.datalab.to/api/v1/marker", "API Key": "Ключ API", @@ -175,6 +176,7 @@ "Authenticate": "Аутентификация", "Authentication": "Аутентификация", "Auto": "Автоматически", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "Автоматическое копирование ответа в буфер обмена", "Auto-playback response": "Автоматическое воспроизведение ответа", "Autocomplete Generation": "Генерация автозаполнения", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "строка авторизации API AUTOMATIC1111", "AUTOMATIC1111 Base URL": "Базовый URL адрес AUTOMATIC1111", "AUTOMATIC1111 Base URL is required.": "Необходим базовый адрес URL AUTOMATIC1111.", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "Список доступных", "Available Tools": "Доступные инструменты", "available users": "доступные пользователи", @@ -201,6 +204,7 @@ "before": "до", "Being lazy": "Лениво", "Beta": "Бета", + "Bing": "", "Bing Search V7 Endpoint": "Энд-поинт поиска Bing V7", "Bing Search V7 Subscription Key": "Ключ API Bing Search V7", "Bio": "О себе", @@ -209,7 +213,9 @@ "Bocha Search API Key": "Ключ API поиска Bocha", "Bold": "Полужирный", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Увеличение или отмена определенных токенов за ограниченные ответы. Значения смещения будут находиться в диапазоне от -100 до 100 (включительно). (По умолчанию: ничего)", + "Brave": "", "Brave Search API Key": "Ключ API поиска Brave", + "Builtin Tools": "", "Bullet List": "Маркированный список", "Button ID": "ID кнопки", "Button Label": "Подпись кнопки", @@ -256,8 +262,10 @@ "Check for updates": "Проверить обновления", "Checking for updates...": "Проверка обновлений...", "Choose a model before saving...": "Выберите модель перед сохранением...", + "Chunk Min Size Target": "", "Chunk Overlap": "Перекрытие фрагментов", "Chunk Size": "Размер фрагмента", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "Шифры", "Citation": "Цитирование", "Citations": "Цитаты", @@ -293,7 +301,6 @@ "Code Block": "Блок кода", "Code Editor": "", "Code execution": "Исполнение кода", - "Code Execution": "Исполнение кода", "Code Execution Engine": "Механизм исполнения кода", "Code Execution Timeout": "Время ожидания исполнения кода", "Code formatted successfully": "Код успешно отформатирован", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "Обратитесь к администратору для получения доступа к WebUI", "Content": "Содержание", "Content Extraction Engine": "Механизм извлечения контента", + "Content lengths (character counts only)": "", "Continue Response": "Продолжить ответ", "Continue with {{provider}}": "Продолжить с {{provider}}", "Continue with Email": "Продолжить с Email", @@ -393,6 +401,7 @@ "Database": "База данных", "Datalab Marker API": "Datalab Marker API", "DD/MM/YYYY": "ДД/ММ/ГГГГ", + "DDGS Backend": "", "December": "Декабрь", "Decrease UI Scale": "", "Deepgram": "Deepgram", @@ -474,6 +483,7 @@ "Dive into knowledge": "Погрузитесь в знания", "Do not install functions from sources you do not fully trust.": "Не устанавливайте функции из источников, которым вы не полностью доверяете.", "Do not install tools from sources you do not fully trust.": "Не устанавливайте инструменты из источников, которым вы не полностью доверяете.", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "Docling", "Docling Parameters": "", "Docling Server URL required.": "Необходим URL сервера Docling", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "Требуется конечная точка Document Intelligence.", "Document Intelligence Model": "", "Documentation": "Документация", - "Documents": "Документы", "does not make any external connections, and your data stays securely on your locally hosted server.": "не устанавливает никаких внешних соединений, и ваши данные надежно хранятся на вашем локальном сервере.", "Domain Filter List": "Список доменных фильтров", "don't fetch random pipelines from sources you don't trust.": "Не получайте случайные pipelines из источников, которым вы не доверяете.", @@ -493,11 +502,14 @@ "Done": "Готово", "Download": "Загрузить", "Download & Delete": "Скачать и удалить", + "Download as JSON": "", "Download as SVG": "Загрузить как SVG", "Download canceled": "Загрузка отменена", "Download Database": "Загрузить базу данных", + "Downloading stats...": "", "Draw": "Рисовать", "Drop any files here to upload": "Переместите сюда любые файлы для загрузки", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "например, '30s','10m'. Допустимые единицы времени: 's', 'm', 'h'.", "e.g. \"json\" or a JSON schema": "например, \"json\" или схему JSON", "e.g. 60": "например, 60", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "Введите APi ключ поиска Bocha", "Enter Brave Search API Key": "Введите ключ API поиска Brave", "Enter certificate path": "Введите путь к сертификату", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "Введите перекрытие фрагмента", "Enter Chunk Size": "Введите размер фрагмента", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Введите пары \"token:bias_value\", разделенные запятыми (пример: 5432:100, 413:-100).", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "Введите URL-адрес внешнего веб-поиска", "Enter Firecrawl API Base URL": "Введите базовый URL-адрес Firecrawl API", "Enter Firecrawl API Key": "Введите ключ API для Firecrawl", + "Enter Firecrawl Timeout": "", "Enter folder name": "Введите имя папки", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "Введите необработанный URL-адрес Github", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "Введите hex-цвет (напр. #FF0000)", "Enter ID": "Введите ID", "Enter Image Size (e.g. 512x512)": "Введите размер изображения (например, 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "Введите ключ API Jina", "Enter JSON config (e.g., {\"disable_links\": true})": "Введите JSON конфигурацию (напр., {\"disable_links\": true})", "Enter Jupyter Password": "Введите пароль Jupyter", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "Введите ключ API поиска Kagi", "Enter Key Behavior": "Введите ключ поведения", "Enter language codes": "Введите коды языков", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "", "Enter Mistral API Key": "Введите ключ API для Mistral", "Enter Model ID": "Введите ID модели", @@ -736,6 +753,7 @@ "Failed to generate title": "Не удалось сгенерировать заголовок", "Failed to import models": "", "Failed to load chat preview": "Не удалось загрузить предпросмотр чата", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "Не удалось загрузить содержимое файла.", "Failed to move chat": "Не удалось переместить чат", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "Функции", "Features Permissions": "Разрешения для функций", "February": "Февраль", + "Feedback": "", "Feedback deleted successfully": "", "Feedback Details": "Детали отзыва", "Feedback History": "История отзывов", - "Feedbacks": "Отзывы", "Feel free to add specific details": "Не стесняйтесь добавлять конкретные детали", "Female": "Женский", "File": "Файл", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Определение подделки отпечатка: Невозможно использовать инициалы в качестве аватара. По умолчанию используется изображение профиля по умолчанию.", "Firecrawl API Base URL": "Базовый URL-адрес Firecrawl API", "Firecrawl API Key": "Ключ API Firecrawl", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "Плавающие быстрые действия", "Focus Chat Input": "", "Folder": "", "Folder Background Image": "Фоновое изображение папки", "Folder deleted successfully": "Папка успешно удалена", + "Folder Max File Count": "", "Folder Name": "Название папки", "Folder name cannot be empty.": "Название папки не может быть пустым.", "Folder name updated successfully": "Название папки успешно обновлено", @@ -826,7 +846,6 @@ "General": "Общее", "Generate": "Сгенерировать", "Generate an image": "Сгенерировать изображение", - "Generate Image": "Сгенерировать изображение", "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Генерация поискового запроса", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "Давайте начнём с {{WEBUI_NAME}}", "Global": "Глобально", "Good Response": "Хороший ответ", + "Google": "", "Google Drive": "Google Drive", "Google PSE API Key": "Ключ API Google PSE", "Google PSE Engine Id": "Id движка Google PSE", "Gravatar": "Gravatar", "Grid": "", + "Grokipedia": "", "Group": "Группа", "Group Channel": "", "Group created successfully": "Группа успешно создана", @@ -895,7 +916,6 @@ "Image Prompt Generation": "Генерация промпта к изображению", "Image Prompt Generation Prompt": "Промпт для создание промпта изображения", "Image Size": "", - "Images": "Изображения", "Import": "Импорт", "Import Chats": "Импортировать чаты", "Import Config from JSON File": "Импорт конфигурации из JSON-файла", @@ -927,6 +947,7 @@ "Integration": "Интеграция", "Integrations": "Интеграции", "Interface": "Интерфейс", + "Interface Settings Access": "", "Invalid file content": "Недопустимое содержимое файла", "Invalid file format.": "Неверный формат файла.", "Invalid JSON file": "Недопустимый файл JSON", @@ -940,6 +961,7 @@ "is typing...": "печатает...", "Italic": "Курсив", "January": "Январь", + "Jina API Base URL": "", "Jina API Key": "Ключ API для Jina", "join our Discord for help.": "присоединяйтесь к нашему Discord для помощи.", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "Оставьте пустым, чтобы включить все модели из конечной точки \"{{url}}/api/tags\"", "Leave empty to include all models from \"{{url}}/models\" endpoint": "Оставьте поле пустым, чтобы включить все модели из конечной точки \"{{url}}/models\"", "Leave empty to include all models or select specific models": "Оставьте поле пустым, чтобы включить все модели или выбрать конкретные модели", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "", "Leave empty to use the default prompt, or enter a custom prompt": "Оставьте пустым, чтобы использовать промпт по умолчанию, или введите пользовательский промпт", "Leave model field empty to use the default model.": "Оставьте поле model пустым, чтобы использовать модель по умолчанию.", @@ -1029,10 +1052,12 @@ "Manage your account information.": "Управляйте информацией о своей учетной записи.", "March": "Март", "Markdown": "Markdown", - "Markdown (Header)": "Markdown (Заголовок)", + "Markdown Header Text Splitter": "", "Max Speakers": "Максимальное количество динамиков", "Max Upload Count": "Максимальное количество загрузок", "Max Upload Size": "Максимальный размер загрузок", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Максимальное количество моделей для загрузки одновременно - 3. Пожалуйста, попробуйте позже.", "May": "Май", "MBR": "", @@ -1042,6 +1067,7 @@ "Member removed successfully": "", "Members": "", "Members added successfully": "", + "Memories": "", "Memories accessible by LLMs will be shown here.": "Воспоминания, доступные LLMs, будут отображаться здесь.", "Memory": "Воспоминания", "Memory added successfully": "Воспоминание успешно добавлено", @@ -1051,6 +1077,7 @@ "Merge Responses": "Объединить ответы", "Merged Response": "Объединенный ответ", "Message": "", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "Чтобы использовать эту функцию, необходимо включить оценку сообщения.", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Сообщения, отправленные вами после создания ссылки, не будут передаваться другим. Пользователи, у которых есть URL, смогут просматривать общий чат.", "Microsoft OneDrive": "Microsoft OneDrive", @@ -1083,9 +1110,11 @@ "Model Name": "Название Модели", "Model name already exists, please choose a different one": "Имя модели уже существует, пожалуйста, выберите другое", "Model Name is required.": "Требуется имя модели.", + "Model names and usage frequency": "", "Model not selected": "Модель не выбрана", "Model Params": "Параметры модели", "Model Permissions": "Разрешения Модели", + "Model responses or outputs": "", "Model unloaded successfully": "Модель выгружена успешно", "Model updated successfully": "Модель успешно обновлена", "Model(s) do not support file upload": "Модель (или модели) не поддерживают загрузку файлов", @@ -1096,6 +1125,7 @@ "Models imported successfully": "", "Models Public Sharing": "Публичный обмен моделями", "Models Sharing": "", + "Mojeek": "", "Mojeek Search API Key": "Ключ API для поиска Mojeek", "More": "Больше", "More Concise": "Более кратко", @@ -1129,7 +1159,7 @@ "No conversation to save": "Нет разговора для сохранения", "No distance available": "Никаких доступных растояний", "No expiration can pose security risks.": "", - "No feedbacks found": "Никаких обратных связей не найдено", + "No feedback found": "", "No file selected": "Файлы не выбраны", "No files in this knowledge base.": "", "No functions found": "", @@ -1144,6 +1174,7 @@ "No models selected": "Модели не выбраны", "No Notes": "Нет заметок", "No notes found": "Заметки не найдены", + "No one": "", "No pinned messages": "", "No prompts found": "", "No results": "Результатов не найдено", @@ -1195,6 +1226,7 @@ "Only invited users can access": "", "Only markdown files are allowed": "Разрешены только файлы markdown", "Only select users and groups with permission can access": "Доступ имеют только избранные пользователи и группы, имеющие разрешение.", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Упс! Похоже, что URL-адрес недействителен. Пожалуйста, перепроверьте и попробуйте еще раз.", "Oops! There are files still uploading. Please wait for the upload to complete.": "Упс! Есть файлы, которые все еще загружаются. Пожалуйста, дождитесь завершения загрузки.", "Oops! There was an error in the previous response.": "Упс! В предыдущем ответе была ошибка.", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI может использовать инструменты, предоставляемые любым сервером OpenAPI.", "Open WebUI uses faster-whisper internally.": "Open WebUI использует более быстрый внутренний интерфейс whisper.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "В Open WebUI используются встраиваемые движки генерации речи SpeechT5 и CMU Arctic.", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Версия Open WebUI (v{{OPEN_WEBUI_VERSION}}) ниже требуемой версии (v{{REQUIRED_VERSION}})", "OpenAI": "Open AI", "OpenAI API": "API OpenAI", @@ -1235,6 +1268,8 @@ "page": "страница", "Paginate": "Разбивка на страницы", "Parameters": "Параметры", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "Пароль", "Passwords do not match.": "Пароли не совпадают.", "Paste Large Text as File": "Вставить большой текст как файл", @@ -1260,7 +1295,6 @@ "Pipe": "Канал", "Pipeline deleted successfully": "Конвейер успешно удален", "Pipeline downloaded successfully": "Конвейер успешно загружен", - "Pipelines": "Конвейеры", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines — это система плагинов с произвольным выполнением кода —", "Pipelines Not Detected": "Конвейеры не обнаружены", "Pipelines Valves": "Вентили конвейеров", @@ -1500,6 +1534,7 @@ "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.": "Устанавливает используемые последовательности остановок. При обнаружении этого шаблона LLM прекратит генерировать текст и вернет данные. Можно задать несколько шаблонов остановок, указав несколько отдельных параметров остановки в файле модели.", "Setting": "", "Settings": "Настройки", + "Settings Permissions": "", "Settings saved successfully!": "Настройки успешно сохранены!", "Share": "Поделиться", "Share Chat": "Поделиться чатом", @@ -1543,6 +1578,7 @@ "Speech recognition error: {{error}}": "Ошибка распознавания речи: {{error}}", "Speech-to-Text": "Речь в текст", "Speech-to-Text Engine": "Система распознавания речи", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "", "Start of the channel": "Начало канала", "Start Tag": "Начальный тег", @@ -1553,6 +1589,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Остановить", + "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Последовательность останова", "Stream Chat Response": "Потоковый вывод ответа", @@ -1573,7 +1610,14 @@ "Support": "Поддержать", "Support this plugin:": "Поддержите этот плагин", "Supported MIME Types": "Поддерживаемые MIME типы", + "Sync": "", + "Sync Complete!": "", "Sync directory": "Каталог синхронизации", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "Система", "System Instructions": "Системные инструкции", "System Prompt": "Системный промпт", @@ -1618,6 +1662,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "", "The width in pixels to compress images to. Leave empty for no compression.": "Ширина в пикселях для сжатия изображений. Оставьте пустым для отключения сжатия.", "Theme": "Тема", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "Думаю...", "This action cannot be undone. Do you wish to continue?": "Это действие нельзя отменить. Вы хотите продолжить?", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "Этот канал был создан {{createdAt}}. Это самое начало канала {{channelName}}.", @@ -1732,6 +1777,7 @@ "Upload Pipeline": "Загрузить конвейер", "Upload Progress": "Прогресс загрузки", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Прогресс загрузки: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", + "Uploaded files or images": "", "Uploading file...": "", "URL": "URL", "URL is required": "Требуется URL", @@ -1749,6 +1795,7 @@ "User Groups": "Группы пользователей", "User location successfully retrieved.": "Местоположение пользователя успешно получено.", "User menu": "Меню пользователя", + "User ratings (thumbs up/down)": "", "User Webhooks": "Пользовательские веб-хуки", "Username": "Имя пользователя", "users": "", @@ -1798,15 +1845,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI будет отправлять запросы к \"{{url}}/chat/completions\"", "What are you trying to achieve?": "Чего вы пытаетесь достичь?", "What are you working on?": "Над чем вы работаете?", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "Что нового в", "What's on your mind?": "", "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.": "Если эта функция включена, модель будет отвечать на каждое сообщение чата в режиме реального времени, генерируя ответ, как только пользователь отправит сообщение. Этот режим полезен для приложений живого чата, но может повлиять на производительность на более медленном оборудовании.", "wherever you are": "где бы вы ни были", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "Следует ли разбивать выходные данные на страницы. Каждая страница будет разделена горизонтальной линией и номером страницы. По умолчанию установлено значение Выкл.", "Whisper (Local)": "Whisper (Локально)", + "Who can share to this group": "", "Why?": "Почему?", "Widescreen Mode": "Широкоэкранный режим", "Width": "Ширина", + "Wikipedia": "", "Won": "Победа", "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.": "Работает совместно с top-k. Более высокое значение (например, 0,95) приведет к более разнообразному тексту, в то время как более низкое значение (например, 0,5) приведет к созданию более сфокусированного и консервативного текста.", "Workspace": "Рабочее пространство", @@ -1818,6 +1869,8 @@ "Yacy Instance URL": "URL-адрес экземпляра Yacy", "Yacy Password": "Пароль Yacy", "Yacy Username": "Имя пользователя Yacy", + "Yahoo": "", + "Yandex": "", "Yesterday": "Вчера", "Yesterday at {{LOCALIZED_TIME}}": "Вчера в {{LOCALIZED_TIME}}", "You": "Вы", @@ -1825,6 +1878,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Одновременно вы можете общаться только с максимальным количеством файлов {{maxCount}}.", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Вы можете персонализировать свое взаимодействие с LLMs, добавив воспоминания с помощью кнопки \"Управлять\" ниже, что сделает их более полезными и адаптированными для вас.", "You cannot upload an empty file.": "Вы не можете загрузить пустой файл.", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this thread.": "", "You do not have permission to upload files to this knowledge base.": "", @@ -1836,6 +1892,8 @@ "Your Account": "Ваш аккаунт", "Your account status is currently pending activation.": "В настоящее время ваша учетная запись ожидает активации.", "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.": "Весь ваш взнос будет направлен непосредственно разработчику плагина; Open WebUI не взимает никаких процентов. Однако выбранная платформа финансирования может иметь свои собственные сборы.", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "YouTube", "Youtube Language": "Язык YouTube", "Youtube Proxy URL": "URL прокси для YouTube" diff --git a/src/lib/i18n/locales/sk-SK/translation.json b/src/lib/i18n/locales/sk-SK/translation.json index 9f41a2c48..53370c6b2 100644 --- a/src/lib/i18n/locales/sk-SK/translation.json +++ b/src/lib/i18n/locales/sk-SK/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "Úprava týchto nastavení sa prejaví univerzálne u všetkých užívateľov.", "admin": "admin", "Admin": "Admin", + "Admin Contact Email": "", "Admin Panel": "Admin panel", "Admin Settings": "Nastavenia admina", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administrátori majú prístup ku všetkým nástrojom kedykoľvek; užívatelia potrebujú mať nástroje priradené podľa modelu v workspace.", @@ -101,7 +102,6 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "Povoliť nahrávanie súborov", - "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "Povoliť ne-lokálne hlasy", "Allow Rate Response": "", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "a {{COUNT}} ďalšie/í", "and create a new shared link.": "a vytvoriť nový zdieľaný odkaz.", "Android": "", + "Anyone": "", "API Base URL": "Základná URL adresa API", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "", "API Key": "API kľúč", @@ -175,6 +176,7 @@ "Authenticate": "Autentifikovať", "Authentication": "", "Auto": "", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "Automatické kopírovanie odpovede do schránky", "Auto-playback response": "Automatická odpoveď pri prehrávaní", "Autocomplete Generation": "", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "AUTOMATIC1111 Api Auth String", "AUTOMATIC1111 Base URL": "Základná URL pre AUTOMATIC1111", "AUTOMATIC1111 Base URL is required.": "Vyžaduje sa základná URL pre AUTOMATIC1111.", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "Dostupný zoznam", "Available Tools": "", "available users": "dostupní používatelia", @@ -201,6 +204,7 @@ "before": "pred", "Being lazy": "", "Beta": "", + "Bing": "", "Bing Search V7 Endpoint": "", "Bing Search V7 Subscription Key": "", "Bio": "", @@ -209,7 +213,9 @@ "Bocha Search API Key": "", "Bold": "", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "", + "Brave": "", "Brave Search API Key": "API kľúč pre Brave Search", + "Builtin Tools": "", "Bullet List": "", "Button ID": "", "Button Label": "", @@ -256,8 +262,10 @@ "Check for updates": "Skontrolovať aktualizácie", "Checking for updates...": "Kontrola aktualizácií...", "Choose a model before saving...": "Vyberte model pred uložením...", + "Chunk Min Size Target": "", "Chunk Overlap": "", "Chunk Size": "", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "", "Citation": "Odkaz", "Citations": "", @@ -293,7 +301,6 @@ "Code Block": "", "Code Editor": "", "Code execution": "Vykonávanie kódu", - "Code Execution": "", "Code Execution Engine": "", "Code Execution Timeout": "", "Code formatted successfully": "Kód bol úspešne naformátovaný.", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "Kontaktujte administrátora pre prístup k webovému rozhraniu.", "Content": "Obsah", "Content Extraction Engine": "", + "Content lengths (character counts only)": "", "Continue Response": "Pokračovať v odpovedi", "Continue with {{provider}}": "Pokračovať s {{provider}}", "Continue with Email": "", @@ -393,6 +401,7 @@ "Database": "Databáza", "Datalab Marker API": "", "DD/MM/YYYY": "", + "DDGS Backend": "", "December": "December", "Decrease UI Scale": "", "Deepgram": "", @@ -474,6 +483,7 @@ "Dive into knowledge": "", "Do not install functions from sources you do not fully trust.": "Neinštalujte funkcie zo zdrojov, ktorým plne nedôverujete.", "Do not install tools from sources you do not fully trust.": "Neinštalujte nástroje zo zdrojov, ktorým plne nedôverujete.", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "", "Docling Parameters": "", "Docling Server URL required.": "", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "", "Document Intelligence Model": "", "Documentation": "Dokumentácia", - "Documents": "Dokumenty", "does not make any external connections, and your data stays securely on your locally hosted server.": "nevytvára žiadne externé pripojenia a vaše dáta zostávajú bezpečne na vašom lokálnom serveri.", "Domain Filter List": "", "don't fetch random pipelines from sources you don't trust.": "Nestahujte náhodné pipelines zo zdrojov, ktorým nedôverujete.", @@ -493,11 +502,14 @@ "Done": "Hotovo.", "Download": "Stiahnuť", "Download & Delete": "Stiahnuť a odstrániť", + "Download as JSON": "", "Download as SVG": "", "Download canceled": "Sťahovanie zrušené", "Download Database": "Stiahnuť databázu", + "Downloading stats...": "", "Draw": "Nakresliť", "Drop any files here to upload": "", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "napr. '30s','10m'. Platné časové jednotky sú 's', 'm', 'h'.", "e.g. \"json\" or a JSON schema": "", "e.g. 60": "", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "", "Enter Brave Search API Key": "Zadajte API kľúč pre Brave Search", "Enter certificate path": "", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "Zadajte prekryv časti", "Enter Chunk Size": "Zadajte veľkosť časti", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "", "Enter Firecrawl API Base URL": "", "Enter Firecrawl API Key": "", + "Enter Firecrawl Timeout": "", "Enter folder name": "", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "Zadajte URL adresu Github Raw", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "", "Enter ID": "", "Enter Image Size (e.g. 512x512)": "Zadajte veľkosť obrázka (napr. 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "", "Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter Jupyter Password": "", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "", "Enter Key Behavior": "", "Enter language codes": "Zadajte kódy jazykov", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "", "Enter Mistral API Key": "", "Enter Model ID": "Zadajte ID modelu", @@ -736,6 +753,7 @@ "Failed to generate title": "", "Failed to import models": "", "Failed to load chat preview": "", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "", "Failed to move chat": "", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "", "Features Permissions": "", "February": "Február", + "Feedback": "", "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "História spätnej väzby", - "Feedbacks": "", "Feel free to add specific details": "Neváhajte pridať konkrétne detaily.", "Female": "", "File": "Súbor", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Zistené falšovanie odtlačkov prstov: Nie je možné použiť iniciály ako avatar. Používa sa predvolený profilový obrázok.", "Firecrawl API Base URL": "", "Firecrawl API Key": "", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "", "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "Priečinok bol úspešne vymazaný", + "Folder Max File Count": "", "Folder Name": "", "Folder name cannot be empty.": "Názov priečinka nesmie byť prázdny.", "Folder name updated successfully": "Názov priečinka bol úspešne aktualizovaný.", @@ -826,7 +846,6 @@ "General": "Všeobecné", "Generate": "", "Generate an image": "", - "Generate Image": "Vygenerovať obrázok", "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Generovanie vyhľadávacieho dotazu", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "", "Global": "Globálne", "Good Response": "Dobrá odozva", + "Google": "", "Google Drive": "", "Google PSE API Key": "Kľúč API pre Google PSE (Programmatically Search Engine)", "Google PSE Engine Id": "Google PSE Engine Id (Identifikátor vyhľadávacieho modulu Google PSE)", "Gravatar": "", "Grid": "", + "Grokipedia": "", "Group": "Skupina", "Group Channel": "", "Group created successfully": "", @@ -895,7 +916,6 @@ "Image Prompt Generation": "", "Image Prompt Generation Prompt": "", "Image Size": "", - "Images": "Obrázky", "Import": "", "Import Chats": "Importovať konverzácie", "Import Config from JSON File": "Importovanie konfigurácie z JSON súboru", @@ -927,6 +947,7 @@ "Integration": "", "Integrations": "", "Interface": "Rozhranie", + "Interface Settings Access": "", "Invalid file content": "", "Invalid file format.": "Neplatný formát súboru.", "Invalid JSON file": "", @@ -940,6 +961,7 @@ "is typing...": "", "Italic": "", "January": "Január", + "Jina API Base URL": "", "Jina API Key": "", "join our Discord for help.": "pripojte sa k nášmu Discordu pre pomoc.", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "", "Leave empty to include all models or select specific models": "Nechajte prázdne pre zahrnutie všetkých modelov alebo vyberte konkrétne modely.", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "", "Leave empty to use the default prompt, or enter a custom prompt": "Nechajte prázdne pre použitie predvoleného podnetu, alebo zadajte vlastný podnet.", "Leave model field empty to use the default model.": "", @@ -1029,10 +1052,12 @@ "Manage your account information.": "", "March": "Marec", "Markdown": "", - "Markdown (Header)": "", + "Markdown Header Text Splitter": "", "Max Speakers": "", "Max Upload Count": "Maximálny počet nahraní", "Max Upload Size": "Maximálna veľkosť nahrávania", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Maximálne 3 modely môžu byť stiahnuté súčasne. Prosím skúste to znova neskôr.", "May": "Máj", "MBR": "", @@ -1042,6 +1067,7 @@ "Member removed successfully": "", "Members": "", "Members added successfully": "", + "Memories": "", "Memories accessible by LLMs will be shown here.": "Spomienky prístupné LLM budú zobrazené tu.", "Memory": "Pamäť", "Memory added successfully": "Pamäť bola úspešne pridaná.", @@ -1051,6 +1077,7 @@ "Merge Responses": "Zlúčiť odpovede", "Merged Response": "Zlúčená odpoveď", "Message": "", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "Hodnotenie správ musí byť povolené, aby bolo možné túto funkciu používať.", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Správy, ktoré odošlete po vytvorení odkazu, nebudú zdieľané. Používatelia s URL budú môcť zobraziť zdieľaný chat.", "Microsoft OneDrive": "", @@ -1083,9 +1110,11 @@ "Model Name": "Názov modelu", "Model name already exists, please choose a different one": "", "Model Name is required.": "", + "Model names and usage frequency": "", "Model not selected": "Model nebol vybraný", "Model Params": "Parametre modelu", "Model Permissions": "", + "Model responses or outputs": "", "Model unloaded successfully": "", "Model updated successfully": "Model bol úspešne aktualizovaný", "Model(s) do not support file upload": "", @@ -1096,6 +1125,7 @@ "Models imported successfully": "", "Models Public Sharing": "", "Models Sharing": "", + "Mojeek": "", "Mojeek Search API Key": "", "More": "Viac", "More Concise": "", @@ -1129,7 +1159,7 @@ "No conversation to save": "", "No distance available": "Nie je dostupná žiadna vzdialenosť", "No expiration can pose security risks.": "", - "No feedbacks found": "Žiadna spätná väzba nenájdená", + "No feedback found": "", "No file selected": "Nebola vybratá žiadna súbor", "No files in this knowledge base.": "", "No functions found": "", @@ -1144,6 +1174,7 @@ "No models selected": "", "No Notes": "", "No notes found": "", + "No one": "", "No pinned messages": "", "No prompts found": "", "No results": "Neboli nájdené žiadne výsledky", @@ -1195,6 +1226,7 @@ "Only invited users can access": "", "Only markdown files are allowed": "", "Only select users and groups with permission can access": "", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Jejda! Vyzerá to, že URL adresa je neplatná. Prosím, skontrolujte ju a skúste to znova.", "Oops! There are files still uploading. Please wait for the upload to complete.": "Jejda! Niektoré súbory sa stále nahrávajú. Prosím, počkajte, kým sa nahrávanie dokončí.", "Oops! There was an error in the previous response.": "Jejda! V predchádzajúcej odpovedi došlo k chybe.", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "Open WebUI interne používa faster-whisper.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Verzia Open WebUI (v{{OPEN_WEBUI_VERSION}}) je nižšia ako požadovaná verzia (v{{REQUIRED_VERSION}})", "OpenAI": "OpenAI je výskumná organizácia zameraná na umelú inteligenciu, ktorá je známa vývojom pokročilých jazykových modelov, ako je napríklad GPT. Tieto modely sa využívajú v rôznych aplikáciách, vrátane konverzačných agentov a jazykových nástrojov.", "OpenAI API": "OpenAI API je rozhranie aplikačného programovania, ktoré umožňuje vývojárom integrovať pokročilé jazykové modely do svojich aplikácií.", @@ -1235,6 +1268,8 @@ "page": "stránka", "Paginate": "", "Parameters": "", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "Heslo", "Passwords do not match.": "", "Paste Large Text as File": "", @@ -1260,7 +1295,6 @@ "Pipe": "", "Pipeline deleted successfully": "Pipeline bola úspešne odstránená", "Pipeline downloaded successfully": "Kanál bol úspešne stiahnutý", - "Pipelines": "", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines je systém zásuvných modulov s ľubovoľným spúšťaním kódu —", "Pipelines Not Detected": "Prenosové kanály neboli detekované", "Pipelines Valves": "", @@ -1500,6 +1534,7 @@ "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.": "", "Setting": "", "Settings": "Nastavenia", + "Settings Permissions": "", "Settings saved successfully!": "Nastavenia boli úspešne uložené!", "Share": "Zdieľať", "Share Chat": "Zdieľať chat", @@ -1543,6 +1578,7 @@ "Speech recognition error: {{error}}": "Chyba rozpoznávania reči: {{error}}", "Speech-to-Text": "", "Speech-to-Text Engine": "Motor prevodu reči na text", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "", "Start of the channel": "Začiatok kanála", "Start Tag": "", @@ -1553,6 +1589,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Zastaviť", + "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Sekvencia zastavenia", "Stream Chat Response": "Odozva chatu Stream", @@ -1573,7 +1610,14 @@ "Support": "Podpora", "Support this plugin:": "Podporte tento plugin:", "Supported MIME Types": "", + "Sync": "", + "Sync Complete!": "", "Sync directory": "Synchronizovať adresár", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "Systém", "System Instructions": "", "System Prompt": "Systémový prompt", @@ -1618,6 +1662,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "", "The width in pixels to compress images to. Leave empty for no compression.": "", "Theme": "Téma", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "Premýšľam...", "This action cannot be undone. Do you wish to continue?": "Túto akciu nie je možné vrátiť späť. Prajete si pokračovať?", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "", @@ -1732,6 +1777,7 @@ "Upload Pipeline": "Nahrať pipeline", "Upload Progress": "Priebeh nahrávania", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploaded files or images": "", "Uploading file...": "", "URL": "", "URL is required": "", @@ -1749,6 +1795,7 @@ "User Groups": "", "User location successfully retrieved.": "Umiestnenie používateľa bolo úspešne získané.", "User menu": "", + "User ratings (thumbs up/down)": "", "User Webhooks": "", "Username": "Používateľské meno", "users": "", @@ -1798,15 +1845,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "", "What are you trying to achieve?": "", "What are you working on?": "", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "Čo je nové v", "What's on your mind?": "", "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.": "", "wherever you are": "kdekoľvek ste", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whisper (Local)": "Whisper (Lokálne)", + "Who can share to this group": "", "Why?": "Prečo?", "Widescreen Mode": "Režim širokouhlého zobrazenia", "Width": "", + "Wikipedia": "", "Won": "Vyhral", "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.": "", "Workspace": "", @@ -1818,6 +1869,8 @@ "Yacy Instance URL": "", "Yacy Password": "", "Yacy Username": "", + "Yahoo": "", + "Yandex": "", "Yesterday": "Včera", "Yesterday at {{LOCALIZED_TIME}}": "", "You": "Vy", @@ -1825,6 +1878,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Môžete komunikovať len s maximálne {{maxCount}} súbor(ami) naraz.", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Môžete personalizovať svoje interakcie s LLM pridaním spomienok prostredníctvom tlačidla 'Spravovať' nižšie, čo ich urobí pre vás užitočnejšími a lepšie prispôsobenými.", "You cannot upload an empty file.": "Nemôžete nahrať prázdny súbor.", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this thread.": "", "You do not have permission to upload files to this knowledge base.": "", @@ -1836,6 +1892,8 @@ "Your Account": "", "Your account status is currently pending activation.": "Stav vášho účtu je aktuálne čakajúci na aktiváciu.", "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.": "Celý váš príspevok pôjde priamo vývojárovi pluginu; Open WebUI si neberie žiadne percento. Zvolená platforma na financovanie však môže mať vlastné poplatky.", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "YouTube", "Youtube Language": "", "Youtube Proxy URL": "" diff --git a/src/lib/i18n/locales/sr-RS/translation.json b/src/lib/i18n/locales/sr-RS/translation.json index 2e35a2d6d..7990df177 100644 --- a/src/lib/i18n/locales/sr-RS/translation.json +++ b/src/lib/i18n/locales/sr-RS/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "Прилагођавање ових подешавања ће применити промене на све кориснике.", "admin": "админ", "Admin": "Админ", + "Admin Contact Email": "", "Admin Panel": "Админ табла", "Admin Settings": "Админ део", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Админи имају приступ свим алатима у сваком тренутку, корисницима је потребно доделити алате по моделу у радном простору", @@ -101,7 +102,6 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "Дозволи отпремање датотека", - "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "Дозволи нелокалне гласове", "Allow Rate Response": "", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "и још {{COUNT}}", "and create a new shared link.": "и направи нову дељену везу.", "Android": "", + "Anyone": "", "API Base URL": "Основна адреса API-ја", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "", "API Key": "API кључ", @@ -175,6 +176,7 @@ "Authenticate": "Идентификација", "Authentication": "", "Auto": "", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "Самостално копирање одговора у оставу", "Auto-playback response": "Самостално пуштање одговора", "Autocomplete Generation": "Стварање самодовршавања", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "Automatic1111 Api ниска идентификације", "AUTOMATIC1111 Base URL": "Основна адреса за AUTOMATIC1111", "AUTOMATIC1111 Base URL is required.": "Потребна је основна адреса за AUTOMATIC1111.", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "Списак доступног", "Available Tools": "", "available users": "доступни корисници", @@ -201,6 +204,7 @@ "before": "пре", "Being lazy": "Бити лењ", "Beta": "Бета", + "Bing": "", "Bing Search V7 Endpoint": "", "Bing Search V7 Subscription Key": "", "Bio": "", @@ -209,7 +213,9 @@ "Bocha Search API Key": "", "Bold": "", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "", + "Brave": "", "Brave Search API Key": "Апи кључ за храбру претрагу", + "Builtin Tools": "", "Bullet List": "", "Button ID": "", "Button Label": "", @@ -256,8 +262,10 @@ "Check for updates": "Потражи ажурирања", "Checking for updates...": "Траже се ажурирања...", "Choose a model before saving...": "Изабери модел пре чувања...", + "Chunk Min Size Target": "", "Chunk Overlap": "Преклапање делова", "Chunk Size": "Величина дела", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "Шифре", "Citation": "Цитат", "Citations": "", @@ -293,7 +301,6 @@ "Code Block": "", "Code Editor": "", "Code execution": "Извршавање кода", - "Code Execution": "", "Code Execution Engine": "", "Code Execution Timeout": "", "Code formatted successfully": "Код форматиран успешно", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "Пишите админима за приступ на WebUI", "Content": "Садржај", "Content Extraction Engine": "", + "Content lengths (character counts only)": "", "Continue Response": "Настави одговор", "Continue with {{provider}}": "Настави са {{provider}}", "Continue with Email": "Настави са е-адресом", @@ -393,6 +401,7 @@ "Database": "База података", "Datalab Marker API": "", "DD/MM/YYYY": "", + "DDGS Backend": "", "December": "Децембар", "Decrease UI Scale": "", "Deepgram": "", @@ -474,6 +483,7 @@ "Dive into knowledge": "Ускочите у знање", "Do not install functions from sources you do not fully trust.": "", "Do not install tools from sources you do not fully trust.": "", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "", "Docling Parameters": "", "Docling Server URL required.": "", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "", "Document Intelligence Model": "", "Documentation": "Документација", - "Documents": "Документи", "does not make any external connections, and your data stays securely on your locally hosted server.": "не отвара никакве спољне везе и ваши подаци остају сигурно на вашем локално хостованом серверу.", "Domain Filter List": "", "don't fetch random pipelines from sources you don't trust.": "Не преузимајте насумичне pipelines са извора којима не верујете.", @@ -493,11 +502,14 @@ "Done": "Готово", "Download": "Преузми", "Download & Delete": "Преузми и избриши", + "Download as JSON": "", "Download as SVG": "", "Download canceled": "Преузимање отказано", "Download Database": "Преузми базу података", + "Downloading stats...": "", "Draw": "Нацртај", "Drop any files here to upload": "", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "нпр. '30s', '10m'. Важеће временске јединице су 's', 'm', 'h'.", "e.g. \"json\" or a JSON schema": "", "e.g. 60": "", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "", "Enter Brave Search API Key": "Унесите БРАВЕ Сеарцх АПИ кључ", "Enter certificate path": "", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "Унесите преклапање делова", "Enter Chunk Size": "Унесите величину дела", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "", "Enter Firecrawl API Base URL": "", "Enter Firecrawl API Key": "", + "Enter Firecrawl Timeout": "", "Enter folder name": "", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "Унесите Гитхуб Раw УРЛ адресу", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "", "Enter ID": "", "Enter Image Size (e.g. 512x512)": "Унесите величину слике (нпр. 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "", "Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter Jupyter Password": "", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "", "Enter Key Behavior": "", "Enter language codes": "Унесите кодове језика", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "", "Enter Mistral API Key": "", "Enter Model ID": "", @@ -736,6 +753,7 @@ "Failed to generate title": "", "Failed to import models": "", "Failed to load chat preview": "", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "", "Failed to move chat": "", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "", "Features Permissions": "", "February": "Фебруар", + "Feedback": "", "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "Историјат повратних података", - "Feedbacks": "Повратни подаци", "Feel free to add specific details": "Слободно додајте специфичне детаље", "Female": "", "File": "Датотека", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Откривено лажно представљање отиска прста: Немогуће је користити иницијале као аватар. Прелазак на подразумевану профилну слику.", "Firecrawl API Base URL": "", "Firecrawl API Key": "", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "", "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "", + "Folder Max File Count": "", "Folder Name": "", "Folder name cannot be empty.": "", "Folder name updated successfully": "", @@ -826,7 +846,6 @@ "General": "Опште", "Generate": "", "Generate an image": "", - "Generate Image": "", "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Генерисање упита претраге", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "", "Global": "", "Good Response": "Добар одговор", + "Google": "", "Google Drive": "", "Google PSE API Key": "Гоогле ПСЕ АПИ кључ", "Google PSE Engine Id": "Гоогле ПСЕ ИД мотора", "Gravatar": "", "Grid": "", + "Grokipedia": "", "Group": "Група", "Group Channel": "", "Group created successfully": "Група направљена успешно", @@ -895,7 +916,6 @@ "Image Prompt Generation": "", "Image Prompt Generation Prompt": "", "Image Size": "", - "Images": "Слике", "Import": "", "Import Chats": "Увези ћаскања", "Import Config from JSON File": "", @@ -927,6 +947,7 @@ "Integration": "", "Integrations": "", "Interface": "Изглед", + "Interface Settings Access": "", "Invalid file content": "", "Invalid file format.": "", "Invalid JSON file": "", @@ -940,6 +961,7 @@ "is typing...": "", "Italic": "", "January": "Јануар", + "Jina API Base URL": "", "Jina API Key": "", "join our Discord for help.": "придружите се нашем Дискорду за помоћ.", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "", "Leave empty to include all models or select specific models": "", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "", "Leave empty to use the default prompt, or enter a custom prompt": "", "Leave model field empty to use the default model.": "", @@ -1029,10 +1052,12 @@ "Manage your account information.": "", "March": "Март", "Markdown": "", - "Markdown (Header)": "", + "Markdown Header Text Splitter": "", "Max Speakers": "", "Max Upload Count": "", "Max Upload Size": "", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Највише 3 модела могу бити преузета истовремено. Покушајте поново касније.", "May": "Мај", "MBR": "", @@ -1042,6 +1067,7 @@ "Member removed successfully": "", "Members": "", "Members added successfully": "", + "Memories": "", "Memories accessible by LLMs will be shown here.": "Памћења које ће бити појављена од овог LLM-а ће бити приказана овде.", "Memory": "Сећања", "Memory added successfully": "Сећање успешно додато", @@ -1051,6 +1077,7 @@ "Merge Responses": "Спој одговоре", "Merged Response": "Спојени одговор", "Message": "", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Поруке које пошаљете након стварања ваше везе неће бити подељене. Корисници са URL-ом ће моћи да виде дељено ћаскање.", "Microsoft OneDrive": "", @@ -1083,9 +1110,11 @@ "Model Name": "", "Model name already exists, please choose a different one": "", "Model Name is required.": "", + "Model names and usage frequency": "", "Model not selected": "Модел није изабран", "Model Params": "Модел Парамс", "Model Permissions": "", + "Model responses or outputs": "", "Model unloaded successfully": "", "Model updated successfully": "", "Model(s) do not support file upload": "", @@ -1096,6 +1125,7 @@ "Models imported successfully": "", "Models Public Sharing": "", "Models Sharing": "", + "Mojeek": "", "Mojeek Search API Key": "", "More": "Више", "More Concise": "", @@ -1129,7 +1159,7 @@ "No conversation to save": "", "No distance available": "", "No expiration can pose security risks.": "", - "No feedbacks found": "", + "No feedback found": "", "No file selected": "", "No files in this knowledge base.": "", "No functions found": "", @@ -1144,6 +1174,7 @@ "No models selected": "", "No Notes": "", "No notes found": "", + "No one": "", "No pinned messages": "", "No prompts found": "", "No results": "Нема резултата", @@ -1195,6 +1226,7 @@ "Only invited users can access": "", "Only markdown files are allowed": "", "Only select users and groups with permission can access": "", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Упс! Изгледа да је адреса неважећа. Молимо вас да проверите и покушате поново.", "Oops! There are files still uploading. Please wait for the upload to complete.": "", "Oops! There was an error in the previous response.": "", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "", "OpenAI": "OpenAI", "OpenAI API": "OpenAI API", @@ -1235,6 +1268,8 @@ "page": "страница", "Paginate": "", "Parameters": "", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "Лозинка", "Passwords do not match.": "", "Paste Large Text as File": "Убаци велики текст као датотеку", @@ -1260,7 +1295,6 @@ "Pipe": "", "Pipeline deleted successfully": "Цевовод успешно обрисан", "Pipeline downloaded successfully": "Цевовод успешно преузет", - "Pipelines": "Цевоводи", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines је систем прикључака са произвољним извршавањем кода —", "Pipelines Not Detected": "Цевоводи нису уочени", "Pipelines Valves": "Вентили за цевоводе", @@ -1499,6 +1533,7 @@ "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.": "", "Setting": "", "Settings": "Подешавања", + "Settings Permissions": "", "Settings saved successfully!": "Подешавања успешно сачувана!", "Share": "Подели", "Share Chat": "Подели ћаскање", @@ -1542,6 +1577,7 @@ "Speech recognition error: {{error}}": "Грешка у препознавању говора: {{error}}", "Speech-to-Text": "", "Speech-to-Text Engine": "Мотор за говор у текст", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "", "Start of the channel": "Почетак канала", "Start Tag": "", @@ -1552,6 +1588,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Заустави", + "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Секвенца заустављања", "Stream Chat Response": "", @@ -1572,7 +1609,14 @@ "Support": "Подршка", "Support this plugin:": "Подржите овај прикључак", "Supported MIME Types": "", + "Sync": "", + "Sync Complete!": "", "Sync directory": "Фасцикла усклађивања", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "Систем", "System Instructions": "Системске инструкције", "System Prompt": "Системски упит", @@ -1617,6 +1661,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "", "The width in pixels to compress images to. Leave empty for no compression.": "", "Theme": "Тема", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "Размишљам...", "This action cannot be undone. Do you wish to continue?": "Ова радња се не може опозвати. Да ли желите наставити?", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "", @@ -1731,6 +1776,7 @@ "Upload Pipeline": "Цевовод отпремања", "Upload Progress": "Напредак отпремања", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploaded files or images": "", "Uploading file...": "", "URL": "УРЛ", "URL is required": "", @@ -1748,6 +1794,7 @@ "User Groups": "", "User location successfully retrieved.": "Корисничка локација успешно добављена.", "User menu": "", + "User ratings (thumbs up/down)": "", "User Webhooks": "", "Username": "Корисничко име", "users": "", @@ -1797,15 +1844,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "", "What are you trying to achieve?": "", "What are you working on?": "", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "Шта је ново у", "What's on your mind?": "", "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.": "", "wherever you are": "", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whisper (Local)": "", + "Who can share to this group": "", "Why?": "Зашто?", "Widescreen Mode": "Режим широког екрана", "Width": "", + "Wikipedia": "", "Won": "Победа", "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.": "", "Workspace": "Радни простор", @@ -1817,6 +1868,8 @@ "Yacy Instance URL": "", "Yacy Password": "", "Yacy Username": "", + "Yahoo": "", + "Yandex": "", "Yesterday": "Јуче", "Yesterday at {{LOCALIZED_TIME}}": "", "You": "Ти", @@ -1824,6 +1877,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Можете учинити разговор са ВЈМ-овима приснијим додавањем сећања користећи „Управљај“ думе испод и тиме их учинити приснијим и кориснијим.", "You cannot upload an empty file.": "", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this thread.": "", "You do not have permission to upload files to this knowledge base.": "", @@ -1835,6 +1891,8 @@ "Your Account": "", "Your account status is currently pending activation.": "", "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.": "", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "Јутјуб", "Youtube Language": "", "Youtube Proxy URL": "" diff --git a/src/lib/i18n/locales/sv-SE/translation.json b/src/lib/i18n/locales/sv-SE/translation.json index 4ec02d32e..c8a831263 100644 --- a/src/lib/i18n/locales/sv-SE/translation.json +++ b/src/lib/i18n/locales/sv-SE/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "Justering av dessa inställningar kommer att tillämpa ändringar universellt för alla användare.", "admin": "administratör", "Admin": "Admin", + "Admin Contact Email": "", "Admin Panel": "Administrationspanel", "Admin Settings": "Administratörsinställningar", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administratörer har tillgång till alla verktyg hela tiden, medan användare behöver verktyg som tilldelas per modell i arbetsytan.", @@ -101,7 +102,6 @@ "Allow Continue Response": "Tillåt funktionen Fortsätt svara", "Allow Delete Messages": "Tillåt radering av meddelanden", "Allow File Upload": "Tillåt filuppladdning", - "Allow Group Sharing": "", "Allow Multiple Models in Chat": "Tillåt flera modeller i chatt", "Allow non-local voices": "Tillåt icke-lokala röster", "Allow Rate Response": "Tillåt betygsättning av svar", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "och {{COUNT}} fler", "and create a new shared link.": "och skapa en ny delad länk.", "Android": "Android", + "Anyone": "", "API Base URL": "API-bas-URL", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "", "API Key": "API-nyckel", @@ -175,6 +176,7 @@ "Authenticate": "Autentisera", "Authentication": "Autentisering", "Auto": "Auto", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "Automatisk kopiering av svar till urklipp", "Auto-playback response": "Automatisk uppspelning av svar", "Autocomplete Generation": "Automatisk komplettering av generering", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "AUTOMATIC1111 Api Auth String", "AUTOMATIC1111 Base URL": "AUTOMATIC1111 bas-URL", "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 bas-URL krävs.", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "Tillgänglig lista", "Available Tools": "Tillgängliga verktyg", "available users": "tillgängliga användare", @@ -201,6 +204,7 @@ "before": "före", "Being lazy": "Är lat", "Beta": "Beta", + "Bing": "", "Bing Search V7 Endpoint": "Bing Search V7 Endpoint", "Bing Search V7 Subscription Key": "Bing Search V7 Prenumerationsnyckel", "Bio": "Personlig information om dig", @@ -209,7 +213,9 @@ "Bocha Search API Key": "Bocha Search API-nyckel", "Bold": "Fet", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Öka eller straffa specifika tokens för begränsade svar. Biasvärden kommer att klämmas fast mellan -100 och 100 (inklusive). (Standard: ingen)", + "Brave": "", "Brave Search API Key": "API-nyckel för Brave Search", + "Builtin Tools": "", "Bullet List": "Punktlista", "Button ID": "", "Button Label": "Knappetikett", @@ -256,8 +262,10 @@ "Check for updates": "Sök efter uppdateringar", "Checking for updates...": "Söker efter uppdateringar...", "Choose a model before saving...": "Välj en modell innan du sparar...", + "Chunk Min Size Target": "", "Chunk Overlap": "Överlappning", "Chunk Size": "Chunk-storlek", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "Chiffer", "Citation": "Citat", "Citations": "Citeringar", @@ -293,7 +301,6 @@ "Code Block": "Kodblock", "Code Editor": "", "Code execution": "Kodkörning", - "Code Execution": "Kodkörning", "Code Execution Engine": "Motor för kodkörning", "Code Execution Timeout": "Timeout för kodkörning", "Code formatted successfully": "Koden formaterades framgångsrikt", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "Kontakta administratören för att få åtkomst till WebUI", "Content": "Innehåll", "Content Extraction Engine": "Motor för innehållsextrahering", + "Content lengths (character counts only)": "", "Continue Response": "Fortsätt svar", "Continue with {{provider}}": "Fortsätt med {{provider}}", "Continue with Email": "Fortsätt med e-post", @@ -393,6 +401,7 @@ "Database": "Databas", "Datalab Marker API": "Datalab Marker API", "DD/MM/YYYY": "", + "DDGS Backend": "", "December": "december", "Decrease UI Scale": "", "Deepgram": "", @@ -474,6 +483,7 @@ "Dive into knowledge": "Dyk in i kunskap", "Do not install functions from sources you do not fully trust.": "Installera inte funktioner från källor du inte litar på.", "Do not install tools from sources you do not fully trust.": "Installera inte verktyg från källor du inte litar på.", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "Docling", "Docling Parameters": "", "Docling Server URL required.": "Docling Server URL krävs.", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "", "Document Intelligence Model": "", "Documentation": "Dokumentation", - "Documents": "Dokument", "does not make any external connections, and your data stays securely on your locally hosted server.": "gör inga externa anslutningar, och dina data förblir säkra på din lokalt värdade server.", "Domain Filter List": "Domänfilterlista", "don't fetch random pipelines from sources you don't trust.": "Hämta inte slumpmässiga pipelines från källor du inte litar på.", @@ -493,11 +502,14 @@ "Done": "Klar", "Download": "Ladda ner", "Download & Delete": "Ladda ned och ta bort", + "Download as JSON": "", "Download as SVG": "Ladda ner som SVG", "Download canceled": "Nedladdning avbruten", "Download Database": "Ladda ner databas", + "Downloading stats...": "", "Draw": "Rita", "Drop any files here to upload": "Släpp alla filer här för att ladda upp", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "t.ex. '30s', '10m'. Giltiga tidsenheter är 's', 'm', 'h'.", "e.g. \"json\" or a JSON schema": "t.ex. \"json\" eller ett JSON-schema", "e.g. 60": "t.ex. 60", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "Ange Bocha Search API-nyckel", "Enter Brave Search API Key": "Ange API-nyckel för Brave Search", "Enter certificate path": "Ange certifikatväg", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "Ange chunköverlappning", "Enter Chunk Size": "Ange chunkstorlek", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Ange komma-separerade \"token:bias_value\"-par (exempel: 5432:100, 413:-100)", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "Ange URL för extern webbsökning", "Enter Firecrawl API Base URL": "Ange Firecrawl API Base URL", "Enter Firecrawl API Key": "Ange Firecrawl API-nyckel", + "Enter Firecrawl Timeout": "", "Enter folder name": "Ange mappnamn", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "Ange Github Raw URL", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "", "Enter ID": "Ange ID", "Enter Image Size (e.g. 512x512)": "Ange bildstorlek (t.ex. 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "Ange Jina API-nyckel", "Enter JSON config (e.g., {\"disable_links\": true})": "Ange JSON-konfiguration (t.ex. {\"disable_links\": true})", "Enter Jupyter Password": "Ange Jupyter-lösenord", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "Ange Kagi Search API-nyckel", "Enter Key Behavior": "Ange nyckelbeteende", "Enter language codes": "Skriv språkkoder", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "", "Enter Mistral API Key": "Ange Mistral API-nyckel", "Enter Model ID": "Ange modell-ID", @@ -736,6 +753,7 @@ "Failed to generate title": "", "Failed to import models": "", "Failed to load chat preview": "", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "Misslyckades med att läsa in filinnehåll.", "Failed to move chat": "", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "Funktioner", "Features Permissions": "Funktionsbehörigheter", "February": "februari", + "Feedback": "", "Feedback deleted successfully": "", "Feedback Details": "Feedbackdetaljer", "Feedback History": "Feedbackhistorik", - "Feedbacks": "Återkopplingar", "Feel free to add specific details": "Tveka inte att lägga till specifika detaljer", "Female": "", "File": "Fil", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Fingeravtrycksmanipulering upptäckt: Kan inte använda initialer som avatar. Återställning till standardprofilbild.", "Firecrawl API Base URL": "Firecrawl API Base URL", "Firecrawl API Key": "Firecrawl API-nyckel", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "Flytande snabbåtgärder", "Focus Chat Input": "", "Folder": "Mapp", "Folder Background Image": "Bakgrundsbild till mappen", "Folder deleted successfully": "Mappen har tagits bort", + "Folder Max File Count": "", "Folder Name": "Mappnamn", "Folder name cannot be empty.": "Mappnamnet får inte vara tomt.", "Folder name updated successfully": "Mappnamnet har uppdaterats", @@ -826,7 +846,6 @@ "General": "Allmän", "Generate": "Generera", "Generate an image": "Generera en bild", - "Generate Image": "Generera bild", "Generate Message Pair": "", "Generated Image": "Genererad bild", "Generating search query": "Genererar sökfråga", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "Kom igång med {{WEBUI_NAME}}", "Global": "Global", "Good Response": "Bra svar", + "Google": "", "Google Drive": "Google Drive", "Google PSE API Key": "Google PSE API-nyckel", "Google PSE Engine Id": "Google PSE Engine Id", "Gravatar": "Gravatar", "Grid": "", + "Grokipedia": "", "Group": "Grupp", "Group Channel": "", "Group created successfully": "Gruppen har skapats", @@ -895,7 +916,6 @@ "Image Prompt Generation": "Generering av bildprompt", "Image Prompt Generation Prompt": "Prompt för generering av bildprompt", "Image Size": "", - "Images": "Bilder", "Import": "Importera", "Import Chats": "Importera chattar", "Import Config from JSON File": "Importera konfiguration från JSON-fil", @@ -927,6 +947,7 @@ "Integration": "Integration", "Integrations": "Integrationer", "Interface": "Gränssnitt", + "Interface Settings Access": "", "Invalid file content": "Ogiltigt filinnehåll", "Invalid file format.": "Ogiltigt filformat.", "Invalid JSON file": "Ogiltig JSON-fil", @@ -940,6 +961,7 @@ "is typing...": "skriver...", "Italic": "Kursiv", "January": "januari", + "Jina API Base URL": "", "Jina API Key": "Jina API-nyckel", "join our Discord for help.": "gå med i vår Discord för hjälp.", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "Lämna tomt för att inkludera alla modeller från \"{{url}}/api/tags\"-slutpunkten", "Leave empty to include all models from \"{{url}}/models\" endpoint": "Lämna tomt för att inkludera alla modeller från \"{{url}}/models\"-slutpunkten", "Leave empty to include all models or select specific models": "Lämna tomt för att inkludera alla modeller eller välj specifika modeller", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "", "Leave empty to use the default prompt, or enter a custom prompt": "Lämna tomt för att använda standardprompten, eller ange en anpassad prompt", "Leave model field empty to use the default model.": "Lämna modellfältet tomt för att använda standardmodellen.", @@ -1029,10 +1052,12 @@ "Manage your account information.": "Hantera din kontoinformation.", "March": "mars", "Markdown": "Markdown", - "Markdown (Header)": "", + "Markdown Header Text Splitter": "", "Max Speakers": "Max antal talare", "Max Upload Count": "Max antal uppladdningar", "Max Upload Size": "Max uppladdningsstorlek", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Högst 3 modeller kan laddas ner samtidigt. Vänligen försök igen senare.", "May": "maj", "MBR": "", @@ -1042,6 +1067,7 @@ "Member removed successfully": "", "Members": "", "Members added successfully": "", + "Memories": "", "Memories accessible by LLMs will be shown here.": "Minnen som är tillgängliga för AI visas här.", "Memory": "Minne", "Memory added successfully": "Minnet har lagts till", @@ -1051,6 +1077,7 @@ "Merge Responses": "Sammanslå svar (med AI)", "Merged Response": "Sammansslaget svar", "Message": "", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "Meddelandebetyg måste vara aktiverat för att använda den här funktionen", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Meddelanden du skickar efter att du har skapat din länk kommer inte att delas. Användare med länken kommer att kunna se allt innehåll i den delade chatten.", "Microsoft OneDrive": "Microsoft OneDrive", @@ -1083,9 +1110,11 @@ "Model Name": "Modellnamn", "Model name already exists, please choose a different one": "Modellnamnet finns redan, välj ett annat namn", "Model Name is required.": "Modellnamn krävs.", + "Model names and usage frequency": "", "Model not selected": "Modell inte vald", "Model Params": "Modellparametrar", "Model Permissions": "Modellbehörigheter", + "Model responses or outputs": "", "Model unloaded successfully": "Modellen har avlastats", "Model updated successfully": "Modellen har uppdaterats", "Model(s) do not support file upload": "Modellen/modellerna stöder inte filuppladdning", @@ -1096,6 +1125,7 @@ "Models imported successfully": "", "Models Public Sharing": "Offentlig delning av modeller", "Models Sharing": "", + "Mojeek": "", "Mojeek Search API Key": "Mojeek Sök API-nyckel", "More": "Mer", "More Concise": "Mer kortfattat", @@ -1129,7 +1159,7 @@ "No conversation to save": "Ingen konversation att spara", "No distance available": "Inget avstånd tillgängligt", "No expiration can pose security risks.": "Ingen utgångstid kan orsaka säkerhetsrisker.", - "No feedbacks found": "Ingen feedback hittades", + "No feedback found": "", "No file selected": "Ingen fil vald", "No files in this knowledge base.": "", "No functions found": "Inga funktioner hittades", @@ -1144,6 +1174,7 @@ "No models selected": "Inga modeller valda", "No Notes": "Inga anteckningar", "No notes found": "Inga anteckningar hittades", + "No one": "", "No pinned messages": "", "No prompts found": "Inga promptar hittades", "No results": "Inga resultat hittades", @@ -1195,6 +1226,7 @@ "Only invited users can access": "", "Only markdown files are allowed": "Endast markdown-filer är tillåtna", "Only select users and groups with permission can access": "Endast valda användare och grupper med behörighet kan komma åt", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Hoppsan! Det ser ut som om URL:en är ogiltig. Dubbelkolla gärna och försök igen.", "Oops! There are files still uploading. Please wait for the upload to complete.": "Hoppsan! Det finns fortfarande filer som laddas upp. Vänta tills uppladdningen är klar.", "Oops! There was an error in the previous response.": "Hoppsan! Det uppstod ett fel i föregående svar.", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI kan använda verktyg från alla OpenAPI-servrar.", "Open WebUI uses faster-whisper internally.": "Open WebUI använder faster-whisper internt.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI använder SpeechT5 och CMU Arctic högtalarinbäddningar.", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Open WebUI-versionen (v{{OPEN_WEBUI_VERSION}}) är lägre än den version som krävs (v{{REQUIRED_VERSION}})", "OpenAI": "OpenAI", "OpenAI API": "OpenAI API", @@ -1235,6 +1268,8 @@ "page": "sida", "Paginate": "Sidnumrera", "Parameters": "Parametrar", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "Lösenord", "Passwords do not match.": "Lösenorden matchar inte.", "Paste Large Text as File": "Klistra in stor text som fil", @@ -1260,7 +1295,6 @@ "Pipe": "", "Pipeline deleted successfully": "Rörledningen har tagits bort", "Pipeline downloaded successfully": "Rörledningen har laddats ner", - "Pipelines": "Rörledningar", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines är ett insticksmodulsystem med godtycklig kodkörning —", "Pipelines Not Detected": "Inga rörledningar hittades", "Pipelines Valves": "Ventiler för rörledningar", @@ -1498,6 +1532,7 @@ "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.": "Anger de stoppsekvenser som ska användas. När detta mönster påträffas kommer LLM att sluta generera text och returnera. Flera stoppsekvenser kan ställas in genom att ange flera separata stoppparametrar i en modelfil.", "Setting": "", "Settings": "Inställningar", + "Settings Permissions": "", "Settings saved successfully!": "Inställningar sparades framgångsrikt!", "Share": "Dela", "Share Chat": "Dela chatt", @@ -1541,6 +1576,7 @@ "Speech recognition error: {{error}}": "Fel vid taligenkänning: {{error}}", "Speech-to-Text": "Tal-till-text", "Speech-to-Text Engine": "Tal-till-text-motor", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "Starta en ny konversation", "Start of the channel": "Början av kanalen", "Start Tag": "Starta en tagg", @@ -1551,6 +1587,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Stopp", + "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Stoppsekvens", "Stream Chat Response": "Strömma chattsvar", @@ -1571,7 +1608,14 @@ "Support": "Stöd", "Support this plugin:": "Stöd denna plugin", "Supported MIME Types": "MIME-typer som stöds", + "Sync": "", + "Sync Complete!": "", "Sync directory": "Synkronisera katalog", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "System", "System Instructions": "Systeminstruktioner", "System Prompt": "Systemprompt", @@ -1616,6 +1660,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "", "The width in pixels to compress images to. Leave empty for no compression.": "Bredden i pixlar för att komprimera bilder till. Lämna tomt för ingen komprimering.", "Theme": "Tema", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "Tänker...", "This action cannot be undone. Do you wish to continue?": "Denna åtgärd kan inte ångras. Vill du fortsätta?", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "Den här kanalen skapades den {{createdAt}}. Detta är den allra första början av kanalen {{channelName}}.", @@ -1730,6 +1775,7 @@ "Upload Pipeline": "Ladda upp rörledning", "Upload Progress": "Uppladdningsframsteg", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "Uppladdningsstatus: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", + "Uploaded files or images": "", "Uploading file...": "", "URL": "URL", "URL is required": "URL krävs", @@ -1747,6 +1793,7 @@ "User Groups": "Användargrupper", "User location successfully retrieved.": "Användarens plats har hämtats", "User menu": "Användarmenyn", + "User ratings (thumbs up/down)": "", "User Webhooks": "Användar-webhooks", "Username": "Användarnamn", "users": "", @@ -1796,15 +1843,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI kommer att göra förfrågningar till \"{{url}}/chat/completions\"", "What are you trying to achieve?": "Vad försöker du uppnå?", "What are you working on?": "Var arbetar du med?", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "Vad är nytt i", "What's on your mind?": "", "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.": "När det här läget är aktiverat svarar modellen på varje chattmeddelande i realtid och genererar ett svar så snart användaren skickar ett meddelande. Det här läget är användbart för livechattar, men kan påverka prestandan på långsammare maskinvara.", "wherever you are": "var du än befinner dig", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "Om utdata ska sidnumreras. Varje sida kommer att separeras av en horisontell linje och sidnummer. Standardvärdet är False.", "Whisper (Local)": "Whisper (lokal)", + "Who can share to this group": "", "Why?": "Varför?", "Widescreen Mode": "Bredbildsläge", "Width": "Bredd", + "Wikipedia": "", "Won": "Vann", "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.": "Fungerar tillsammans med top-k. Ett högre värde (t.ex. 0,95) leder till mer varierande text, medan ett lägre värde (t.ex. 0,5) genererar mer fokuserad och konservativ text.", "Workspace": "Arbetsyta", @@ -1816,6 +1867,8 @@ "Yacy Instance URL": "Yacy-instans-URL", "Yacy Password": "Yacy-lösenord", "Yacy Username": "Yacy-användarnamn", + "Yahoo": "", + "Yandex": "", "Yesterday": "Igår", "Yesterday at {{LOCALIZED_TIME}}": "Igår kl {{LOCALIZED_TIME}}", "You": "Dig", @@ -1823,6 +1876,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Du kan endast chatta med maximalt {{maxCount}} fil(er) på samma gång", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Du kan anpassa dina interaktioner med AI genom att lägga till minnen via knappen 'Hantera' nedan, så konversationerna blir mer anpassade för dig.", "You cannot upload an empty file.": "Du kan inte ladda upp en tom fil.", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "Du har inte behörighet att skicka meddelanden i denna kanal.", "You do not have permission to send messages in this thread.": "Du har inte behörighet att skicka meddelanden i denna tråd.", "You do not have permission to upload files to this knowledge base.": "", @@ -1834,6 +1890,8 @@ "Your Account": "Ditt konto", "Your account status is currently pending activation.": "Ditt konto väntar på att bli aktiverat", "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.": "Hela ditt bidrag går direkt till pluginutvecklaren; Open WebUI tar ingen procentandel. Däremot kan den valda finansieringsplattformen ha egna avgifter.", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "Youtube", "Youtube Language": "Youtube-språk", "Youtube Proxy URL": "Youtube Proxy-URL" diff --git a/src/lib/i18n/locales/th-TH/translation.json b/src/lib/i18n/locales/th-TH/translation.json index 5aad4769b..0230317e3 100644 --- a/src/lib/i18n/locales/th-TH/translation.json +++ b/src/lib/i18n/locales/th-TH/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "การปรับการตั้งค่าเหล่านี้จะมีผลกับผู้ใช้ทุกคนทั่วทั้งระบบ", "admin": "ผู้ดูแลระบบ", "Admin": "ผู้ดูแลระบบ", + "Admin Contact Email": "", "Admin Panel": "แผงผู้ดูแลระบบ", "Admin Settings": "การตั้งค่าผู้ดูแลระบบ", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "ผู้ดูแลระบบสามารถเข้าถึงเครื่องมือทั้งหมดได้ตลอดเวลา ส่วนผู้ใช้ต้องได้รับการกำหนดเครื่องมือต่อโมเดลในแต่ละพื้นที่ทำงาน", @@ -101,7 +102,6 @@ "Allow Continue Response": "อนุญาตให้ตอบกลับต่อเนื่อง", "Allow Delete Messages": "อนุญาตให้ลบข้อความ", "Allow File Upload": "อนุญาตให้อัปโหลดไฟล์", - "Allow Group Sharing": "", "Allow Multiple Models in Chat": "อนุญาตการใช้หลายโมเดลในการแชท", "Allow non-local voices": "อนุญาตเสียงที่ไม่ใช่แบบ Local", "Allow Rate Response": "อนุญาตให้ให้คะแนนคำตอบ", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "และอีก {{COUNT}} รายการ", "and create a new shared link.": "และสร้างลิงก์ที่แชร์ใหม่", "Android": "Android", + "Anyone": "", "API Base URL": "URL พื้นฐานของ API", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "URL พื้นฐานของ API สำหรับบริการ Datalab Marker ค่าเริ่มต้น: https://www.datalab.to/api/v1/marker", "API Key": "คีย์ API", @@ -175,6 +176,7 @@ "Authenticate": "ยืนยันตัวตน", "Authentication": "การยืนยันตัวตน", "Auto": "อัตโนมัติ", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "คัดลอกคำตอบไปยังคลิปบอร์ดโดยอัตโนมัติ", "Auto-playback response": "การเล่นคำตอบอัตโนมัติ", "Autocomplete Generation": "การเติมข้อความอัตโนมัติ", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "สตริงการตรวจสอบสิทธิ์ API ของ AUTOMATIC1111", "AUTOMATIC1111 Base URL": "URL พื้นฐานของ AUTOMATIC1111", "AUTOMATIC1111 Base URL is required.": "จำเป็นต้องระบุ Base URL ของ AUTOMATIC1111", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "รายการที่มีอยู่", "Available Tools": "เครื่องมือที่มีให้ใช้", "available users": "ผู้ใช้ที่มีอยู่", @@ -201,6 +204,7 @@ "before": "ก่อน", "Being lazy": "ขี้เกียจ", "Beta": "เบต้า", + "Bing": "", "Bing Search V7 Endpoint": "Endpoint ของ Bing Search V7", "Bing Search V7 Subscription Key": "Subscription Key ของ Bing Search V7", "Bio": "ประวัติส่วนตัว", @@ -209,7 +213,9 @@ "Bocha Search API Key": "API Key ของ Bocha Search", "Bold": "ตัวหนา", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "เพิ่มหรือลดน้ำหนักโทเค็นเฉพาะสำหรับการตอบกลับที่มีข้อจำกัด ค่าไบแอสจะถูกจำกัดระหว่าง -100 ถึง 100 (รวม) (ค่าเริ่มต้น: ไม่มี)", + "Brave": "", "Brave Search API Key": "คีย์ API ของ Brave Search", + "Builtin Tools": "", "Bullet List": "รายการหัวข้อย่อย", "Button ID": "ID ของปุ่ม", "Button Label": "ป้ายชื่อปุ่ม", @@ -256,8 +262,10 @@ "Check for updates": "ตรวจสอบการอัปเดต", "Checking for updates...": "กำลังตรวจสอบการอัปเดต...", "Choose a model before saving...": "เลือกโมเดลก่อนบันทึก...", + "Chunk Min Size Target": "", "Chunk Overlap": "ส่วนซ้อนทับของ Chunk", "Chunk Size": "ขนาด Chunk", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "รหัสลับ", "Citation": "การอ้างอิง", "Citations": "การอ้างอิง", @@ -293,7 +301,6 @@ "Code Block": "บล็อกโค้ด", "Code Editor": "ตัวแก้ไขโค้ด", "Code execution": "รันโค้ด", - "Code Execution": "การรันโค้ด", "Code Execution Engine": "เอนจินรันโค้ด", "Code Execution Timeout": "หมดเวลาในการรันโค้ด", "Code formatted successfully": "จัดรูปแบบโค้ดสำเร็จแล้ว", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "ติดต่อผู้ดูแลระบบเพื่อขอสิทธิ์เข้าใช้ WebUI", "Content": "เนื้อหา", "Content Extraction Engine": "เอนจินดึงเนื้อหา", + "Content lengths (character counts only)": "", "Continue Response": "ตอบต่อ", "Continue with {{provider}}": "ดำเนินการต่อด้วย {{provider}}", "Continue with Email": "ดำเนินการต่อด้วยอีเมล", @@ -393,6 +401,7 @@ "Database": "ฐานข้อมูล", "Datalab Marker API": "Datalab Marker API", "DD/MM/YYYY": "DD/MM/YYYY", + "DDGS Backend": "", "December": "ธันวาคม", "Decrease UI Scale": "", "Deepgram": "Deepgram", @@ -474,6 +483,7 @@ "Dive into knowledge": "เจาะลึกสู่ความรู้", "Do not install functions from sources you do not fully trust.": "อย่าติดตั้งฟังก์ชันจากแหล่งที่คุณไม่ไว้วางใจอย่างเต็มที่", "Do not install tools from sources you do not fully trust.": "อย่าติดตั้งเครื่องมือจากแหล่งที่คุณไม่ไว้วางใจอย่างเต็มที่", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "Docling", "Docling Parameters": "", "Docling Server URL required.": "ต้องระบุ Docling Server URL", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "ต้องระบุ Endpoint ของ Document Intelligence", "Document Intelligence Model": "", "Documentation": "เอกสารประกอบ", - "Documents": "เอกสาร", "does not make any external connections, and your data stays securely on your locally hosted server.": "ไม่เชื่อมต่อกับภายนอกใดๆ และข้อมูลของคุณจะถูกเก็บไว้อย่างปลอดภัยบนเซิร์ฟเวอร์ภายในเครื่องของคุณ", "Domain Filter List": "รายการตัวกรองโดเมน", "don't fetch random pipelines from sources you don't trust.": "อย่าดึง Pipeline แบบสุ่มจากแหล่งที่ไม่น่าเชื่อถือ", @@ -493,11 +502,14 @@ "Done": "เสร็จสิ้น", "Download": "ดาวน์โหลด", "Download & Delete": "ดาวน์โหลดและลบ", + "Download as JSON": "", "Download as SVG": "ดาวน์โหลดเป็น SVG", "Download canceled": "ยกเลิกการดาวน์โหลด", "Download Database": "ดาวน์โหลดฐานข้อมูล", + "Downloading stats...": "", "Draw": "วาด", "Drop any files here to upload": "วางไฟล์ที่นี่เพื่ออัปโหลด", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "เช่น '30s', '10m' หน่วยเวลาที่ใช้ได้คือ 's', 'm', 'h'", "e.g. \"json\" or a JSON schema": "เช่น \"json\" หรือสคีมา JSON", "e.g. 60": "เช่น 60", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "ใส่คีย์ Bocha Search API", "Enter Brave Search API Key": "ใส่ API Key ของ Brave Search", "Enter certificate path": "ป้อนพาธใบรับรอง", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "ป้อนค่า Chunk Overlap", "Enter Chunk Size": "ใส่ขนาด Chunk", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "ป้อนคู่ \"token:bias_value\" ที่คั่นด้วยจุลภาค (ตัวอย่าง: 5432:100, 413:-100)", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "ป้อน URL สำหรับค้นเว็บภายนอก", "Enter Firecrawl API Base URL": "ใส่ Firecrawl API Base URL", "Enter Firecrawl API Key": "ใส่ Firecrawl API Key", + "Enter Firecrawl Timeout": "", "Enter folder name": "ป้อนชื่อโฟลเดอร์", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "ป้อน URL Raw ของ GitHub", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "ป้อนสีในรูปแบบ Hex (เช่น #FF0000)", "Enter ID": "ใส่ ID", "Enter Image Size (e.g. 512x512)": "ใส่ขนาดภาพ (เช่น 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "ป้อน Jina API Key", "Enter JSON config (e.g., {\"disable_links\": true})": "ป้อนการตั้งค่า JSON (เช่น {\"disable_links\": true})", "Enter Jupyter Password": "ป้อนรหัสผ่าน Jupyter", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "ใส่ Kagi Search API Key", "Enter Key Behavior": "การทำงานของปุ่ม Enter", "Enter language codes": "ใส่รหัสภาษา", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "ป้อน URL ฐานของ Mistral API", "Enter Mistral API Key": "กรอก API Key ของ Mistral", "Enter Model ID": "ป้อน ID โมเดล", @@ -736,6 +753,7 @@ "Failed to generate title": "สร้างชื่อไม่สำเร็จ", "Failed to import models": "นำเข้าโมเดลไม่สำเร็จ", "Failed to load chat preview": "ไม่สามารถโหลดตัวอย่างแชทได้", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "โหลดเนื้อหาไฟล์ไม่สำเร็จ", "Failed to move chat": "ย้ายแชทไม่สำเร็จ", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "ฟีเจอร์", "Features Permissions": "สิทธิ์การใช้งานฟีเจอร์", "February": "กุมภาพันธ์", + "Feedback": "", "Feedback deleted successfully": "", "Feedback Details": "รายละเอียดคำติชม", "Feedback History": "ประวัติข้อเสนอแนะ", - "Feedbacks": "ข้อเสนอแนะ", "Feel free to add specific details": "สามารถเพิ่มรายละเอียดเฉพาะได้", "Female": "หญิง", "File": "ไฟล์", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "ตรวจพบการปลอมแปลงลายนิ้วมือ: ไม่สามารถใช้ชื่อย่อเป็นอวตาร์ได้ กำลังใช้รูปโปรไฟล์เริ่มต้น", "Firecrawl API Base URL": "URL ฐาน Firecrawl API", "Firecrawl API Key": "API Key ของ Firecrawl", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "การดำเนินการด่วนแบบลอยตัว", "Focus Chat Input": "โฟกัสช่องป้อนแชท", "Folder": "โฟลเดอร์", "Folder Background Image": "รูปภาพพื้นหลังโฟลเดอร์", "Folder deleted successfully": "ลบโฟลเดอร์สำเร็จแล้ว", + "Folder Max File Count": "", "Folder Name": "ชื่อโฟลเดอร์", "Folder name cannot be empty.": "ชื่อโฟลเดอร์ต้องไม่เว้นว่าง", "Folder name updated successfully": "อัปเดตชื่อโฟลเดอร์สำเร็จแล้ว", @@ -826,7 +846,6 @@ "General": "ทั่วไป", "Generate": "สร้าง", "Generate an image": "สร้างรูปภาพ", - "Generate Image": "สร้างภาพ", "Generate Message Pair": "สร้างคู่ข้อความ", "Generated Image": "รูปภาพที่ถูกสร้าง", "Generating search query": "สร้างคำค้นหา", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "เริ่มต้นใช้งาน {{WEBUI_NAME}}", "Global": "ทั้งหมด", "Good Response": "การตอบกลับที่ดี", + "Google": "", "Google Drive": "Google Drive", "Google PSE API Key": "คีย์ API ของ Google PSE", "Google PSE Engine Id": "รหัสเอนจินของ Google PSE", "Gravatar": "Gravatar", "Grid": "", + "Grokipedia": "", "Group": "กลุ่ม", "Group Channel": "", "Group created successfully": "สร้างกลุ่มสำเร็จแล้ว", @@ -895,7 +916,6 @@ "Image Prompt Generation": "การสร้างพรอมต์รูปภาพ", "Image Prompt Generation Prompt": "พรอมต์สำหรับสร้างคำสั่งภาพ", "Image Size": "ขนาดรูปภาพ", - "Images": "ภาพ", "Import": "นำเข้า", "Import Chats": "นำเข้าการสนทนา", "Import Config from JSON File": "นำเข้า Config จากไฟล์ JSON", @@ -927,6 +947,7 @@ "Integration": "การเชื่อมต่อระบบ", "Integrations": "การเชื่อมต่อระบบ", "Interface": "อินเทอร์เฟซ", + "Interface Settings Access": "", "Invalid file content": "เนื้อหาไฟล์ไม่ถูกต้อง", "Invalid file format.": "รูปแบบไฟล์ไม่ถูกต้อง", "Invalid JSON file": "ไฟล์ JSON ไม่ถูกต้อง", @@ -940,6 +961,7 @@ "is typing...": "กำลังพิมพ์...", "Italic": "ตัวเอียง", "January": "มกราคม", + "Jina API Base URL": "", "Jina API Key": "API Key ของ Jina", "join our Discord for help.": "เข้าร่วม Discord ของเราเพื่อขอความช่วยเหลือ", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "เว้นว่างไว้เพื่อรวมโมเดลทั้งหมดจาก Endpoint \"{{url}}/api/tags\"", "Leave empty to include all models from \"{{url}}/models\" endpoint": "เว้นว่างไว้เพื่อรวมโมเดลทั้งหมดจาก Endpoint \"{{url}}/models\"", "Leave empty to include all models or select specific models": "เว้นว่างไว้เพื่อรวมโมเดลทั้งหมด หรือเลือกเฉพาะโมเดลที่ต้องการ", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "เว้นว่างไว้เพื่อใช้โมเดลเริ่มต้น (voxtral-mini-latest)", "Leave empty to use the default prompt, or enter a custom prompt": "เว้นว่างไว้เพื่อใช้พรอมต์เริ่มต้น หรือป้อนพรอมต์ที่กำหนดเอง", "Leave model field empty to use the default model.": "เว้นช่องโมเดลว่างไว้เพื่อใช้โมเดลเริ่มต้น", @@ -1029,10 +1052,12 @@ "Manage your account information.": "จัดการข้อมูลบัญชีของคุณ", "March": "มีนาคม", "Markdown": "Markdown", - "Markdown (Header)": "Markdown (ส่วนหัว)", + "Markdown Header Text Splitter": "", "Max Speakers": "จำนวนผู้พูดสูงสุด", "Max Upload Count": "จำนวนครั้งการอัปโหลดสูงสุด", "Max Upload Size": "ขนาดอัปโหลดสูงสุด", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "สามารถดาวน์โหลดโมเดลได้สูงสุด 3 โมเดลในเวลาเดียวกัน โปรดลองอีกครั้งในภายหลัง", "May": "พฤษภาคม", "MBR": "", @@ -1042,6 +1067,7 @@ "Member removed successfully": "", "Members": "", "Members added successfully": "", + "Memories": "", "Memories accessible by LLMs will be shown here.": "ความจำที่ LLM เข้าถึงได้จะแสดงที่นี่", "Memory": "ความจำ", "Memory added successfully": "เพิ่มความจำสำเร็จ", @@ -1051,6 +1077,7 @@ "Merge Responses": "รวมคำตอบ", "Merged Response": "การตอบกลับที่รวมกัน", "Message": "ข้อความ", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "ต้องเปิดใช้การให้คะแนนข้อความก่อนจึงจะใช้ฟีเจอร์นี้ได้", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "ข้อความที่คุณส่งหลังจากสร้างลิงก์แล้วจะไม่ถูกแชร์ ผู้ใช้ที่มี URL จะสามารถดูแชทที่แชร์ได้", "Microsoft OneDrive": "Microsoft OneDrive", @@ -1083,9 +1110,11 @@ "Model Name": "ชื่อโมเดล", "Model name already exists, please choose a different one": "มีชื่อโมเดลนี้อยู่แล้ว โปรดเลือกชื่ออื่น", "Model Name is required.": "จำเป็นต้องระบุชื่อโมเดล", + "Model names and usage frequency": "", "Model not selected": "ยังไม่ได้เลือกโมเดล", "Model Params": "พารามิเตอร์ของโมเดล", "Model Permissions": "สิทธิ์ของโมเดล", + "Model responses or outputs": "", "Model unloaded successfully": "ยกเลิกการโหลดโมเดลสำเร็จแล้ว", "Model updated successfully": "อัปเดตโมเดลเรียบร้อยแล้ว", "Model(s) do not support file upload": "โมเดลไม่รองรับการอัปโหลดไฟล์", @@ -1096,6 +1125,7 @@ "Models imported successfully": "นำเข้าโมเดลสำเร็จแล้ว", "Models Public Sharing": "การแชร์โมเดลสาธารณะ", "Models Sharing": "", + "Mojeek": "", "Mojeek Search API Key": "API Key สำหรับ Mojeek Search", "More": "เพิ่มเติม", "More Concise": "กระชับมากขึ้น", @@ -1129,7 +1159,7 @@ "No conversation to save": "ไม่มีการสนทนาที่จะบันทึก", "No distance available": "ไม่มีข้อมูลระยะทาง", "No expiration can pose security risks.": "ไม่มีวันหมดอายุอาจทำให้เกิดความเสี่ยงด้านความปลอดภัย", - "No feedbacks found": "ไม่พบความคิดเห็น", + "No feedback found": "", "No file selected": "ไม่ได้เลือกไฟล์", "No files in this knowledge base.": "", "No functions found": "ไม่พบฟังก์ชัน", @@ -1144,6 +1174,7 @@ "No models selected": "ไม่ได้เลือกโมเดล", "No Notes": "ไม่มีบันทึก", "No notes found": "ไม่พบบันทึก", + "No one": "", "No pinned messages": "", "No prompts found": "ไม่พบพรอมต์", "No results": "ไม่มีผลลัพธ์", @@ -1195,6 +1226,7 @@ "Only invited users can access": "", "Only markdown files are allowed": "อนุญาตเฉพาะไฟล์ Markdown เท่านั้น", "Only select users and groups with permission can access": "มีเฉพาะผู้ใช้และกลุ่มที่ได้รับสิทธิ์เท่านั้นที่เข้าถึงได้", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "ขออภัย! ดูเหมือนว่า URL ไม่ถูกต้อง กรุณาตรวจสอบและลองใหม่อีกครั้ง", "Oops! There are files still uploading. Please wait for the upload to complete.": "โอ๊ะ! ยังมีไฟล์กำลังอัปโหลดอยู่ กรุณารอจนกว่าอัปโหลดจะเสร็จสมบูรณ์", "Oops! There was an error in the previous response.": "ขออภัย! เกิดข้อผิดพลาดในคำตอบก่อนหน้า", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI สามารถใช้เครื่องมือที่มีให้จากเซิร์ฟเวอร์ OpenAPI ใดก็ได้", "Open WebUI uses faster-whisper internally.": "Open WebUI ใช้ faster-whisper อยู่ภายใน", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI ใช้ SpeechT5 และ Embedding เสียงผู้พูด CMU Arctic", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "เวอร์ชัน Open WebUI (v{{OPEN_WEBUI_VERSION}}) ต่ำกว่าเวอร์ชันที่ต้องการ (v{{REQUIRED_VERSION}})", "OpenAI": "OpenAI", "OpenAI API": "OpenAI API", @@ -1235,6 +1268,8 @@ "page": "หน้า", "Paginate": "แบ่งหน้า", "Parameters": "พารามิเตอร์", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "รหัสผ่าน", "Passwords do not match.": "รหัสผ่านไม่ตรงกัน", "Paste Large Text as File": "วางข้อความขนาดใหญ่เป็นไฟล์", @@ -1260,7 +1295,6 @@ "Pipe": "ท่อ", "Pipeline deleted successfully": "ลบ Pipeline สำเร็จแล้ว", "Pipeline downloaded successfully": "ดาวน์โหลด Pipeline สำเร็จแล้ว", - "Pipelines": "Pipelines", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines เป็นระบบปลั๊กอินที่สามารถรันโค้ดได้อย่างอิสระ —", "Pipelines Not Detected": "ไม่พบ Pipelines", "Pipelines Valves": "วาล์วของ Pipelines", @@ -1497,6 +1531,7 @@ "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.": "ตั้งค่าลำดับตัวหยุดที่จะใช้ เมื่อตรวจพบรูปแบบนี้ LLM จะหยุดสร้างข้อความและส่งค่ากลับ สามารถตั้งค่ารูปแบบตัวหยุดหลายแบบได้โดยระบุพารามิเตอร์ Stop แยกกันหลายตัวใน Modelfile", "Setting": "", "Settings": "การตั้งค่า", + "Settings Permissions": "", "Settings saved successfully!": "บันทึกการตั้งค่าสำเร็จแล้ว!", "Share": "แชร์", "Share Chat": "แชร์แชท", @@ -1540,6 +1575,7 @@ "Speech recognition error: {{error}}": "ข้อผิดพลาดในการรู้จำเสียง: {{error}}", "Speech-to-Text": "แปลงเสียงเป็นข้อความ", "Speech-to-Text Engine": "เครื่องมือแปลงเสียงเป็นข้อความ", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "เริ่มการสนทนาใหม่", "Start of the channel": "จุดเริ่มต้นของช่อง", "Start Tag": "แท็กเริ่มต้น", @@ -1550,6 +1586,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "ขั้นตอน", "Stop": "หยุด", + "Stop Download": "", "Stop Generating": "หยุดการสร้าง", "Stop Sequence": "ลำดับการหยุด", "Stream Chat Response": "สตรีมการตอบกลับแชท", @@ -1570,7 +1607,14 @@ "Support": "สนับสนุน", "Support this plugin:": "สนับสนุนปลั๊กอินนี้:", "Supported MIME Types": "ชนิด MIME ที่รองรับ", + "Sync": "", + "Sync Complete!": "", "Sync directory": "ซิงค์ไดเรกทอรี", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "ระบบ", "System Instructions": "คำสั่งของระบบ", "System Prompt": "System Prompt", @@ -1615,6 +1659,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "ค่าน้ำหนักของการค้นหาแบบผสม BM25 ค่า 0 เน้นความหมาย (Semantic) ค่า 1 เน้นคำตรงตัว (Lexical) ค่าเริ่มต้น 0.5", "The width in pixels to compress images to. Leave empty for no compression.": "ความกว้างของภาพเป็นพิกเซลที่จะบีบอัด หากเว้นว่างไว้จะไม่บีบอัด", "Theme": "ธีม", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "กำลังคิด...", "This action cannot be undone. Do you wish to continue?": "การกระทำนี้ไม่สามารถย้อนกลับได้ คุณต้องการดำเนินการต่อหรือไม่?", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "สร้างช่องนี้เมื่อ {{createdAt}} นี่คือจุดเริ่มต้นของช่อง {{channelName}}", @@ -1729,6 +1774,7 @@ "Upload Pipeline": "อัปโหลด Pipeline", "Upload Progress": "ความคืบหน้าการอัปโหลด", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "ความคืบหน้าการอัปโหลด: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)", + "Uploaded files or images": "", "Uploading file...": "", "URL": "URL", "URL is required": "ต้องระบุ URL", @@ -1746,6 +1792,7 @@ "User Groups": "กลุ่มผู้ใช้", "User location successfully retrieved.": "ดึงตำแหน่งที่ตั้งของผู้ใช้สำเร็จแล้ว", "User menu": "เมนูผู้ใช้", + "User ratings (thumbs up/down)": "", "User Webhooks": "Webhooks ของผู้ใช้", "Username": "ชื่อผู้ใช้", "users": "", @@ -1795,15 +1842,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI จะส่งคำขอไปยัง \"{{url}}/chat/completions\"", "What are you trying to achieve?": "คุณพยายามจะทำอะไร?", "What are you working on?": "คุณกำลังทำอะไรอยู่?", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "มีอะไรใหม่ใน", "What's on your mind?": "", "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.": "เมื่อเปิดใช้งาน โมเดลจะตอบกลับแต่ละข้อความแชทแบบเรียลไทม์ โดยสร้างคำตอบทันทีที่ผู้ใช้ส่งข้อความ โหมดนี้มีประโยชน์สำหรับแอปแชทแบบสด แต่อาจส่งผลต่อประสิทธิภาพบนฮาร์ดแวร์ที่ทำงานช้า", "wherever you are": "ไม่ว่าคุณจะอยู่ที่ไหน", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "ว่าจะแบ่งหน้าผลลัพธ์หรือไม่ แต่ละหน้าจะถูกแยกด้วยเส้นแบ่งแนวนอนและหมายเลขหน้า ค่าเริ่มต้นคือ False", "Whisper (Local)": "Whisper (Local)", + "Who can share to this group": "", "Why?": "ทำไม?", "Widescreen Mode": "โหมดหน้าจอกว้าง", "Width": "ความกว้าง", + "Wikipedia": "", "Won": "ชนะ", "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.": "ทำงานร่วมกับ Top K ค่าที่สูงขึ้น (เช่น 0.95) จะนำไปสู่ข้อความที่หลากหลายมากขึ้น ในขณะที่ค่าที่ต่ำลง (เช่น 0.5) จะสร้างข้อความที่มุ่งเน้นและระมัดระวังมากขึ้น", "Workspace": "พื้นที่ทำงาน", @@ -1815,6 +1866,8 @@ "Yacy Instance URL": "URL ของ Yacy Instance", "Yacy Password": "รหัสผ่าน Yacy", "Yacy Username": "ชื่อผู้ใช้ Yacy", + "Yahoo": "", + "Yandex": "", "Yesterday": "เมื่อวาน", "Yesterday at {{LOCALIZED_TIME}}": "เมื่อวาน เวลา {{LOCALIZED_TIME}}", "You": "คุณ", @@ -1822,6 +1875,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "คุณสามารถแชทกับไฟล์ได้สูงสุด {{maxCount}} ไฟล์ในเวลาเดียวกัน", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "คุณสามารถปรับแต่งการโต้ตอบกับ LLM ของคุณได้โดยเพิ่มความจำผ่านปุ่ม ‘จัดการ’ ด้านล่าง เพื่อให้การใช้งานมีประโยชน์และเหมาะกับคุณมากยิ่งขึ้น", "You cannot upload an empty file.": "คุณไม่สามารถอัปโหลดไฟล์เปล่าได้", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "คุณไม่มีสิทธิ์ส่งข้อความในช่องทางนี้", "You do not have permission to send messages in this thread.": "คุณไม่มีสิทธิ์ส่งข้อความในเธรดนี้", "You do not have permission to upload files to this knowledge base.": "", @@ -1833,6 +1889,8 @@ "Your Account": "บัญชีของคุณ", "Your account status is currently pending activation.": "สถานะบัญชีของคุณกำลังรอการเปิดใช้งาน", "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.": "การสนับสนุนทั้งหมดของคุณจะถูกส่งไปยังนักพัฒนาปลั๊กอินโดยตรง Open WebUI จะไม่หักส่วนแบ่งใดๆ อย่างไรก็ตาม แพลตฟอร์มการระดมทุนที่คุณเลือกอาจมีการเก็บค่าธรรมเนียมในส่วนของตนเอง", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "YouTube", "Youtube Language": "ภาษาของ YouTube", "Youtube Proxy URL": "URL พร็อกซี YouTube" diff --git a/src/lib/i18n/locales/tk-TM/translation.json b/src/lib/i18n/locales/tk-TM/translation.json index 93cd9dd30..1a2060cf7 100644 --- a/src/lib/i18n/locales/tk-TM/translation.json +++ b/src/lib/i18n/locales/tk-TM/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "Bu sazlamalary düzetmek ähli ulanyjylara birmeňzeş üýtgeşmeler girizer.", "admin": "admin", "Admin": "", + "Admin Contact Email": "", "Admin Panel": "Admin Paneli", "Admin Settings": "Admin Sazlamalary", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "", @@ -101,7 +102,6 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "", - "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "", "Allow Rate Response": "", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "", "and create a new shared link.": "we täze paýlaşylan baglanyşyk dörediň.", "Android": "", + "Anyone": "", "API Base URL": "API Esasy URL", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "", "API Key": "API Açar", @@ -175,6 +176,7 @@ "Authenticate": "", "Authentication": "", "Auto": "", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "", "Auto-playback response": "Awto-gaýtadan jogap", "Autocomplete Generation": "", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "", "AUTOMATIC1111 Base URL": "AUTOMATIC1111 Esasy URL", "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Esasy URL zerur.", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "", "Available Tools": "", "available users": "elýeterli ulanyjylar", @@ -201,6 +204,7 @@ "before": "öň", "Being lazy": "Ýaltalyk", "Beta": "", + "Bing": "", "Bing Search V7 Endpoint": "", "Bing Search V7 Subscription Key": "", "Bio": "", @@ -209,7 +213,9 @@ "Bocha Search API Key": "", "Bold": "", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "", + "Brave": "", "Brave Search API Key": "Brave Gözleg API Açar", + "Builtin Tools": "", "Bullet List": "", "Button ID": "", "Button Label": "", @@ -256,8 +262,10 @@ "Check for updates": "Täzelenmeleri barla", "Checking for updates...": "Täzelenmeleri barlamak...", "Choose a model before saving...": "Saklamazdan ozal model saýlaň...", + "Chunk Min Size Target": "", "Chunk Overlap": "Bölüm Aşyrmasy", "Chunk Size": "Bölüm Ölçegi", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "", "Citation": "Sitata", "Citations": "", @@ -293,7 +301,6 @@ "Code Block": "", "Code Editor": "", "Code execution": "", - "Code Execution": "", "Code Execution Engine": "", "Code Execution Timeout": "", "Code formatted successfully": "", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "", "Content": "Mazmuny", "Content Extraction Engine": "", + "Content lengths (character counts only)": "", "Continue Response": "Jogap Bermegi Dowam et", "Continue with {{provider}}": "", "Continue with Email": "", @@ -393,6 +401,7 @@ "Database": "Mazada", "Datalab Marker API": "", "DD/MM/YYYY": "", + "DDGS Backend": "", "December": "Dekabr", "Decrease UI Scale": "", "Deepgram": "", @@ -474,6 +483,7 @@ "Dive into knowledge": "", "Do not install functions from sources you do not fully trust.": "", "Do not install tools from sources you do not fully trust.": "", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "", "Docling Parameters": "", "Docling Server URL required.": "", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "", "Document Intelligence Model": "", "Documentation": "", - "Documents": "Resminamalar", "does not make any external connections, and your data stays securely on your locally hosted server.": "", "Domain Filter List": "", "don't fetch random pipelines from sources you don't trust.": "Ynamdar bolmadyk çeşmelerden tötänleýin pipelines almaň.", @@ -493,11 +502,14 @@ "Done": "Tamam", "Download": "", "Download & Delete": "Göçürip al we poz", + "Download as JSON": "", "Download as SVG": "", "Download canceled": "", "Download Database": "", + "Downloading stats...": "", "Draw": "", "Drop any files here to upload": "", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "", "e.g. \"json\" or a JSON schema": "", "e.g. 60": "", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "", "Enter Brave Search API Key": "", "Enter certificate path": "", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "", "Enter Chunk Size": "", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "", "Enter Firecrawl API Base URL": "", "Enter Firecrawl API Key": "", + "Enter Firecrawl Timeout": "", "Enter folder name": "", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "", "Enter ID": "", "Enter Image Size (e.g. 512x512)": "", + "Enter Jina API Base URL": "", "Enter Jina API Key": "", "Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter Jupyter Password": "", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "", "Enter Key Behavior": "", "Enter language codes": "", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "", "Enter Mistral API Key": "", "Enter Model ID": "", @@ -736,6 +753,7 @@ "Failed to generate title": "", "Failed to import models": "", "Failed to load chat preview": "", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "", "Failed to move chat": "", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "", "Features Permissions": "", "February": "Fewral", + "Feedback": "", "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "", - "Feedbacks": "", "Feel free to add specific details": "", "Female": "", "File": "Faýl", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "", "Firecrawl API Base URL": "", "Firecrawl API Key": "", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "", "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "", + "Folder Max File Count": "", "Folder Name": "", "Folder name cannot be empty.": "", "Folder name updated successfully": "", @@ -826,7 +846,6 @@ "General": "Umumy", "Generate": "Döret", "Generate an image": "", - "Generate Image": "", "Generate Message Pair": "", "Generated Image": "", "Generating search query": "", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "", "Global": "", "Good Response": "", + "Google": "", "Google Drive": "", "Google PSE API Key": "", "Google PSE Engine Id": "", "Gravatar": "", "Grid": "", + "Grokipedia": "", "Group": "Topar", "Group Channel": "", "Group created successfully": "", @@ -895,7 +916,6 @@ "Image Prompt Generation": "", "Image Prompt Generation Prompt": "", "Image Size": "", - "Images": "", "Import": "Import", "Import Chats": "", "Import Config from JSON File": "", @@ -927,6 +947,7 @@ "Integration": "Integrasiýa", "Integrations": "", "Interface": "", + "Interface Settings Access": "", "Invalid file content": "", "Invalid file format.": "", "Invalid JSON file": "", @@ -940,6 +961,7 @@ "is typing...": "", "Italic": "", "January": "Ýanwar", + "Jina API Base URL": "", "Jina API Key": "", "join our Discord for help.": "", "JSON": "", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "", "Leave empty to include all models or select specific models": "", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "", "Leave empty to use the default prompt, or enter a custom prompt": "", "Leave model field empty to use the default model.": "", @@ -1029,10 +1052,12 @@ "Manage your account information.": "", "March": "Mart", "Markdown": "", - "Markdown (Header)": "", + "Markdown Header Text Splitter": "", "Max Speakers": "", "Max Upload Count": "", "Max Upload Size": "", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "", "May": "Maý", "MBR": "", @@ -1042,6 +1067,7 @@ "Member removed successfully": "", "Members": "", "Members added successfully": "", + "Memories": "", "Memories accessible by LLMs will be shown here.": "", "Memory": "Ýat", "Memory added successfully": "", @@ -1051,6 +1077,7 @@ "Merge Responses": "", "Merged Response": "Birleşdirilen jogap", "Message": "", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "", "Microsoft OneDrive": "", @@ -1083,9 +1110,11 @@ "Model Name": "", "Model name already exists, please choose a different one": "", "Model Name is required.": "", + "Model names and usage frequency": "", "Model not selected": "", "Model Params": "", "Model Permissions": "", + "Model responses or outputs": "", "Model unloaded successfully": "", "Model updated successfully": "", "Model(s) do not support file upload": "", @@ -1096,6 +1125,7 @@ "Models imported successfully": "", "Models Public Sharing": "", "Models Sharing": "", + "Mojeek": "", "Mojeek Search API Key": "", "More": "Has köp", "More Concise": "", @@ -1129,7 +1159,7 @@ "No conversation to save": "", "No distance available": "", "No expiration can pose security risks.": "", - "No feedbacks found": "", + "No feedback found": "", "No file selected": "", "No files in this knowledge base.": "", "No functions found": "", @@ -1144,6 +1174,7 @@ "No models selected": "", "No Notes": "", "No notes found": "", + "No one": "", "No pinned messages": "", "No prompts found": "", "No results": "Netije ýok", @@ -1195,6 +1226,7 @@ "Only invited users can access": "", "Only markdown files are allowed": "", "Only select users and groups with permission can access": "", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "", "Oops! There are files still uploading. Please wait for the upload to complete.": "", "Oops! There was an error in the previous response.": "", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "", "OpenAI": "", "OpenAI API": "", @@ -1235,6 +1268,8 @@ "page": "", "Paginate": "", "Parameters": "Parametrler", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "Parol", "Passwords do not match.": "", "Paste Large Text as File": "", @@ -1260,7 +1295,6 @@ "Pipe": "", "Pipeline deleted successfully": "", "Pipeline downloaded successfully": "", - "Pipelines": "", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines — islendik kody işletmäge mümkinçilik berýän plagin ulgamy —", "Pipelines Not Detected": "", "Pipelines Valves": "", @@ -1498,6 +1532,7 @@ "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.": "", "Setting": "", "Settings": "Sazlamalar", + "Settings Permissions": "", "Settings saved successfully!": "", "Share": "Paýlaş", "Share Chat": "Çaty Paýlaş", @@ -1541,6 +1576,7 @@ "Speech recognition error: {{error}}": "", "Speech-to-Text": "", "Speech-to-Text Engine": "", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "", "Start of the channel": "Kanal başy", "Start Tag": "", @@ -1551,6 +1587,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Bes et", + "Stop Download": "", "Stop Generating": "", "Stop Sequence": "", "Stream Chat Response": "", @@ -1571,7 +1608,14 @@ "Support": "Goldaw", "Support this plugin:": "", "Supported MIME Types": "", + "Sync": "", + "Sync Complete!": "", "Sync directory": "", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "Sistema", "System Instructions": "", "System Prompt": "", @@ -1616,6 +1660,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "", "The width in pixels to compress images to. Leave empty for no compression.": "", "Theme": "", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "", "This action cannot be undone. Do you wish to continue?": "", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "", @@ -1730,6 +1775,7 @@ "Upload Pipeline": "", "Upload Progress": "", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploaded files or images": "", "Uploading file...": "", "URL": "", "URL is required": "", @@ -1747,6 +1793,7 @@ "User Groups": "", "User location successfully retrieved.": "", "User menu": "", + "User ratings (thumbs up/down)": "", "User Webhooks": "", "Username": "Ulanyjy Ady", "users": "", @@ -1796,15 +1843,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "", "What are you trying to achieve?": "", "What are you working on?": "", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "", "What's on your mind?": "", "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.": "", "wherever you are": "", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whisper (Local)": "", + "Who can share to this group": "", "Why?": "", "Widescreen Mode": "", "Width": "", + "Wikipedia": "", "Won": "", "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.": "", "Workspace": "", @@ -1816,6 +1867,8 @@ "Yacy Instance URL": "", "Yacy Password": "", "Yacy Username": "", + "Yahoo": "", + "Yandex": "", "Yesterday": "Düýn", "Yesterday at {{LOCALIZED_TIME}}": "", "You": "", @@ -1823,6 +1876,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "", "You cannot upload an empty file.": "", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this thread.": "", "You do not have permission to upload files to this knowledge base.": "", @@ -1834,6 +1890,8 @@ "Your Account": "", "Your account status is currently pending activation.": "", "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.": "", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "", "Youtube Language": "", "Youtube Proxy URL": "" diff --git a/src/lib/i18n/locales/tr-TR/translation.json b/src/lib/i18n/locales/tr-TR/translation.json index 423c5359a..0e8830693 100644 --- a/src/lib/i18n/locales/tr-TR/translation.json +++ b/src/lib/i18n/locales/tr-TR/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "Bu ayarların yapılması, değişiklikleri tüm kullanıcılara evrensel olarak uygulayacaktır.", "admin": "yönetici", "Admin": "Yönetici", + "Admin Contact Email": "", "Admin Panel": "Yönetici Paneli", "Admin Settings": "Yönetici Ayarları", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Yöneticiler her zaman tüm araçlara erişebilir; kullanıcıların çalışma alanındaki model başına atanmış araçlara ihtiyacı vardır.", @@ -101,7 +102,6 @@ "Allow Continue Response": "", "Allow Delete Messages": "Mesaj Silmeye İzin Ver", "Allow File Upload": "Dosya Yüklemeye İzin Ver", - "Allow Group Sharing": "", "Allow Multiple Models in Chat": "Sohbette Birden Fazla Modele İzin Ver", "Allow non-local voices": "Yerel olmayan seslere izin verin", "Allow Rate Response": "", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "ve {{COUNT}} daha", "and create a new shared link.": "ve yeni bir paylaşılan bağlantı oluşturun.", "Android": "Android", + "Anyone": "", "API Base URL": "API Temel URL", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "", "API Key": "API Anahtarı", @@ -175,6 +176,7 @@ "Authenticate": "Kimlik Doğrulama", "Authentication": "Kimlik Doğrulama", "Auto": "Otomatik", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "Yanıtı Panoya Otomatik Kopyala", "Auto-playback response": "Yanıtı otomatik oynatma", "Autocomplete Generation": "Otomatik Tamamlama Üretimi", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "AUTOMATIC1111 API Kimlik Doğrulama Dizesi", "AUTOMATIC1111 Base URL": "AUTOMATIC1111 Temel URL", "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 Temel URL gereklidir.", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "Mevcut liste", "Available Tools": "Mevcut Araçlar", "available users": "kullanılabilir kullanıcılar", @@ -201,6 +204,7 @@ "before": "önce", "Being lazy": "Tembelleşiyor", "Beta": "Beta", + "Bing": "", "Bing Search V7 Endpoint": "Bing Arama V7 Uç Noktası", "Bing Search V7 Subscription Key": "Bing Arama V7 Abonelik Anahtarı", "Bio": "", @@ -209,7 +213,9 @@ "Bocha Search API Key": "Bocha Arama API Anahtarı", "Bold": "Kalın", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "", + "Brave": "", "Brave Search API Key": "Brave Search API Anahtarı", + "Builtin Tools": "", "Bullet List": "", "Button ID": "", "Button Label": "", @@ -256,8 +262,10 @@ "Check for updates": "Güncellemeleri kontrol et", "Checking for updates...": "Güncellemeler kontrol ediliyor...", "Choose a model before saving...": "Kaydetmeden önce bir model seçin...", + "Chunk Min Size Target": "", "Chunk Overlap": "Chunk Çakışması", "Chunk Size": "Chunk Boyutu", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "Şifreler", "Citation": "Alıntı", "Citations": "Alıntılar", @@ -293,7 +301,6 @@ "Code Block": "", "Code Editor": "", "Code execution": "Kod yürütme", - "Code Execution": "Kod Çalıştırma", "Code Execution Engine": "", "Code Execution Timeout": "", "Code formatted successfully": "Kod başarıyla biçimlendirildi", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "WebUI Erişimi için Yöneticiyle İletişime Geçin", "Content": "İçerik", "Content Extraction Engine": "İçerik Çıkarma Motoru", + "Content lengths (character counts only)": "", "Continue Response": "Yanıta Devam Et", "Continue with {{provider}}": "{{provider}} ile devam et", "Continue with Email": "E-posta ile devam edin", @@ -393,6 +401,7 @@ "Database": "Veritabanı", "Datalab Marker API": "", "DD/MM/YYYY": "GG/AA/YYYY", + "DDGS Backend": "", "December": "Aralık", "Decrease UI Scale": "", "Deepgram": "", @@ -474,6 +483,7 @@ "Dive into knowledge": "Bilgiye dalmak", "Do not install functions from sources you do not fully trust.": "Tamamen güvenmediğiniz kaynaklardan fonksiyonlar yüklemeyin.", "Do not install tools from sources you do not fully trust.": "Tamamen güvenmediğiniz kaynaklardan araçlar yüklemeyin.", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "Docling", "Docling Parameters": "", "Docling Server URL required.": "", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "", "Document Intelligence Model": "", "Documentation": "Dökümantasyon", - "Documents": "Belgeler", "does not make any external connections, and your data stays securely on your locally hosted server.": "herhangi bir harici bağlantı yapmaz ve verileriniz güvenli bir şekilde yerel olarak barındırılan sunucunuzda kalır.", "Domain Filter List": "", "don't fetch random pipelines from sources you don't trust.": "Güvenmediğiniz kaynaklardan rastgele pipelines getirmeyin.", @@ -493,11 +502,14 @@ "Done": "Tamamlandı", "Download": "İndir", "Download & Delete": "İndir ve Sil", + "Download as JSON": "", "Download as SVG": "SVG olarak İndir", "Download canceled": "İndirme iptal edildi", "Download Database": "Veritabanını İndir", + "Downloading stats...": "", "Draw": "Çiz", "Drop any files here to upload": "", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "örn. '30s', '10m'. Geçerli zaman birimleri 's', 'm', 'h'.", "e.g. \"json\" or a JSON schema": "örn. \"json\" veya JSON şablonu", "e.g. 60": "örn. 60", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "", "Enter Brave Search API Key": "Brave Search API Anahtarını Girin", "Enter certificate path": "Sertifika yolunu girin", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "Chunk Örtüşmesini Girin", "Enter Chunk Size": "Chunk Boyutunu Girin", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "", "Enter Firecrawl API Base URL": "", "Enter Firecrawl API Key": "", + "Enter Firecrawl Timeout": "", "Enter folder name": "", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "Github Raw URL'sini girin", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "", "Enter ID": "", "Enter Image Size (e.g. 512x512)": "Görüntü Boyutunu Girin (örn. 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "Jina API Anahtarını Girin", "Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter Jupyter Password": "", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "Kagi Search API Anahtarını Girin", "Enter Key Behavior": "", "Enter language codes": "Dil kodlarını girin", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "", "Enter Mistral API Key": "", "Enter Model ID": "Model ID'sini Girin", @@ -736,6 +753,7 @@ "Failed to generate title": "", "Failed to import models": "", "Failed to load chat preview": "", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "", "Failed to move chat": "", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "Özellikler", "Features Permissions": "Özellik Yetkileri", "February": "Şubat", + "Feedback": "", "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "Geri Bildirim Geçmişi", - "Feedbacks": "Geri Bildirimler", "Feel free to add specific details": "Spesifik ayrıntılar eklemekten çekinmeyin", "Female": "", "File": "Dosya", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Parmak izi sahteciliği tespit edildi: Avatar olarak baş harfler kullanılamıyor. Varsayılan profil resmine dönülüyor.", "Firecrawl API Base URL": "", "Firecrawl API Key": "", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "", "Focus Chat Input": "", "Folder": "Klasör", "Folder Background Image": "Klasör Arka Plan Resmi", "Folder deleted successfully": "Klasör başarıyla silindi", + "Folder Max File Count": "", "Folder Name": "Klasör Adı", "Folder name cannot be empty.": "Klasör adı boş olamaz.", "Folder name updated successfully": "Klasör adı başarıyla güncellendi", @@ -826,7 +846,6 @@ "General": "Genel", "Generate": "Oluştur", "Generate an image": "Bir Görsel Oluştur", - "Generate Image": "Görsel Üret", "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Arama sorgusu oluşturma", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "{{WEBUI_NAME}} ile başlayın", "Global": "Evrensel", "Good Response": "İyi Yanıt", + "Google": "", "Google Drive": "Google Drive", "Google PSE API Key": "Google PSE API Anahtarı", "Google PSE Engine Id": "Google PSE Engine Id", "Gravatar": "", "Grid": "", + "Grokipedia": "", "Group": "Grup", "Group Channel": "", "Group created successfully": "Grup başarıyla oluşturuldu", @@ -895,7 +916,6 @@ "Image Prompt Generation": "", "Image Prompt Generation Prompt": "", "Image Size": "", - "Images": "Görüntüler", "Import": "İçe Aktar", "Import Chats": "Sohbetleri İçe Aktar", "Import Config from JSON File": "Yapılandırmayı JSON Dosyasından İçe Aktar", @@ -927,6 +947,7 @@ "Integration": "", "Integrations": "", "Interface": "Arayüz", + "Interface Settings Access": "", "Invalid file content": "", "Invalid file format.": "Geçersiz dosya biçimi.", "Invalid JSON file": "", @@ -940,6 +961,7 @@ "is typing...": "yazıyor...", "Italic": "", "January": "Ocak", + "Jina API Base URL": "", "Jina API Key": "Jina API Anahtarı", "join our Discord for help.": "yardım için Discord'umuza katılın.", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "", "Leave empty to include all models or select specific models": "Tüm modelleri dahil etmek için boş bırakın veya belirli modelleri seçin", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "", "Leave empty to use the default prompt, or enter a custom prompt": "Varsayılan promptu kullanmak için boş bırakın veya özel bir prompt girin", "Leave model field empty to use the default model.": "", @@ -1029,10 +1052,12 @@ "Manage your account information.": "", "March": "Mart", "Markdown": "", - "Markdown (Header)": "", + "Markdown Header Text Splitter": "", "Max Speakers": "", "Max Upload Count": "Maksimum Yükleme Sayısı", "Max Upload Size": "Maksimum Yükleme Boyutu", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Aynı anda en fazla 3 model indirilebilir. Lütfen daha sonra tekrar deneyin.", "May": "Mayıs", "MBR": "", @@ -1042,6 +1067,7 @@ "Member removed successfully": "", "Members": "", "Members added successfully": "", + "Memories": "", "Memories accessible by LLMs will be shown here.": "LLM'ler tarafından erişilebilen bellekler burada gösterilecektir.", "Memory": "Bellek", "Memory added successfully": "Bellek başarıyla eklendi", @@ -1051,6 +1077,7 @@ "Merge Responses": "Yanıtları Birleştir", "Merged Response": "Birleştirilmiş Yanıt", "Message": "", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "Bu özelliği kullanmak için mesaj derecelendirmesi etkinleştirilmelidir", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Bağlantınızı oluşturduktan sonra gönderdiğiniz mesajlar paylaşılmayacaktır. URL'ye sahip kullanıcılar paylaşılan sohbeti görüntüleyebilecektir.", "Microsoft OneDrive": "Microsoft OneDrive", @@ -1083,9 +1110,11 @@ "Model Name": "Model Adı", "Model name already exists, please choose a different one": "", "Model Name is required.": "", + "Model names and usage frequency": "", "Model not selected": "Model seçilmedi", "Model Params": "Model Parametreleri", "Model Permissions": "Model İzinleri", + "Model responses or outputs": "", "Model unloaded successfully": "", "Model updated successfully": "Model başarıyla güncellendi", "Model(s) do not support file upload": "", @@ -1096,6 +1125,7 @@ "Models imported successfully": "", "Models Public Sharing": "", "Models Sharing": "", + "Mojeek": "", "Mojeek Search API Key": "Mojeek Search API Anahtarı", "More": "Daha Fazla", "More Concise": "", @@ -1129,7 +1159,7 @@ "No conversation to save": "", "No distance available": "Mesafe mevcut değil", "No expiration can pose security risks.": "", - "No feedbacks found": "Geri bildirim bulunamadı", + "No feedback found": "", "No file selected": "Hiçbir dosya seçilmedi", "No files in this knowledge base.": "", "No functions found": "", @@ -1144,6 +1174,7 @@ "No models selected": "Model seçilmedi", "No Notes": "Not Yok", "No notes found": "", + "No one": "", "No pinned messages": "", "No prompts found": "", "No results": "Sonuç bulunamadı", @@ -1195,6 +1226,7 @@ "Only invited users can access": "", "Only markdown files are allowed": "Yalnızca markdown biçimli dosyalar kullanılabilir", "Only select users and groups with permission can access": "İzinli kullanıcılar ve gruplar yalnızca erişebilir", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Hop! URL geçersiz gibi görünüyor. Lütfen tekrar kontrol edin ve yeniden deneyin.", "Oops! There are files still uploading. Please wait for the upload to complete.": "Hop! Hala yüklenen dosyalar var. Yüklemenin tamamlanmasını bekleyin.", "Oops! There was an error in the previous response.": "Hop! Önceki yanıtta bir hata oluştu.", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI OpenAPI tarafından sağlanan araçları kullanabilir", "Open WebUI uses faster-whisper internally.": "Open WebUI, dahili olarak daha hızlı-fısıltı kullanır.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI, SpeechT5 ve CMU Arctic konuşmacı gömme kullanır.", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Open-WebUI sürümü (v{{OPEN_WEBUI_VERSION}}) gerekli sürümden (v{{REQUIRED_VERSION}}) düşük", "OpenAI": "OpenAI", "OpenAI API": "OpenAI API", @@ -1235,6 +1268,8 @@ "page": "sayfa", "Paginate": "", "Parameters": "Parametreler", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "Parola", "Passwords do not match.": "Parolalar eşleşmiyor.", "Paste Large Text as File": "Büyük Metni Dosya Olarak Yapıştır", @@ -1260,7 +1295,6 @@ "Pipe": "", "Pipeline deleted successfully": "Pipeline başarıyla silindi", "Pipeline downloaded successfully": "Pipeline başarıyla güncellendi", - "Pipelines": "Pipelinelar", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines, keyfi kod çalıştırmaya izin veren bir eklenti sistemidir —", "Pipelines Not Detected": "Pipeline Tespit Edilmedi", "Pipelines Valves": "Pipeline Valvleri", @@ -1498,6 +1532,7 @@ "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.": "Kullanılacak durma dizilerini ayarlar. Bu desenle karşılaşıldığında, LLM metin oluşturmayı durduracak ve geri dönecektir. Birden çok durma deseni, bir modelfile'da birden çok ayrı durma parametresi belirterek ayarlanabilir.", "Setting": "", "Settings": "Ayarlar", + "Settings Permissions": "", "Settings saved successfully!": "Ayarlar başarıyla kaydedildi!", "Share": "Paylaş", "Share Chat": "Sohbeti Paylaş", @@ -1541,6 +1576,7 @@ "Speech recognition error: {{error}}": "Konuşma tanıma hatası: {{error}}", "Speech-to-Text": "", "Speech-to-Text Engine": "Konuşmadan Metne Motoru", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "", "Start of the channel": "Kanalın başlangıcı", "Start Tag": "", @@ -1551,6 +1587,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Durdur", + "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Diziyi Durdur", "Stream Chat Response": "Akış Sohbet Yanıtı", @@ -1571,7 +1608,14 @@ "Support": "Destek", "Support this plugin:": "Bu eklentiyi destekleyin:", "Supported MIME Types": "", + "Sync": "", + "Sync Complete!": "", "Sync directory": "Dizini senkronize et", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "Sistem", "System Instructions": "Sistem Talimatları", "System Prompt": "Sistem Promptu", @@ -1616,6 +1660,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "", "The width in pixels to compress images to. Leave empty for no compression.": "", "Theme": "Tema", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "Düşünüyor...", "This action cannot be undone. Do you wish to continue?": "Bu eylem geri alınamaz. Devam etmek istiyor musunuz?", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "", @@ -1730,6 +1775,7 @@ "Upload Pipeline": "Pipeline Yükle", "Upload Progress": "Yükleme İlerlemesi", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploaded files or images": "", "Uploading file...": "", "URL": "URL", "URL is required": "URL gerekli", @@ -1747,6 +1793,7 @@ "User Groups": "Kullanıcı Grupları", "User location successfully retrieved.": "Kullanıcı konumu başarıyla alındı.", "User menu": "Kullanıcı menüsü", + "User ratings (thumbs up/down)": "", "User Webhooks": "", "Username": "Kullanıcı Adı", "users": "", @@ -1796,15 +1843,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI, \"{{url}}/chat/completions\" adresine istek yapacak", "What are you trying to achieve?": "Ne yapmaya çalışıyorsunuz?", "What are you working on?": "Üzerinde çalıştığınız nedir?", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "Yenilikler:", "What's on your mind?": "", "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.": "Etkinleştirildiğinde, model her sohbet mesajına gerçek zamanlı olarak yanıt verecek ve kullanıcı bir mesaj gönderdiği anda bir yanıt üretecektir. Bu mod canlı sohbet uygulamaları için yararlıdır, ancak daha yavaş donanımlarda performansı etkileyebilir.", "wherever you are": "nerede olursanız olun", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whisper (Local)": "Whisper (Yerel)", + "Who can share to this group": "", "Why?": "Neden?", "Widescreen Mode": "Geniş Ekran Modu", "Width": "", + "Wikipedia": "", "Won": "kazandı", "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.": "", "Workspace": "Çalışma Alanı", @@ -1816,6 +1867,8 @@ "Yacy Instance URL": "", "Yacy Password": "Yacy Parolası", "Yacy Username": "Yacy Kullanıcı Adı", + "Yahoo": "", + "Yandex": "", "Yesterday": "Dün", "Yesterday at {{LOCALIZED_TIME}}": "", "You": "Sen", @@ -1823,6 +1876,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Aynı anda en fazla {{maxCount}} dosya ile sohbet edebilirsiniz.", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Aşağıdaki 'Yönet' düğmesi aracılığıyla bellekler ekleyerek LLM'lerle etkileşimlerinizi kişiselleştirebilir, onları daha yararlı ve size özel hale getirebilirsiniz.", "You cannot upload an empty file.": "Boş bir dosya yükleyemezsiniz.", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this thread.": "", "You do not have permission to upload files to this knowledge base.": "", @@ -1834,6 +1890,8 @@ "Your Account": "Hesabınız", "Your account status is currently pending activation.": "Hesap durumunuz şu anda etkinleştirilmeyi bekliyor.", "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.": "Tüm katkınız doğrudan eklenti geliştiricisine gidecektir; Open WebUI herhangi bir yüzde almaz. Ancak seçilen finansman platformunun kendi ücretleri olabilir.", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "Youtube", "Youtube Language": "Youtube Dili", "Youtube Proxy URL": "Youtube Vekil URL'si" diff --git a/src/lib/i18n/locales/ug-CN/translation.json b/src/lib/i18n/locales/ug-CN/translation.json index b47fc630f..20f8fa427 100644 --- a/src/lib/i18n/locales/ug-CN/translation.json +++ b/src/lib/i18n/locales/ug-CN/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "بۇ تەڭشەكتىكى ئۆزگەرتىشلەر بارلىق ئىشلەتكۈچىلەرگە قوللىنىلىدۇ.", "admin": "باشقۇرغۇچى", "Admin": "باشقۇرغۇچى", + "Admin Contact Email": "", "Admin Panel": "باشقۇرغۇچى تاختىسى", "Admin Settings": "باشقۇرغۇچى تەڭشەكلىرى", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "باشقۇرغۇچىلارنىڭ ھەممىسى قوراللارنى تولۇق ئىشلىتىش ھوقۇقىغا ئىگە؛ ئىشلەتكۈچىلەرنىڭ ئىشخانىدا مودېلغا باغلانغان قوراللار بولۇشى كېرەك.", @@ -101,7 +102,6 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "ھۆججەت چىقىرىشقا ئىجازەت", - "Allow Group Sharing": "", "Allow Multiple Models in Chat": "سۆھبەتتە بىر قانچە مودېل ئىشلىتىشكە ئىجازەت", "Allow non-local voices": "يەرلىك بولمىغان ئاۋازلارغا ئىجازەت", "Allow Rate Response": "", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "ۋە يەنە {{COUNT}}", "and create a new shared link.": "يېڭى ھەمبەھىرلەنگەن ئۇلانما قۇرۇڭ.", "Android": "Android", + "Anyone": "", "API Base URL": "API ئاساسىي URL", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "", "API Key": "API ئاچقۇچى", @@ -175,6 +176,7 @@ "Authenticate": "دەلىللەش", "Authentication": "كىرىش دەلىللەش", "Auto": "ئاپتوماتىك", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "ئىنكاسنى ئۆزلۈكىدىن چاپلاش تاختىسىغا كۆچۈرۈش", "Auto-playback response": "ئاپتۇماتىك قۇيۇش ئىنكاسى", "Autocomplete Generation": "ئاپتوماتىك تولدۇرۇش", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "AUTOMATIC1111 API دەلىللەش ھەرپ تىزىقى", "AUTOMATIC1111 Base URL": "AUTOMATIC1111 ئاساسىي URL", "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 ئاساسىي URL زۆرۈر.", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "بار تىزىملىك", "Available Tools": "بار قوراللار", "available users": "ئىشلەتكىلى بولىدىغان ئىشلەتكۈچىلەر", @@ -201,6 +204,7 @@ "before": "بۇرۇن", "Being lazy": "ھورۇن بۇلۇش", "Beta": "بەتا", + "Bing": "", "Bing Search V7 Endpoint": "Bing Search V7 ئۇلانمىسى", "Bing Search V7 Subscription Key": "Bing Search V7 ئەزا ئاچقۇچى", "Bio": "", @@ -209,7 +213,9 @@ "Bocha Search API Key": "Bocha ئىزدەش API ئاچقۇچى", "Bold": "", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "چەكلەنگەن ئىنكاسلار ئۈچۈن بەلگىلىك سۆزلەرگە ئالاھىدە ئۈنۈم قوشۇش ياكى جازالاش. ئېغىش قىممىتى 100- دىن 100 گىچە بولىدۇ (كۆرسىتىلگەن قىممەت). (كۆڭۈلدىكى: يوق)", + "Brave": "", "Brave Search API Key": "Brave ئىزدەش API ئاچقۇچى", + "Builtin Tools": "", "Bullet List": "", "Button ID": "", "Button Label": "", @@ -256,8 +262,10 @@ "Check for updates": "يېڭىلاشنى تەكشۈرۈش", "Checking for updates...": "يېڭىلاشلار تەكشۈرۈلمەكتە...", "Choose a model before saving...": "ساقلاشتىن بۇرۇن مودېل تاللاڭ...", + "Chunk Min Size Target": "", "Chunk Overlap": "پارچە قاپلىنىشى", "Chunk Size": "پارچە چوڭلۇقى", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "شىفىرلار", "Citation": "نەقىل", "Citations": "نەقىللەر", @@ -293,7 +301,6 @@ "Code Block": "", "Code Editor": "", "Code execution": "كود ئىجرا قىلىش", - "Code Execution": "كود ئىجرا قىلىش", "Code Execution Engine": "كود ئىجرا ماتورى", "Code Execution Timeout": "كود ئىجرا ۋاقىت چەكلىمىسى", "Code formatted successfully": "كود مۇۋەپپەقىيەتلىك فورماتلاندى", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "WebUI كىرىش ئۈچۈن باشقۇرغۇچى بىلەن ئالاقىلىشىڭ", "Content": "مەزمۇن", "Content Extraction Engine": "مەزمۇن چىقىرىش ماتورى", + "Content lengths (character counts only)": "", "Continue Response": "ئىنكاسنى داۋاملاشتۇرۇش", "Continue with {{provider}}": "{{provider}} داۋاملاشتۇرۇش", "Continue with Email": "ئېلخەت بىلەن داۋاملاشتۇرۇش", @@ -393,6 +401,7 @@ "Database": "ساندان", "Datalab Marker API": "Datalab Marker API", "DD/MM/YYYY": "", + "DDGS Backend": "", "December": "دېكابىر", "Decrease UI Scale": "", "Deepgram": "", @@ -474,6 +483,7 @@ "Dive into knowledge": "بىلىمگە چۆمۈلۈڭ", "Do not install functions from sources you do not fully trust.": "پۈتۈنلەي ئىشەنچلىك بولمىغان مەنبەلەردىن فۇنكسىيە ئورناتماڭ.", "Do not install tools from sources you do not fully trust.": "پۈتۈنلەي ئىشەنچلىك بولمىغان مەنبەلەردىن قورال ئورناتماڭ.", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "Docling", "Docling Parameters": "", "Docling Server URL required.": "Docling مۇلازىمېتىر URL زۆرۈر.", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "", "Document Intelligence Model": "", "Documentation": "ئىشلەتكۈچى قوللانمىسى", - "Documents": "ھۆججەتلەر", "does not make any external connections, and your data stays securely on your locally hosted server.": "سىرتقى ئۇلىنىش قىلمايدۇ، سانلىق مەلۇماتىڭىز يەرلىك مۇلازىمېتىردىلا بىخەتەر ساقلىنىدۇ.", "Domain Filter List": "دائىرە نامى سۈزگۈچ تىزىملىكى", "don't fetch random pipelines from sources you don't trust.": "ئىشەنچسىز مەنبەلەردىن خالىغان pipelines نى ئالماڭ.", @@ -493,11 +502,14 @@ "Done": "تامام", "Download": "چۈشۈرۈش", "Download & Delete": "چۈشۈرۈش ۋە ئۆچۈرۈش", + "Download as JSON": "", "Download as SVG": "SVG شەكلىدە چۈشۈرۈش", "Download canceled": "چۈشۈرۈش بىكار قىلىندى", "Download Database": "ساندان چۈشۈرۈش", + "Downloading stats...": "", "Draw": "سىزىش", "Drop any files here to upload": "ھەر قانداق ھۆججەتنى بۇ يەرگە قويۇپ يۈكلەڭ", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "مەسىلەن: '30s', '10m'. توغرا ۋاقىت بىرلىكى: 's' (سېكۇنت), 'm' (مىنۇت), 'h' (سائەت).", "e.g. \"json\" or a JSON schema": "مەسىلەن: \"json\" ياكى JSON قېلىپى", "e.g. 60": "مەسىلەن: 60", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "Bocha ئىزدەش API ئاچقۇچى كىرگۈزۈڭ", "Enter Brave Search API Key": "Brave ئىزدەش API ئاچقۇچى كىرگۈزۈڭ", "Enter certificate path": "سىرتىفىكات يولى كىرگۈزۈڭ", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "پارچە قاپلىنىشى كىرگۈزۈڭ", "Enter Chunk Size": "پارچە چوڭلۇقى كىرگۈزۈڭ", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "پۈتتۈر بىلەن ئايرىلغان \"token:bias_value\" جۈپىنى كىرگۈزۈڭ (مەسىلەن: 5432:100, 413:-100)", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "سىرتقى تور ئىزدەش URL كىرگۈزۈڭ", "Enter Firecrawl API Base URL": "Firecrawl API ئاساسىي URL كىرگۈزۈڭ", "Enter Firecrawl API Key": "Firecrawl API ئاچقۇچى كىرگۈزۈڭ", + "Enter Firecrawl Timeout": "", "Enter folder name": "", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "Github Raw URL كىرگۈزۈڭ", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "", "Enter ID": "", "Enter Image Size (e.g. 512x512)": "رەسىم چوڭلۇقى كىرگۈزۈڭ (مەسىلەن: 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "Jina API ئاچقۇچى كىرگۈزۈڭ", "Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter Jupyter Password": "Jupyter پارول كىرگۈزۈڭ", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "Kagi ئىزدەش API ئاچقۇچى كىرگۈزۈڭ", "Enter Key Behavior": "ئاچقۇچ ئىشلىتىش ئۇسۇلى كىرگۈزۈڭ", "Enter language codes": "تىل كودلىرى كىرگۈزۈڭ", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "", "Enter Mistral API Key": "Mistral API ئاچقۇچى كىرگۈزۈڭ", "Enter Model ID": "مودېل ID كىرگۈزۈڭ", @@ -736,6 +753,7 @@ "Failed to generate title": "", "Failed to import models": "", "Failed to load chat preview": "", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "ھۆججەت مەزمۇنى يۈكلەش مەغلۇپ بولدى.", "Failed to move chat": "", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "ئىقتىدارلار", "Features Permissions": "ئىقتىدار ھوقۇقى", "February": "فېۋرال", + "Feedback": "", "Feedback deleted successfully": "", "Feedback Details": "پىكىر تەپسىلاتى", "Feedback History": "پىكىر تارىخى", - "Feedbacks": "پىكىرلەر", "Feel free to add specific details": "تەپسىلىي ئۇچۇر قوشسىڭىز بولىدۇ", "Female": "", "File": "ھۆججەت", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "بارماق ئىزى ئالدامچىلىقى بايقالدى: دەسلەپتىكىنى ئاۋاتار قىلغىلى بولمىدى. كۆڭۈلدىكى پىروفىل رەسىمى ئىشلىتىلىدۇ. ", "Firecrawl API Base URL": "Firecrawl API ئاساسىي URL", "Firecrawl API Key": "Firecrawl API ئاچقۇچى", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "", "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "قىسقۇچ مۇۋەپپەقىيەتلىك ئۆچۈرۈلدى", + "Folder Max File Count": "", "Folder Name": "", "Folder name cannot be empty.": "قىسقۇچ ئاتى بوش بولسا بولمايدۇ.", "Folder name updated successfully": "قىسقۇچ ئاتى مۇۋەپپەقىيەتلىك يېڭىلاندى", @@ -826,7 +846,6 @@ "General": "ئادەتتىكى", "Generate": "ھاسىل قىلىش", "Generate an image": "رەسىم ھاسىل قىلىش", - "Generate Image": "رەسىم ھاسىل قىلىش", "Generate Message Pair": "", "Generated Image": "", "Generating search query": "ئىزدەش سۇئالى ھاسىل قىلىنىۋاتىدۇ", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "{{WEBUI_NAME}} بىلەن باشلاڭ", "Global": "ئۇمۇمىي", "Good Response": "ياخشى ئىنكاس", + "Google": "", "Google Drive": "Google Drive", "Google PSE API Key": "Google PSE API ئاچقۇچى", "Google PSE Engine Id": "Google PSE ماتور ID", "Gravatar": "", "Grid": "", + "Grokipedia": "", "Group": "گۇرۇپپا", "Group Channel": "", "Group created successfully": "گۇرۇپپا مۇۋەپپەقىيەتلىك قۇرۇلدى", @@ -895,7 +916,6 @@ "Image Prompt Generation": "رەسىم تۈرتكەسى ھاسىل قىلىش", "Image Prompt Generation Prompt": "رەسىم تۈرتكەسى ھەققىدە تۈرتكە", "Image Size": "", - "Images": "رەسىملەر", "Import": "ئىمپورت قىلىش", "Import Chats": "سۆھبەتلەرنى ئىمپورت قىلىش", "Import Config from JSON File": "JSON ھۆججىتىدىن تەڭشەك ئىمپورت قىلىش", @@ -927,6 +947,7 @@ "Integration": "بىرىكتۈرۈش", "Integrations": "", "Interface": "يۈز", + "Interface Settings Access": "", "Invalid file content": "ھۆججەت مەزمۇنى خاتا", "Invalid file format.": "ھۆججەت قېلىپى خاتا.", "Invalid JSON file": "JSON ھۆججىتى خاتا", @@ -940,6 +961,7 @@ "is typing...": "يازماقتا...", "Italic": "", "January": "يانۋار", + "Jina API Base URL": "", "Jina API Key": "Jina API ئاچقۇچى", "join our Discord for help.": "ياردەم ئۈچۈن Discord غا قوشۇلىڭ.", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "\"{{url}}/api/tags\" ئۇلانمىسىدىكى بارلىق مودېللارغا بوش قالدۇرۇڭ", "Leave empty to include all models from \"{{url}}/models\" endpoint": "\"{{url}}/models\" ئۇلانمىسىدىكى بارلىق مودېللارغا بوش قالدۇرۇڭ", "Leave empty to include all models or select specific models": "بارلىق مودېل ياكى بەلگىلىك مودېللار ئۈچۈن بوش قالدۇرۇڭ", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "", "Leave empty to use the default prompt, or enter a custom prompt": "كۆڭۈلدىكى تۈرتكە ئۈچۈن بوش قالدۇرۇڭ ياكى ئۆزلۈك تۈرتكە كىرگۈزۈڭ", "Leave model field empty to use the default model.": "كۆڭۈلدىكى مودېل ئۈچۈن مودېل رايونىنى بوش قالدۇرۇڭ.", @@ -1029,10 +1052,12 @@ "Manage your account information.": "", "March": "مارت", "Markdown": "Markdown", - "Markdown (Header)": "", + "Markdown Header Text Splitter": "", "Max Speakers": "ئەڭ كۆپ سۆزلىگۈچىلەر", "Max Upload Count": "ئەڭ كۆپ چىقىرىش سانى", "Max Upload Size": "ئەڭ چوڭ چىقىرىش چوڭلۇقى", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "بىر ۋاقىتتا ئەڭ كۆپ 3 مودېل چۈشۈرۈلىدۇ. كىيىنچە قايتا سىناڭ.", "May": "ماي", "MBR": "", @@ -1042,6 +1067,7 @@ "Member removed successfully": "", "Members": "", "Members added successfully": "", + "Memories": "", "Memories accessible by LLMs will be shown here.": "LLM ئىشلىتەلەيدىن ئەسلەتمىلەر بۇ يەردە كۆرۈنىدۇ.", "Memory": "ئەسلەتمە", "Memory added successfully": "ئەسلەتمە مۇۋەپپەقىيەتلىك قوشۇلدى", @@ -1051,6 +1077,7 @@ "Merge Responses": "ئىنكاسلارنى بىرلەشتۈرۈش", "Merged Response": "بىرلەشتۈرۈلگەن ئىنكاس", "Message": "", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "بۇ ئىقتىدار ئۈچۈن ئۇچۇر باھالاشنى قوزغىتىڭ", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "ئۇلانما قۇرغاندىن كېيىن يوللىغان ئۇچۇرلار ھەمبەھىرلەنمەيدۇ. URL غا ئىگە ئىشلەتكۈچىلەر ھەمبەھىرلەنگەن سۆھبەتنى كۆرەلەيدۇ.", "Microsoft OneDrive": "Microsoft OneDrive", @@ -1083,9 +1110,11 @@ "Model Name": "مودېل نامى", "Model name already exists, please choose a different one": "", "Model Name is required.": "", + "Model names and usage frequency": "", "Model not selected": "مودېل تاللانمىغان", "Model Params": "مودېل پارامېتىرلىرى", "Model Permissions": "مودېل ھوقۇقى", + "Model responses or outputs": "", "Model unloaded successfully": "مودېل مۇۋەپپەقىيەتلىك چىقىرىلدى", "Model updated successfully": "مودېل مۇۋەپپەقىيەتلىك يېڭىلاندى", "Model(s) do not support file upload": "مودېل(لار) ھۆججەت چىقىرىشنى قوللىمايدۇ", @@ -1096,6 +1125,7 @@ "Models imported successfully": "", "Models Public Sharing": "مودېللارنى ئاممىغا ھەمبەھىرلەش", "Models Sharing": "", + "Mojeek": "", "Mojeek Search API Key": "Mojeek ئىزدەش API ئاچقۇچى", "More": "تېخىمۇ كۆپ", "More Concise": "", @@ -1129,7 +1159,7 @@ "No conversation to save": "", "No distance available": "ئارىلىق ئۇچۇرى يوق", "No expiration can pose security risks.": "", - "No feedbacks found": "پىكىرلەر تېپىلمىدى", + "No feedback found": "", "No file selected": "ھۆججەت تاللانمىدى", "No files in this knowledge base.": "", "No functions found": "", @@ -1144,6 +1174,7 @@ "No models selected": "مودېل تاللانمىدى", "No Notes": "خاتىرە يوق", "No notes found": "", + "No one": "", "No pinned messages": "", "No prompts found": "", "No results": "نەتىجە تېپىلمىدى", @@ -1195,6 +1226,7 @@ "Only invited users can access": "", "Only markdown files are allowed": "پەقەت markdown ھۆججىتى ئىشلىتىشكە بولىدۇ", "Only select users and groups with permission can access": "پەقەت ھوقۇقى بار تاللانغان ئىشلەتكۈچى ۋە گۇرۇپپىلارلا زىيارەت قىلالايدۇ", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "URL خاتا بولۇشى مۇمكىن. قايتا تەكشۈرۈپ سىناڭ.", "Oops! There are files still uploading. Please wait for the upload to complete.": "ھۆججەت يۈكلەۋاتىدۇ. تولۇق بولغىلىچە كۈتۈڭ.", "Oops! There was an error in the previous response.": "ئالدىنقى ئىنكاستا خاتالىق يۈز بەردى.", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI ھەر قانداق OpenAPI مۇلازىمېتىرلىرىدىكى قوراللارنى ئىشلىتەلىدۇ.", "Open WebUI uses faster-whisper internally.": "Open WebUI ئىچىدە faster-whisper ئىشلىتىدۇ.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI SpeechT5 ۋە CMU Arctic ئاۋاز سىڭدۈرۈش ئىشلىتىدۇ.", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Open WebUI نەشرى (v{{OPEN_WEBUI_VERSION}}) تەلەپ قىلىنغان نەشردىن (v{{REQUIRED_VERSION}}) تۆۋەن.", "OpenAI": "OpenAI", "OpenAI API": "OpenAI API", @@ -1235,6 +1268,8 @@ "page": "بەت", "Paginate": "بەتلەش", "Parameters": "پارامېتىرلار", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "پارول", "Passwords do not match.": "", "Paste Large Text as File": "چوڭ تېكستنى ھۆججەت قىلىپ چاپلا", @@ -1260,7 +1295,6 @@ "Pipe": "", "Pipeline deleted successfully": "جەريان مۇۋەپپەقىيەتلىك ئۆچۈرۈلدى", "Pipeline downloaded successfully": "جەريان مۇۋەپپەقىيەتلىك چۈشۈرۈلدى", - "Pipelines": "جەريانلار", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines — خالىغان كود ئىجرا قىلىشقا ئىجازەت بېرىدىغان قىستۇرما سىستېمىسى —", "Pipelines Not Detected": "جەريان تېپىلمىدى", "Pipelines Valves": "جەريان كرانلىرى", @@ -1498,6 +1532,7 @@ "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.": "ئىشلىتىلىدىغان توختاش تىزىقى بەلگىلەيدۇ. بۇ ئۇسلۇب كۆرۈلسە، LLM تېكست چىقىرىشنى توختىتىدۇ. بىر قانچە توختاش ئۇسلۇبنى modelfile دا كۆرسىتىشكە بولىدۇ.", "Setting": "", "Settings": "تەڭشەك", + "Settings Permissions": "", "Settings saved successfully!": "تەڭشەك مۇۋەپپەقىيەتلىك ساقلاندى!", "Share": "ھەمبەھىرلەش", "Share Chat": "سۆھبەت ھەمبەھىرلەش", @@ -1541,6 +1576,7 @@ "Speech recognition error: {{error}}": "ئاۋازنى تونۇش خاتالىقى: {{error}}", "Speech-to-Text": "ئاۋازدىن تېكستكە", "Speech-to-Text Engine": "ئاۋازدىن تېكستكە ماتورى", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "", "Start of the channel": "قانالنىڭ باشلانغىنى", "Start Tag": "", @@ -1551,6 +1587,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "توختات", + "Stop Download": "", "Stop Generating": "", "Stop Sequence": "توختاش تىزىقى", "Stream Chat Response": "سۆھبەت ئىنكاسىنى ئېقىم قىلىش", @@ -1571,7 +1608,14 @@ "Support": "ياردەم", "Support this plugin:": "بۇ قىستۇرما ئۈچۈن ياردەم قىلىڭ:", "Supported MIME Types": "قوللايدىغان MIME تىپى", + "Sync": "", + "Sync Complete!": "", "Sync directory": "قىسقۇچنى ماس-قەدەملە", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "سىستېما", "System Instructions": "سىستېما كۆرسىتىلمىسى", "System Prompt": "سىستېما تۈرتكەسى", @@ -1616,6 +1660,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "", "The width in pixels to compress images to. Leave empty for no compression.": "رەسىم پرىسلاش كەڭلىكى (پېكسېل). پرىسلاش بولمىسا بوش قالدۇرۇڭ.", "Theme": "ئۈسلۇب", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "ئويلاۋاتىدۇ...", "This action cannot be undone. Do you wish to continue?": "بۇ ھەرىكەت ئەسلىگە كەلتۈرگىلى بولمايدۇ. داۋاملاشامسىز؟", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "بۇ قانال {{createdAt}} قۇرۇلغان. بۇ {{channelName}} قانالىنىڭ باشلىنىشى.", @@ -1730,6 +1775,7 @@ "Upload Pipeline": "جەريان چىقىرىش", "Upload Progress": "چىقىرىش جەريانى", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploaded files or images": "", "Uploading file...": "", "URL": "URL", "URL is required": "", @@ -1747,6 +1793,7 @@ "User Groups": "", "User location successfully retrieved.": "ئىشلەتكۈچى ئورنى مۇۋەپپەقىيەتلىك ئېلىندى.", "User menu": "", + "User ratings (thumbs up/down)": "", "User Webhooks": "ئىشلەتكۈچى Webhookلىرى", "Username": "ئىشلەتكۈچى نامى", "users": "", @@ -1796,15 +1843,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI \"{{url}}/chat/completions\" غا تەلەپ يوللايدۇ", "What are you trying to achieve?": "نېمىگە ئېرىشمىكچىسىز؟", "What are you working on?": "نېمە ئىش قىلىۋاتىسىز؟", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "يېڭىلىق", "What's on your mind?": "", "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.": "قوزغىتىلسا، مودېل ھەر بىر سۆھبەت ئۇچۇرىغا ۋاقىتدا ئىنكاس قايتۇرىدۇ. بۇ ھالىتى تۇرۇشلۇق سۆھبەت ئۈچۈن پايدىلىق، بىراق ئاستا ئۈسكۈنىدە ئۈنۈمگە تەسىر قىلىدۇ.", "wherever you are": "قايسى يەردە بولسىڭىزمۇ", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "چىقىرىشنى بەتلەندۈرۈش ئۈچۈن ئىشلىتىلدۇ. ھەربىر بەت گىزىكچىلەر بىلەن ئايرىلىدۇ. كۆڭۈلدىكىچە چەكلەنگەن.", "Whisper (Local)": "Whisper (يەرلىك)", + "Who can share to this group": "", "Why?": "نېمىشقا؟", "Widescreen Mode": "كەڭ ئېكران ھالىتى", "Width": "", + "Wikipedia": "", "Won": "ئۇتتى", "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.": "top-k بىلەن بىرلىكتە ئىشلىتىلىدۇ. چوڭ قىممەت (مەسىلەن: 0.95) كۆپ خىل تېكست، كىچىك قىممەت (مەسىلەن: 0.5) تېخىمۇ مۇقىم تېكست چىقىرىدۇ.", "Workspace": "ئىشخانا", @@ -1816,6 +1867,8 @@ "Yacy Instance URL": "Yacy مىسال URL", "Yacy Password": "Yacy پارول", "Yacy Username": "Yacy ئىشلەتكۈچى نامى", + "Yahoo": "", + "Yandex": "", "Yesterday": "تۈنۈگۈن", "Yesterday at {{LOCALIZED_TIME}}": "", "You": "سىز", @@ -1823,6 +1876,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "بىرى ۋاقىتتا ئەڭ كۆپ {{maxCount}} ھۆججەت بىلەن سۆھبەتلىشەلەيسىز.", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "تۆۋەندىكى 'باشقۇرۇش' كۇنۇپكىسى ئارقىلىق ئەسلەتمە قوشۇپ LLM بىلەن مۇناسىۋىتىڭىزنى شەخسىيلاشتۇرالايسىز.", "You cannot upload an empty file.": "قۇرۇق ھۆججەت چىقىرىشقا بولمايدۇ.", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this thread.": "", "You do not have permission to upload files to this knowledge base.": "", @@ -1834,6 +1890,8 @@ "Your Account": "", "Your account status is currently pending activation.": "ھېساباتىڭىزنىڭ ھازىرقى ھالىتى ئاكتىپلىنىشنى كۈتۈۋاتىدۇ.", "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.": "تۆلەم پۇلىڭىز بىۋاسىتە قىستۇرما تەرەققىياتچىسىغا بېرىلىدۇ؛ Open WebUI ھېچقانداق پىرسېنت ئالمايدۇ. بىراق تاللانغان مالىيە پلاتفورمىسىنىڭ ئۆزىنىڭ ھەققى بولۇشى مۇمكىن.", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "Youtube", "Youtube Language": "Youtube تىلى", "Youtube Proxy URL": "Youtube ۋاكالەتچى URL" diff --git a/src/lib/i18n/locales/uk-UA/translation.json b/src/lib/i18n/locales/uk-UA/translation.json index 076f81533..8510a17da 100644 --- a/src/lib/i18n/locales/uk-UA/translation.json +++ b/src/lib/i18n/locales/uk-UA/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "Зміни в цих налаштуваннях будуть застосовані для всіх користувачів.", "admin": "адмін", "Admin": "Адмін", + "Admin Contact Email": "", "Admin Panel": "Адмін-панель", "Admin Settings": "Адмін-панель", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Адміністратори мають доступ до всіх інструментів у будь-який час; користувачам потрібні інструменти, призначені для кожної моделі в робочій області.", @@ -101,7 +102,6 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "Дозволити завантаження файлів", - "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "Дозволити не локальні голоси", "Allow Rate Response": "", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "та ще {{COUNT}}", "and create a new shared link.": "і створіть нове спільне посилання.", "Android": "", + "Anyone": "", "API Base URL": "URL-адреса API", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "", "API Key": "Ключ API", @@ -175,6 +176,7 @@ "Authenticate": "Автентифікувати", "Authentication": "Аутентифікація", "Auto": "", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "Автокопіювання відповіді в буфер обміну", "Auto-playback response": "Автоматичне відтворення відповіді", "Autocomplete Generation": "Генерація автозаповнення", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "AUTOMATIC1111 Рядок авторизації API", "AUTOMATIC1111 Base URL": "URL-адреса AUTOMATIC1111", "AUTOMATIC1111 Base URL is required.": "Необхідна URL-адреса AUTOMATIC1111.", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "Список доступності", "Available Tools": "", "available users": "доступні користувачі", @@ -201,6 +204,7 @@ "before": "до того, як", "Being lazy": "Не поспішати", "Beta": "Beta", + "Bing": "", "Bing Search V7 Endpoint": "Точка доступу Bing Search V7", "Bing Search V7 Subscription Key": "Ключ підписки Bing Search V7", "Bio": "", @@ -209,7 +213,9 @@ "Bocha Search API Key": "Ключ API пошуку Bocha", "Bold": "", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Підсилення або штрафування конкретних токенів для обмежених відповідей. Значення зміщення будуть обмежені між -100 і 100 (включно). (За замовчуванням: відсутнє)", + "Brave": "", "Brave Search API Key": "Ключ API пошуку Brave", + "Builtin Tools": "", "Bullet List": "", "Button ID": "", "Button Label": "", @@ -256,8 +262,10 @@ "Check for updates": "Перевірити оновлення", "Checking for updates...": "Перевірка оновлень...", "Choose a model before saving...": "Оберіть модель перед збереженням...", + "Chunk Min Size Target": "", "Chunk Overlap": "Перекриття фрагментів", "Chunk Size": "Розмір фрагменту", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "Шифри", "Citation": "Цитування", "Citations": "", @@ -293,7 +301,6 @@ "Code Block": "", "Code Editor": "", "Code execution": "Виконання коду", - "Code Execution": "Виконання коду", "Code Execution Engine": "Рушій виконання коду", "Code Execution Timeout": "Тайм-аут виконання коду", "Code formatted successfully": "Код успішно відформатовано", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "Зверніться до адміна для отримання доступу до WebUI", "Content": "Зміст", "Content Extraction Engine": "Рушій вилучення контенту", + "Content lengths (character counts only)": "", "Continue Response": "Продовжити відповідь", "Continue with {{provider}}": "Продовжити з {{provider}}", "Continue with Email": "Продовжити з електронною поштою", @@ -393,6 +401,7 @@ "Database": "База даних", "Datalab Marker API": "", "DD/MM/YYYY": "", + "DDGS Backend": "", "December": "Грудень", "Decrease UI Scale": "", "Deepgram": "", @@ -474,6 +483,7 @@ "Dive into knowledge": "Зануртесь у знання", "Do not install functions from sources you do not fully trust.": "Не встановлюйте функції з джерел, яким ви не повністю довіряєте.", "Do not install tools from sources you do not fully trust.": "Не встановлюйте інструменти з джерел, яким ви не повністю довіряєте.", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "Docling", "Docling Parameters": "", "Docling Server URL required.": "Потрібна URL-адреса сервера Docling.", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "", "Document Intelligence Model": "", "Documentation": "Документація", - "Documents": "Документи", "does not make any external connections, and your data stays securely on your locally hosted server.": "не встановлює жодних зовнішніх з'єднань, і ваші дані залишаються в безпеці на вашому локальному сервері.", "Domain Filter List": "Список фільтрів доменів", "don't fetch random pipelines from sources you don't trust.": "Не отримуйте випадкові pipelines із джерел, яким ви не довіряєте.", @@ -493,11 +502,14 @@ "Done": "Готово", "Download": "Завантажити", "Download & Delete": "Завантажити та видалити", + "Download as JSON": "", "Download as SVG": "Завантажити як SVG", "Download canceled": "Завантаження скасовано", "Download Database": "Завантажити базу даних", + "Downloading stats...": "", "Draw": "Малювати", "Drop any files here to upload": "", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "напр., '30s','10m'. Дійсні одиниці часу: 'с', 'хв', 'г'.", "e.g. \"json\" or a JSON schema": "напр., \"json\" або схема JSON", "e.g. 60": "напр. 60", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "Введіть ключ API Bocha Search", "Enter Brave Search API Key": "Введіть ключ API для пошуку Brave", "Enter certificate path": "Введіть шлях до сертифіката", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "Введіть перекриття фрагменту", "Enter Chunk Size": "Введіть розмір фрагменту", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Введіть пари \"токен:значення_зміщення\", розділені комами (напр.: 5432:100, 413:-100)", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "", "Enter Firecrawl API Base URL": "", "Enter Firecrawl API Key": "", + "Enter Firecrawl Timeout": "", "Enter folder name": "", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "Введіть Raw URL-адресу Github", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "", "Enter ID": "", "Enter Image Size (e.g. 512x512)": "Введіть розмір зображення (напр., 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "Введіть ключ API Jina", "Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter Jupyter Password": "Введіть пароль Jupyter", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "Введіть ключ API Kagi Search", "Enter Key Behavior": "Введіть поведінку клавіші", "Enter language codes": "Введіть мовні коди", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "", "Enter Mistral API Key": "", "Enter Model ID": "Введіть ID моделі", @@ -736,6 +753,7 @@ "Failed to generate title": "", "Failed to import models": "", "Failed to load chat preview": "", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "", "Failed to move chat": "", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "Особливості", "Features Permissions": "Дозволи функцій", "February": "Лютий", + "Feedback": "", "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "Історія відгуків", - "Feedbacks": "Відгуки", "Feel free to add specific details": "Не соромтеся додавати конкретні деталі", "Female": "", "File": "Файл", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Виявлено підробку відбитків: Неможливо використовувати ініціали як аватар. Повернення до зображення профілю за замовчуванням.", "Firecrawl API Base URL": "", "Firecrawl API Key": "", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "", "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "Папку успішно видалено", + "Folder Max File Count": "", "Folder Name": "", "Folder name cannot be empty.": "Назва папки не може бути порожньою.", "Folder name updated successfully": "Назву папки успішно оновлено", @@ -826,7 +846,6 @@ "General": "Загальні", "Generate": "", "Generate an image": "Згенерувати зображення", - "Generate Image": "Створити зображення", "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Сформувати пошуковий запит", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "Почати з {{WEBUI_NAME}}", "Global": "Глоб.", "Good Response": "Гарна відповідь", + "Google": "", "Google Drive": "Google Drive", "Google PSE API Key": "Ключ API Google PSE", "Google PSE Engine Id": "Id рушія Google PSE", "Gravatar": "", "Grid": "", + "Grokipedia": "", "Group": "Група", "Group Channel": "", "Group created successfully": "Групу успішно створено", @@ -895,7 +916,6 @@ "Image Prompt Generation": "Генерація підказок для зображень", "Image Prompt Generation Prompt": "Підказка для генерації зображень", "Image Size": "", - "Images": "Зображення", "Import": "", "Import Chats": "Імпорт чатів", "Import Config from JSON File": "Імпорт конфігурації з файлу JSON", @@ -927,6 +947,7 @@ "Integration": "Інтеграція", "Integrations": "", "Interface": "Інтерфейс", + "Interface Settings Access": "", "Invalid file content": "", "Invalid file format.": "Неправильний формат файлу.", "Invalid JSON file": "", @@ -940,6 +961,7 @@ "is typing...": "друкує...", "Italic": "", "January": "Січень", + "Jina API Base URL": "", "Jina API Key": "Ключ API для Jina", "join our Discord for help.": "приєднуйтеся до нашого Discord для допомоги.", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "Залиште порожнім, щоб включити всі моделі з кінцевої точки \"{{url}}/api/tags\"", "Leave empty to include all models from \"{{url}}/models\" endpoint": "Залиште порожнім, щоб включити всі моделі з кінцевої точки \"{{url}}/models\"", "Leave empty to include all models or select specific models": "Залиште порожнім, щоб включити усі моделі, або виберіть конкретні моделі.", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "", "Leave empty to use the default prompt, or enter a custom prompt": "Залиште порожнім для використання стандартного запиту, або введіть власний запит", "Leave model field empty to use the default model.": "Залиште поле моделі порожнім, щоб використовувати модель за замовчуванням.", @@ -1029,10 +1052,12 @@ "Manage your account information.": "", "March": "Березень", "Markdown": "", - "Markdown (Header)": "", + "Markdown Header Text Splitter": "", "Max Speakers": "", "Max Upload Count": "Макс. кількість завантажень", "Max Upload Size": "Макс. розмір завантаження", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Максимум 3 моделі можна завантажити одночасно. Будь ласка, спробуйте пізніше.", "May": "Травень", "MBR": "", @@ -1042,6 +1067,7 @@ "Member removed successfully": "", "Members": "", "Members added successfully": "", + "Memories": "", "Memories accessible by LLMs will be shown here.": "Пам'ять, яка доступна LLM, буде показана тут.", "Memory": "Пам'ять", "Memory added successfully": "Пам'ять додано успішно", @@ -1051,6 +1077,7 @@ "Merge Responses": "Об'єднати відповіді", "Merged Response": "Об'єднана відповідь", "Message": "", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "Оцінювання повідомлень має бути увімкнено для використання цієї функції.", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Повідомлення, які ви надішлете після створення посилання, не будуть доступні для інших. Користувачі, які мають URL, зможуть переглядати спільний чат.", "Microsoft OneDrive": "", @@ -1083,9 +1110,11 @@ "Model Name": "Назва моделі", "Model name already exists, please choose a different one": "", "Model Name is required.": "", + "Model names and usage frequency": "", "Model not selected": "Модель не вибрана", "Model Params": "Параметри моделі", "Model Permissions": "Дозволи моделей", + "Model responses or outputs": "", "Model unloaded successfully": "", "Model updated successfully": "Модель успішно оновлено", "Model(s) do not support file upload": "", @@ -1096,6 +1125,7 @@ "Models imported successfully": "", "Models Public Sharing": "Публічний обмін моделями", "Models Sharing": "", + "Mojeek": "", "Mojeek Search API Key": "API ключ для пошуку Mojeek", "More": "Більше", "More Concise": "", @@ -1129,7 +1159,7 @@ "No conversation to save": "", "No distance available": "Відстань недоступна", "No expiration can pose security risks.": "", - "No feedbacks found": "Відгуків не знайдено", + "No feedback found": "", "No file selected": "Файл не обрано", "No files in this knowledge base.": "", "No functions found": "", @@ -1144,6 +1174,7 @@ "No models selected": "Моделі не вибрано", "No Notes": "", "No notes found": "", + "No one": "", "No pinned messages": "", "No prompts found": "", "No results": "Не знайдено жодного результату", @@ -1195,6 +1226,7 @@ "Only invited users can access": "", "Only markdown files are allowed": "", "Only select users and groups with permission can access": "Тільки вибрані користувачі та групи з дозволом можуть отримати доступ", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Упс! Схоже, що URL-адреса невірна. Будь ласка, перевірте ще раз та спробуйте ще раз.", "Oops! There are files still uploading. Please wait for the upload to complete.": "Упс! Деякі файли все ще завантажуються. Будь ласка, зачекайте, поки завантаження завершиться.", "Oops! There was an error in the previous response.": "Упс! Сталася помилка в попередній відповіді.", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "Open WebUI використовує faster-whisper внутрішньо.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI використовує вбудовування голосів SpeechT5 та CMU Arctic.", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Open WebUI версія (v{{OPEN_WEBUI_VERSION}}) нижча за необхідну версію (v{{REQUIRED_VERSION}})", "OpenAI": "OpenAI", "OpenAI API": "OpenAI API", @@ -1235,6 +1268,8 @@ "page": "сторінка", "Paginate": "", "Parameters": "", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "Пароль", "Passwords do not match.": "", "Paste Large Text as File": "Вставити великий текст як файл", @@ -1260,7 +1295,6 @@ "Pipe": "", "Pipeline deleted successfully": "Конвеєр успішно видалено", "Pipeline downloaded successfully": "Конвеєр успішно завантажено", - "Pipelines": "Конвеєри", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines — це система плагінів із довільним виконанням коду —", "Pipelines Not Detected": "Конвеєрів не знайдено", "Pipelines Valves": "Клапани конвеєрів", @@ -1500,6 +1534,7 @@ "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.": "Встановлює послідовності зупинки, які будуть використовуватися. Коли зустрічається така послідовність, LLM припиняє генерацію тексту і повертає результат. Можна встановити кілька послідовностей зупинки, вказавши кілька окремих параметрів зупинки у файлі моделі.", "Setting": "", "Settings": "Налаштування", + "Settings Permissions": "", "Settings saved successfully!": "Налаштування успішно збережено!", "Share": "Поділитися", "Share Chat": "Поділитися чатом", @@ -1543,6 +1578,7 @@ "Speech recognition error: {{error}}": "Помилка розпізнавання мови: {{error}}", "Speech-to-Text": "", "Speech-to-Text Engine": "Система розпізнавання мови", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "", "Start of the channel": "Початок каналу", "Start Tag": "", @@ -1553,6 +1589,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Зупинити", + "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Символ зупинки", "Stream Chat Response": "Відповідь стрім-чату", @@ -1573,7 +1610,14 @@ "Support": "Підтримати", "Support this plugin:": "Підтримайте цей плагін:", "Supported MIME Types": "", + "Sync": "", + "Sync Complete!": "", "Sync directory": "Синхронізувати каталог", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "Система", "System Instructions": "Системні інструкції", "System Prompt": "Системний промт", @@ -1618,6 +1662,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "", "The width in pixels to compress images to. Leave empty for no compression.": "", "Theme": "Тема", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "Думаю...", "This action cannot be undone. Do you wish to continue?": "Цю дію не можна скасувати. Ви бажаєте продовжити?", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "Цей канал був створений {{createdAt}}. Це самий початок каналу {{channelName}}.", @@ -1732,6 +1777,7 @@ "Upload Pipeline": "Завантажити конвеєр", "Upload Progress": "Прогрес завантаження", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploaded files or images": "", "Uploading file...": "", "URL": "URL", "URL is required": "", @@ -1749,6 +1795,7 @@ "User Groups": "", "User location successfully retrieved.": "Місцезнаходження користувача успішно знайдено.", "User menu": "", + "User ratings (thumbs up/down)": "", "User Webhooks": "Вебхуки користувача", "Username": "Ім'я користувача", "users": "", @@ -1798,15 +1845,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI надсилатиме запити до \"{{url}}/chat/completions\"", "What are you trying to achieve?": "Чого ви прагнете досягти?", "What are you working on?": "Над чим ти працюєш?", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "Що нового в", "What's on your mind?": "", "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.": "Коли активовано, модель буде відповідати на кожне повідомлення чату в режимі реального часу, генеруючи відповідь, як тільки користувач надішле повідомлення. Цей режим корисний для застосувань життєвих вітань чатів, але може позначитися на продуктивності на повільнішому апаратному забезпеченні.", "wherever you are": "де б ви не були", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whisper (Local)": "Whisper (Локально)", + "Who can share to this group": "", "Why?": "Чому?", "Widescreen Mode": "Широкоекранний режим", "Width": "", + "Wikipedia": "", "Won": "Переможець", "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.": "Працює разом із top-k. Вищий показник (напр., 0.95) призведе до більш різноманітного тексту, тоді як нижчий показник (напр., 0.5) згенерує більш сфокусований та консервативний текст.", "Workspace": "Робочий простір", @@ -1818,6 +1869,8 @@ "Yacy Instance URL": "", "Yacy Password": "", "Yacy Username": "", + "Yahoo": "", + "Yandex": "", "Yesterday": "Вчора", "Yesterday at {{LOCALIZED_TIME}}": "", "You": "Ви", @@ -1825,6 +1878,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Ви можете спілкуватися лише з максимальною кількістю {{maxCount}} файлів одночасно.", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Ви можете налаштувати ваші взаємодії з мовними моделями, додавши спогади через кнопку 'Керувати' внизу, що зробить їх більш корисними та персоналізованими для вас.", "You cannot upload an empty file.": "Ви не можете завантажити порожній файл.", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this thread.": "", "You do not have permission to upload files to this knowledge base.": "", @@ -1836,6 +1892,8 @@ "Your Account": "", "Your account status is currently pending activation.": "Статус вашого облікового запису наразі очікує на активацію.", "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.": "Весь ваш внесок піде безпосередньо розробнику плагіна; Open WebUI не бере жодних відсотків. Однак, обрана платформа фінансування може мати свої власні збори.", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "Youtube", "Youtube Language": "Мова YouTube", "Youtube Proxy URL": "URL проксі-сервера YouTube" diff --git a/src/lib/i18n/locales/ur-PK/translation.json b/src/lib/i18n/locales/ur-PK/translation.json index f6d5ae515..596723c38 100644 --- a/src/lib/i18n/locales/ur-PK/translation.json +++ b/src/lib/i18n/locales/ur-PK/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "ان سیٹنگز کو ایڈجسٹ کرنے سے تمام صارفین کے لئے تبدیلیاں یکساں طور پر نافذ ہوں گی", "admin": "ایڈمن", "Admin": "ایڈمن", + "Admin Contact Email": "", "Admin Panel": "ایڈمن پینل", "Admin Settings": "ایڈمن ترتیبات", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "ایڈمنز کو ہر وقت تمام ٹولز تک رسائی حاصل ہوتی ہے؛ صارفین کو ورک سپیس میں ماڈل کے حساب سے ٹولز تفویض کرنے کی ضرورت ہوتی ہے", @@ -101,7 +102,6 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "", - "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "غیر مقامی آوازوں کی اجازت دیں", "Allow Rate Response": "", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "اور {{COUNT}} مزید", "and create a new shared link.": "اور ایک نیا مشترکہ لنک بنائیں", "Android": "", + "Anyone": "", "API Base URL": "API بنیادی URL", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "", "API Key": "اے پی آئی کلید", @@ -175,6 +176,7 @@ "Authenticate": "", "Authentication": "", "Auto": "", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "جواب خودکار طور پر کلپ بورڈ پر کاپی ہو گیا", "Auto-playback response": "آٹو پلے بیک جواب", "Autocomplete Generation": "", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "AUTOMATIC1111 ایپلی کیشن کا تصدیقی سلسلہ", "AUTOMATIC1111 Base URL": "AUTOMATIC1111 بنیادی URL", "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 بنیادی URL درکار ہے", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "دستیاب فہرست", "Available Tools": "", "available users": "دستیاب صارفین", @@ -201,6 +204,7 @@ "before": "پہلے", "Being lazy": "سستی کر رہا ہے", "Beta": "", + "Bing": "", "Bing Search V7 Endpoint": "", "Bing Search V7 Subscription Key": "", "Bio": "", @@ -209,7 +213,9 @@ "Bocha Search API Key": "", "Bold": "", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "", + "Brave": "", "Brave Search API Key": "بریو سرچ API کلید", + "Builtin Tools": "", "Bullet List": "", "Button ID": "", "Button Label": "", @@ -256,8 +262,10 @@ "Check for updates": "تازہ ترین معلومات کے لیے چیک کریں", "Checking for updates...": "تازہ ترین معلومات کی جانچ کر رہا ہے...", "Choose a model before saving...": "محفوظ کرنے سے پہلے ایک ماڈل منتخب کریں...", + "Chunk Min Size Target": "", "Chunk Overlap": "حصے کی اوورلیپ", "Chunk Size": "چنک سائز", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "", "Citation": "حوالہ", "Citations": "", @@ -293,7 +301,6 @@ "Code Block": "", "Code Editor": "", "Code execution": "کوڈ کا نفاذ", - "Code Execution": "", "Code Execution Engine": "", "Code Execution Timeout": "", "Code formatted successfully": "کوڈ کامیابی سے فارمیٹ ہو گیا", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "ویب یو آئی رسائی کے لیے ایڈمن سے رابطہ کریں", "Content": "مواد", "Content Extraction Engine": "", + "Content lengths (character counts only)": "", "Continue Response": "ردعمل جاری رکھیں", "Continue with {{provider}}": "{{provider}} کے ساتھ جاری رکھیں", "Continue with Email": "", @@ -393,6 +401,7 @@ "Database": "ڈیٹا بیس", "Datalab Marker API": "", "DD/MM/YYYY": "", + "DDGS Backend": "", "December": "دسمبر", "Decrease UI Scale": "", "Deepgram": "", @@ -474,6 +483,7 @@ "Dive into knowledge": "", "Do not install functions from sources you do not fully trust.": "ایسی جگہوں سے فنکشنز انسٹال نہ کریں جن پر آپ مکمل بھروسہ نہیں کرتے", "Do not install tools from sources you do not fully trust.": "جن ذرائع پر آپ مکمل بھروسہ نہیں کرتے، ان سے ٹولز انسٹال نہ کریں", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "", "Docling Parameters": "", "Docling Server URL required.": "", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "", "Document Intelligence Model": "", "Documentation": "دستاویزات", - "Documents": "دستاویزات", "does not make any external connections, and your data stays securely on your locally hosted server.": "آپ کا ڈیٹا مقامی طور پر میزبانی شدہ سرور پر محفوظ رہتا ہے اور کوئی بیرونی رابطے نہیں بناتا", "Domain Filter List": "", "don't fetch random pipelines from sources you don't trust.": "جن ذرائع پر آپ بھروسہ نہیں کرتے ان سے بے ترتیب پائپ لائنز نہ لیں۔", @@ -493,11 +502,14 @@ "Done": "ہو گیا", "Download": "ڈاؤن لوڈ کریں", "Download & Delete": "ڈاؤن لوڈ اور حذف کریں", + "Download as JSON": "", "Download as SVG": "", "Download canceled": "ڈاؤن لوڈ منسوخ کر دیا گیا", "Download Database": "ڈیٹا بیس ڈاؤن لوڈ کریں", + "Downloading stats...": "", "Draw": "ڈرائنگ کریں", "Drop any files here to upload": "", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "مثلاً '30s'، '10m' درست وقت کی اکائیاں ہیں 's'، 'm'، 'h'", "e.g. \"json\" or a JSON schema": "", "e.g. 60": "", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "", "Enter Brave Search API Key": "بریو سرچ API کلید درج کریں", "Enter certificate path": "", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "چنک اوورلیپ درج کریں", "Enter Chunk Size": "چنک سائز درج کریں", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "", "Enter Firecrawl API Base URL": "", "Enter Firecrawl API Key": "", + "Enter Firecrawl Timeout": "", "Enter folder name": "", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "گیٹ ہب را یو آر ایل درج کریں", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "", "Enter ID": "", "Enter Image Size (e.g. 512x512)": "تصویر کا سائز درج کریں (مثال: 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "", "Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter Jupyter Password": "", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "", "Enter Key Behavior": "", "Enter language codes": "زبان کے کوڈ درج کریں", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "", "Enter Mistral API Key": "", "Enter Model ID": "ماڈل آئی ڈی درج کریں", @@ -736,6 +753,7 @@ "Failed to generate title": "", "Failed to import models": "", "Failed to load chat preview": "", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "", "Failed to move chat": "", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "", "Features Permissions": "", "February": "فروری", + "Feedback": "", "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "تاریخ رائے", - "Feedbacks": "", "Feel free to add specific details": "تفصیلات شامل کرنے کے لیے آزاد محسوس کریں", "Female": "", "File": "فائل", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "فنگر پرنٹ اسپورفنگ کا پتہ چلا: اوتار کے طور پر ابتدائی حروف استعمال کرنے سے قاصر ڈیفالٹ پروفائل تصویر منتخب کی جا رہی ہے", "Firecrawl API Base URL": "", "Firecrawl API Key": "", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "", "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "پوشہ کامیابی سے حذف ہو گیا", + "Folder Max File Count": "", "Folder Name": "", "Folder name cannot be empty.": "پوشے کا نام خالی نہیں ہو سکتا", "Folder name updated successfully": "فولڈر کا نام کامیابی سے اپ ڈیٹ ہوگیا", @@ -826,7 +846,6 @@ "General": "عمومی", "Generate": "", "Generate an image": "", - "Generate Image": "تصویر بنائیں", "Generate Message Pair": "", "Generated Image": "", "Generating search query": "تلاش کے لیے سوالیہ عبارت تیار کی جا رہی ہے", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "", "Global": "عالمی", "Good Response": "اچھا جواب", + "Google": "", "Google Drive": "", "Google PSE API Key": "گوگل پی ایس ای API کی کلید", "Google PSE Engine Id": "گوگل پی ایس ای انجن آئی ڈی", "Gravatar": "", "Grid": "", + "Grokipedia": "", "Group": "گروپ", "Group Channel": "", "Group created successfully": "", @@ -895,7 +916,6 @@ "Image Prompt Generation": "", "Image Prompt Generation Prompt": "", "Image Size": "", - "Images": "تصاویر", "Import": "", "Import Chats": "چیٹس درآمد کریں", "Import Config from JSON File": "JSON فائل سے تشکیلات درآمد کریں", @@ -927,6 +947,7 @@ "Integration": "", "Integrations": "", "Interface": "انٹرفیس", + "Interface Settings Access": "", "Invalid file content": "", "Invalid file format.": "غلط فائل فارمیٹ", "Invalid JSON file": "", @@ -940,6 +961,7 @@ "is typing...": "", "Italic": "", "January": "جنوری", + "Jina API Base URL": "", "Jina API Key": "", "join our Discord for help.": "مدد کے لئے ہمارے ڈسکارڈ میں شامل ہوں", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "", "Leave empty to include all models from \"{{url}}/models\" endpoint": "", "Leave empty to include all models or select specific models": "تمام ماڈلز کو شامل کرنے کے لئے خالی چھوڑ دیں یا مخصوص ماڈلز منتخب کریں", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "", "Leave empty to use the default prompt, or enter a custom prompt": "خالی چھوڑیں تاکہ ڈیفالٹ پرامپٹ استعمال ہو، یا ایک حسب ضرورت پرامپٹ درج کریں", "Leave model field empty to use the default model.": "", @@ -1029,10 +1052,12 @@ "Manage your account information.": "", "March": "مارچ", "Markdown": "", - "Markdown (Header)": "", + "Markdown Header Text Splitter": "", "Max Speakers": "", "Max Upload Count": "زیادہ سے زیادہ اپلوڈ تعداد", "Max Upload Size": "زیادہ سے زیادہ اپلوڈ سائز", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "بیک وقت زیادہ سے زیادہ 3 ماڈل ڈاؤن لوڈ کیے جا سکتے ہیں براہ کرم بعد میں دوبارہ کوشش کریں", "May": "مئی", "MBR": "", @@ -1042,6 +1067,7 @@ "Member removed successfully": "", "Members": "", "Members added successfully": "", + "Memories": "", "Memories accessible by LLMs will be shown here.": "یہاں LLMs کے ذریعہ قابل رسائی یادیں دکھائی جائیں گی", "Memory": "میموری", "Memory added successfully": "میموری کامیابی سے شامل کر دی گئی", @@ -1051,6 +1077,7 @@ "Merge Responses": "جوابات کو یکجا کریں", "Merged Response": "مرکب جواب", "Message": "", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "اس فیچر کو استعمال کرنے کے لئے پیغام کی درجہ بندی فعال کی جانی چاہئے", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "آپ کے لنک بنانے کے بعد بھیجے گئے پیغامات شیئر نہیں کیے جائیں گے یو آر ایل والے صارفین شیئر کیا گیا چیٹ دیکھ سکیں گے", "Microsoft OneDrive": "", @@ -1083,9 +1110,11 @@ "Model Name": "ماڈل نام", "Model name already exists, please choose a different one": "", "Model Name is required.": "", + "Model names and usage frequency": "", "Model not selected": "ماڈل منتخب نہیں ہوا", "Model Params": "ماڈل پیرامیٹرز", "Model Permissions": "", + "Model responses or outputs": "", "Model unloaded successfully": "", "Model updated successfully": "ماڈل کامیابی کے ساتھ اپ ڈیٹ ہو گیا", "Model(s) do not support file upload": "", @@ -1096,6 +1125,7 @@ "Models imported successfully": "", "Models Public Sharing": "", "Models Sharing": "", + "Mojeek": "", "Mojeek Search API Key": "", "More": "مزید", "More Concise": "", @@ -1129,7 +1159,7 @@ "No conversation to save": "", "No distance available": "فاصلہ دستیاب نہیں ہے", "No expiration can pose security risks.": "", - "No feedbacks found": "کوئی تبصرے نہیں ملے", + "No feedback found": "", "No file selected": "کوئی فائل منتخب نہیں کی گئی", "No files in this knowledge base.": "", "No functions found": "", @@ -1144,6 +1174,7 @@ "No models selected": "", "No Notes": "", "No notes found": "", + "No one": "", "No pinned messages": "", "No prompts found": "", "No results": "کوئی نتائج نہیں ملے", @@ -1195,6 +1226,7 @@ "Only invited users can access": "", "Only markdown files are allowed": "", "Only select users and groups with permission can access": "", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "اوہ! لگتا ہے کہ یو آر ایل غلط ہے براۂ کرم دوبارہ چیک کریں اور دوبارہ کوشش کریں", "Oops! There are files still uploading. Please wait for the upload to complete.": "اوہ! کچھ فائلیں ابھی بھی اپ لوڈ ہو رہی ہیں براہ کرم اپ لوڈ مکمل ہونے کا انتظار کریں", "Oops! There was an error in the previous response.": "اوہ! پچھلے جواب میں ایک غلطی تھی", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "اوپن ویب یو آئی اندرونی طور پر فاسٹر وِسپر استعمال کرتا ہے", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "اوپن WebUI ورژن (v{{OPEN_WEBUI_VERSION}}) مطلوبہ ورژن (v{{REQUIRED_VERSION}}) سے کم ہے", "OpenAI": "اوپن اے آئی", "OpenAI API": "اوپن اے آئی اے پی آئی\n", @@ -1235,6 +1268,8 @@ "page": "صفحہ", "Paginate": "", "Parameters": "", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "پاس ورڈ", "Passwords do not match.": "", "Paste Large Text as File": "", @@ -1260,7 +1295,6 @@ "Pipe": "", "Pipeline deleted successfully": "پائپ لائن کامیابی سے حذف کر دی گئی", "Pipeline downloaded successfully": "پائپ لائن کامیابی سے ڈاؤن لوڈ ہو گئی", - "Pipelines": "پائپ لائنز", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines ایک پلگ اِن نظام ہے جس میں من مانی کوڈ چلایا جا سکتا ہے —", "Pipelines Not Detected": "پائپ لائنز کی نشاندہی نہیں ہوئی", "Pipelines Valves": "پائپ لائنز والوز", @@ -1498,6 +1532,7 @@ "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.": "", "Setting": "", "Settings": "ترتیبات", + "Settings Permissions": "", "Settings saved successfully!": "ترتیبات کامیابی کے ساتھ محفوظ ہو گئیں!", "Share": "اشتراک کریں", "Share Chat": "چیٹ شیئر کریں", @@ -1541,6 +1576,7 @@ "Speech recognition error: {{error}}": "تقریر کی پہچان کی خرابی: {{error}}", "Speech-to-Text": "", "Speech-to-Text Engine": "تقریر-سے-متن انجن", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "", "Start of the channel": "چینل کی شروعات", "Start Tag": "", @@ -1551,6 +1587,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "روکیں", + "Stop Download": "", "Stop Generating": "", "Stop Sequence": "ترتیب روکیں", "Stream Chat Response": "اسٹریم چیٹ جواب", @@ -1571,7 +1608,14 @@ "Support": "مدد کریں", "Support this plugin:": "اس پلگ ان کی حمایت کریں:", "Supported MIME Types": "", + "Sync": "", + "Sync Complete!": "", "Sync directory": "ڈائریکٹری مطابقت پذیری کریں", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "سسٹم", "System Instructions": "نظام کی ہدایات", "System Prompt": "سسٹم پرومپٹ", @@ -1616,6 +1660,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "", "The width in pixels to compress images to. Leave empty for no compression.": "", "Theme": "تھیم", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "سوچ رہا ہے...", "This action cannot be undone. Do you wish to continue?": "یہ عمل واپس نہیں کیا جا سکتا کیا آپ جاری رکھنا چاہتے ہیں؟", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "", @@ -1730,6 +1775,7 @@ "Upload Pipeline": "اپ لوڈ پائپ لائن", "Upload Progress": "اپ لوڈ کی پیش رفت", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploaded files or images": "", "Uploading file...": "", "URL": "", "URL is required": "", @@ -1747,6 +1793,7 @@ "User Groups": "", "User location successfully retrieved.": "صارف کا مقام کامیابی سے حاصل کیا گیا", "User menu": "", + "User ratings (thumbs up/down)": "", "User Webhooks": "", "Username": "", "users": "", @@ -1796,15 +1843,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "", "What are you trying to achieve?": "", "What are you working on?": "", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "میں نیا کیا ہے", "What's on your mind?": "", "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.": "", "wherever you are": "", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whisper (Local)": "سرگوشی (مقامی)", + "Who can share to this group": "", "Why?": "", "Widescreen Mode": "وائڈ اسکرین موڈ", "Width": "", + "Wikipedia": "", "Won": "جیتا", "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.": "", "Workspace": "ورک اسپیس", @@ -1816,6 +1867,8 @@ "Yacy Instance URL": "", "Yacy Password": "", "Yacy Username": "", + "Yahoo": "", + "Yandex": "", "Yesterday": "کل", "Yesterday at {{LOCALIZED_TIME}}": "", "You": "آپ", @@ -1823,6 +1876,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "آپ ایک وقت میں زیادہ سے زیادہ {{maxCount}} فائل(وں) کے ساتھ صرف چیٹ کر سکتے ہیں", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "آپ نیچے موجود 'Manage' بٹن کے ذریعے LLMs کے ساتھ اپنی بات چیت کو یادداشتیں شامل کرکے ذاتی بنا سکتے ہیں، جو انہیں آپ کے لیے زیادہ مددگار اور آپ کے متعلق بنائے گی", "You cannot upload an empty file.": "آپ خالی فائل اپلوڈ نہیں کر سکتے", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this thread.": "", "You do not have permission to upload files to this knowledge base.": "", @@ -1834,6 +1890,8 @@ "Your Account": "", "Your account status is currently pending activation.": "آپ کے اکاؤنٹ کی حالت فی الحال فعال ہونے کے منتظر ہے", "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.": "آپ کی پوری شراکت براہ راست پلگ ان ڈیولپر کو جائے گی؛ اوپن ویب یو آئی کوئی فیصد نہیں لیتی تاہم، منتخب کردہ فنڈنگ پلیٹ فارم کی اپنی فیس ہو سکتی ہیں", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "یوٹیوب", "Youtube Language": "", "Youtube Proxy URL": "" diff --git a/src/lib/i18n/locales/uz-Cyrl-UZ/translation.json b/src/lib/i18n/locales/uz-Cyrl-UZ/translation.json index f22161ec1..a7d8b0db6 100644 --- a/src/lib/i18n/locales/uz-Cyrl-UZ/translation.json +++ b/src/lib/i18n/locales/uz-Cyrl-UZ/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "Ушбу созламаларни ўзгартириш барча фойдаланувчиларга универсал тарзда қўлланилади.", "admin": "админ", "Admin": "Админ", + "Admin Contact Email": "", "Admin Panel": "Администратор панели", "Admin Settings": "Администратор созламалари", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Администраторлар ҳар доим барча воситалардан фойдаланишлари мумкин; фойдаланувчиларга иш жойида ҳар бир модел учун тайинланган воситалар керак бўлади.", @@ -101,7 +102,6 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "Файл юклашга рухсат беринг", - "Allow Group Sharing": "", "Allow Multiple Models in Chat": "Чатда бир нечта моделларга рухсат беринг", "Allow non-local voices": "Маҳаллий бўлмаган овозларга рухсат беринг", "Allow Rate Response": "", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "ва яна {{COUNT}} та", "and create a new shared link.": "ва янги умумий ҳавола яратинг.", "Android": "Андроид", + "Anyone": "", "API Base URL": "Дастурий Илова Интерфейси(API) bazaviy URL manzili", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "", "API Key": "Дастурий Илова Интерфейси(API) калити", @@ -175,6 +176,7 @@ "Authenticate": "Аутентификация қилиш", "Authentication": "Аутентификация", "Auto": "Автоматик", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "Жавобни вақтинчалик хотирага автоматик нусхалаш", "Auto-playback response": "Автоматик ижро жавоби", "Autocomplete Generation": "Автотўлдиришни яратиш", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "AUTOMATIC1111 Api Auth String", "AUTOMATIC1111 Base URL": "AUTOMATIC1111 базавий манзил", "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 базавий манзил талаб қилинади.", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "Мавжуд рўйхат", "Available Tools": "Мавжуд асбоблар", "available users": "мавжуд фойдаланувчилар", @@ -201,6 +204,7 @@ "before": "олдин", "Being lazy": "Дангаса бўлиш", "Beta": "Бета", + "Bing": "", "Bing Search V7 Endpoint": "Bing Search V7 Endpoint", "Bing Search V7 Subscription Key": "Bing Search V7 Subscription Key", "Bio": "", @@ -209,7 +213,9 @@ "Bocha Search API Key": "Bocha Search API Key", "Bold": "", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Чекланган жавоблар учун махсус токенларни кучайтириш ёки жазолаш. Йўналтирилган қийматлар -100 ва 100 (шу жумладан) оралиғида маҳкамланади. (Бирламчи: йўқ)", + "Brave": "", "Brave Search API Key": "Brave Search API Key", + "Builtin Tools": "", "Bullet List": "", "Button ID": "", "Button Label": "", @@ -256,8 +262,10 @@ "Check for updates": "Янгиланишларни текширинг", "Checking for updates...": "Янгиланишлар текширилмоқда...", "Choose a model before saving...": "Сақлашдан олдин моделни танланг...", + "Chunk Min Size Target": "", "Chunk Overlap": "Бўлакларнинг бир-бирига ўхшашлиги", "Chunk Size": "Бўлак ҳажми", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "Шифрлар", "Citation": "Иқтибос", "Citations": "Иқтибослар", @@ -293,7 +301,6 @@ "Code Block": "", "Code Editor": "", "Code execution": "Коднинг бажарилиши", - "Code Execution": "Коднинг бажарилиши", "Code Execution Engine": "Кодни бажариш механизми", "Code Execution Timeout": "Кодни бажариш вақти тугаши", "Code formatted successfully": "Код муваффақиятли форматланди", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "WebUIга кириш учун администратор билан боғланинг", "Content": "Таркиб", "Content Extraction Engine": "Контентни ажратиб олиш механизми", + "Content lengths (character counts only)": "", "Continue Response": "Жавоб беришни давом эттириш", "Continue with {{provider}}": "{{provider}} билан давом этинг", "Continue with Email": "Электрон почта орқали давом этинг", @@ -393,6 +401,7 @@ "Database": "Маълумотлар базаси", "Datalab Marker API": "Datalab Marker API", "DD/MM/YYYY": "", + "DDGS Backend": "", "December": "декабр", "Decrease UI Scale": "", "Deepgram": "", @@ -474,6 +483,7 @@ "Dive into knowledge": "Билимга шўнғинг", "Do not install functions from sources you do not fully trust.": "Тўлиқ ишонмайдиган манбалардан функсияларни ўрнатманг.", "Do not install tools from sources you do not fully trust.": "Ўзингиз ишонмайдиган манбалардан асбобларни ўрнатманг.", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "Доклинг", "Docling Parameters": "", "Docling Server URL required.": "Доcлинг Сервер URL манзили талаб қилинади.", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "", "Document Intelligence Model": "", "Documentation": "Ҳужжатлар", - "Documents": "Ҳужжатлар", "does not make any external connections, and your data stays securely on your locally hosted server.": "ҳеч қандай ташқи уланишларни амалга оширмайди ва сизнинг маълумотларингиз маҳаллий серверингизда хавфсиз сақланади.", "Domain Filter List": "Домен филтрлари рўйхати", "don't fetch random pipelines from sources you don't trust.": "Ишончсиз манбалардан тасодифий pipeline-ларни олманг.", @@ -493,11 +502,14 @@ "Done": "Бажарилди", "Download": "Юклаб олиш", "Download & Delete": "Юклаб олиш ва ўчириш", + "Download as JSON": "", "Download as SVG": "СВГ сифатида юклаб олинг", "Download canceled": "Юклаб олиш бекор қилинди", "Download Database": "Маълумотлар базасини юклаб олиш", + "Downloading stats...": "", "Draw": "Чизиш", "Drop any files here to upload": "Юклаш учун исталган файлни шу ерга ташланг", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "масалан. 30s, 10m. Яроқли вақт бирликлари 's', 'm', 'h'.", "e.g. \"json\" or a JSON schema": "масалан. \"json\" ёки JSON схемаси", "e.g. 60": "масалан, 60", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "Bocha Search API Key калитини киритинг", "Enter Brave Search API Key": "Brave Search API Key калитини киритинг", "Enter certificate path": "Сертификат йўлини киритинг", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "Chunk Overlap киритинг", "Enter Chunk Size": "Chunk ҳажмини киритинг", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Вергул билан ажратилган \"token:bias_value\" жуфтларини киритинг (мисол: 5432:100, 413:-100)", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "Ташқи веб-қидирув УРЛ манзилини киритинг", "Enter Firecrawl API Base URL": "Firecrawl АПИ базаси УРЛ манзилини киритинг", "Enter Firecrawl API Key": "Firecrawl АПИ калитини киритинг", + "Enter Firecrawl Timeout": "", "Enter folder name": "", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "Github Raw УРЛ манзилини киритинг", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "", "Enter ID": "", "Enter Image Size (e.g. 512x512)": "Расм ҳажмини киритинг (масалан, 512х512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "Jina АПИ калитини киритинг", "Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter Jupyter Password": "Jupiter паролини киритинг", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "Kagi Search АПИ калитини киритинг", "Enter Key Behavior": "Асосий хатти-ҳаракатни киритинг", "Enter language codes": "Тил кодларини киритинг", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "", "Enter Mistral API Key": "Mistral АПИ калитини киритинг", "Enter Model ID": "Модел идентификаторини киритинг", @@ -736,6 +753,7 @@ "Failed to generate title": "", "Failed to import models": "", "Failed to load chat preview": "", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "Файл таркибини юклаб бўлмади.", "Failed to move chat": "", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "Хусусиятлари", "Features Permissions": "Хусусиятлар Рухсатлар", "February": "Феврал", + "Feedback": "", "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "Фикр-мулоҳаза тарихи", - "Feedbacks": "Фикр-мулоҳазалар", "Feel free to add specific details": "Муайян тафсилотларни қўшишингиз мумкин", "Female": "", "File": "Файл", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Бармоқ изи алдаш аниқланди: аватар сифатида бош ҳарфлардан фойдаланиш имконсиз. Стандарт профил расми.", "Firecrawl API Base URL": "Firecrawl АПИ асосий УРЛ манзили", "Firecrawl API Key": "Firecrawl АПИ калити", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "", "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "Жилд муваффақиятли ўчирилди", + "Folder Max File Count": "", "Folder Name": "", "Folder name cannot be empty.": "Жилд номи бўш бўлиши мумкин эмас.", "Folder name updated successfully": "Жилд номи муваффақиятли янгиланди", @@ -826,7 +846,6 @@ "General": "Умумий", "Generate": "Яратиш", "Generate an image": "Тасвир яратиш", - "Generate Image": "Расм яратиш", "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Қидирув сўрови яратилмоқда", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "{{WEBUI_NAME}} билан бошланг", "Global": "Глобал", "Good Response": "Яхши жавоб", + "Google": "", "Google Drive": "Гоогле Дриве", "Google PSE API Key": "Гоогле ПСЕ АПИ калити", "Google PSE Engine Id": "Гоогле ПСЕ Энгине идентификатори", "Gravatar": "", "Grid": "", + "Grokipedia": "", "Group": "Гуруҳ", "Group Channel": "", "Group created successfully": "Гуруҳ муваффақиятли яратилди", @@ -895,7 +916,6 @@ "Image Prompt Generation": "Тасвир сўровини яратиш", "Image Prompt Generation Prompt": "Тасвир сўровини яратиш таклифи", "Image Size": "", - "Images": "Тасвирлар", "Import": "Импорт", "Import Chats": "Чатларни импорт қилиш", "Import Config from JSON File": "ЖСОН файлидан конфигурацияни импорт қилинг", @@ -927,6 +947,7 @@ "Integration": "Интеграция", "Integrations": "", "Interface": "Интерфейс", + "Interface Settings Access": "", "Invalid file content": "Файл мазмуни нотўғри", "Invalid file format.": "Файл формати нотўғри.", "Invalid JSON file": "ЖСОН файли яроқсиз", @@ -940,6 +961,7 @@ "is typing...": "ёзмоқда...", "Italic": "", "January": "Январ", + "Jina API Base URL": "", "Jina API Key": "Жина АПИ калити", "join our Discord for help.": "ёрдам учун Дисcордимизга қўшилинг.", "JSON": "ЖСОН", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "“{{url}}/api/тагс” сўнгги нуқтасидаги барча моделларни киритиш учун бўш қолдиринг", "Leave empty to include all models from \"{{url}}/models\" endpoint": "“{{url}}/моделс” сўнгги нуқтасидаги барча моделларни киритиш учун бўш қолдиринг", "Leave empty to include all models or select specific models": "Барча моделларни киритиш ёки муайян моделларни танлаш учун бўш қолдиринг", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "", "Leave empty to use the default prompt, or enter a custom prompt": "Стандарт таклифдан фойдаланиш учун бўш қолдиринг ёки махсус таклифни киритинг", "Leave model field empty to use the default model.": "Стандарт моделдан фойдаланиш учун модел майдонини бўш қолдиринг.", @@ -1029,10 +1052,12 @@ "Manage your account information.": "", "March": "Март", "Markdown": "Маркдоwн", - "Markdown (Header)": "", + "Markdown Header Text Splitter": "", "Max Speakers": "Максимал динамиклар", "Max Upload Count": "Максимал юклаш сони", "Max Upload Size": "Максимал юклаш ҳажми", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Бир вақтнинг ўзида максимал 3 та моделни юклаб олиш мумкин. Кейинроқ қайта уриниб кўринг.", "May": "май", "MBR": "", @@ -1042,6 +1067,7 @@ "Member removed successfully": "", "Members": "", "Members added successfully": "", + "Memories": "", "Memories accessible by LLMs will be shown here.": "ЛЛМлар кириши мумкин бўлган хотиралар бу эрда кўрсатилади.", "Memory": "Хотира", "Memory added successfully": "Хотира муваффақиятли қўшилди", @@ -1051,6 +1077,7 @@ "Merge Responses": "Жавобларни бирлаштириш", "Merged Response": "Бирлаштирилган жавоб", "Message": "", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "Бу функсиядан фойдаланиш учун хабарлар рейтинги ёқилиши керак", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Ҳаволани яратганингиздан кейин юборган хабарларингиз улашилмайди. УРЛ манзили бўлган фойдаланувчилар умумий чатни кўришлари мумкин бўлади.", "Microsoft OneDrive": "Microsoft ОнеДриве", @@ -1083,9 +1110,11 @@ "Model Name": "Модел номи", "Model name already exists, please choose a different one": "", "Model Name is required.": "", + "Model names and usage frequency": "", "Model not selected": "Модел танланмаган", "Model Params": "Модел параметрлари", "Model Permissions": "Модел рухсатномалари", + "Model responses or outputs": "", "Model unloaded successfully": "Модел муваффақиятли юклаб олинди", "Model updated successfully": "Модел муваффақиятли янгиланди", "Model(s) do not support file upload": "Модел(лар) файлни юклашни қўллаб-қувватламайди", @@ -1096,6 +1125,7 @@ "Models imported successfully": "", "Models Public Sharing": "Моделларни оммавий алмашиш", "Models Sharing": "", + "Mojeek": "", "Mojeek Search API Key": "Можеэк қидирув АПИ калити", "More": "Кўпроқ", "More Concise": "", @@ -1129,7 +1159,7 @@ "No conversation to save": "", "No distance available": "Масофа мавжуд эмас", "No expiration can pose security risks.": "", - "No feedbacks found": "Ҳеч қандай фикр топилмади", + "No feedback found": "", "No file selected": "Ҳеч қандай файл танланмаган", "No files in this knowledge base.": "", "No functions found": "", @@ -1144,6 +1174,7 @@ "No models selected": "Ҳеч қандай модел танланмаган", "No Notes": "Қайдлар йўқ", "No notes found": "", + "No one": "", "No pinned messages": "", "No prompts found": "", "No results": "Ҳеч қандай натижа топилмади", @@ -1195,6 +1226,7 @@ "Only invited users can access": "", "Only markdown files are allowed": "Фақат маркдоwн файлларига рухсат берилади", "Only select users and groups with permission can access": "Фақат рухсати бор танланган фойдаланувчилар ва гуруҳларга кириш мумкин", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Вой! УРЛ нотўғри кўринади. Илтимос, икки марта текширинг ва қайта уриниб кўринг.", "Oops! There are files still uploading. Please wait for the upload to complete.": "Вой! Ҳали ҳам файллар юкланмоқда. Илтимос, юклаш тугашини кутинг.", "Oops! There was an error in the previous response.": "Вой! Аввалги жавобда хатолик юз берди.", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "Опен WебУИ ҳар қандай ОпенАПИ сервери томонидан тақдим этилган воситалардан фойдаланиши мумкин.", "Open WebUI uses faster-whisper internally.": "Опен WебУИ ички тез шивирлашдан фойдаланади.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Опен WебУИ СпеэчТ5 ва CМУ Арcтиc динамик ўрнатишларидан фойдаланади.", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Очиқ WебУИ версияси (в{{ОПЕН_WЕБУИ_ВЕРСИОН}}) талаб қилинган версиядан (в{{РЕҚУИРЕД_ВЕРСИОН}}) пастроқ", "OpenAI": "OpenAI", "OpenAI API": "OpenAI АПИ", @@ -1235,6 +1268,8 @@ "page": "саҳифа", "Paginate": "Саҳифалаш", "Parameters": "Параметрлар", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "Парол", "Passwords do not match.": "", "Paste Large Text as File": "Катта матнни файл сифатида жойлаштиринг", @@ -1260,7 +1295,6 @@ "Pipe": "", "Pipeline deleted successfully": "Қувур ўчирилди", "Pipeline downloaded successfully": "Қувур юклаб олинди", - "Pipelines": "Қувурлар", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines ихтиёрий код ишлатиш имконини берувчи плугин тизими —", "Pipelines Not Detected": "Қувурлар аниқланмади", "Pipelines Valves": "Қувур қувурлари клапанлари", @@ -1498,6 +1532,7 @@ "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.": "Фойдаланиш учун тўхташ кетма-кетликларини ўрнатади. Ушбу нақшга дуч келганда, ЛЛМ матн яратишни тўхтатади ва қайтиб келади. Модел файлида бир нечта алоҳида тўхташ параметрларини белгилаш орқали бир нечта тўхташ нақшлари ўрнатилиши мумкин.", "Setting": "", "Settings": "Созламалар", + "Settings Permissions": "", "Settings saved successfully!": "Созламалар муваффақиятли сақланди!", "Share": "Улашиш", "Share Chat": "Чатни улашиш", @@ -1541,6 +1576,7 @@ "Speech recognition error: {{error}}": "Нутқни аниқлашда хатолик: {{error}}", "Speech-to-Text": "", "Speech-to-Text Engine": "Нутқдан матнга восита", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "", "Start of the channel": "Канал боши", "Start Tag": "", @@ -1551,6 +1587,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "СТОП", + "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Кетма-кетликни тўхтатиш", "Stream Chat Response": "Chat жавобини юбориш", @@ -1571,7 +1608,14 @@ "Support": "Қўллаб-қувватлаш", "Support this plugin:": "Ушбу плагинни қўллаб-қувватланг:", "Supported MIME Types": "", + "Sync": "", + "Sync Complete!": "", "Sync directory": "Синхронлаш каталоги", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "Тизим", "System Instructions": "Тизим кўрсатмалари", "System Prompt": "Тизим сўрови", @@ -1616,6 +1660,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "", "The width in pixels to compress images to. Leave empty for no compression.": "", "Theme": "Мавзу", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "Ўйлаш...", "This action cannot be undone. Do you wish to continue?": "Бу амални ортга қайтариб бўлмайди. Давом этишни хоҳлайсизми?", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "Бу канал {{cреатедАт}} да яратилган. Бу {{чаннелНаме}} каналининг бошланиши.", @@ -1730,6 +1775,7 @@ "Upload Pipeline": "Қувур линиясини юклаш", "Upload Progress": "Юклаш жараёни", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploaded files or images": "", "Uploading file...": "", "URL": "УРЛ", "URL is required": "", @@ -1747,6 +1793,7 @@ "User Groups": "", "User location successfully retrieved.": "Фойдаланувчи жойлашуви муваффақиятли олинди.", "User menu": "", + "User ratings (thumbs up/down)": "", "User Webhooks": "Фойдаланувчи веб-ҳуклари", "Username": "Фойдаланувчи номи", "users": "", @@ -1796,15 +1843,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI \"{{url}}/chat/completions\" манзилига сўров юборади", "What are you trying to achieve?": "Нимага эришмоқчисиз?", "What are you working on?": "Нима устида ишлаяпсиз?", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "", "What's on your mind?": "", "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.": "Ёқилганда, модел реал вақт режимида ҳар бир чат хабарига жавоб беради ва фойдаланувчи хабар юбориши биланоқ жавоб ҳосил қилади. Ушбу режим жонли чат иловалари учун фойдалидир, лекин секинроқ ускунанинг ишлашига таъсир қилиши мумкин.", "wherever you are": "қаерда бўлсангиз ҳам", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "Чиқишни саҳифалаш керакми. Ҳар бир саҳифа горизонтал қоида ва саҳифа рақами билан ажратилади. Бирламчи параметрлар Фалсе.", "Whisper (Local)": "Шивирлаш (маҳаллий)", + "Who can share to this group": "", "Why?": "Нега?", "Widescreen Mode": "Кенг экран режими", "Width": "", + "Wikipedia": "", "Won": "Ғалаба қозонди", "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.": "top-k билан бирга ишлайди. Юқори қиймат (масалан, 0,95) матннинг хилма-хиллигига олиб келади, пастроқ қиймат эса (масалан, 0,5) кўпроқ диққатли ва консерватив матнни яратади.", "Workspace": "Иш майдони", @@ -1816,6 +1867,8 @@ "Yacy Instance URL": "Yacy Инстанcе УРЛ", "Yacy Password": "Yacy парол", "Yacy Username": "Yacy фойдаланувчи номи", + "Yahoo": "", + "Yandex": "", "Yesterday": "Кеча", "Yesterday at {{LOCALIZED_TIME}}": "", "You": "Сиз", @@ -1823,6 +1876,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Сиз бир вақтнинг ўзида кўпи билан {{махCоунт}} та файл(лар) билан суҳбатлашишингиз мумкин.", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Қуйидаги “Бошқариш” тугмаси орқали хотиралар қўшиш орқали ЛЛМлар билан ўзаро алоқаларингизни шахсийлаштиришингиз мумкин, бу уларни янада фойдалироқ ва сизга мослаштиради.", "You cannot upload an empty file.": "Сиз бўш файлни юклай олмайсиз.", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this thread.": "", "You do not have permission to upload files to this knowledge base.": "", @@ -1834,6 +1890,8 @@ "Your Account": "", "Your account status is currently pending activation.": "Ҳисобингиз ҳолати ҳозирда фаоллаштиришни кутмоқда.", "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.": "Сизнинг барча ҳиссангиз тўғридан-тўғри плагин ишлаб чиқарувчисига ўтади; Open WebUI ҳеч қандай фоизни олмайди. Бироқ, танланган молиялаштириш платформаси ўз тўловларига эга бўлиши мумкин.", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "Youtube", "Youtube Language": "Youtube тили", "Youtube Proxy URL": "Youtube прокси УРЛ" diff --git a/src/lib/i18n/locales/uz-Latn-Uz/translation.json b/src/lib/i18n/locales/uz-Latn-Uz/translation.json index 7059e57c9..d3b097aa6 100644 --- a/src/lib/i18n/locales/uz-Latn-Uz/translation.json +++ b/src/lib/i18n/locales/uz-Latn-Uz/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "Ushbu sozlamalarni o'zgartirish barcha foydalanuvchilarga universal tarzda qo'llaniladi.", "admin": "admin", "Admin": "Admin", + "Admin Contact Email": "", "Admin Panel": "Administrator paneli", "Admin Settings": "Administrator sozlamalari", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Administratorlar har doim barcha vositalardan foydalanishlari mumkin; foydalanuvchilarga ish joyida har bir model uchun tayinlangan vositalar kerak bo'ladi.", @@ -101,7 +102,6 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "Fayl yuklashga ruxsat bering", - "Allow Group Sharing": "", "Allow Multiple Models in Chat": "Chatda bir nechta modellarga ruxsat bering", "Allow non-local voices": "Mahalliy bo'lmagan ovozlarga ruxsat bering", "Allow Rate Response": "", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "va yana {{COUNT}} ta", "and create a new shared link.": "va yangi umumiy havola yarating.", "Android": "Android", + "Anyone": "", "API Base URL": "API bazasi URL", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "", "API Key": "API kaliti", @@ -175,6 +176,7 @@ "Authenticate": "Autentifikatsiya qilish", "Authentication": "Autentifikatsiya", "Auto": "Avtomatik", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "Javobni vaqtinchalik xotiraga avtomatik nusxalash", "Auto-playback response": "Avtomatik ijro javobi", "Autocomplete Generation": "Avtoto'ldirishni yaratish", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "AUTOMATIC1111 Api Auth String", "AUTOMATIC1111 Base URL": "AUTOMATIC1111 asosiy URL", "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 asosiy URL manzili talab qilinadi.", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "Mavjud ro'yxat", "Available Tools": "Mavjud asboblar", "available users": "mavjud foydalanuvchilar", @@ -201,6 +204,7 @@ "before": "oldin", "Being lazy": "Dangasa bo'lish", "Beta": "Beta", + "Bing": "", "Bing Search V7 Endpoint": "Bing Search V7 Endpoint", "Bing Search V7 Subscription Key": "Bing Search V7 obuna kaliti", "Bio": "", @@ -209,7 +213,9 @@ "Bocha Search API Key": "Bocha qidiruv API kaliti", "Bold": "", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Cheklangan javoblar uchun maxsus tokenlarni kuchaytirish yoki jazolash. Yo'naltirilgan qiymatlar -100 va 100 (shu jumladan) oralig'ida mahkamlanadi. (Birlamchi: yo‘q)", + "Brave": "", "Brave Search API Key": "Brave Search API kaliti", + "Builtin Tools": "", "Bullet List": "", "Button ID": "", "Button Label": "", @@ -256,8 +262,10 @@ "Check for updates": "Yangilanishlarni tekshiring", "Checking for updates...": "Yangilanishlar tekshirilmoqda...", "Choose a model before saving...": "Saqlashdan oldin modelni tanlang...", + "Chunk Min Size Target": "", "Chunk Overlap": "Bo'laklarning bir-biriga o'xshashligi", "Chunk Size": "Bo'lak hajmi", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "Shifrlar", "Citation": "Iqtibos", "Citations": "Iqtiboslar", @@ -293,7 +301,6 @@ "Code Block": "", "Code Editor": "", "Code execution": "Kodning bajarilishi", - "Code Execution": "Kodning bajarilishi", "Code Execution Engine": "Kodni bajarish mexanizmi", "Code Execution Timeout": "Kodni bajarish vaqti tugashi", "Code formatted successfully": "Kod muvaffaqiyatli formatlandi", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "WebUI-ga kirish uchun administrator bilan bog'laning", "Content": "Tarkib", "Content Extraction Engine": "Kontentni ajratib olish mexanizmi", + "Content lengths (character counts only)": "", "Continue Response": "Javob berishni davom ettirish", "Continue with {{provider}}": "{{provider}} bilan davom eting", "Continue with Email": "Elektron pochta orqali davom eting", @@ -393,6 +401,7 @@ "Database": "Ma'lumotlar bazasi", "Datalab Marker API": "Datalab Marker API", "DD/MM/YYYY": "", + "DDGS Backend": "", "December": "dekabr", "Decrease UI Scale": "", "Deepgram": "", @@ -474,6 +483,7 @@ "Dive into knowledge": "Bilimga sho'ng'ing", "Do not install functions from sources you do not fully trust.": "Toʻliq ishonmaydigan manbalardan funksiyalarni oʻrnatmang.", "Do not install tools from sources you do not fully trust.": "O'zingiz ishonmaydigan manbalardan asboblarni o'rnatmang.", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "Dokling", "Docling Parameters": "", "Docling Server URL required.": "Docling Server URL manzili talab qilinadi.", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "", "Document Intelligence Model": "", "Documentation": "Hujjatlar", - "Documents": "Hujjatlar", "does not make any external connections, and your data stays securely on your locally hosted server.": "hech qanday tashqi ulanishlarni amalga oshirmaydi va sizning ma'lumotlaringiz mahalliy serveringizda xavfsiz saqlanadi.", "Domain Filter List": "Domen filtrlari ro'yxati", "don't fetch random pipelines from sources you don't trust.": "Ishonchsiz manbalardan tasodifiy pipeline-larni olmang.", @@ -493,11 +502,14 @@ "Done": "Bajarildi", "Download": "Yuklab olish", "Download & Delete": "Yuklab olish va o‘chirish", + "Download as JSON": "", "Download as SVG": "SVG sifatida yuklab oling", "Download canceled": "Yuklab olish bekor qilindi", "Download Database": "Ma'lumotlar bazasini yuklab olish", + "Downloading stats...": "", "Draw": "Chizish", "Drop any files here to upload": "Yuklash uchun istalgan faylni shu yerga tashlang", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "masalan. '30s', '10m'. Yaroqli vaqt birliklari 's', 'm', 'h'.", "e.g. \"json\" or a JSON schema": "masalan. \"json\" yoki JSON sxemasi", "e.g. 60": "masalan. 60", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "Bocha Search API kalitini kiriting", "Enter Brave Search API Key": "Brave Search API kalitini kiriting", "Enter certificate path": "Sertifikat yo'lini kiriting", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "Chunk Overlap-ni kiriting", "Enter Chunk Size": "Chunk hajmini kiriting", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Vergul bilan ajratilgan \"token:bias_value\" juftlarini kiriting (misol: 5432:100, 413:-100)", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "Tashqi veb-qidiruv URL manzilini kiriting", "Enter Firecrawl API Base URL": "Firecrawl API bazasi URL manzilini kiriting", "Enter Firecrawl API Key": "Firecrawl API kalitini kiriting", + "Enter Firecrawl Timeout": "", "Enter folder name": "", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "Github Raw URL manzilini kiriting", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "", "Enter ID": "", "Enter Image Size (e.g. 512x512)": "Rasm hajmini kiriting (masalan, 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "Jina API kalitini kiriting", "Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter Jupyter Password": "Jupyter parolini kiriting", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "Kagi Search API kalitini kiriting", "Enter Key Behavior": "Asosiy xatti-harakatni kiriting", "Enter language codes": "Til kodlarini kiriting", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "", "Enter Mistral API Key": "Mistral API kalitini kiriting", "Enter Model ID": "Model identifikatorini kiriting", @@ -736,6 +753,7 @@ "Failed to generate title": "", "Failed to import models": "", "Failed to load chat preview": "", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "Fayl tarkibini yuklab bo‘lmadi.", "Failed to move chat": "", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "Xususiyatlari", "Features Permissions": "Xususiyatlar Ruxsatlar", "February": "Fevral", + "Feedback": "", "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "Fikr-mulohaza tarixi", - "Feedbacks": "Fikr-mulohazalar", "Feel free to add specific details": "Muayyan tafsilotlarni qo'shishingiz mumkin", "Female": "", "File": "Fayl", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Barmoq izi aldash aniqlandi: avatar sifatida bosh harflardan foydalanish imkonsiz. Standart profil rasmi.", "Firecrawl API Base URL": "Firecrawl API asosiy URL manzili", "Firecrawl API Key": "Firecrawl API kaliti", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "", "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "Jild muvaffaqiyatli oʻchirildi", + "Folder Max File Count": "", "Folder Name": "", "Folder name cannot be empty.": "Jild nomi boʻsh boʻlishi mumkin emas.", "Folder name updated successfully": "Jild nomi muvaffaqiyatli yangilandi", @@ -826,7 +846,6 @@ "General": "General", "Generate": "Yaratish", "Generate an image": "Tasvir yaratish", - "Generate Image": "Rasm yaratish", "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Qidiruv so'rovi yaratilmoqda", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "{{WEBUI_NAME}} bilan boshlang", "Global": "Global", "Good Response": "Yaxshi javob", + "Google": "", "Google Drive": "Google Drive", "Google PSE API Key": "Google PSE API kaliti", "Google PSE Engine Id": "Google PSE Engine identifikatori", "Gravatar": "", "Grid": "", + "Grokipedia": "", "Group": "Guruh", "Group Channel": "", "Group created successfully": "Guruh muvaffaqiyatli yaratildi", @@ -895,7 +916,6 @@ "Image Prompt Generation": "Tasvir so'rovini yaratish", "Image Prompt Generation Prompt": "Tasvir soʻrovini yaratish taklifi", "Image Size": "", - "Images": "Tasvirlar", "Import": "Import", "Import Chats": "Chatlarni import qilish", "Import Config from JSON File": "JSON faylidan konfiguratsiyani import qiling", @@ -927,6 +947,7 @@ "Integration": "Integratsiya", "Integrations": "", "Interface": "Interfeys", + "Interface Settings Access": "", "Invalid file content": "Fayl mazmuni noto‘g‘ri", "Invalid file format.": "Fayl formati noto‘g‘ri.", "Invalid JSON file": "JSON fayli yaroqsiz", @@ -940,6 +961,7 @@ "is typing...": "yozmoqda...", "Italic": "", "January": "Yanvar", + "Jina API Base URL": "", "Jina API Key": "Jina API kaliti", "join our Discord for help.": "yordam uchun Discordimizga qo'shiling.", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "“{{url}}/api/tags” soʻnggi nuqtasidagi barcha modellarni kiritish uchun boʻsh qoldiring", "Leave empty to include all models from \"{{url}}/models\" endpoint": "“{{url}}/models” soʻnggi nuqtasidagi barcha modellarni kiritish uchun boʻsh qoldiring", "Leave empty to include all models or select specific models": "Barcha modellarni kiritish yoki muayyan modellarni tanlash uchun bo'sh qoldiring", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "", "Leave empty to use the default prompt, or enter a custom prompt": "Standart taklifdan foydalanish uchun boʻsh qoldiring yoki maxsus taklifni kiriting", "Leave model field empty to use the default model.": "Standart modeldan foydalanish uchun model maydonini bo'sh qoldiring.", @@ -1029,10 +1052,12 @@ "Manage your account information.": "", "March": "Mart", "Markdown": "Markdown", - "Markdown (Header)": "", + "Markdown Header Text Splitter": "", "Max Speakers": "Maksimal dinamiklar", "Max Upload Count": "Maksimal yuklash soni", "Max Upload Size": "Maksimal yuklash hajmi", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Bir vaqtning o'zida maksimal 3 ta modelni yuklab olish mumkin. Keyinroq qayta urinib ko‘ring.", "May": "may", "MBR": "", @@ -1042,6 +1067,7 @@ "Member removed successfully": "", "Members": "", "Members added successfully": "", + "Memories": "", "Memories accessible by LLMs will be shown here.": "LLMlar kirishi mumkin bo'lgan xotiralar bu erda ko'rsatiladi.", "Memory": "Xotira", "Memory added successfully": "Xotira muvaffaqiyatli qo'shildi", @@ -1051,6 +1077,7 @@ "Merge Responses": "Javoblarni birlashtirish", "Merged Response": "Birlashtirilgan javob", "Message": "", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "Bu funksiyadan foydalanish uchun xabarlar reytingi yoqilishi kerak", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Havolani yaratganingizdan keyin yuborgan xabarlaringiz ulashilmaydi. URL manzili bo'lgan foydalanuvchilar umumiy chatni ko'rishlari mumkin bo'ladi.", "Microsoft OneDrive": "Microsoft OneDrive", @@ -1083,9 +1110,11 @@ "Model Name": "Model nomi", "Model name already exists, please choose a different one": "", "Model Name is required.": "", + "Model names and usage frequency": "", "Model not selected": "Model tanlanmagan", "Model Params": "Model parametrlari", "Model Permissions": "Model ruxsatnomalari", + "Model responses or outputs": "", "Model unloaded successfully": "Model muvaffaqiyatli yuklab olindi", "Model updated successfully": "Model muvaffaqiyatli yangilandi", "Model(s) do not support file upload": "Model(lar) faylni yuklashni qo'llab-quvvatlamaydi", @@ -1096,6 +1125,7 @@ "Models imported successfully": "", "Models Public Sharing": "Modellarni ommaviy almashish", "Models Sharing": "", + "Mojeek": "", "Mojeek Search API Key": "Mojeek qidiruv API kaliti", "More": "Ko'proq", "More Concise": "", @@ -1129,7 +1159,7 @@ "No conversation to save": "", "No distance available": "Masofa mavjud emas", "No expiration can pose security risks.": "", - "No feedbacks found": "Hech qanday fikr topilmadi", + "No feedback found": "", "No file selected": "Hech qanday fayl tanlanmagan", "No files in this knowledge base.": "", "No functions found": "", @@ -1144,6 +1174,7 @@ "No models selected": "Hech qanday model tanlanmagan", "No Notes": "Qaydlar yo'q", "No notes found": "", + "No one": "", "No pinned messages": "", "No prompts found": "", "No results": "Hech qanday natija topilmadi", @@ -1195,6 +1226,7 @@ "Only invited users can access": "", "Only markdown files are allowed": "Faqat markdown fayllariga ruxsat beriladi", "Only select users and groups with permission can access": "Faqat ruxsati bor tanlangan foydalanuvchilar va guruhlarga kirish mumkin", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Voy! URL noto‘g‘ri ko‘rinadi. Iltimos, ikki marta tekshiring va qayta urinib ko'ring.", "Oops! There are files still uploading. Please wait for the upload to complete.": "Voy! Hali ham fayllar yuklanmoqda. Iltimos, yuklash tugashini kuting.", "Oops! There was an error in the previous response.": "Voy! Avvalgi javobda xatolik yuz berdi.", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "Open WebUI har qanday OpenAPI serveri tomonidan taqdim etilgan vositalardan foydalanishi mumkin.", "Open WebUI uses faster-whisper internally.": "Open WebUI ichki tez shivirlashdan foydalanadi.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI SpeechT5 va CMU Arctic dinamik oʻrnatishlaridan foydalanadi.", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Ochiq WebUI versiyasi (v{{OPEN_WEBUI_VERSION}}) talab qilingan versiyadan (v{{REQUIRED_VERSION}}) pastroq", "OpenAI": "OpenAI", "OpenAI API": "OpenAI API", @@ -1235,6 +1268,8 @@ "page": "sahifa", "Paginate": "Sahifalash", "Parameters": "Parametrlar", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "Parol", "Passwords do not match.": "", "Paste Large Text as File": "Katta matnni fayl sifatida joylashtiring", @@ -1260,7 +1295,6 @@ "Pipe": "", "Pipeline deleted successfully": "Quvur oʻchirildi", "Pipeline downloaded successfully": "Quvur yuklab olindi", - "Pipelines": "Quvurlar", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines — ixtiyoriy kod bajarilishini qo‘llab‑quvvatlaydigan plagin tizimi —", "Pipelines Not Detected": "Quvurlar aniqlanmadi", "Pipelines Valves": "Quvur quvurlari klapanlari", @@ -1498,6 +1532,7 @@ "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.": "Foydalanish uchun to'xtash ketma-ketliklarini o'rnatadi. Ushbu naqshga duch kelganda, LLM matn yaratishni to'xtatadi va qaytib keladi. Model faylida bir nechta alohida to'xtash parametrlarini belgilash orqali bir nechta to'xtash naqshlari o'rnatilishi mumkin.", "Setting": "", "Settings": "Sozlamalar", + "Settings Permissions": "", "Settings saved successfully!": "Sozlamalar muvaffaqiyatli saqlandi!", "Share": "Ulashish", "Share Chat": "Chatni ulashish", @@ -1541,6 +1576,7 @@ "Speech recognition error: {{error}}": "Nutqni aniqlashda xatolik: {{error}}", "Speech-to-Text": "", "Speech-to-Text Engine": "Nutqdan matnga vosita", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "", "Start of the channel": "Kanal boshlanishi", "Start Tag": "", @@ -1551,6 +1587,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "STOP", + "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Ketma-ketlikni to'xtatish", "Stream Chat Response": "Stream Chat javobi", @@ -1571,7 +1608,14 @@ "Support": "Qo'llab-quvvatlash", "Support this plugin:": "Ushbu plaginni qo'llab-quvvatlang:", "Supported MIME Types": "", + "Sync": "", + "Sync Complete!": "", "Sync directory": "Sinxronlash katalogi", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "Tizim", "System Instructions": "Tizim ko'rsatmalari", "System Prompt": "Tizim so'rovi", @@ -1616,6 +1660,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "", "The width in pixels to compress images to. Leave empty for no compression.": "", "Theme": "Mavzu", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "O'ylash...", "This action cannot be undone. Do you wish to continue?": "Bu amalni ortga qaytarib bo‘lmaydi. Davom etishni xohlaysizmi?", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "Bu kanal {{createdAt}} da yaratilgan. Bu {{channelName}} kanalining boshlanishi.", @@ -1730,6 +1775,7 @@ "Upload Pipeline": "Quvur liniyasini yuklash", "Upload Progress": "Yuklash jarayoni", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploaded files or images": "", "Uploading file...": "", "URL": "URL", "URL is required": "", @@ -1747,6 +1793,7 @@ "User Groups": "", "User location successfully retrieved.": "Foydalanuvchi joylashuvi muvaffaqiyatli olindi.", "User menu": "", + "User ratings (thumbs up/down)": "", "User Webhooks": "Foydalanuvchi veb-huklari", "Username": "Foydalanuvchi nomi", "users": "", @@ -1796,15 +1843,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI \"{{url}}/chat/completions\" manziliga so'rov yuboradi", "What are you trying to achieve?": "Nimaga erishmoqchisiz?", "What are you working on?": "Nima ustida ishlayapsiz?", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "", "What's on your mind?": "", "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.": "Yoqilganda, model real vaqt rejimida har bir chat xabariga javob beradi va foydalanuvchi xabar yuborishi bilanoq javob hosil qiladi. Ushbu rejim jonli chat ilovalari uchun foydalidir, lekin sekinroq uskunaning ishlashiga ta'sir qilishi mumkin.", "wherever you are": "qayerda bo'lsangiz ham", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "Chiqishni sahifalash kerakmi. Har bir sahifa gorizontal qoida va sahifa raqami bilan ajratiladi. Birlamchi parametrlar False.", "Whisper (Local)": "Shivirlash (mahalliy)", + "Who can share to this group": "", "Why?": "Nega?", "Widescreen Mode": "Keng ekran rejimi", "Width": "", + "Wikipedia": "", "Won": "G'alaba qozondi", "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.": "Top-k bilan birga ishlaydi. Yuqori qiymat (masalan, 0,95) matnning xilma-xilligiga olib keladi, pastroq qiymat esa (masalan, 0,5) ko'proq diqqatli va konservativ matnni yaratadi.", "Workspace": "Ish maydoni", @@ -1816,6 +1867,8 @@ "Yacy Instance URL": "Yacy Instance URL", "Yacy Password": "Yacy parol", "Yacy Username": "Yacy foydalanuvchi nomi", + "Yahoo": "", + "Yandex": "", "Yesterday": "Kecha", "Yesterday at {{LOCALIZED_TIME}}": "", "You": "Siz", @@ -1823,6 +1876,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Siz bir vaqtning o'zida ko'pi bilan {{maxCount}} ta fayl(lar) bilan suhbatlashishingiz mumkin.", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Quyidagi “Boshqarish” tugmasi orqali xotiralar qo‘shish orqali LLMlar bilan o‘zaro aloqalaringizni shaxsiylashtirishingiz mumkin, bu ularni yanada foydaliroq va sizga moslashtiradi.", "You cannot upload an empty file.": "Siz bo'sh faylni yuklay olmaysiz.", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this thread.": "", "You do not have permission to upload files to this knowledge base.": "", @@ -1834,6 +1890,8 @@ "Your Account": "", "Your account status is currently pending activation.": "Hisobingiz holati hozirda faollashtirishni kutmoqda.", "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.": "Sizning barcha hissangiz to'g'ridan-to'g'ri plagin ishlab chiqaruvchisiga o'tadi; Open WebUI hech qanday foizni olmaydi. Biroq, tanlangan moliyalashtirish platformasi o'z to'lovlariga ega bo'lishi mumkin.", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "Youtube", "Youtube Language": "Youtube tili", "Youtube Proxy URL": "Youtube proksi URL" diff --git a/src/lib/i18n/locales/vi-VN/translation.json b/src/lib/i18n/locales/vi-VN/translation.json index cf4055f41..58a7ea112 100644 --- a/src/lib/i18n/locales/vi-VN/translation.json +++ b/src/lib/i18n/locales/vi-VN/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "Các thay đổi cài đặt này sẽ áp dụng cho tất cả người sử dụng.", "admin": "quản trị viên", "Admin": "Quản trị", + "Admin Contact Email": "", "Admin Panel": "Trang Quản trị", "Admin Settings": "Cài đặt hệ thống", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "Quản trị viên luôn có quyền truy cập vào tất cả các tool; người dùng cần các tools được chỉ định cho mỗi mô hình trong workspace.", @@ -101,7 +102,6 @@ "Allow Continue Response": "", "Allow Delete Messages": "", "Allow File Upload": "Cho phép Tải tệp lên", - "Allow Group Sharing": "", "Allow Multiple Models in Chat": "", "Allow non-local voices": "Cho phép giọng nói không bản xứ", "Allow Rate Response": "", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "và {{COUNT}} mục khác", "and create a new shared link.": "và tạo một link chia sẻ mới", "Android": "", + "Anyone": "", "API Base URL": "Đường dẫn tới API (API Base URL)", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "", "API Key": "API Key", @@ -175,6 +176,7 @@ "Authenticate": "Xác thực", "Authentication": "Xác thực", "Auto": "", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "Tự động Sao chép Phản hồi vào clipboard", "Auto-playback response": "Tự động phát lại phản hồi (Auto-playback)", "Autocomplete Generation": "Tạo Tự động Hoàn thành", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "Chuỗi xác thực API AUTOMATIC1111", "AUTOMATIC1111 Base URL": "Đường dẫn kết nối tới AUTOMATIC1111 (Base URL)", "AUTOMATIC1111 Base URL is required.": "Base URL của AUTOMATIC1111 là bắt buộc.", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "Danh sách có sẵn", "Available Tools": "Công cụ có sẵn", "available users": "người dùng khả dụng", @@ -201,6 +204,7 @@ "before": "trước", "Being lazy": "Lười biếng", "Beta": "Beta", + "Bing": "", "Bing Search V7 Endpoint": "Endpoint Bing Search V7", "Bing Search V7 Subscription Key": "Khóa đăng ký Bing Search V7", "Bio": "", @@ -209,7 +213,9 @@ "Bocha Search API Key": "Khóa API Bocha Search", "Bold": "", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "Tăng cường hoặc phạt các token cụ thể cho các phản hồi bị ràng buộc. Giá trị bias sẽ được giới hạn trong khoảng từ -100 đến 100 (bao gồm). (Mặc định: không có)", + "Brave": "", "Brave Search API Key": "Khóa API tìm kiếm dũng cảm", + "Builtin Tools": "", "Bullet List": "", "Button ID": "", "Button Label": "", @@ -256,8 +262,10 @@ "Check for updates": "Kiểm tra cập nhật", "Checking for updates...": "Đang kiểm tra cập nhật...", "Choose a model before saving...": "Chọn mô hình trước khi lưu...", + "Chunk Min Size Target": "", "Chunk Overlap": "Chồng lấn (overlap)", "Chunk Size": "Kích thước khối (size)", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "Bộ mã hóa", "Citation": "Trích dẫn", "Citations": "", @@ -293,7 +301,6 @@ "Code Block": "", "Code Editor": "", "Code execution": "Thực thi mã", - "Code Execution": "Thực thi Mã", "Code Execution Engine": "Engine Thực thi Mã", "Code Execution Timeout": "Thời gian chờ Thực thi Mã", "Code formatted successfully": "Mã được định dạng thành công", @@ -336,6 +343,7 @@ "Contact Admin for WebUI Access": "Liên hệ với Quản trị viên để được cấp quyền truy cập", "Content": "Nội dung", "Content Extraction Engine": "Engine Trích xuất Nội dung", + "Content lengths (character counts only)": "", "Continue Response": "Tiếp tục trả lời", "Continue with {{provider}}": "Tiếp tục với {{provider}}", "Continue with Email": "Tiếp tục với Email", @@ -393,6 +401,7 @@ "Database": "Cơ sở dữ liệu", "Datalab Marker API": "", "DD/MM/YYYY": "", + "DDGS Backend": "", "December": "Tháng 12", "Decrease UI Scale": "", "Deepgram": "", @@ -474,6 +483,7 @@ "Dive into knowledge": "Đi sâu vào kiến thức", "Do not install functions from sources you do not fully trust.": "Không cài đặt các functions từ các nguồn mà bạn không hoàn toàn tin tưởng.", "Do not install tools from sources you do not fully trust.": "Không cài đặt các tools từ những nguồn mà bạn không hoàn toàn tin tưởng.", + "Do you want to sync your usage stats with Open WebUI Community?": "", "Docling": "Docling", "Docling Parameters": "", "Docling Server URL required.": "Yêu cầu URL Máy chủ Docling.", @@ -482,7 +492,6 @@ "Document Intelligence endpoint required.": "", "Document Intelligence Model": "", "Documentation": "Tài liệu", - "Documents": "Tài liệu", "does not make any external connections, and your data stays securely on your locally hosted server.": "không thực hiện bất kỳ kết nối ngoài nào, và dữ liệu của bạn vẫn được lưu trữ an toàn trên máy chủ lưu trữ cục bộ của bạn.", "Domain Filter List": "Danh sách Lọc Tên miền", "don't fetch random pipelines from sources you don't trust.": "Đừng lấy các pipelines ngẫu nhiên từ nguồn không đáng tin cậy.", @@ -493,11 +502,14 @@ "Done": "Hoàn thành", "Download": "Tải về", "Download & Delete": "Tải xuống và xóa", + "Download as JSON": "", "Download as SVG": "Tải xuống dưới dạng SVG", "Download canceled": "Đã hủy download", "Download Database": "Tải xuống Cơ sở dữ liệu", + "Downloading stats...": "", "Draw": "Vẽ", "Drop any files here to upload": "", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "vd: '30s','10m'. Đơn vị thời gian hợp lệ là 's', 'm', 'h'.", "e.g. \"json\" or a JSON schema": "ví dụ: \"json\" hoặc một lược đồ JSON", "e.g. 60": "vd: 60", @@ -572,6 +584,7 @@ "Enter Bocha Search API Key": "Nhập Khóa API Bocha Search", "Enter Brave Search API Key": "Nhập API key cho Brave Search", "Enter certificate path": "Nhập đường dẫn chứng chỉ", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "Nhập Chunk chồng lấn (overlap)", "Enter Chunk Size": "Nhập Kích thước Chunk", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "Nhập các cặp \"token:giá_trị_bias\" được phân tách bằng dấu phẩy (ví dụ: 5432:100, 413:-100)", @@ -595,6 +608,7 @@ "Enter External Web Search URL": "", "Enter Firecrawl API Base URL": "", "Enter Firecrawl API Key": "", + "Enter Firecrawl Timeout": "", "Enter folder name": "", "Enter function name filter list (e.g. func1, !func2)": "", "Enter Github Raw URL": "Nhập URL cho Github Raw", @@ -603,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "", "Enter ID": "", "Enter Image Size (e.g. 512x512)": "Nhập Kích thước ảnh (vd: 512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "Nhập Khóa API Jina", "Enter JSON config (e.g., {\"disable_links\": true})": "", "Enter Jupyter Password": "Nhập Mật khẩu Jupyter", @@ -611,6 +626,8 @@ "Enter Kagi Search API Key": "Nhập Khóa API Kagi Search", "Enter Key Behavior": "Nhập Hành vi phím", "Enter language codes": "Nhập mã ngôn ngữ", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "", "Enter Mistral API Key": "Nhập Khóa API Mistral", "Enter Model ID": "Nhập ID Mô hình", @@ -736,6 +753,7 @@ "Failed to generate title": "", "Failed to import models": "", "Failed to load chat preview": "", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "", "Failed to move chat": "", "Failed to process URL: {{url}}": "", @@ -752,10 +770,10 @@ "Features": "Tính năng", "Features Permissions": "Quyền Tính năng", "February": "Tháng 2", + "Feedback": "", "Feedback deleted successfully": "", "Feedback Details": "", "Feedback History": "Lịch sử Phản hồi", - "Feedbacks": "Các phản hồi", "Feel free to add specific details": "Mô tả chi tiết về chất lượng của câu hỏi và phương án trả lời", "Female": "", "File": "Tệp", @@ -776,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "Phát hiện giả mạo vân tay: Không thể sử dụng tên viết tắt làm hình đại diện. Mặc định là hình ảnh hồ sơ mặc định.", "Firecrawl API Base URL": "", "Firecrawl API Key": "", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "", "Focus Chat Input": "", "Folder": "", "Folder Background Image": "", "Folder deleted successfully": "Xóa thư mục thành công", + "Folder Max File Count": "", "Folder Name": "", "Folder name cannot be empty.": "Tên thư mục không được để trống.", "Folder name updated successfully": "Cập nhật tên thư mục thành công", @@ -826,7 +846,6 @@ "General": "Cài đặt chung", "Generate": "", "Generate an image": "Tạo một hình ảnh", - "Generate Image": "Sinh ảnh", "Generate Message Pair": "", "Generated Image": "", "Generating search query": "Tạo truy vấn tìm kiếm", @@ -836,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "Bắt đầu với {{WEBUI_NAME}}", "Global": "Toàn hệ thống", "Good Response": "Trả lời tốt", + "Google": "", "Google Drive": "Google Drive", "Google PSE API Key": "Khóa API Google PSE", "Google PSE Engine Id": "ID công cụ Google PSE", "Gravatar": "", "Grid": "", + "Grokipedia": "", "Group": "Nhóm", "Group Channel": "", "Group created successfully": "Đã tạo nhóm thành công", @@ -895,7 +916,6 @@ "Image Prompt Generation": "Tạo Prompt Ảnh", "Image Prompt Generation Prompt": "Prompt Tạo Prompt Ảnh", "Image Size": "", - "Images": "Hình ảnh", "Import": "", "Import Chats": "Nạp lại nội dung chat", "Import Config from JSON File": "Nhập Cấu hình từ Tệp JSON", @@ -927,6 +947,7 @@ "Integration": "Tích hợp", "Integrations": "", "Interface": "Giao diện", + "Interface Settings Access": "", "Invalid file content": "", "Invalid file format.": "Định dạng tệp không hợp lệ.", "Invalid JSON file": "", @@ -940,6 +961,7 @@ "is typing...": "đang gõ...", "Italic": "", "January": "Tháng 1", + "Jina API Base URL": "", "Jina API Key": "Khóa API Jina", "join our Discord for help.": "tham gia Discord của chúng tôi để được trợ giúp.", "JSON": "JSON", @@ -990,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "Để trống để bao gồm tất cả các mô hình từ điểm cuối \"{{url}}/api/tags\"", "Leave empty to include all models from \"{{url}}/models\" endpoint": "Để trống để bao gồm tất cả các mô hình từ điểm cuối \"{{url}}/models\"", "Leave empty to include all models or select specific models": "Để trống để bao gồm tất cả các mô hình hoặc chọn các mô hình cụ thể", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "", "Leave empty to use the default prompt, or enter a custom prompt": "Để trống để sử dụng prompt mặc định, hoặc nhập prompt tùy chỉnh", "Leave model field empty to use the default model.": "Để trống trường mô hình để sử dụng mô hình mặc định.", @@ -1029,10 +1052,12 @@ "Manage your account information.": "", "March": "Tháng 3", "Markdown": "", - "Markdown (Header)": "", + "Markdown Header Text Splitter": "", "Max Speakers": "", "Max Upload Count": "Số lượng Tải lên Tối đa", "Max Upload Size": "Kích thước Tải lên Tối đa", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "Tối đa 3 mô hình có thể được tải xuống cùng lúc. Vui lòng thử lại sau.", "May": "Tháng 5", "MBR": "", @@ -1042,6 +1067,7 @@ "Member removed successfully": "", "Members": "", "Members added successfully": "", + "Memories": "", "Memories accessible by LLMs will be shown here.": "Memory có thể truy cập bởi LLMs sẽ hiển thị ở đây.", "Memory": "Memory", "Memory added successfully": "Memory đã được thêm thành công", @@ -1051,6 +1077,7 @@ "Merge Responses": "Hợp nhất các phản hồi", "Merged Response": "Phản hồi Hợp nhất", "Message": "", + "Message counts and response timestamps": "", "Message rating should be enabled to use this feature": "Cần bật tính năng đánh giá tin nhắn để sử dụng tính năng này", "Messages you send after creating your link won't be shared. Users with the URL will be able to view the shared chat.": "Tin nhắn bạn gửi sau khi tạo liên kết sẽ không được chia sẻ. Người dùng có URL sẽ có thể xem cuộc trò chuyện được chia sẻ.", "Microsoft OneDrive": "", @@ -1083,9 +1110,11 @@ "Model Name": "Tên Mô hình", "Model name already exists, please choose a different one": "", "Model Name is required.": "", + "Model names and usage frequency": "", "Model not selected": "Chưa chọn Mô hình", "Model Params": "Mô hình Params", "Model Permissions": "Quyền Mô hình", + "Model responses or outputs": "", "Model unloaded successfully": "", "Model updated successfully": "Model đã được cập nhật thành công", "Model(s) do not support file upload": "", @@ -1096,6 +1125,7 @@ "Models imported successfully": "", "Models Public Sharing": "Chia sẻ Công khai Mô hình", "Models Sharing": "", + "Mojeek": "", "Mojeek Search API Key": "Khóa API Mojeek Search", "More": "Thêm", "More Concise": "", @@ -1129,7 +1159,7 @@ "No conversation to save": "", "No distance available": "Không có khoảng cách khả dụng", "No expiration can pose security risks.": "", - "No feedbacks found": "Không tìm thấy phản hồi nào", + "No feedback found": "", "No file selected": "Chưa có tệp nào được chọn", "No files in this knowledge base.": "", "No functions found": "", @@ -1144,6 +1174,7 @@ "No models selected": "Chưa chọn mô hình nào", "No Notes": "", "No notes found": "", + "No one": "", "No pinned messages": "", "No prompts found": "", "No results": "Không tìm thấy kết quả", @@ -1195,6 +1226,7 @@ "Only invited users can access": "", "Only markdown files are allowed": "", "Only select users and groups with permission can access": "Chỉ người dùng và nhóm được chọn có quyền mới có thể truy cập", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "Rất tiếc! URL dường như không hợp lệ. Vui lòng kiểm tra lại và thử lại.", "Oops! There are files still uploading. Please wait for the upload to complete.": "Ối! Vẫn còn tệp đang tải lên. Vui lòng đợi quá trình tải lên hoàn tất.", "Oops! There was an error in the previous response.": "Ối! Đã xảy ra lỗi trong phản hồi trước đó.", @@ -1211,6 +1243,7 @@ "Open WebUI can use tools provided by any OpenAPI server.": "", "Open WebUI uses faster-whisper internally.": "Open WebUI sử dụng faster-whisper bên trong.", "Open WebUI uses SpeechT5 and CMU Arctic speaker embeddings.": "Open WebUI sử dụng SpeechT5 và các embedding giọng nói CMU Arctic.", + "Open WebUI version": "", "Open WebUI version (v{{OPEN_WEBUI_VERSION}}) is lower than required version (v{{REQUIRED_VERSION}})": "Phiên bản Open WebUI (v{{OPEN_WEBUI_VERSION}}) hiện thấp hơn phiên bản bắt buộc (v{{REQUIRED_VERSION}})", "OpenAI": "OpenAI", "OpenAI API": "API OpenAI", @@ -1235,6 +1268,8 @@ "page": "trang", "Paginate": "", "Parameters": "", + "Parent message not found": "", + "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "", "Password": "Mật khẩu", "Passwords do not match.": "", "Paste Large Text as File": "Dán Văn bản Lớn dưới dạng Tệp", @@ -1260,7 +1295,6 @@ "Pipe": "", "Pipeline deleted successfully": "Đã xóa pipeline thành công", "Pipeline downloaded successfully": "Đã tải xuống pipeline thành công", - "Pipelines": "Pipelines", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines là hệ thống plugin cho phép thực thi mã tùy ý —", "Pipelines Not Detected": "Chưa tìm thấy Pipelines", "Pipelines Valves": "Các Valve của Pipeline", @@ -1497,6 +1531,7 @@ "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.": "Đặt các chuỗi dừng để sử dụng. Khi gặp mẫu này, LLM sẽ ngừng tạo văn bản và trả về. Có thể đặt nhiều mẫu dừng bằng cách chỉ định nhiều tham số stop riêng biệt trong modelfile.", "Setting": "", "Settings": "Cài đặt", + "Settings Permissions": "", "Settings saved successfully!": "Cài đặt đã được lưu thành công!", "Share": "Chia sẻ", "Share Chat": "Chia sẻ Chat", @@ -1540,6 +1575,7 @@ "Speech recognition error: {{error}}": "Lỗi nhận dạng giọng nói: {{error}}", "Speech-to-Text": "", "Speech-to-Text Engine": "Công cụ Nhận dạng Giọng nói", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "", "Start of the channel": "Đầu kênh", "Start Tag": "", @@ -1550,6 +1586,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "", "Stop": "Dừng", + "Stop Download": "", "Stop Generating": "", "Stop Sequence": "Trình tự Dừng", "Stream Chat Response": "Truyền trực tiếp Phản hồi Chat", @@ -1570,7 +1607,14 @@ "Support": "Hỗ trợ", "Support this plugin:": "Hỗ trợ plugin này:", "Supported MIME Types": "", + "Sync": "", + "Sync Complete!": "", "Sync directory": "Đồng bộ thư mục", + "Sync Failed": "", + "Sync Usage Stats": "", + "Syncing stats...": "", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "Hệ thống", "System Instructions": "Hướng dẫn Hệ thống", "System Prompt": "Prompt Hệ thống (System Prompt)", @@ -1615,6 +1659,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "", "The width in pixels to compress images to. Leave empty for no compression.": "", "Theme": "Chủ đề", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "Đang suy luận...", "This action cannot be undone. Do you wish to continue?": "Hành động này không thể được hoàn tác. Bạn có muốn tiếp tục không?", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "Kênh này được tạo vào {{createdAt}}. Đây là điểm khởi đầu của kênh {{channelName}}.", @@ -1729,6 +1774,7 @@ "Upload Pipeline": "Tải lên Pipeline", "Upload Progress": "Tiến trình tải tệp lên hệ thống", "Upload Progress: {{uploadedFiles}}/{{totalFiles}} ({{percentage}}%)": "", + "Uploaded files or images": "", "Uploading file...": "", "URL": "URL", "URL is required": "", @@ -1746,6 +1792,7 @@ "User Groups": "", "User location successfully retrieved.": "Đã truy xuất thành công vị trí của người dùng.", "User menu": "", + "User ratings (thumbs up/down)": "", "User Webhooks": "Webhook Người dùng", "Username": "Tên đăng nhập", "users": "", @@ -1795,15 +1842,19 @@ "WebUI will make requests to \"{{url}}/chat/completions\"": "WebUI sẽ thực hiện yêu cầu đến \"{{url}}/chat/completions\"", "What are you trying to achieve?": "Bạn đang cố gắng đạt được điều gì?", "What are you working on?": "Bạn đang làm gì vậy?", + "What is NOT shared:": "", + "What is shared:": "", "What's New in": "Thông tin mới về", "What's on your mind?": "", "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.": "Khi được bật, mô hình sẽ phản hồi từng tin nhắn trò chuyện trong thời gian thực, tạo ra phản hồi ngay khi người dùng gửi tin nhắn. Chế độ này hữu ích cho các ứng dụng trò chuyện trực tiếp, nhưng có thể ảnh hưởng đến hiệu suất trên phần cứng chậm hơn.", "wherever you are": "bất cứ nơi nào bạn đang ở", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "", "Whisper (Local)": "Whisper (Cục bộ)", + "Who can share to this group": "", "Why?": "Tại sao?", "Widescreen Mode": "Chế độ màn hình rộng", "Width": "", + "Wikipedia": "", "Won": "Thắng", "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.": "Hoạt động cùng với top-k. Giá trị cao hơn (ví dụ: 0.95) sẽ dẫn đến văn bản đa dạng hơn, trong khi giá trị thấp hơn (ví dụ: 0.5) sẽ tạo ra văn bản tập trung và thận trọng hơn.", "Workspace": "Không gian làm việc", @@ -1815,6 +1866,8 @@ "Yacy Instance URL": "", "Yacy Password": "", "Yacy Username": "", + "Yahoo": "", + "Yandex": "", "Yesterday": "Hôm qua", "Yesterday at {{LOCALIZED_TIME}}": "", "You": "Bạn", @@ -1822,6 +1875,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "Bạn chỉ có thể trò chuyện với tối đa {{maxCount}} tệp cùng một lúc.", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "Bạn có thể cá nhân hóa các tương tác của mình với LLM bằng cách thêm bộ nhớ thông qua nút 'Quản lý' bên dưới, làm cho chúng hữu ích hơn và phù hợp với bạn hơn.", "You cannot upload an empty file.": "Bạn không thể tải lên một tệp trống.", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "", "You do not have permission to send messages in this thread.": "", "You do not have permission to upload files to this knowledge base.": "", @@ -1833,6 +1889,8 @@ "Your Account": "", "Your account status is currently pending activation.": "Tài khoản của bạn hiện đang ở trạng thái chờ kích hoạt.", "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.": "Toàn bộ đóng góp của bạn sẽ được chuyển trực tiếp đến nhà phát triển plugin; Open WebUI không lấy bất kỳ tỷ lệ phần trăm nào. Tuy nhiên, nền tảng được chọn tài trợ có thể có phí riêng.", + "Your message text or inputs": "", + "Your usage stats have been successfully synced.": "", "YouTube": "Youtube", "Youtube Language": "Ngôn ngữ Youtube", "Youtube Proxy URL": "URL Proxy Youtube" diff --git a/src/lib/i18n/locales/zh-CN/translation.json b/src/lib/i18n/locales/zh-CN/translation.json index 091927eb6..df8396b5f 100644 --- a/src/lib/i18n/locales/zh-CN/translation.json +++ b/src/lib/i18n/locales/zh-CN/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "调整这些设置将会对所有用户生效", "admin": "管理员", "Admin": "管理员", + "Admin Contact Email": "", "Admin Panel": "管理员面板", "Admin Settings": "管理员设置", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "管理员拥有所有工具的完全访问权限;用户则需在工作空间中为每个模型单独分配工具。", @@ -101,7 +102,6 @@ "Allow Continue Response": "允许继续生成回答", "Allow Delete Messages": "允许删除对话消息", "Allow File Upload": "允许上传文件", - "Allow Group Sharing": "允许群组内共享", "Allow Multiple Models in Chat": "允许在对话中使用多个模型", "Allow non-local voices": "允许调用非本土音色", "Allow Rate Response": "允许对回答进行评价", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "还有 {{COUNT}} 个", "and create a new shared link.": "并创建新的分享链接", "Android": "Android", + "Anyone": "", "API Base URL": "接口地址", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "Datalab Marker 服务的接口地址。默认为:https://www.datalab.to/api/v1/marker", "API Key": "API 密钥", @@ -175,6 +176,7 @@ "Authenticate": "认证", "Authentication": "身份验证", "Auto": "自动", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "自动复制回答内容到剪贴板", "Auto-playback response": "自动朗读回答内容", "Autocomplete Generation": "输入框内容自动补全", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "AUTOMATIC1111 接口鉴权字符串", "AUTOMATIC1111 Base URL": "AUTOMATIC1111 接口地址", "AUTOMATIC1111 Base URL is required.": "AUTOMATIC1111 接口地址是必填项。", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "可用列表", "Available Tools": "可用工具", "available users": "可用用户", @@ -201,6 +204,7 @@ "before": "之前", "Being lazy": "回答不完整或敷衍了事", "Beta": "Beta", + "Bing": "", "Bing Search V7 Endpoint": "Bing 搜索 V7 端点", "Bing Search V7 Subscription Key": "Bing 搜索 V7 订阅密钥", "Bio": "个人简介", @@ -209,7 +213,9 @@ "Bocha Search API Key": "Bocha Search 接口密钥", "Bold": "粗体", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "为受限响应提升或惩罚特定标记。偏置值将被限制在 -100 到 100(包括两端)之间。(默认:无)", + "Brave": "", "Brave Search API Key": "Brave Search 接口密钥", + "Builtin Tools": "", "Bullet List": "无序列表", "Button ID": "按钮 ID", "Button Label": "按钮文本", @@ -256,8 +262,10 @@ "Check for updates": "检查更新", "Checking for updates...": "正在检查更新...", "Choose a model before saving...": "保存前选择一个模型...", + "Chunk Min Size Target": "", "Chunk Overlap": "块重叠 (Chunk Overlap)", "Chunk Size": "块大小 (Chunk Size)", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "加密算法 (Ciphers)", "Citation": "引文", "Citations": "引用", @@ -293,7 +301,6 @@ "Code Block": "代码块", "Code Editor": "代码编辑器", "Code execution": "代码执行", - "Code Execution": "代码执行", "Code Execution Engine": "代码执行引擎", "Code Execution Timeout": "代码执行超时", "Code formatted successfully": "代码格式化成功", @@ -394,6 +401,7 @@ "Database": "数据库", "Datalab Marker API": "Datalab Marker API", "DD/MM/YYYY": "DD/MM/YYYY", + "DDGS Backend": "", "December": "十二月", "Decrease UI Scale": "减少界面缩放比例", "Deepgram": "Deepgram", @@ -484,7 +492,6 @@ "Document Intelligence endpoint required.": "Document Intelligence 接口地址是必填项。", "Document Intelligence Model": "Document Intelligence 模型", "Documentation": "帮助文档", - "Documents": "文档", "does not make any external connections, and your data stays securely on your locally hosted server.": "不会与外部建立任何连接,您的数据会安全地存储在本地托管的服务器上。", "Domain Filter List": "域名过滤列表", "don't fetch random pipelines from sources you don't trust.": "请勿从未经验证或不可信的来源获取 Pipelines。", @@ -495,11 +502,14 @@ "Done": "完成", "Download": "下载", "Download & Delete": "下载并删除", + "Download as JSON": "", "Download as SVG": "下载为 SVG", "Download canceled": "下载已取消", "Download Database": "下载数据库", + "Downloading stats...": "", "Draw": "平局", "Drop any files here to upload": "拖拽文件至此上传", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "例如:“30s”,“10m”。有效的时间单位包括:“s”(秒), “m”(分), “h”(时)", "e.g. \"json\" or a JSON schema": "例如:\"json\" 或一个 JSON schema", "e.g. 60": "例如:60", @@ -574,6 +584,7 @@ "Enter Bocha Search API Key": "输入 Bocha Search 接口密钥", "Enter Brave Search API Key": "输入 Brave Search 接口密钥", "Enter certificate path": "输入证书路径", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "输入块重叠 (Chunk Overlap)", "Enter Chunk Size": "输入块大小 (Chunk Size)", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "输入以逗号分隔的“token:bias_value”对(例如:5432:100, 413:-100)", @@ -597,6 +608,7 @@ "Enter External Web Search URL": "输入外部联网搜索接口地址", "Enter Firecrawl API Base URL": "输入 Firecrawl 接口地址", "Enter Firecrawl API Key": "输入 Firecrawl 接口密钥", + "Enter Firecrawl Timeout": "", "Enter folder name": "输入分组名称", "Enter function name filter list (e.g. func1, !func2)": "输入函数名称过滤列表(例如:func1, !func2)", "Enter Github Raw URL": "输入 Github Raw 链接", @@ -605,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "输入十六进制颜色(例如:#FF0000)", "Enter ID": "输入 ID", "Enter Image Size (e.g. 512x512)": "输入图像分辨率(例如:512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "输入 Jina 接口密钥", "Enter JSON config (e.g., {\"disable_links\": true})": "输入 JSON 配置(例如:{\"disable_links\": true})", "Enter Jupyter Password": "输入 Jupyter 密码", @@ -613,6 +626,8 @@ "Enter Kagi Search API Key": "输入 Kagi Search 接口密钥", "Enter Key Behavior": "Enter 键行为", "Enter language codes": "输入语言代码", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "输入 Mistral 接口地址", "Enter Mistral API Key": "输入 Mistral 接口密钥", "Enter Model ID": "输入模型 ID", @@ -738,6 +753,7 @@ "Failed to generate title": "生成标题失败", "Failed to import models": "导入模型配置失败", "Failed to load chat preview": "对话预览加载失败", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "文件内容加载失败", "Failed to move chat": "移动对话失败", "Failed to process URL: {{url}}": "处理链接失败: {{url}}", @@ -754,10 +770,10 @@ "Features": "功能", "Features Permissions": "功能权限", "February": "二月", + "Feedback": "", "Feedback deleted successfully": "反馈删除成功", "Feedback Details": "反馈详情", "Feedback History": "历史反馈", - "Feedbacks": "反馈", "Feel free to add specific details": "欢迎补充具体细节", "Female": "女性", "File": "文件", @@ -778,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "检测到浏览器指纹伪造插件:无法使用姓名缩写作为头像,将使用系统默认的头像。", "Firecrawl API Base URL": "Firecrawl 接口地址", "Firecrawl API Key": "Firecrawl 接口密钥", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "快捷操作浮窗", "Focus Chat Input": "聚焦对话框", "Folder": "分组", "Folder Background Image": "分组背景图", "Folder deleted successfully": "分组删除成功", + "Folder Max File Count": "", "Folder Name": "分组名称", "Folder name cannot be empty.": "分组名称不能为空", "Folder name updated successfully": "分组名称更新成功", @@ -828,7 +846,6 @@ "General": "通用", "Generate": "生成", "Generate an image": "生成图像", - "Generate Image": "生成图像", "Generate Message Pair": "生成消息对", "Generated Image": "已生成图像", "Generating search query": "生成搜索查询", @@ -838,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "开始使用 {{WEBUI_NAME}}", "Global": "全局", "Good Response": "点赞此回答", + "Google": "", "Google Drive": "Google 云端硬盘", "Google PSE API Key": "Google PSE 接口密钥", "Google PSE Engine Id": "Google PSE 引擎 ID", "Gravatar": "Gravatar 头像", "Grid": "网格", + "Grokipedia": "", "Group": "权限组", "Group Channel": "群组频道", "Group created successfully": "权限组创建成功", @@ -897,7 +916,6 @@ "Image Prompt Generation": "图像提示词生成", "Image Prompt Generation Prompt": "用于生成图像提示词的提示词", "Image Size": "图片尺寸", - "Images": "图像", "Import": "导入", "Import Chats": "导入对话记录", "Import Config from JSON File": "从 JSON 文件中导入配置信息", @@ -929,6 +947,7 @@ "Integration": "集成", "Integrations": "扩展功能", "Interface": "界面", + "Interface Settings Access": "", "Invalid file content": "文件内容无效", "Invalid file format.": "文件格式无效", "Invalid JSON file": "JSON 文件格式无效", @@ -942,6 +961,7 @@ "is typing...": "输入中...", "Italic": "斜体", "January": "一月", + "Jina API Base URL": "", "Jina API Key": "Jina 接口密钥", "join our Discord for help.": "加入我们的 Discord 寻求帮助", "JSON": "JSON", @@ -992,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "留空以包含来自 \"{{url}}/api/tags\" 端点的所有模型", "Leave empty to include all models from \"{{url}}/models\" endpoint": "留空以包含来自 \"{{url}}/models\" 端点的所有模型", "Leave empty to include all models or select specific models": "留空以包含所有模型或手动选择模型", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "留空以使用默认模型(voxtral-mini-latest)。", "Leave empty to use the default prompt, or enter a custom prompt": "留空以使用默认提示词,或输入自定义提示词", "Leave model field empty to use the default model.": "模型字段留空以使用默认模型", @@ -1031,10 +1052,12 @@ "Manage your account information.": "管理您的账号信息。", "March": "三月", "Markdown": "Markdown", - "Markdown (Header)": "Markdown(标题)", + "Markdown Header Text Splitter": "", "Max Speakers": "最大扬声器数量", "Max Upload Count": "最大上传数量", "Max Upload Size": "最大上传大小", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "最多可同时下载 3 个模型,请稍后重试。", "May": "五月", "MBR": "成员", @@ -1044,6 +1067,7 @@ "Member removed successfully": "成员移除成功", "Members": "成员", "Members added successfully": "成员添加成功", + "Memories": "", "Memories accessible by LLMs will be shown here.": "大语言模型可访问的记忆将在此显示", "Memory": "记忆", "Memory added successfully": "记忆添加成功", @@ -1101,6 +1125,7 @@ "Models imported successfully": "已成功导入模型配置", "Models Public Sharing": "模型公开分享", "Models Sharing": "分享模型", + "Mojeek": "", "Mojeek Search API Key": "Mojeek Search 接口密钥", "More": "更多", "More Concise": "精炼表达", @@ -1134,7 +1159,7 @@ "No conversation to save": "没有可保存的对话", "No distance available": "没有可用距离", "No expiration can pose security risks.": "未设置 JWT 过期时间会导致安全风险。", - "No feedbacks found": "暂无任何反馈", + "No feedback found": "", "No file selected": "未选中文件", "No files in this knowledge base.": "此知识库中没有文件。", "No functions found": "未找到函数", @@ -1149,6 +1174,7 @@ "No models selected": "未选择任何模型", "No Notes": "没有笔记", "No notes found": "没有任何笔记", + "No one": "", "No pinned messages": "没有置顶消息", "No prompts found": "未找到提示词", "No results": "未找到结果", @@ -1200,6 +1226,7 @@ "Only invited users can access": "只有受邀用户才能访问", "Only markdown files are allowed": "仅允许使用 markdown 文件", "Only select users and groups with permission can access": "只有具有权限的用户和组才能访问", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "糟糕!此链接似乎为无效链接。请检查后重试。", "Oops! There are files still uploading. Please wait for the upload to complete.": "糟糕!仍有文件正在上传。请等待上传完成。", "Oops! There was an error in the previous response.": "糟糕!之前的回答中出现了错误。", @@ -1241,6 +1268,7 @@ "page": "页", "Paginate": "分页", "Parameters": "参数", + "Parent message not found": "", "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "欢迎您参与社区排行榜和评估!同步使用统计数据有助于 Open WebUI 的研发和改进。您的隐私至关重要:我们绝不会发送任何消息内容。", "Password": "密码", "Passwords do not match.": "两次输入的密码不一致。", @@ -1267,7 +1295,6 @@ "Pipe": "Pipe", "Pipeline deleted successfully": "Pipeline 删除成功", "Pipeline downloaded successfully": "Pipeline 下载成功", - "Pipelines": "Pipeline", "Pipelines are a plugin system with arbitrary code execution —": "Pipelines 是具有任意代码执行风险的插件系统 —", "Pipelines Not Detected": "未检测到 Pipeline", "Pipelines Valves": "Pipeline 配置项", @@ -1504,6 +1531,7 @@ "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.": "设置要使用的停止序列。在该模式下,大语言模型将停止生成文本并返回。可以通过在模型文件中指定多个单独的停止参数来设置多个停止模式。", "Setting": "设置", "Settings": "设置", + "Settings Permissions": "", "Settings saved successfully!": "设置已成功保存!", "Share": "分享", "Share Chat": "分享对话", @@ -1547,6 +1575,7 @@ "Speech recognition error: {{error}}": "语音识别错误:{{error}}", "Speech-to-Text": "语音转文本", "Speech-to-Text Engine": "语音转文本引擎", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "开始新对话", "Start of the channel": "频道起点", "Start Tag": "起始标签", @@ -1557,6 +1586,7 @@ "STDOUT/STDERR": "标准输出/标准错误", "Steps": "迭代步数", "Stop": "停止", + "Stop Download": "", "Stop Generating": "停止生成", "Stop Sequence": "停止序列 (Stop Sequence)", "Stream Chat Response": "流式对话响应 (Stream Chat Response)", @@ -1580,8 +1610,11 @@ "Sync": "同步", "Sync Complete!": "同步完成!", "Sync directory": "同步目录", + "Sync Failed": "", "Sync Usage Stats": "同步使用统计数据", "Syncing stats...": "同步统计数据...", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "系统", "System Instructions": "系统指令", "System Prompt": "系统提示词", @@ -1626,6 +1659,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "BM25 混合检索权重(输入接近 0 的数字会倾向于全语义搜索,反之输入接近 1 的数字会倾向于关键词搜索,默认为 0.5)", "The width in pixels to compress images to. Leave empty for no compression.": "图片压缩宽度(像素)。留空则不压缩。", "Theme": "主题", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "正在思考...", "This action cannot be undone. Do you wish to continue?": "此操作无法撤销。您确认要继续吗?", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "欢迎来到 {{channelName}},本频道创建于 {{createdAt}}。", @@ -1816,9 +1850,11 @@ "wherever you are": "纵使身在远方,亦与世界同频", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "是否对输出内容进行分页。每页之间将用水平分隔线和页码隔开。默认为关闭", "Whisper (Local)": "Whisper (本地)", + "Who can share to this group": "", "Why?": "为什么?", "Widescreen Mode": "宽屏模式", "Width": "宽度", + "Wikipedia": "", "Won": "获胜", "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.": "与 top-k 配合使用。较高的值(例如 0.95)将产生更加多样化的文本,而较低的值(例如 0.5)将产生更加聚焦和保守的文本。", "Workspace": "工作空间", @@ -1830,6 +1866,8 @@ "Yacy Instance URL": "YaCy 实例接口地址", "Yacy Password": "YaCy 密码", "Yacy Username": "YaCy 用户名", + "Yahoo": "", + "Yandex": "", "Yesterday": "昨天", "Yesterday at {{LOCALIZED_TIME}}": "昨天 {{LOCALIZED_TIME}}", "You": "你", @@ -1837,6 +1875,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "每次对话最多仅能附上 {{maxCount}} 个文件。", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "点击下方“管理”按钮,您可以添加记忆,定制与大语言模型之间的互动,使其提供更加到位的帮助,更符合您的需求。", "You cannot upload an empty file.": "请勿上传空文件。", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "您没有权限在当前频道发送消息。", "You do not have permission to send messages in this thread.": "您没有权限在当前主题中发送消息。", "You do not have permission to upload files to this knowledge base.": "您没有权限上传文件到此知识库。", @@ -1849,7 +1890,7 @@ "Your account status is currently pending activation.": "您的账号当前状态为待激活", "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.": "您的全部捐款将直接给到插件开发者,Open WebUI 不会收取任何分成。但众筹平台可能会有服务费。", "Your message text or inputs": "您的消息文本或输入", - "Your usage stats have been successfully synced with the Open WebUI Community.": "您的使用统计数据已成功同步至 Open WebUI 社区。", + "Your usage stats have been successfully synced.": "", "YouTube": "YouTube", "Youtube Language": "Youtube 语言", "Youtube Proxy URL": "Youtube 代理地址" diff --git a/src/lib/i18n/locales/zh-TW/translation.json b/src/lib/i18n/locales/zh-TW/translation.json index a6d5ba69a..0fcbef53e 100644 --- a/src/lib/i18n/locales/zh-TW/translation.json +++ b/src/lib/i18n/locales/zh-TW/translation.json @@ -77,6 +77,7 @@ "Adjusting these settings will apply changes universally to all users.": "調整這些設定將會影響所有使用者。", "admin": "管理員", "Admin": "管理員", + "Admin Contact Email": "", "Admin Panel": "管理員控制台", "Admin Settings": "管理員設定", "Admins have access to all tools at all times; users need tools assigned per model in the workspace.": "管理員可以隨時使用所有工具;使用者則需在工作區中為每個模型分配工具。", @@ -101,7 +102,6 @@ "Allow Continue Response": "允許繼續回應", "Allow Delete Messages": "允許刪除訊息", "Allow File Upload": "允許上傳檔案", - "Allow Group Sharing": "允許在群組內分享", "Allow Multiple Models in Chat": "允許在對話中使用多個模型", "Allow non-local voices": "允許非本機語音", "Allow Rate Response": "允許為回應評分", @@ -130,6 +130,7 @@ "and {{COUNT}} more": "和另外 {{COUNT}} 個", "and create a new shared link.": "並建立新的共用連結。", "Android": "Android", + "Anyone": "", "API Base URL": "API 基底 URL", "API Base URL for Datalab Marker service. Defaults to: https://www.datalab.to/api/v1/marker": "Datalab Marker API 服務的請求 URL。預設為:https://www.datalab.to/api/v1/marker", "API Key": "API 金鑰", @@ -175,6 +176,7 @@ "Authenticate": "驗證", "Authentication": "驗證", "Auto": "自動", + "Auto (Random)": "", "Auto-Copy Response to Clipboard": "自動將回應複製到剪貼簿", "Auto-playback response": "自動播放回應", "Autocomplete Generation": "自動完成生成", @@ -183,6 +185,7 @@ "AUTOMATIC1111 Api Auth String": "AUTOMATIC1111 API 驗證字串", "AUTOMATIC1111 Base URL": "AUTOMATIC1111 基底 URL", "AUTOMATIC1111 Base URL is required.": "需要提供 AUTOMATIC1111 基底 URL。", + "Automatically inject system tools in native function calling mode (e.g., timestamps, memory, chat history, notes, etc.)": "", "Available list": "可用清單", "Available Tools": "可用工具", "available users": "可用名額", @@ -201,6 +204,7 @@ "before": "之前", "Being lazy": "懶惰模式", "Beta": "測試", + "Bing": "", "Bing Search V7 Endpoint": "Bing 搜尋 V7 端點", "Bing Search V7 Subscription Key": "Bing 搜尋 V7 訂閱金鑰", "Bio": "個人簡介", @@ -209,7 +213,9 @@ "Bocha Search API Key": "Bocha 搜尋 API 金鑰", "Bold": "粗體", "Boosting or penalizing specific tokens for constrained responses. Bias values will be clamped between -100 and 100 (inclusive). (Default: none)": "針對受限的回應,增強或懲罰特定 tokens。偏差值將限制在 -100 到 100 (含)。 (預設:none)", + "Brave": "", "Brave Search API Key": "Brave 搜尋 API 金鑰", + "Builtin Tools": "", "Bullet List": "無序清單", "Button ID": "按鈕 ID", "Button Label": "按鈕文字", @@ -256,8 +262,10 @@ "Check for updates": "檢查更新", "Checking for updates...": "正在檢查更新...", "Choose a model before saving...": "儲存前請選擇一個模型...", + "Chunk Min Size Target": "", "Chunk Overlap": "區塊重疊", "Chunk Size": "區塊大小", + "Chunks smaller than this threshold will be merged with neighboring chunks when possible. Set to 0 to disable merging.": "", "Ciphers": "加密方式", "Citation": "引用", "Citations": "引用", @@ -293,7 +301,6 @@ "Code Block": "程式碼區塊", "Code Editor": "程式碼編輯器", "Code execution": "程式碼執行", - "Code Execution": "程式碼執行", "Code Execution Engine": "程式碼執行引擎", "Code Execution Timeout": "程式執行超時", "Code formatted successfully": "成功格式化程式碼", @@ -394,6 +401,7 @@ "Database": "資料庫", "Datalab Marker API": "Datalab Marker API", "DD/MM/YYYY": "DD/MM/YYYY", + "DDGS Backend": "", "December": "12 月", "Decrease UI Scale": "減小介面縮放比例", "Deepgram": "Deepgram", @@ -484,7 +492,6 @@ "Document Intelligence endpoint required.": "需要提供 Document Intelligence 端點。", "Document Intelligence Model": "Document Intelligence 模型", "Documentation": "說明檔案", - "Documents": "檔案", "does not make any external connections, and your data stays securely on your locally hosted server.": "不會建立任何外部連線,而且您的資料會安全地儲存在您本機伺服器上。", "Domain Filter List": "網域篩選列表", "don't fetch random pipelines from sources you don't trust.": "請勿從您無法信任的來源擷取任意管線。", @@ -495,11 +502,14 @@ "Done": "完成", "Download": "下載", "Download & Delete": "下載並刪除", + "Download as JSON": "", "Download as SVG": "以 SVG 格式下載", "Download canceled": "已取消下載", "Download Database": "下載資料庫", + "Downloading stats...": "", "Draw": "平手", "Drop any files here to upload": "拖曳檔案至此處進行上傳", + "DuckDuckGo": "", "e.g. '30s','10m'. Valid time units are 's', 'm', 'h'.": "例如:'30s'、'10m'。有效的時間單位為 's'、'm'、'h'。", "e.g. \"json\" or a JSON schema": "範例:\"json\" 或一個 JSON schema", "e.g. 60": "例如:60", @@ -574,6 +584,7 @@ "Enter Bocha Search API Key": "輸入 Bocha 搜尋 API 金鑰", "Enter Brave Search API Key": "輸入 Brave 搜尋 API 金鑰", "Enter certificate path": "輸入憑證路徑", + "Enter Chunk Min Size Target": "", "Enter Chunk Overlap": "輸入區塊重疊", "Enter Chunk Size": "輸入區塊大小", "Enter comma-separated \"token:bias_value\" pairs (example: 5432:100, 413:-100)": "輸入逗號分隔的 \"token:bias_value\" 配對 (範例:5432:100, 413:-100)", @@ -597,6 +608,7 @@ "Enter External Web Search URL": "輸入外部網路搜尋 URL", "Enter Firecrawl API Base URL": "輸入 Firecrawl API 基底 URL", "Enter Firecrawl API Key": "輸入 Firecrawl API 金鑰", + "Enter Firecrawl Timeout": "", "Enter folder name": "輸入分組名稱", "Enter function name filter list (e.g. func1, !func2)": "輸入函式名稱篩選列表(例如:func1, !func2)", "Enter Github Raw URL": "輸入 GitHub Raw URL", @@ -605,6 +617,7 @@ "Enter hex color (e.g. #FF0000)": "輸入十六進制色彩(例如:#FF0000)", "Enter ID": "輸入 ID", "Enter Image Size (e.g. 512x512)": "輸入圖片尺寸(例如:512x512)", + "Enter Jina API Base URL": "", "Enter Jina API Key": "輸入 Jina API 金鑰", "Enter JSON config (e.g., {\"disable_links\": true})": "輸入 JSON 設定(例如:{\"disable_links\": true})", "Enter Jupyter Password": "輸入 Jupyter 密碼", @@ -613,6 +626,8 @@ "Enter Kagi Search API Key": "輸入 Kagi 搜尋 API 金鑰", "Enter Key Behavior": "Enter 鍵行為", "Enter language codes": "輸入語言代碼", + "Enter max file count per folder": "", + "Enter MinerU API Key": "", "Enter Mistral API Base URL": "輸入 Mistral API 基底 URL", "Enter Mistral API Key": "輸入 Mistral API 金鑰", "Enter Model ID": "輸入模型 ID", @@ -738,6 +753,7 @@ "Failed to generate title": "產生標題失敗", "Failed to import models": "匯入模型失敗", "Failed to load chat preview": "對話預覽載入失敗", + "Failed to load Excel/CSV file. Please try downloading it instead.": "", "Failed to load file content.": "載入檔案內容失敗。", "Failed to move chat": "移動對話失敗", "Failed to process URL: {{url}}": "處理鏈接失敗: {{url}}", @@ -754,10 +770,10 @@ "Features": "功能", "Features Permissions": "功能權限", "February": "2 月", + "Feedback": "", "Feedback deleted successfully": "成功刪除回饋", "Feedback Details": "回饋詳情", "Feedback History": "回饋歷史", - "Feedbacks": "回饋", "Feel free to add specific details": "歡迎自由新增特定細節", "Female": "女性", "File": "檔案", @@ -778,11 +794,13 @@ "Fingerprint spoofing detected: Unable to use initials as avatar. Defaulting to default profile image.": "偵測到指紋偽造:無法使用姓名縮寫作為大頭貼。將預設為預設個人檔案圖片。", "Firecrawl API Base URL": "Firecrawl API 基底 URL", "Firecrawl API Key": "Firecrawl API 金鑰", + "Firecrawl Timeout (s)": "", "Floating Quick Actions": "浮動快速操作", "Focus Chat Input": "聚焦對話輸入框", "Folder": "分組", "Folder Background Image": "分組背景圖", "Folder deleted successfully": "成功刪除分組", + "Folder Max File Count": "", "Folder Name": "分組名稱", "Folder name cannot be empty.": "分組名稱不能為空。", "Folder name updated successfully": "成功更新分組名稱", @@ -828,7 +846,6 @@ "General": "一般", "Generate": "生成", "Generate an image": "生成圖片", - "Generate Image": "生成圖片", "Generate Message Pair": "生成訊息對", "Generated Image": "生成圖片", "Generating search query": "正在生成搜尋查詢", @@ -838,11 +855,13 @@ "Get started with {{WEBUI_NAME}}": "開始使用 {{WEBUI_NAME}}", "Global": "全域", "Good Response": "回應良好", + "Google": "", "Google Drive": "Google Drive", "Google PSE API Key": "Google PSE API 金鑰", "Google PSE Engine Id": "Google PSE 引擎 ID", "Gravatar": "Gravatar 大頭貼", "Grid": "網格", + "Grokipedia": "", "Group": "群組", "Group Channel": "群組頻道", "Group created successfully": "成功建立群組", @@ -897,7 +916,6 @@ "Image Prompt Generation": "圖片提示詞生成", "Image Prompt Generation Prompt": "生成圖片提示詞的提示詞", "Image Size": "圖片尺寸", - "Images": "圖片", "Import": "匯入", "Import Chats": "匯入對話紀錄", "Import Config from JSON File": "從 JSON 檔案匯入設定", @@ -929,6 +947,7 @@ "Integration": "整合", "Integrations": "外掛功能", "Interface": "介面", + "Interface Settings Access": "", "Invalid file content": "檔案內容無效", "Invalid file format.": "檔案格式無效。", "Invalid JSON file": "JSON 檔案無效", @@ -942,6 +961,7 @@ "is typing...": "正在輸入...", "Italic": "斜體", "January": "1 月", + "Jina API Base URL": "", "Jina API Key": "Jina API 金鑰", "join our Discord for help.": "加入我們的 Discord 以取得協助。", "JSON": "JSON", @@ -992,6 +1012,7 @@ "Leave empty to include all models from \"{{url}}/api/tags\" endpoint": "留空以包含來自 \"{{url}}/api/tags\" 端點的所有模型。", "Leave empty to include all models from \"{{url}}/models\" endpoint": "留空以包含來自 \"{{url}}/models\" 端點的所有模型。", "Leave empty to include all models or select specific models": "留空以包含所有模型或選擇特定模型", + "Leave empty to use first admin user": "", "Leave empty to use the default model (voxtral-mini-latest).": "留空以使用預設模型(voxtral-mini-latest)。", "Leave empty to use the default prompt, or enter a custom prompt": "留空以使用預設提示詞,或輸入自訂提示詞", "Leave model field empty to use the default model.": "留空模型欄位以使用預設模型。", @@ -1031,10 +1052,12 @@ "Manage your account information.": "管理您的帳號資訊。", "March": "3 月", "Markdown": "Markdown", - "Markdown (Header)": "Markdown(標題)", + "Markdown Header Text Splitter": "", "Max Speakers": "最大發言者數量", "Max Upload Count": "最大上傳數量", "Max Upload Size": "最大上傳大小", + "Maximum number of files allowed per folder.": "", + "Maximum number of files per folder is {{max}}.": "", "Maximum of 3 models can be downloaded simultaneously. Please try again later.": "最多同時下載 3 個模型。請稍後再試。", "May": "5 月", "MBR": "成員", @@ -1044,6 +1067,7 @@ "Member removed successfully": "成功移除成員", "Members": "成員", "Members added successfully": "成功新增成員", + "Memories": "", "Memories accessible by LLMs will be shown here.": "可被大型語言模型存取的記憶將顯示在此。", "Memory": "記憶", "Memory added successfully": "成功新增記憶", @@ -1101,6 +1125,7 @@ "Models imported successfully": "已成功匯入模型", "Models Public Sharing": "模型公開分享", "Models Sharing": "分享模型", + "Mojeek": "", "Mojeek Search API Key": "Mojeek 搜尋 API 金鑰", "More": "更多", "More Concise": "精煉表達", @@ -1134,7 +1159,7 @@ "No conversation to save": "沒有可儲存的對話", "No distance available": "無可用距離", "No expiration can pose security risks.": "未設定 JWT 到期時間可能造成安全風險。", - "No feedbacks found": "未找到回饋", + "No feedback found": "", "No file selected": "未選取檔案", "No files in this knowledge base.": "此知識庫中沒有文件。", "No functions found": "未找到函式", @@ -1149,6 +1174,7 @@ "No models selected": "未選取模型", "No Notes": "尚無筆記", "No notes found": "沒有任何筆記", + "No one": "", "No pinned messages": "沒有置頂訊息", "No prompts found": "未找到提示詞", "No results": "沒有結果", @@ -1200,6 +1226,7 @@ "Only invited users can access": "只有受邀使用者可以存取", "Only markdown files are allowed": "僅允許 Markdown 檔案", "Only select users and groups with permission can access": "只有具有權限的選定使用者和群組可以存取", + "Only sync new/updated chats": "", "Oops! Looks like the URL is invalid. Please double-check and try again.": "哎呀!這個 URL 似乎無效。請仔細檢查並再試一次。", "Oops! There are files still uploading. Please wait for the upload to complete.": "哎呀!還有檔案正在上傳。請等候上傳完畢。", "Oops! There was an error in the previous response.": "哎呀!之前的回應有一處錯誤。", @@ -1241,6 +1268,7 @@ "page": "頁面", "Paginate": "啟用分頁", "Parameters": "參數", + "Parent message not found": "", "Participate in community leaderboards and evaluations! Syncing aggregated usage stats helps drive research and improvements to Open WebUI. Your privacy is paramount: no message content is ever shared.": "參與社群排行榜和評估!同步聚合的使用統計資料有助於推動 Open WebUI 的研究和改進。您的隱私至關重要:絕不會分享訊息內容。", "Password": "密碼", "Passwords do not match.": "兩次輸入的密碼不一致。", @@ -1267,7 +1295,6 @@ "Pipe": "Pipe", "Pipeline deleted successfully": "成功刪除管線", "Pipeline downloaded successfully": "成功下載管線", - "Pipelines": "管線", "Pipelines are a plugin system with arbitrary code execution —": "管線是具任意程式碼執行風險的外掛系統 —", "Pipelines Not Detected": "未偵測到管線", "Pipelines Valves": "管線設定項目", @@ -1504,6 +1531,7 @@ "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.": "設定要使用的停止序列。當遇到此模式時,大型語言模型將停止生成文字並返回。可以在模型檔案中指定多個單獨的停止參數來設定多個停止模式。", "Setting": "設定", "Settings": "設定", + "Settings Permissions": "", "Settings saved successfully!": "設定已成功儲存!", "Share": "分享", "Share Chat": "分享對話", @@ -1547,6 +1575,7 @@ "Speech recognition error: {{error}}": "語音辨識錯誤:{{error}}", "Speech-to-Text": "語音轉文字 (STT) ", "Speech-to-Text Engine": "語音轉文字 (STT) 引擎", + "Split documents by markdown headers before applying character/token splitting.": "", "Start a new conversation": "開始新對話", "Start of the channel": "頻道起點", "Start Tag": "起始標籤", @@ -1557,6 +1586,7 @@ "STDOUT/STDERR": "STDOUT/STDERR", "Steps": "迭代步數", "Stop": "停止", + "Stop Download": "", "Stop Generating": "停止生成", "Stop Sequence": "停止序列", "Stream Chat Response": "串流式對話回應", @@ -1580,8 +1610,11 @@ "Sync": "同步", "Sync Complete!": "同步完成!", "Sync directory": "同步目錄", + "Sync Failed": "", "Sync Usage Stats": "同步使用統計資料", "Syncing stats...": "同步統計資料...", + "Syncing...": "", + "Syncs only chats with updates after your last sync timestamp. Disable to re-sync all chats.": "", "System": "系統", "System Instructions": "系統指令", "System Prompt": "系統提示詞", @@ -1626,6 +1659,7 @@ "The Weight of BM25 Hybrid Search. 0 more semantic, 1 more lexical. Default 0.5": "BM25 混合搜尋權重。0 更語意化,1 更關鍵詞化。預設 0.5", "The width in pixels to compress images to. Leave empty for no compression.": "圖片壓縮寬度(像素)。留空則不壓縮。", "Theme": "主題", + "There was an error syncing your stats. Please try again.": "", "Thinking...": "正在思考...", "This action cannot be undone. Do you wish to continue?": "此操作無法復原。您確定要繼續進行嗎?", "This channel was created on {{createdAt}}. This is the very beginning of the {{channelName}} channel.": "此頻道建立於 {{createdAt}}。這是 {{channelName}} 頻道的起點。", @@ -1816,9 +1850,11 @@ "wherever you are": "無論您在何處", "Whether to paginate the output. Each page will be separated by a horizontal rule and page number. Defaults to False.": "是否啟用輸出分頁功能,每頁會以水平線與頁碼分隔。預設為 False。", "Whisper (Local)": "Whisper(本機)", + "Who can share to this group": "", "Why?": "為什麼?", "Widescreen Mode": "寬螢幕模式", "Width": "寬度", + "Wikipedia": "", "Won": "獲勝", "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.": "與 top-k 一起使用。較高的值(例如:0.95)將產生更多樣化的文字,而較低的值(例如:0.5)將生成更集中和保守的文字。", "Workspace": "工作區", @@ -1830,6 +1866,8 @@ "Yacy Instance URL": "Yacy 執行個體 URL", "Yacy Password": "Yacy 密碼", "Yacy Username": "Yacy 使用者名稱", + "Yahoo": "", + "Yandex": "", "Yesterday": "昨天", "Yesterday at {{LOCALIZED_TIME}}": "昨天 {{LOCALIZED_TIME}}", "You": "您", @@ -1837,6 +1875,9 @@ "You can only chat with a maximum of {{maxCount}} file(s) at a time.": "您一次最多只能與 {{maxCount}} 個檔案進行對話。", "You can personalize your interactions with LLMs by adding memories through the 'Manage' button below, making them more helpful and tailored to you.": "您可以透過下方的「管理」按鈕新增記憶,將您與大型語言模型的互動個人化,讓它們更有幫助並更符合您的需求。", "You cannot upload an empty file.": "您無法上傳空檔案", + "You do not have permission to edit this model": "", + "You do not have permission to edit this prompt.": "", + "You do not have permission to save this prompt.": "", "You do not have permission to send messages in this channel.": "您沒有在此頻道中傳送訊息的權限。", "You do not have permission to send messages in this thread.": "您沒有在此討論串中傳送訊息的權限。", "You do not have permission to upload files to this knowledge base.": "您沒有權限上傳檔案到此知識庫。", @@ -1849,7 +1890,7 @@ "Your account status is currently pending activation.": "您的帳號目前正在等待啟用。", "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.": "您的所有貢獻將會直接交給外掛開發者;Open WebUI 不會收取任何百分比。然而,所選擇的贊助平臺可能有其自身的費用。", "Your message text or inputs": "您的訊息文字或輸入", - "Your usage stats have been successfully synced with the Open WebUI Community.": "您的使用統計資料已成功同步至 Open WebUI 社群。", + "Your usage stats have been successfully synced.": "", "YouTube": "YouTube", "Youtube Language": "YouTube 語言", "Youtube Proxy URL": "YouTube 代理伺服器 URL" diff --git a/src/lib/utils/index.ts b/src/lib/utils/index.ts index 1e148972c..a7a0fca32 100644 --- a/src/lib/utils/index.ts +++ b/src/lib/utils/index.ts @@ -357,9 +357,9 @@ export const generateInitialsImage = (name) => { const initials = sanitizedName.length > 0 ? sanitizedName[0] + - (sanitizedName.split(' ').length > 1 - ? sanitizedName[sanitizedName.lastIndexOf(' ') + 1] - : '') + (sanitizedName.split(' ').length > 1 + ? sanitizedName[sanitizedName.lastIndexOf(' ') + 1] + : '') : ''; ctx.fillText(initials.toUpperCase(), canvas.width / 2, canvas.height / 2); @@ -515,10 +515,10 @@ export const compareVersion = (latest, current) => { return current === '0.0.0' ? false : current.localeCompare(latest, undefined, { - numeric: true, - sensitivity: 'case', - caseFirst: 'upper' - }) < 0; + numeric: true, + sensitivity: 'case', + caseFirst: 'upper' + }) < 0; }; export const extractCurlyBraceWords = (text) => { diff --git a/src/lib/utils/marked/citation-extension.ts b/src/lib/utils/marked/citation-extension.ts index ca8325fe1..ea714e544 100644 --- a/src/lib/utils/marked/citation-extension.ts +++ b/src/lib/utils/marked/citation-extension.ts @@ -31,7 +31,7 @@ export function citationExtension() { while ((m = groupRegex.exec(raw))) { // m[1] is the content inside brackets, e.g. "1, 2#foo" const parts = m[1].split(',').map((p) => p.trim()); - + parts.forEach((part) => { // Check if it starts with digit const match = /^(\d+)(?:#(.+))?$/.exec(part); @@ -45,7 +45,7 @@ export function citationExtension() { } }); } - + if (ids.length === 0) return; return {