From a7a114b945e34475b8389c4b76a12f0b37a6a117 Mon Sep 17 00:00:00 2001 From: Lemmy Date: Sat, 1 Aug 2026 21:37:37 -0400 Subject: [PATCH] i18n: mimir --- mimir/translations/en.json | 90 +++++++++++++++++++------------------- 1 file changed, 46 insertions(+), 44 deletions(-) diff --git a/mimir/translations/en.json b/mimir/translations/en.json index a601b86..002aa2a 100644 --- a/mimir/translations/en.json +++ b/mimir/translations/en.json @@ -1,63 +1,65 @@ { - "title": "Mimir", - "tooltip": "Mimir AI — {status}", + "clear": "Clear", "input_placeholder": "Ask me anything...", "send": "Send", - "clear": "Clear", - "status_idle": "Idle", - "status_thinking": "Thinking...", - "status_tool": "Running command...", - "status_error": "Error", - "status_online": "Online", - "status_offline": "Offline", "settings": { - "glyph": { "label": "Bar Icon" }, - "model_name": { - "label": "Model", - "description": "OpenCode Go model to use", - "deepseek_flash": "DeepSeek V4 Flash (fast, cheap)", - "deepseek_pro": "DeepSeek V4 Pro (powerful)", - "grok45": "Grok 4.5", - "kimi_code": "Kimi K2.7 Code", - "glm52": "GLM-5.2" - }, "api_endpoint": { - "label": "API Endpoint", - "description": "Base URL for the API (default Ollama uses http://localhost:11434/v1)" + "description": "Base URL for the API (default Ollama uses http://localhost:11434/v1)", + "label": "API Endpoint" }, "api_key": { - "label": "API Key", - "description": "API key for hosted providers (stored locally and never shared)" + "description": "API key for hosted providers (stored locally and never shared)", + "label": "API Key" + }, + "glyph": { + "label": "Bar Icon" + }, + "max_history": { + "description": "Number of messages to keep in conversation context", + "label": "Max History" }, "mode": { - "label": "Thinking Mode", + "deep": "Deep — Exhaustive search, multi-step reasoning", "description": "How deeply the AI thinks before responding", "fast": "Fast — Quick answers, minimal tools", - "normal": "Normal — Balanced reasoning and tools", - "deep": "Deep — Exhaustive search, multi-step reasoning" + "label": "Thinking Mode", + "normal": "Normal — Balanced reasoning and tools" + }, + "model_name": { + "deepseek_flash": "DeepSeek V4 Flash (fast, cheap)", + "deepseek_pro": "DeepSeek V4 Pro (powerful)", + "description": "OpenCode Go model to use", + "glm52": "GLM-5.2", + "grok45": "Grok 4.5", + "kimi_code": "Kimi K2.7 Code", + "label": "Model" + }, + "show_commands": { + "description": "Show executed commands in the chat", + "label": "Show Commands" + }, + "tool_blocklist": { + "description": "Comma-separated commands never allowed", + "label": "Blocked Commands" }, "tool_permission": { - "label": "Tool Permission", - "description": "When the AI can run terminal commands", - "ask": "Ask — Prompt before every command", "allow": "Allow — Run automatically", + "ask": "Ask — Prompt before every command", + "description": "When the AI can run terminal commands", + "label": "Tool Permission", "off": "Off — No tools" }, "web_search_enabled": { - "label": "Web Search", - "description": "Allow Mimir to use DuckDuckGo search and fetch public pages" - }, - "tool_blocklist": { - "label": "Blocked Commands", - "description": "Comma-separated commands never allowed" - }, - "show_commands": { - "label": "Show Commands", - "description": "Show executed commands in the chat" - }, - "max_history": { - "label": "Max History", - "description": "Number of messages to keep in conversation context" + "description": "Allow Mimir to use DuckDuckGo search and fetch public pages", + "label": "Web Search" } - } + }, + "status_error": "Error", + "status_idle": "Idle", + "status_offline": "Offline", + "status_online": "Online", + "status_thinking": "Thinking...", + "status_tool": "Running command...", + "title": "Mimir", + "tooltip": "Mimir AI — {status}" }