diff --git a/backend/open_webui/main.py b/backend/open_webui/main.py index 3a14ade8bc..b1b754724e 100644 --- a/backend/open_webui/main.py +++ b/backend/open_webui/main.py @@ -679,9 +679,7 @@ async def lifespan(app: FastAPI): } ) await set_tool_servers(mock_request) - log.info( - f"Initialized {len(app.state.TOOL_SERVERS)} tool server(s)" - ) + log.info(f"Initialized {len(app.state.TOOL_SERVERS)} tool server(s)") except Exception as e: log.warning(f"Failed to initialize tool servers at startup: {e}") diff --git a/backend/open_webui/models/chats.py b/backend/open_webui/models/chats.py index 2553e4306d..1418abd62d 100644 --- a/backend/open_webui/models/chats.py +++ b/backend/open_webui/models/chats.py @@ -451,9 +451,7 @@ class ChatTable: # Clean up orphaned old tags in one query removed = set(old_tags) - set(new_tag_ids) if removed: - self.delete_orphan_tags_for_user( - list(removed), user.id, db=db - ) + self.delete_orphan_tags_for_user(list(removed), user.id, db=db) return ChatModel.model_validate(chat) @@ -1380,9 +1378,7 @@ class ChatTable: with get_db_context(db) as db: orphans = [] for tag_id in tag_ids: - count = self.count_chats_by_tag_name_and_user_id( - tag_id, user_id, db=db - ) + count = self.count_chats_by_tag_name_and_user_id(tag_id, user_id, db=db) if count <= threshold: orphans.append(tag_id) Tags.delete_tags_by_ids_and_user_id(orphans, user_id, db=db) diff --git a/backend/open_webui/models/groups.py b/backend/open_webui/models/groups.py index a32f36f008..bb3a9347be 100644 --- a/backend/open_webui/models/groups.py +++ b/backend/open_webui/models/groups.py @@ -218,11 +218,7 @@ class GroupTable: ) ) - results = ( - query.group_by(Group.id) - .order_by(Group.updated_at.desc()) - .all() - ) + results = query.group_by(Group.id).order_by(Group.updated_at.desc()).all() return [ GroupResponse.model_validate( diff --git a/backend/open_webui/models/tags.py b/backend/open_webui/models/tags.py index ef6ad1ded7..147bb394d5 100644 --- a/backend/open_webui/models/tags.py +++ b/backend/open_webui/models/tags.py @@ -123,9 +123,9 @@ class TagTable: return True try: with get_db_context(db) as db: - db.query(Tag).filter( - Tag.id.in_(ids), Tag.user_id == user_id - ).delete(synchronize_session=False) + db.query(Tag).filter(Tag.id.in_(ids), Tag.user_id == user_id).delete( + synchronize_session=False + ) db.commit() return True except Exception as e: diff --git a/backend/open_webui/routers/tools.py b/backend/open_webui/routers/tools.py index d489f9b643..fab5039909 100644 --- a/backend/open_webui/routers/tools.py +++ b/backend/open_webui/routers/tools.py @@ -107,7 +107,9 @@ async def get_tools( # MCP Tool Servers for server in request.app.state.config.TOOL_SERVER_CONNECTIONS: - if server.get("type", "openapi") == "mcp" and server.get("config", {}).get("enable"): + if server.get("type", "openapi") == "mcp" and server.get("config", {}).get( + "enable" + ): server_id = server.get("info", {}).get("id") auth_type = server.get("auth_type", "none") diff --git a/backend/open_webui/utils/middleware.py b/backend/open_webui/utils/middleware.py index 630ab608c6..7ab7537de2 100644 --- a/backend/open_webui/utils/middleware.py +++ b/backend/open_webui/utils/middleware.py @@ -1918,9 +1918,7 @@ async def convert_url_images_to_base64(form_data): return form_data -def load_messages_from_db( - chat_id: str, message_id: str -) -> Optional[list[dict]]: +def load_messages_from_db(chat_id: str, message_id: str) -> Optional[list[dict]]: """ Load the message chain from DB up to message_id, keeping only LLM-relevant fields (role, content, output). @@ -2164,7 +2162,8 @@ async def process_chat_payload(request, form_data, user, metadata, model): form_data["messages"] = add_or_update_user_message( ( request.app.state.config.CODE_INTERPRETER_PROMPT_TEMPLATE - if request.app.state.config.CODE_INTERPRETER_PROMPT_TEMPLATE != "" + if request.app.state.config.CODE_INTERPRETER_PROMPT_TEMPLATE + != "" else DEFAULT_CODE_INTERPRETER_PROMPT ), form_data["messages"], @@ -2198,7 +2197,7 @@ async def process_chat_payload(request, form_data, user, metadata, model): if skill.id in user_skill_ids: # User-selected: inject full content form_data["messages"] = add_or_update_system_message( - f"\n{skill.content}\n", + f'\n{skill.content}\n', form_data["messages"], append=True, ) @@ -2447,7 +2446,9 @@ async def process_chat_payload(request, form_data, user, metadata, model): { **extra_params, "__event_emitter__": event_emitter, - "__skill_ids__": [s.id for s in available_skills if s.id not in user_skill_ids], + "__skill_ids__": [ + s.id for s in available_skills if s.id not in user_skill_ids + ], }, features, model, diff --git a/src/lib/components/admin/Settings/Interface.svelte b/src/lib/components/admin/Settings/Interface.svelte index 397306d902..cf1becbaef 100644 --- a/src/lib/components/admin/Settings/Interface.svelte +++ b/src/lib/components/admin/Settings/Interface.svelte @@ -152,7 +152,15 @@ if (taskConfig.TASK_MODEL) { const model = models.find((m) => m.id === taskConfig.TASK_MODEL); if (model) { - if (model?.access_grants && !model.access_grants.some((g) => g.principal_type === 'user' && g.principal_id === '*' && g.permission === 'read')) { + if ( + model?.access_grants && + !model.access_grants.some( + (g) => + g.principal_type === 'user' && + g.principal_id === '*' && + g.permission === 'read' + ) + ) { toast.error( $i18n.t( 'This model is not publicly available. Please select another model.' @@ -187,7 +195,15 @@ if (taskConfig.TASK_MODEL_EXTERNAL) { const model = models.find((m) => m.id === taskConfig.TASK_MODEL_EXTERNAL); if (model) { - if (model?.access_grants && !model.access_grants.some((g) => g.principal_type === 'user' && g.principal_id === '*' && g.permission === 'read')) { + if ( + model?.access_grants && + !model.access_grants.some( + (g) => + g.principal_type === 'user' && + g.principal_id === '*' && + g.permission === 'read' + ) + ) { toast.error( $i18n.t( 'This model is not publicly available. Please select another model.' diff --git a/src/lib/i18n/locales/ar-BH/translation.json b/src/lib/i18n/locales/ar-BH/translation.json index 83d4b7db0e..fe8c51199c 100644 --- a/src/lib/i18n/locales/ar-BH/translation.json +++ b/src/lib/i18n/locales/ar-BH/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "", "Organize your users": "", "Other": "آخر", + "Output": "", "OUTPUT": "", "Output format": "", "Output Format": "", @@ -1669,6 +1670,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "", "Skip the cache and re-run the inference. Defaults to False.": "", "Something went wrong :/": "", diff --git a/src/lib/i18n/locales/ar/translation.json b/src/lib/i18n/locales/ar/translation.json index fdb000d57e..43eb1ef2d4 100644 --- a/src/lib/i18n/locales/ar/translation.json +++ b/src/lib/i18n/locales/ar/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "", "Organize your users": "تنظيم المستخدمين الخاصين بك", "Other": "آخر", + "Output": "", "OUTPUT": "الإخراج", "Output format": "تنسيق الإخراج", "Output Format": "", @@ -1669,6 +1670,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "", "Skip the cache and re-run the inference. Defaults to False.": "", "Something went wrong :/": "", diff --git a/src/lib/i18n/locales/bg-BG/translation.json b/src/lib/i18n/locales/bg-BG/translation.json index 0ff9d74c37..7f751ed383 100644 --- a/src/lib/i18n/locales/bg-BG/translation.json +++ b/src/lib/i18n/locales/bg-BG/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "", "Organize your users": "Организирайте вашите потребители", "Other": "Друго", + "Output": "", "OUTPUT": "ИЗХОД", "Output format": "Изходен формат", "Output Format": "", @@ -1665,6 +1666,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "", "Skip the cache and re-run the inference. Defaults to False.": "", "Something went wrong :/": "", diff --git a/src/lib/i18n/locales/bn-BD/translation.json b/src/lib/i18n/locales/bn-BD/translation.json index a930a7e4c1..7c4e83e9f2 100644 --- a/src/lib/i18n/locales/bn-BD/translation.json +++ b/src/lib/i18n/locales/bn-BD/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "", "Organize your users": "", "Other": "অন্যান্য", + "Output": "", "OUTPUT": "", "Output format": "", "Output Format": "", @@ -1665,6 +1666,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "", "Skip the cache and re-run the inference. Defaults to False.": "", "Something went wrong :/": "", diff --git a/src/lib/i18n/locales/bo-TB/translation.json b/src/lib/i18n/locales/bo-TB/translation.json index c16183bd75..c2bc732d2a 100644 --- a/src/lib/i18n/locales/bo-TB/translation.json +++ b/src/lib/i18n/locales/bo-TB/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "", "Organize your users": "ཁྱེད་ཀྱི་བེད་སྤྱོད་མཁན་སྒྲིག་འཛུགས།", "Other": "གཞན།", + "Output": "", "OUTPUT": "ཐོན་འབྲས།", "Output format": "ཐོན་འབྲས་ཀྱི་བཀོད་པ།", "Output Format": "", @@ -1664,6 +1665,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "", "Skip the cache and re-run the inference. Defaults to False.": "", "Something went wrong :/": "", diff --git a/src/lib/i18n/locales/bs-BA/translation.json b/src/lib/i18n/locales/bs-BA/translation.json index 7373590753..af14140e40 100644 --- a/src/lib/i18n/locales/bs-BA/translation.json +++ b/src/lib/i18n/locales/bs-BA/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "", "Organize your users": "", "Other": "Ostalo", + "Output": "", "OUTPUT": "", "Output format": "", "Output Format": "", @@ -1666,6 +1667,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "", "Skip the cache and re-run the inference. Defaults to False.": "", "Something went wrong :/": "", diff --git a/src/lib/i18n/locales/ca-ES/translation.json b/src/lib/i18n/locales/ca-ES/translation.json index a9af1bbfa9..80a52fce94 100644 --- a/src/lib/i18n/locales/ca-ES/translation.json +++ b/src/lib/i18n/locales/ca-ES/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "Llista ordenada", "Organize your users": "Organitza els teus usuaris", "Other": "Altres", + "Output": "", "OUTPUT": "SORTIDA", "Output format": "Format de sortida", "Output Format": "Format de sortida", @@ -1666,6 +1667,8 @@ "Skill updated successfully": "Habilitat actualitzada correctament", "Skills": "Habilitats", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "Ometre la memòria cau", "Skip the cache and re-run the inference. Defaults to False.": "Omet la memòria cai i torna a executar la inferència. Per defecte és Fals.", "Something went wrong :/": "Quelcom no ha anat bé", diff --git a/src/lib/i18n/locales/ceb-PH/translation.json b/src/lib/i18n/locales/ceb-PH/translation.json index fa2754afc7..52df723518 100644 --- a/src/lib/i18n/locales/ceb-PH/translation.json +++ b/src/lib/i18n/locales/ceb-PH/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "", "Organize your users": "", "Other": "", + "Output": "", "OUTPUT": "", "Output format": "", "Output Format": "", @@ -1665,6 +1666,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "", "Skip the cache and re-run the inference. Defaults to False.": "", "Something went wrong :/": "", diff --git a/src/lib/i18n/locales/cs-CZ/translation.json b/src/lib/i18n/locales/cs-CZ/translation.json index c4d6edb64d..6450f56cdb 100644 --- a/src/lib/i18n/locales/cs-CZ/translation.json +++ b/src/lib/i18n/locales/cs-CZ/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "Číslovaný seznam", "Organize your users": "Uspořádejte své uživatele", "Other": "Jiné", + "Output": "", "OUTPUT": "VÝSTUP", "Output format": "Formát výstupu", "Output Format": "Formát výstupu", @@ -1667,6 +1668,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "Přeskočit mezipaměť", "Skip the cache and re-run the inference. Defaults to False.": "Přeskočit mezipaměť a znovu spustit inferenci. Výchozí hodnota je False.", "Something went wrong :/": "Něco se pokazilo :/", diff --git a/src/lib/i18n/locales/da-DK/translation.json b/src/lib/i18n/locales/da-DK/translation.json index 562b4a7400..ca28cd413e 100644 --- a/src/lib/i18n/locales/da-DK/translation.json +++ b/src/lib/i18n/locales/da-DK/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "Nummereret liste", "Organize your users": "Organiser dine brugere", "Other": "Andet", + "Output": "", "OUTPUT": "OUTPUT", "Output format": "Outputformat", "Output Format": "Output format", @@ -1665,6 +1666,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "Spring cache over", "Skip the cache and re-run the inference. Defaults to False.": "Spring cachen over og kør inferensen igen. Standard er falsk.", "Something went wrong :/": "Noget gik galt :/", diff --git a/src/lib/i18n/locales/de-DE/translation.json b/src/lib/i18n/locales/de-DE/translation.json index fc2ffd4687..3405a4add1 100644 --- a/src/lib/i18n/locales/de-DE/translation.json +++ b/src/lib/i18n/locales/de-DE/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "Nummerierte Liste", "Organize your users": "Organisieren Sie Ihre Benutzer", "Other": "Andere", + "Output": "", "OUTPUT": "AUSGABE", "Output format": "Ausgabeformat", "Output Format": "Ausgabeformat", @@ -1665,6 +1666,8 @@ "Skill updated successfully": "Skill erfolgreich aktualisiert", "Skills": "Skills", "Skills Access": "Skills Zugang", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "Cache überspringen", "Skip the cache and re-run the inference. Defaults to False.": "Cache überspringen und die Inferenz erneut ausführen. Standardmäßig deaktiviert.", "Something went wrong :/": "Etwas ist schiefgelaufen :/", diff --git a/src/lib/i18n/locales/dg-DG/translation.json b/src/lib/i18n/locales/dg-DG/translation.json index 55c6b6a4f7..bafcc7a760 100644 --- a/src/lib/i18n/locales/dg-DG/translation.json +++ b/src/lib/i18n/locales/dg-DG/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "", "Organize your users": "", "Other": "", + "Output": "", "OUTPUT": "", "Output format": "", "Output Format": "", @@ -1665,6 +1666,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "", "Skip the cache and re-run the inference. Defaults to False.": "", "Something went wrong :/": "", diff --git a/src/lib/i18n/locales/el-GR/translation.json b/src/lib/i18n/locales/el-GR/translation.json index 00ccf22822..4ac9878e61 100644 --- a/src/lib/i18n/locales/el-GR/translation.json +++ b/src/lib/i18n/locales/el-GR/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "", "Organize your users": "Οργανώστε τους χρήστες σας", "Other": "Άλλο", + "Output": "", "OUTPUT": "ΕΞΟΔΟΣ", "Output format": "Μορφή εξόδου", "Output Format": "Μορφή Εξόδου", @@ -1665,6 +1666,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "", "Skip the cache and re-run the inference. Defaults to False.": "", "Something went wrong :/": "", diff --git a/src/lib/i18n/locales/en-GB/translation.json b/src/lib/i18n/locales/en-GB/translation.json index 9e6e209bc8..6231963516 100644 --- a/src/lib/i18n/locales/en-GB/translation.json +++ b/src/lib/i18n/locales/en-GB/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "", "Organize your users": "Organise your users", "Other": "", + "Output": "", "OUTPUT": "", "Output format": "", "Output Format": "", @@ -1665,6 +1666,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "", "Skip the cache and re-run the inference. Defaults to False.": "", "Something went wrong :/": "", diff --git a/src/lib/i18n/locales/en-US/translation.json b/src/lib/i18n/locales/en-US/translation.json index f4c2768d5d..b6aa646895 100644 --- a/src/lib/i18n/locales/en-US/translation.json +++ b/src/lib/i18n/locales/en-US/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "", "Organize your users": "", "Other": "", + "Output": "", "OUTPUT": "", "Output format": "", "Output Format": "", @@ -1665,6 +1666,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "", "Skip the cache and re-run the inference. Defaults to False.": "", "Something went wrong :/": "", diff --git a/src/lib/i18n/locales/es-ES/translation.json b/src/lib/i18n/locales/es-ES/translation.json index 73b979dd32..7594c8b515 100644 --- a/src/lib/i18n/locales/es-ES/translation.json +++ b/src/lib/i18n/locales/es-ES/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "Lista Ordenada", "Organize your users": "Organiza tus usuarios", "Other": "Otro", + "Output": "", "OUTPUT": "SALIDA", "Output format": "Formato de salida", "Output Format": "Formato de Salida", @@ -1666,6 +1667,8 @@ "Skill updated successfully": "Habilidad actualiada correctamente", "Skills": "Habilidades", "Skills Access": "Acceso a Habilidades", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "Evitar Caché", "Skip the cache and re-run the inference. Defaults to False.": "Evitar caché y reiniciar la interfaz. Valor predeterminado Falso", "Something went wrong :/": "Algo ha ido mal :/", diff --git a/src/lib/i18n/locales/et-EE/translation.json b/src/lib/i18n/locales/et-EE/translation.json index cef8481d21..a0b6b73fd1 100644 --- a/src/lib/i18n/locales/et-EE/translation.json +++ b/src/lib/i18n/locales/et-EE/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "Ordered List", "Organize your users": "Korraldage oma kasutajad", "Other": "Muu", + "Output": "", "OUTPUT": "VÄLJUND", "Output format": "Väljundformaat", "Output Format": "Output Format", @@ -1665,6 +1666,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "Skip Vahemälu", "Skip the cache and re-run the inference. Defaults to False.": "Skip the vahemälu ja re-run the inference. Defaults kuni False.", "Something went wrong :/": "Something went wrong :/", diff --git a/src/lib/i18n/locales/eu-ES/translation.json b/src/lib/i18n/locales/eu-ES/translation.json index 65db2d2e7b..f93da7afde 100644 --- a/src/lib/i18n/locales/eu-ES/translation.json +++ b/src/lib/i18n/locales/eu-ES/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "", "Organize your users": "Antolatu zure erabiltzaileak", "Other": "Bestelakoa", + "Output": "", "OUTPUT": "IRTEERA", "Output format": "Irteera formatua", "Output Format": "", @@ -1665,6 +1666,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "", "Skip the cache and re-run the inference. Defaults to False.": "", "Something went wrong :/": "", diff --git a/src/lib/i18n/locales/fa-IR/translation.json b/src/lib/i18n/locales/fa-IR/translation.json index eb3efc026a..89584d0d3f 100644 --- a/src/lib/i18n/locales/fa-IR/translation.json +++ b/src/lib/i18n/locales/fa-IR/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "لیست شماره\u200cگذاری شده", "Organize your users": "کاربران خود را سازماندهی کنید", "Other": "دیگر", + "Output": "", "OUTPUT": "خروجی", "Output format": "قالب خروجی", "Output Format": "قالب خروجی", @@ -1665,6 +1666,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "رد کردن کش", "Skip the cache and re-run the inference. Defaults to False.": "کش را رد کرده و استنتاج را مجدداً اجرا کنید. پیش\u200cفرض: False.", "Something went wrong :/": "مشکلی پیش آمد :/", diff --git a/src/lib/i18n/locales/fi-FI/translation.json b/src/lib/i18n/locales/fi-FI/translation.json index 251ee6998c..2b87bb67bc 100644 --- a/src/lib/i18n/locales/fi-FI/translation.json +++ b/src/lib/i18n/locales/fi-FI/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "Järjestetty lista", "Organize your users": "Järjestä käyttäjäsi", "Other": "Muu", + "Output": "", "OUTPUT": "TULOSTE", "Output format": "Tulosteen muoto", "Output Format": "Tulosteen muoto", @@ -1665,6 +1666,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "Ohita välimuisti", "Skip the cache and re-run the inference. Defaults to False.": "Ohita välimuisti ja suorita päätelmä uudelleen. Oletusarvo ei käytössä.", "Something went wrong :/": "Jokin meni pieleen :/", diff --git a/src/lib/i18n/locales/fr-CA/translation.json b/src/lib/i18n/locales/fr-CA/translation.json index 812f3366ce..959a3d68e0 100644 --- a/src/lib/i18n/locales/fr-CA/translation.json +++ b/src/lib/i18n/locales/fr-CA/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "", "Organize your users": "Organisez vos utilisateurs", "Other": "Autre", + "Output": "", "OUTPUT": "SORTIE", "Output format": "Format de sortie", "Output Format": "Format de sortie", @@ -1666,6 +1667,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "Ne pas utiliser le cache", "Skip the cache and re-run the inference. Defaults to False.": "Ne pas utiliser le cache et re executer l'inférence. Par defaut à False", "Something went wrong :/": "", diff --git a/src/lib/i18n/locales/fr-FR/translation.json b/src/lib/i18n/locales/fr-FR/translation.json index e7348aa095..73f82d4ed0 100644 --- a/src/lib/i18n/locales/fr-FR/translation.json +++ b/src/lib/i18n/locales/fr-FR/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "Liste ordonnéee", "Organize your users": "Organisez vos utilisateurs", "Other": "Autre", + "Output": "", "OUTPUT": "SORTIE", "Output format": "Format de sortie", "Output Format": "Format de sortie", @@ -1666,6 +1667,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "Ne pas utiliser le cache", "Skip the cache and re-run the inference. Defaults to False.": "Ne pas utiliser le cache et re executer l'inférence. Par defaut à False", "Something went wrong :/": "Quelque chose s'est mal passé :/", diff --git a/src/lib/i18n/locales/gl-ES/translation.json b/src/lib/i18n/locales/gl-ES/translation.json index 53b0f58ed7..35626a356c 100644 --- a/src/lib/i18n/locales/gl-ES/translation.json +++ b/src/lib/i18n/locales/gl-ES/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "", "Organize your users": "Organiza os teus usuarios", "Other": "Outro", + "Output": "", "OUTPUT": "SAIDA", "Output format": "Formato de saida", "Output Format": "", @@ -1665,6 +1666,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "", "Skip the cache and re-run the inference. Defaults to False.": "", "Something went wrong :/": "", diff --git a/src/lib/i18n/locales/he-IL/translation.json b/src/lib/i18n/locales/he-IL/translation.json index e045b41464..9de508d0f1 100644 --- a/src/lib/i18n/locales/he-IL/translation.json +++ b/src/lib/i18n/locales/he-IL/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "", "Organize your users": "", "Other": "אחר", + "Output": "", "OUTPUT": "", "Output format": "", "Output Format": "", @@ -1666,6 +1667,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "", "Skip the cache and re-run the inference. Defaults to False.": "", "Something went wrong :/": "", diff --git a/src/lib/i18n/locales/hi-IN/translation.json b/src/lib/i18n/locales/hi-IN/translation.json index ef48c95b5d..4c2a00af8b 100644 --- a/src/lib/i18n/locales/hi-IN/translation.json +++ b/src/lib/i18n/locales/hi-IN/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "", "Organize your users": "", "Other": "अन्य", + "Output": "", "OUTPUT": "", "Output format": "", "Output Format": "", @@ -1665,6 +1666,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "", "Skip the cache and re-run the inference. Defaults to False.": "", "Something went wrong :/": "", diff --git a/src/lib/i18n/locales/hr-HR/translation.json b/src/lib/i18n/locales/hr-HR/translation.json index b8a25b325c..d2b5e7287d 100644 --- a/src/lib/i18n/locales/hr-HR/translation.json +++ b/src/lib/i18n/locales/hr-HR/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "", "Organize your users": "", "Other": "Ostalo", + "Output": "", "OUTPUT": "", "Output format": "", "Output Format": "", @@ -1666,6 +1667,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "", "Skip the cache and re-run the inference. Defaults to False.": "", "Something went wrong :/": "", diff --git a/src/lib/i18n/locales/hu-HU/translation.json b/src/lib/i18n/locales/hu-HU/translation.json index 2d24d868ea..a4cc3ae450 100644 --- a/src/lib/i18n/locales/hu-HU/translation.json +++ b/src/lib/i18n/locales/hu-HU/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "", "Organize your users": "Szervezd meg a felhasználóidat", "Other": "Egyéb", + "Output": "", "OUTPUT": "KIMENET", "Output format": "Kimeneti formátum", "Output Format": "", @@ -1665,6 +1666,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "", "Skip the cache and re-run the inference. Defaults to False.": "", "Something went wrong :/": "", diff --git a/src/lib/i18n/locales/id-ID/translation.json b/src/lib/i18n/locales/id-ID/translation.json index 8bac5d6d7c..2befb985a4 100644 --- a/src/lib/i18n/locales/id-ID/translation.json +++ b/src/lib/i18n/locales/id-ID/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "", "Organize your users": "", "Other": "Lainnya", + "Output": "", "OUTPUT": "", "Output format": "", "Output Format": "", @@ -1664,6 +1665,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "", "Skip the cache and re-run the inference. Defaults to False.": "", "Something went wrong :/": "", diff --git a/src/lib/i18n/locales/ie-GA/translation.json b/src/lib/i18n/locales/ie-GA/translation.json index d811a5919f..8d2ba37ef8 100644 --- a/src/lib/i18n/locales/ie-GA/translation.json +++ b/src/lib/i18n/locales/ie-GA/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "Liosta Ordaithe", "Organize your users": "Eagraigh do chuid úsáideoirí", "Other": "Eile", + "Output": "", "OUTPUT": "ASCHUR", "Output format": "Formáid aschuir", "Output Format": "Formáid Aschuir", @@ -1665,6 +1666,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "Seachain an Taisce", "Skip the cache and re-run the inference. Defaults to False.": "Seachain an taisce agus athrith an tátal. Réamhshocrú Bréagach.", "Something went wrong :/": "Chuaigh rud éigin mícheart :/", diff --git a/src/lib/i18n/locales/it-IT/translation.json b/src/lib/i18n/locales/it-IT/translation.json index 2fbf5b7093..a6cbd67dd0 100644 --- a/src/lib/i18n/locales/it-IT/translation.json +++ b/src/lib/i18n/locales/it-IT/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "", "Organize your users": "Organizza i tuoi utenti", "Other": "Altro", + "Output": "", "OUTPUT": "OUTPUT", "Output format": "Formato di output", "Output Format": "Formato output", @@ -1666,6 +1667,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "Salta cache", "Skip the cache and re-run the inference. Defaults to False.": "", "Something went wrong :/": "", diff --git a/src/lib/i18n/locales/ja-JP/translation.json b/src/lib/i18n/locales/ja-JP/translation.json index b0c2f2dd26..51fc7d974a 100644 --- a/src/lib/i18n/locales/ja-JP/translation.json +++ b/src/lib/i18n/locales/ja-JP/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "順序つきリスト", "Organize your users": "ユーザーを整理する", "Other": "その他", + "Output": "", "OUTPUT": "出力", "Output format": "出力形式", "Output Format": "出力形式", @@ -1664,6 +1665,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "キャッシュをスキップする", "Skip the cache and re-run the inference. Defaults to False.": "キャッシュをスキップし、推論を再実行します。デフォルトでは無効。", "Something went wrong :/": "何らかの問題が発生しました", diff --git a/src/lib/i18n/locales/ka-GE/translation.json b/src/lib/i18n/locales/ka-GE/translation.json index 0a57724dc3..6885be0b32 100644 --- a/src/lib/i18n/locales/ka-GE/translation.json +++ b/src/lib/i18n/locales/ka-GE/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "დალაგებული სია", "Organize your users": "დააორგანიზეთ თქვენი მომხმარებლები", "Other": "სხვა", + "Output": "", "OUTPUT": "გამოტანა", "Output format": "გამოტანის ფორმატი", "Output Format": "გამოტანის ფორმატი", @@ -1665,6 +1666,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "კეშის გამოტოვება", "Skip the cache and re-run the inference. Defaults to False.": "", "Something went wrong :/": "რაღაც ცუდადაა :/", diff --git a/src/lib/i18n/locales/kab-DZ/translation.json b/src/lib/i18n/locales/kab-DZ/translation.json index 2a08a9cb9f..d0d63b183e 100644 --- a/src/lib/i18n/locales/kab-DZ/translation.json +++ b/src/lib/i18n/locales/kab-DZ/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "Tabdart n usmizwer", "Organize your users": "Sefrek iseqdacen-ik·im", "Other": "Wayeḍ", + "Output": "", "OUTPUT": "TUFFƔA", "Output format": "Amasal n tuffɣa", "Output Format": "Amasal n tuffɣa", @@ -1665,6 +1666,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "Ur sseqdac ara tuffirt", "Skip the cache and re-run the inference. Defaults to False.": "Seqcer aṭaksi-nni, tɛawdeḍ-as assefreg. Imezwura ɣer False.", "Something went wrong :/": "Yella wayen ur neddi ara :/", diff --git a/src/lib/i18n/locales/ko-KR/translation.json b/src/lib/i18n/locales/ko-KR/translation.json index ee0431685f..04e4150840 100644 --- a/src/lib/i18n/locales/ko-KR/translation.json +++ b/src/lib/i18n/locales/ko-KR/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "번호 목록", "Organize your users": "사용자 관리", "Other": "기타", + "Output": "", "OUTPUT": "출력", "Output format": "출력 형식", "Output Format": "출력 형식", @@ -1664,6 +1665,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "캐시 무시", "Skip the cache and re-run the inference. Defaults to False.": "캐시를 무시하고 추론을 다시 실행합니다. 기본값은 False입니다.", "Something went wrong :/": "무언가 잘못 되었습니다 :/", diff --git a/src/lib/i18n/locales/lt-LT/translation.json b/src/lib/i18n/locales/lt-LT/translation.json index 281166e28d..7ec79601ec 100644 --- a/src/lib/i18n/locales/lt-LT/translation.json +++ b/src/lib/i18n/locales/lt-LT/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "", "Organize your users": "", "Other": "Kita", + "Output": "", "OUTPUT": "", "Output format": "", "Output Format": "", @@ -1667,6 +1668,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "", "Skip the cache and re-run the inference. Defaults to False.": "", "Something went wrong :/": "", diff --git a/src/lib/i18n/locales/lv-LV/translation.json b/src/lib/i18n/locales/lv-LV/translation.json index 1c3a43fdd7..f60911158f 100644 --- a/src/lib/i18n/locales/lv-LV/translation.json +++ b/src/lib/i18n/locales/lv-LV/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "Numurēts saraksts", "Organize your users": "Organizējiet savus lietotājus", "Other": "Cits", + "Output": "", "OUTPUT": "IZVADE", "Output format": "Izvades formāts", "Output Format": "Izvades formāts", @@ -1666,6 +1667,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "Izlaist kešatmiņu", "Skip the cache and re-run the inference. Defaults to False.": "Izlaist kešatmiņu un atkārtoti palaist secinājumu. Noklusējums ir False.", "Something went wrong :/": "Kaut kas nogāja greizi :/", diff --git a/src/lib/i18n/locales/ms-MY/translation.json b/src/lib/i18n/locales/ms-MY/translation.json index beaa5d3d4e..b593856d81 100644 --- a/src/lib/i18n/locales/ms-MY/translation.json +++ b/src/lib/i18n/locales/ms-MY/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "", "Organize your users": "", "Other": "Lain-lain", + "Output": "", "OUTPUT": "", "Output format": "", "Output Format": "", @@ -1664,6 +1665,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "", "Skip the cache and re-run the inference. Defaults to False.": "", "Something went wrong :/": "", diff --git a/src/lib/i18n/locales/nb-NO/translation.json b/src/lib/i18n/locales/nb-NO/translation.json index fd734b32b1..c4f2f1022e 100644 --- a/src/lib/i18n/locales/nb-NO/translation.json +++ b/src/lib/i18n/locales/nb-NO/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "", "Organize your users": "Organisere brukerne dine", "Other": "Annet", + "Output": "", "OUTPUT": "UTDATA", "Output format": "Format på utdata", "Output Format": "", @@ -1665,6 +1666,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "", "Skip the cache and re-run the inference. Defaults to False.": "", "Something went wrong :/": "", diff --git a/src/lib/i18n/locales/nl-NL/translation.json b/src/lib/i18n/locales/nl-NL/translation.json index 0e9820b1c0..6089c0ebd6 100644 --- a/src/lib/i18n/locales/nl-NL/translation.json +++ b/src/lib/i18n/locales/nl-NL/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "", "Organize your users": "Orden je gebruikers", "Other": "Andere", + "Output": "", "OUTPUT": "UITVOER", "Output format": "Uitvoerformaat", "Output Format": "", @@ -1665,6 +1666,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "", "Skip the cache and re-run the inference. Defaults to False.": "", "Something went wrong :/": "", diff --git a/src/lib/i18n/locales/pa-IN/translation.json b/src/lib/i18n/locales/pa-IN/translation.json index b5d96143a5..88978d8894 100644 --- a/src/lib/i18n/locales/pa-IN/translation.json +++ b/src/lib/i18n/locales/pa-IN/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "", "Organize your users": "", "Other": "ਹੋਰ", + "Output": "", "OUTPUT": "", "Output format": "", "Output Format": "", @@ -1665,6 +1666,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "", "Skip the cache and re-run the inference. Defaults to False.": "", "Something went wrong :/": "", diff --git a/src/lib/i18n/locales/pl-PL/translation.json b/src/lib/i18n/locales/pl-PL/translation.json index 53649bfa08..be784b2149 100644 --- a/src/lib/i18n/locales/pl-PL/translation.json +++ b/src/lib/i18n/locales/pl-PL/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "Lista numerowana", "Organize your users": "Organizuj użytkowników", "Other": "Inne", + "Output": "", "OUTPUT": "WYNIK", "Output format": "Format wyjściowy", "Output Format": "Format wyjściowy", @@ -1667,6 +1668,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "Pomiń Cache", "Skip the cache and re-run the inference. Defaults to False.": "Pomiń pamięć podręczną i uruchom wnioskowanie ponownie. Domyślnie Fałsz.", "Something went wrong :/": "Coś poszło nie tak :/", diff --git a/src/lib/i18n/locales/pt-BR/translation.json b/src/lib/i18n/locales/pt-BR/translation.json index e83ab7b1f7..bb3431fdd4 100644 --- a/src/lib/i18n/locales/pt-BR/translation.json +++ b/src/lib/i18n/locales/pt-BR/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "Lista ordenada", "Organize your users": "Organizar seus usuários", "Other": "Outro", + "Output": "", "OUTPUT": "SAÍDA", "Output format": "Formato de saída", "Output Format": "Formato de Saída", @@ -1666,6 +1667,8 @@ "Skill updated successfully": "Habilidade atualizada com sucesso", "Skills": "Habilidades", "Skills Access": "Acesso a habilidades", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "Pular cache", "Skip the cache and re-run the inference. Defaults to False.": "Ignore o cache e execute a inferência novamente. O padrão é Falso.", "Something went wrong :/": "Algo deu errado :/", diff --git a/src/lib/i18n/locales/pt-PT/translation.json b/src/lib/i18n/locales/pt-PT/translation.json index bc6492443c..f32f941e3c 100644 --- a/src/lib/i18n/locales/pt-PT/translation.json +++ b/src/lib/i18n/locales/pt-PT/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "", "Organize your users": "", "Other": "Outro", + "Output": "", "OUTPUT": "", "Output format": "", "Output Format": "", @@ -1666,6 +1667,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "", "Skip the cache and re-run the inference. Defaults to False.": "", "Something went wrong :/": "", diff --git a/src/lib/i18n/locales/ro-RO/translation.json b/src/lib/i18n/locales/ro-RO/translation.json index 0deda6e8fb..282b3cda26 100644 --- a/src/lib/i18n/locales/ro-RO/translation.json +++ b/src/lib/i18n/locales/ro-RO/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "", "Organize your users": "", "Other": "Altele", + "Output": "", "OUTPUT": "Output rezultatat", "Output format": "Formatul de ieșire", "Output Format": "", @@ -1666,6 +1667,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "", "Skip the cache and re-run the inference. Defaults to False.": "", "Something went wrong :/": "", diff --git a/src/lib/i18n/locales/ru-RU/translation.json b/src/lib/i18n/locales/ru-RU/translation.json index 4ff6610587..3f3d302ba4 100644 --- a/src/lib/i18n/locales/ru-RU/translation.json +++ b/src/lib/i18n/locales/ru-RU/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "Нумерованный список", "Organize your users": "Организуйте своих пользователей", "Other": "Прочее", + "Output": "", "OUTPUT": "ВЫВОД", "Output format": "Формат вывода", "Output Format": "Формат Вывода", @@ -1667,6 +1668,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "Пропустить кэширование", "Skip the cache and re-run the inference. Defaults to False.": "Пропустить кэширование и перезапустить вывод. По умолчанию установлено значение Выкл.", "Something went wrong :/": "Что-то пошло не так :/", diff --git a/src/lib/i18n/locales/sk-SK/translation.json b/src/lib/i18n/locales/sk-SK/translation.json index 740b54a9e7..2793b59bb2 100644 --- a/src/lib/i18n/locales/sk-SK/translation.json +++ b/src/lib/i18n/locales/sk-SK/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "", "Organize your users": "", "Other": "Iné", + "Output": "", "OUTPUT": "VÝSTUP", "Output format": "Formát výstupu", "Output Format": "", @@ -1667,6 +1668,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "", "Skip the cache and re-run the inference. Defaults to False.": "", "Something went wrong :/": "", diff --git a/src/lib/i18n/locales/sr-RS/translation.json b/src/lib/i18n/locales/sr-RS/translation.json index 28fbaf210d..1c0c79a9a0 100644 --- a/src/lib/i18n/locales/sr-RS/translation.json +++ b/src/lib/i18n/locales/sr-RS/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "", "Organize your users": "Организујте ваше кориснике", "Other": "Остало", + "Output": "", "OUTPUT": "ИЗЛАЗ", "Output format": "Формат излаза", "Output Format": "", @@ -1666,6 +1667,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "", "Skip the cache and re-run the inference. Defaults to False.": "", "Something went wrong :/": "", diff --git a/src/lib/i18n/locales/sv-SE/translation.json b/src/lib/i18n/locales/sv-SE/translation.json index b38a4df5b4..60fca40a71 100644 --- a/src/lib/i18n/locales/sv-SE/translation.json +++ b/src/lib/i18n/locales/sv-SE/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "Numrerad lista", "Organize your users": "Organisera dina användare", "Other": "Andra", + "Output": "", "OUTPUT": "UTDATA", "Output format": "Utdataformat", "Output Format": "Utdataformat", @@ -1665,6 +1666,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "Hoppa över cache", "Skip the cache and re-run the inference. Defaults to False.": "Hoppa över cacheminnet och kör inferensen igen. Standardvärdet är False.", "Something went wrong :/": "Något gick fel :/", diff --git a/src/lib/i18n/locales/th-TH/translation.json b/src/lib/i18n/locales/th-TH/translation.json index a203b66186..f40af7d752 100644 --- a/src/lib/i18n/locales/th-TH/translation.json +++ b/src/lib/i18n/locales/th-TH/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "รายการมีลำดับ", "Organize your users": "จัดการผู้ใช้ของคุณ", "Other": "อื่น ๆ", + "Output": "", "OUTPUT": "เอาต์พุต", "Output format": "รูปแบบผลลัพธ์", "Output Format": "รูปแบบผลลัพธ์", @@ -1664,6 +1665,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "ข้ามแคช", "Skip the cache and re-run the inference. Defaults to False.": "ข้ามแคชและรันการอนุมานใหม่อีกครั้ง ค่าเริ่มต้นคือ False", "Something went wrong :/": "มีบางอย่างผิดพลาด :/", diff --git a/src/lib/i18n/locales/tk-TM/translation.json b/src/lib/i18n/locales/tk-TM/translation.json index 230622ae9e..19631f3662 100644 --- a/src/lib/i18n/locales/tk-TM/translation.json +++ b/src/lib/i18n/locales/tk-TM/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "", "Organize your users": "", "Other": "Başga", + "Output": "", "OUTPUT": "", "Output format": "", "Output Format": "", @@ -1665,6 +1666,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "", "Skip the cache and re-run the inference. Defaults to False.": "", "Something went wrong :/": "", diff --git a/src/lib/i18n/locales/tr-TR/translation.json b/src/lib/i18n/locales/tr-TR/translation.json index 8327ff5493..2c951da626 100644 --- a/src/lib/i18n/locales/tr-TR/translation.json +++ b/src/lib/i18n/locales/tr-TR/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "", "Organize your users": "Kullanıcılarınızı düzenleyin", "Other": "Diğer", + "Output": "", "OUTPUT": "ÇIKTI", "Output format": "Çıktı formatı", "Output Format": "", @@ -1665,6 +1666,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "", "Skip the cache and re-run the inference. Defaults to False.": "", "Something went wrong :/": "", diff --git a/src/lib/i18n/locales/ug-CN/translation.json b/src/lib/i18n/locales/ug-CN/translation.json index aa6a3f5d2a..7f3c1de226 100644 --- a/src/lib/i18n/locales/ug-CN/translation.json +++ b/src/lib/i18n/locales/ug-CN/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "", "Organize your users": "ئىشلەتكۈچىلەرنى تەشكىللەڭ", "Other": "باشقا", + "Output": "", "OUTPUT": "چىقىرىش", "Output format": "چىقىرىش قېلىپى", "Output Format": "چىقىرىش فورماتى", @@ -1665,6 +1666,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "غەملەكتىن ئۆتۈپ كېتىش", "Skip the cache and re-run the inference. Defaults to False.": "غەملەكتىن ئۆتۈپ، يەكۈننى قايتا ئىجرا قىلىش. كۆڭۈلدىكىچە چەكلەنگەن", "Something went wrong :/": "", diff --git a/src/lib/i18n/locales/uk-UA/translation.json b/src/lib/i18n/locales/uk-UA/translation.json index 9535d07a83..c64a9bbbe9 100644 --- a/src/lib/i18n/locales/uk-UA/translation.json +++ b/src/lib/i18n/locales/uk-UA/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "", "Organize your users": "Організуйте своїх користувачів", "Other": "Інше", + "Output": "", "OUTPUT": "ВИХІД", "Output format": "Формат відповіді", "Output Format": "", @@ -1667,6 +1668,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "", "Skip the cache and re-run the inference. Defaults to False.": "", "Something went wrong :/": "", diff --git a/src/lib/i18n/locales/ur-PK/translation.json b/src/lib/i18n/locales/ur-PK/translation.json index 717e77cb90..8924cfdadf 100644 --- a/src/lib/i18n/locales/ur-PK/translation.json +++ b/src/lib/i18n/locales/ur-PK/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "", "Organize your users": "", "Other": "دیگر", + "Output": "", "OUTPUT": "آؤٹ پٹ", "Output format": "آؤٹ پٹ فارمیٹ", "Output Format": "", @@ -1665,6 +1666,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "", "Skip the cache and re-run the inference. Defaults to False.": "", "Something went wrong :/": "", diff --git a/src/lib/i18n/locales/uz-Cyrl-UZ/translation.json b/src/lib/i18n/locales/uz-Cyrl-UZ/translation.json index 3840d6cd21..4f4ed83a75 100644 --- a/src/lib/i18n/locales/uz-Cyrl-UZ/translation.json +++ b/src/lib/i18n/locales/uz-Cyrl-UZ/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "", "Organize your users": "Фойдаланувчиларингизни тартибга солинг", "Other": "Бошқа", + "Output": "", "OUTPUT": "Чиқиш", "Output format": "Чиқиш формати", "Output Format": "Чиқиш формати", @@ -1665,6 +1666,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "Кешни ўтказиб юбориш", "Skip the cache and re-run the inference. Defaults to False.": "Кешни ўтказиб юборинг ва хулосани қайта ишга туширинг. Бирламчи параметрлар Фалсе.", "Something went wrong :/": "", diff --git a/src/lib/i18n/locales/uz-Latn-Uz/translation.json b/src/lib/i18n/locales/uz-Latn-Uz/translation.json index b88871a447..0cab416e7f 100644 --- a/src/lib/i18n/locales/uz-Latn-Uz/translation.json +++ b/src/lib/i18n/locales/uz-Latn-Uz/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "", "Organize your users": "Foydalanuvchilaringizni tartibga soling", "Other": "Boshqa", + "Output": "", "OUTPUT": "Chiqish", "Output format": "Chiqish formati", "Output Format": "Chiqish formati", @@ -1665,6 +1666,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "Keshni o'tkazib yuborish", "Skip the cache and re-run the inference. Defaults to False.": "Keshni o'tkazib yuboring va xulosani qayta ishga tushiring. Birlamchi parametrlar False.", "Something went wrong :/": "", diff --git a/src/lib/i18n/locales/vi-VN/translation.json b/src/lib/i18n/locales/vi-VN/translation.json index 8706be826a..72812f10dd 100644 --- a/src/lib/i18n/locales/vi-VN/translation.json +++ b/src/lib/i18n/locales/vi-VN/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "", "Organize your users": "Tổ chức người dùng của bạn", "Other": "Khác", + "Output": "", "OUTPUT": "ĐẦU RA", "Output format": "Định dạng đầu ra", "Output Format": "", @@ -1664,6 +1665,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "", "Skip the cache and re-run the inference. Defaults to False.": "", "Something went wrong :/": "", diff --git a/src/lib/i18n/locales/zh-CN/translation.json b/src/lib/i18n/locales/zh-CN/translation.json index fa0f8ed9e8..cc2f4f945e 100644 --- a/src/lib/i18n/locales/zh-CN/translation.json +++ b/src/lib/i18n/locales/zh-CN/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "有序列表", "Organize your users": "组织用户", "Other": "其他", + "Output": "", "OUTPUT": "输出", "Output format": "输出格式", "Output Format": "输出格式", @@ -1664,6 +1665,8 @@ "Skill updated successfully": "技能更新成功", "Skills": "技能", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "跳过缓存", "Skip the cache and re-run the inference. Defaults to False.": "跳过缓存并重新执行推理。默认为关闭", "Something went wrong :/": "发生错误", diff --git a/src/lib/i18n/locales/zh-TW/translation.json b/src/lib/i18n/locales/zh-TW/translation.json index b7665f334c..1b7a4e35dd 100644 --- a/src/lib/i18n/locales/zh-TW/translation.json +++ b/src/lib/i18n/locales/zh-TW/translation.json @@ -1342,6 +1342,7 @@ "Ordered List": "有序清單", "Organize your users": "組織您的使用者", "Other": "其他", + "Output": "", "OUTPUT": "輸出", "Output format": "輸出格式", "Output Format": "輸出格式", @@ -1664,6 +1665,8 @@ "Skill updated successfully": "", "Skills": "", "Skills Access": "", + "Skills Public Sharing": "", + "Skills Sharing": "", "Skip Cache": "略過快取", "Skip the cache and re-run the inference. Defaults to False.": "略過快取並重新執行推理。預設為 False。", "Something went wrong :/": "發生錯誤 :/",