feat: Synchronize and clean up localization files
This commit involves several improvements to localization files across different languages: - Reordered and cleaned up translation keys - Removed redundant entries - Ensured consistent ordering of keys - Added missing translations for various features - Normalized whitespace and formatting
This commit is contained in:
parent
cf2d7ba8b4
commit
cc76fe19f9
@ -54,7 +54,7 @@ function syncRecursively(target: any, template: any): boolean {
|
||||
|
||||
function syncTranslations() {
|
||||
if (!fs.existsSync(baseFilePath)) {
|
||||
console.error(`主模板文件 ${baseFileName} 不存在,请检查路径或文件名。`)
|
||||
console.error(`主模板文件 ${baseFileName} 不存在,请检查路径或文件名`)
|
||||
return
|
||||
}
|
||||
|
||||
@ -84,13 +84,13 @@ function syncTranslations() {
|
||||
|
||||
if (isUpdated) {
|
||||
try {
|
||||
fs.writeFileSync(filePath, JSON.stringify(targetJson, null, 2), 'utf-8')
|
||||
console.log(`文件 ${file} 已更新同步主模板的内容。`)
|
||||
fs.writeFileSync(filePath, JSON.stringify(targetJson, null, 2) + '\n', 'utf-8')
|
||||
console.log(`文件 ${file} 已更新同步主模板的内容`)
|
||||
} catch (error) {
|
||||
console.error(`写入 ${file} 出错:`, error)
|
||||
}
|
||||
} else {
|
||||
console.log(`文件 ${file} 无需更新。`)
|
||||
console.log(`文件 ${file} 无需更新`)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -73,7 +73,9 @@
|
||||
"chat": {
|
||||
"add.assistant.title": "Add Assistant",
|
||||
"artifacts.button.download": "Download",
|
||||
"artifacts.button.openExternal": "Open in external browser",
|
||||
"artifacts.button.preview": "Preview",
|
||||
"artifacts.preview.openExternal.error.content": "Error opening the external browser.",
|
||||
"assistant.search.placeholder": "Search",
|
||||
"deeply_thought": "Deeply thought ({{secounds}} seconds)",
|
||||
"default.description": "Hello, I'm Default Assistant. You can start chatting with me right away",
|
||||
@ -86,6 +88,7 @@
|
||||
"input.context_count.tip": "Context Count",
|
||||
"input.estimated_tokens.tip": "Estimated tokens",
|
||||
"input.expand": "Expand",
|
||||
"input.file_not_supported": "Model does not support this file type",
|
||||
"input.knowledge_base": "Knowledge Base",
|
||||
"input.new.context": "Clear Context {{Command}}",
|
||||
"input.new_topic": "New Topic {{Command}}",
|
||||
@ -98,7 +101,6 @@
|
||||
"input.upload": "Upload image or document file",
|
||||
"input.upload.document": "Upload document file (model does not support images)",
|
||||
"input.web_search": "Enable web search",
|
||||
"input.file_not_supported": "Model does not support this file type",
|
||||
"message.new.branch": "New Branch",
|
||||
"message.new.branch.created": "New Branch Created",
|
||||
"message.new.context": "New Context",
|
||||
@ -111,25 +113,26 @@
|
||||
"settings.context_count.tip": "The number of previous messages to keep in the context.",
|
||||
"settings.max": "Max",
|
||||
"settings.max_tokens": "Enable max tokens limit",
|
||||
"settings.max_tokens.confirm": "Enable max tokens limit",
|
||||
"settings.max_tokens.confirm_content": "Enable max tokens limit, affects the length of the result. Need to consider the context limit of the model, otherwise an error will be reported",
|
||||
"settings.max_tokens.tip": "The maximum number of tokens the model can generate. Need to consider the context limit of the model, otherwise an error will be reported",
|
||||
"settings.reset": "Reset",
|
||||
"settings.set_as_default": "Apply to default assistant",
|
||||
"settings.show_line_numbers": "Show line numbers in code",
|
||||
"settings.temperature": "Temperature",
|
||||
"settings.temperature.tip": "Higher values make the model more creative and unpredictable, while lower values make it more deterministic and precise.",
|
||||
"settings.top_p": "Top-P",
|
||||
"settings.top_p.tip": "Default value is 1, the smaller the value, the less variety in the answers, the easier to understand, the larger the value, the larger the range of the AI's vocabulary, the more diverse",
|
||||
"settings.max_tokens.confirm": "Enable max tokens limit",
|
||||
"settings.max_tokens.confirm_content": "Enable max tokens limit, affects the length of the result. Need to consider the context limit of the model, otherwise an error will be reported",
|
||||
"settings.thought_auto_collapse": "Automatically Collapse Thought Content",
|
||||
"settings.thought_auto_collapse.tip": "Automatically collapse thought content after thinking ends",
|
||||
"settings.top_p": "Top-P",
|
||||
"settings.top_p.tip": "Default value is 1, the smaller the value, the less variety in the answers, the easier to understand, the larger the value, the larger the range of the AI's vocabulary, the more diverse",
|
||||
"suggestions.title": "Suggested Questions",
|
||||
"thinking": "Thinking",
|
||||
"topics.auto_rename": "Auto Rename",
|
||||
"topics.copy.title": "Copy as",
|
||||
"topics.clear.title": "Clear Messages",
|
||||
"topics.copy.image": "Image",
|
||||
"topics.copy.md": "Markdown",
|
||||
"topics.clear.title": "Clear Messages",
|
||||
"topics.copy.title": "Copy as",
|
||||
"topics.delete.shortcut": "Hold {{key}} to delete directly",
|
||||
"topics.edit.placeholder": "Enter new name",
|
||||
"topics.edit.title": "Edit Name",
|
||||
"topics.export.image": "Export as image",
|
||||
@ -140,15 +143,12 @@
|
||||
"topics.list": "Topic List",
|
||||
"topics.move_to": "Move to",
|
||||
"topics.pinned": "Pinned Topics",
|
||||
"topics.prompt": "Topic Prompts",
|
||||
"topics.prompt.edit.title": "Edit Topic Prompts",
|
||||
"topics.prompt.tips": "Topic Prompts: Additional supplementary prompts provided for the current topic",
|
||||
"topics.title": "Topics",
|
||||
"topics.unpinned": "Unpinned Topics",
|
||||
"topics.delete.shortcut": "Hold {{key}} to delete directly",
|
||||
"translate": "Translate",
|
||||
"topics.prompt": "Topic Prompts",
|
||||
"topics.prompt.tips": "Topic Prompts: Additional supplementary prompts provided for the current topic",
|
||||
"topics.prompt.edit.title": "Edit Topic Prompts",
|
||||
"artifacts.button.openExternal": "Open in external browser",
|
||||
"artifacts.preview.openExternal.error.content": "Error opening the external browser."
|
||||
"translate": "Translate"
|
||||
},
|
||||
"common": {
|
||||
"add": "Add",
|
||||
@ -169,6 +169,7 @@
|
||||
"download": "Download",
|
||||
"duplicate": "Duplicate",
|
||||
"edit": "Edit",
|
||||
"footnote": "Reference content",
|
||||
"footnotes": "References",
|
||||
"knowledge_base": "Knowledge Base",
|
||||
"language": "Language",
|
||||
@ -186,8 +187,10 @@
|
||||
"select": "Select",
|
||||
"topics": "Topics",
|
||||
"warning": "Warning",
|
||||
"you": "You",
|
||||
"footnote": "Reference content"
|
||||
"you": "You"
|
||||
},
|
||||
"docs": {
|
||||
"title": "Docs"
|
||||
},
|
||||
"error": {
|
||||
"backup.file_format": "Backup file format error",
|
||||
@ -284,6 +287,7 @@
|
||||
"invalid_url": "Invalid URL",
|
||||
"model_info": "Model Info",
|
||||
"no_bases": "No knowledge bases available",
|
||||
"no_match": "No matching content found in the knowledge base.",
|
||||
"no_provider": "Knowledge base model provider is not set, the knowledge base will no longer be supported, please create a new knowledge base",
|
||||
"not_set": "Not Set",
|
||||
"not_support": "Knowledge base database engine updated, the knowledge base will no longer be supported, please create a new knowledge base",
|
||||
@ -302,15 +306,14 @@
|
||||
"status_new": "Added",
|
||||
"status_pending": "Pending",
|
||||
"status_processing": "Processing",
|
||||
"threshold": "Matching threshold",
|
||||
"threshold_placeholder": "Not set",
|
||||
"threshold_too_large_or_small": "Threshold cannot be greater than 1 or less than 0",
|
||||
"threshold_tooltip": "Used to evaluate the relevance between the user's question and the content in the knowledge base (0-1)",
|
||||
"title": "Knowledge Base",
|
||||
"url_added": "URL added",
|
||||
"url_placeholder": "Enter URL, multiple URLs separated by Enter",
|
||||
"urls": "URLs",
|
||||
"threshold_tooltip": "Used to evaluate the relevance between the user's question and the content in the knowledge base (0-1)",
|
||||
"threshold_placeholder": "Not set",
|
||||
"threshold_too_large_or_small": "Threshold cannot be greater than 1 or less than 0",
|
||||
"no_match": "No matching content found in the knowledge base.",
|
||||
"threshold": "Matching threshold"
|
||||
"urls": "URLs"
|
||||
},
|
||||
"languages": {
|
||||
"arabic": "Arabic",
|
||||
@ -318,13 +321,19 @@
|
||||
"chinese-traditional": "Traditional Chinese",
|
||||
"english": "English",
|
||||
"french": "French",
|
||||
"german": "German",
|
||||
"italian": "Italian",
|
||||
"japanese": "Japanese",
|
||||
"korean": "Korean",
|
||||
"portuguese": "Portuguese",
|
||||
"russian": "Russian",
|
||||
"spanish": "Spanish",
|
||||
"german": "German"
|
||||
"spanish": "Spanish"
|
||||
},
|
||||
"lmstudio": {
|
||||
"keep_alive_time.description": "The time in minutes to keep the connection alive, default is 5 minutes.",
|
||||
"keep_alive_time.placeholder": "Minutes",
|
||||
"keep_alive_time.title": "Keep Alive Time",
|
||||
"title": "LM Studio"
|
||||
},
|
||||
"mermaid": {
|
||||
"download": {
|
||||
@ -341,18 +350,6 @@
|
||||
},
|
||||
"title": "Mermaid Diagram"
|
||||
},
|
||||
"plantuml": {
|
||||
"download": {
|
||||
"png": "Download PNG",
|
||||
"svg": "Download SVG",
|
||||
"failed": "Download failed, please check the network"
|
||||
},
|
||||
"tabs": {
|
||||
"preview": "Preview",
|
||||
"source": "Source"
|
||||
},
|
||||
"title": "PlantUML Diagram"
|
||||
},
|
||||
"message": {
|
||||
"api.check.model.title": "Select the model to use for detection",
|
||||
"api.connection.failed": "Connection failed",
|
||||
@ -371,6 +368,8 @@
|
||||
"error.enter.model": "Please select a model first",
|
||||
"error.enter.name": "Please enter the name of the knowledge base",
|
||||
"error.get_embedding_dimensions": "Failed to get embedding dimensions",
|
||||
"error.invalid.api.host": "Invalid API Host",
|
||||
"error.invalid.api.key": "Invalid API Key",
|
||||
"error.invalid.enter.model": "Please select a model",
|
||||
"error.invalid.proxy.url": "Invalid proxy URL",
|
||||
"error.invalid.webdav": "Invalid WebDAV settings",
|
||||
@ -384,9 +383,9 @@
|
||||
"message.delete.title": "Delete Message",
|
||||
"message.multi_model_style": "Group style",
|
||||
"message.multi_model_style.fold": "Fold",
|
||||
"message.multi_model_style.grid": "Grid",
|
||||
"message.multi_model_style.horizontal": "Horizontal",
|
||||
"message.multi_model_style.vertical": "Vertical",
|
||||
"message.multi_model_style.grid": "Grid",
|
||||
"message.style": "Message style",
|
||||
"message.style.bubble": "Bubble",
|
||||
"message.style.plain": "Plain",
|
||||
@ -402,9 +401,7 @@
|
||||
"upgrade.success.button": "Restart",
|
||||
"upgrade.success.content": "Please restart the application to complete the upgrade",
|
||||
"upgrade.success.title": "Upgrade successfully",
|
||||
"warn.notion.exporting": "Exporting to Notion, please do not request export repeatedly!",
|
||||
"error.invalid.api.host": "Invalid API Host",
|
||||
"error.invalid.api.key": "Invalid API Key"
|
||||
"warn.notion.exporting": "Exporting to Notion, please do not request export repeatedly!"
|
||||
},
|
||||
"minapp": {
|
||||
"sidebar.add.title": "Add to sidebar",
|
||||
@ -470,12 +467,6 @@
|
||||
"keep_alive_time.title": "Keep Alive Time",
|
||||
"title": "Ollama"
|
||||
},
|
||||
"lmstudio": {
|
||||
"keep_alive_time.description": "The time in minutes to keep the connection alive, default is 5 minutes.",
|
||||
"keep_alive_time.placeholder": "Minutes",
|
||||
"keep_alive_time.title": "Keep Alive Time",
|
||||
"title": "LM Studio"
|
||||
},
|
||||
"paintings": {
|
||||
"button.delete.image": "Delete Image",
|
||||
"button.delete.image.confirm": "Are you sure you want to delete this image?",
|
||||
@ -497,23 +488,32 @@
|
||||
"seed_tip": "The same seed and prompt can produce similar images",
|
||||
"title": "Images"
|
||||
},
|
||||
"plantuml": {
|
||||
"download": {
|
||||
"failed": "Download failed, please check the network",
|
||||
"png": "Download PNG",
|
||||
"svg": "Download SVG"
|
||||
},
|
||||
"tabs": {
|
||||
"preview": "Preview",
|
||||
"source": "Source"
|
||||
},
|
||||
"title": "PlantUML Diagram"
|
||||
},
|
||||
"prompts": {
|
||||
"explanation": "Explain this concept to me",
|
||||
"summarize": "Summarize this text",
|
||||
"title": "You are an assistant who is good at conversation. You need to summarize the user's conversation into a title of 10 characters or less, ensuring it matches the user's primary language without using punctuation or other special symbols."
|
||||
},
|
||||
"provider": {
|
||||
"infini": "Infini",
|
||||
"perplexity": "Perplexity",
|
||||
"dmxapi": "DMXAPI",
|
||||
"aihubmix": "AiHubMix",
|
||||
"anthropic": "Anthropic",
|
||||
"azure-openai": "Azure OpenAI",
|
||||
"baichuan": "Baichuan",
|
||||
"baidu-cloud": "Baidu Cloud",
|
||||
"dashscope": "Alibaba Cloud",
|
||||
"modelscope": "ModelScope",
|
||||
"deepseek": "DeepSeek",
|
||||
"dmxapi": "DMXAPI",
|
||||
"doubao": "Volcengine",
|
||||
"fireworks": "Fireworks",
|
||||
"gemini": "Gemini",
|
||||
@ -524,16 +524,19 @@
|
||||
"groq": "Groq",
|
||||
"hunyuan": "Tencent Hunyuan",
|
||||
"hyperbolic": "Hyperbolic",
|
||||
"infini": "Infini",
|
||||
"jina": "Jina",
|
||||
"lmstudio": "LM Studio",
|
||||
"minimax": "MiniMax",
|
||||
"mistral": "Mistral",
|
||||
"modelscope": "ModelScope",
|
||||
"moonshot": "Moonshot",
|
||||
"nvidia": "Nvidia",
|
||||
"ocoolai": "ocoolAI",
|
||||
"ollama": "Ollama",
|
||||
"lmstudio": "LM Studio",
|
||||
"openai": "OpenAI",
|
||||
"openrouter": "OpenRouter",
|
||||
"perplexity": "Perplexity",
|
||||
"ppio": "PPIO",
|
||||
"qwenlm": "QwenLM",
|
||||
"silicon": "SiliconFlow",
|
||||
@ -581,22 +584,26 @@
|
||||
"title": "Clear Cache"
|
||||
},
|
||||
"data.title": "Data Directory",
|
||||
"hour_interval_one": "{{count}} hour",
|
||||
"hour_interval_other": "{{count}} hours",
|
||||
"minute_interval_one": "{{count}} minute",
|
||||
"minute_interval_other": "{{count}} minutes",
|
||||
"notion.api_key": "Notion API Key",
|
||||
"notion.api_key_placeholder": "Enter Notion API Key",
|
||||
"notion.check": {
|
||||
"button": "Check",
|
||||
"empty_api_key": "Api_key is not configured",
|
||||
"empty_database_id": "Database_id is not configured",
|
||||
"error": "Connection error, please check network configuration and Api_key and Database_id",
|
||||
"fail": "Connection failed, please check network and Api_key and Database_id",
|
||||
"success": "Connection successful"
|
||||
},
|
||||
"notion.database_id": "Notion Database ID",
|
||||
"notion.database_id_placeholder": "Enter Notion Database ID",
|
||||
"notion.help": "Notion Configuration Documentation",
|
||||
"notion.page_name_key": "Page Title Field Name",
|
||||
"notion.page_name_key_placeholder": "Enter page title field name, default is Name",
|
||||
"notion.title": "Notion Configuration",
|
||||
"notion.help": "Notion Configuration Documentation",
|
||||
"notion.check": {
|
||||
"button": "Check",
|
||||
"fail": "Connection failed, please check network and Api_key and Database_id",
|
||||
"success": "Connection successful",
|
||||
"error": "Connection error, please check network configuration and Api_key and Database_id",
|
||||
"empty_api_key": "Api_key is not configured",
|
||||
"empty_database_id": "Database_id is not configured"
|
||||
},
|
||||
"title": "Data Settings",
|
||||
"webdav": {
|
||||
"autoSync": "Auto Backup",
|
||||
@ -604,11 +611,11 @@
|
||||
"backup.button": "Backup to WebDAV",
|
||||
"host": "WebDAV Host",
|
||||
"host.placeholder": "http://localhost:8080",
|
||||
"minute_interval_one": "{{count}} minute",
|
||||
"minute_interval_other": "{{count}} minutes",
|
||||
"hour_interval_one": "{{count}} hour",
|
||||
"hour_interval_other": "{{count}} hours",
|
||||
"lastSync": "Last Backup",
|
||||
"minute_interval_one": "{{count}} minute",
|
||||
"minute_interval_other": "{{count}} minutes",
|
||||
"noSync": "Waiting for next backup",
|
||||
"password": "WebDAV Password",
|
||||
"path": "WebDAV Path",
|
||||
@ -661,6 +668,10 @@
|
||||
"input.target_language.japanese": "Japanese",
|
||||
"input.target_language.russian": "Russian",
|
||||
"messages.divider": "Show divider between messages",
|
||||
"messages.grid_columns": "Message grid display columns",
|
||||
"messages.grid_popover_trigger": "Grid detail trigger",
|
||||
"messages.grid_popover_trigger.click": "Click to display",
|
||||
"messages.grid_popover_trigger.hover": "Hover to display",
|
||||
"messages.input.paste_long_text_as_file": "Paste long text as file",
|
||||
"messages.input.paste_long_text_threshold": "Paste long text length",
|
||||
"messages.input.send_shortcuts": "Send shortcuts",
|
||||
@ -668,10 +679,6 @@
|
||||
"messages.input.title": "Input Settings",
|
||||
"messages.markdown_rendering_input_message": "Markdown render input message",
|
||||
"messages.math_engine": "Math engine",
|
||||
"messages.grid_columns": "Message grid display columns",
|
||||
"messages.grid_popover_trigger": "Grid detail trigger",
|
||||
"messages.grid_popover_trigger.hover": "Hover to display",
|
||||
"messages.grid_popover_trigger.click": "Click to display",
|
||||
"messages.metrics": "{{time_first_token_millsec}}ms to first token | {{token_speed}} tok/sec",
|
||||
"messages.model.title": "Model Settings",
|
||||
"messages.title": "Message Settings",
|
||||
@ -757,14 +764,14 @@
|
||||
"reset_to_default": "Reset to Default",
|
||||
"search_message": "Search Message",
|
||||
"show_app": "Show App",
|
||||
"show_settings": "Open Settings",
|
||||
"title": "Keyboard Shortcuts",
|
||||
"toggle_new_context": "Clear Context",
|
||||
"toggle_show_assistants": "Toggle Assistants",
|
||||
"toggle_show_topics": "Toggle Topics",
|
||||
"zoom_in": "Zoom In",
|
||||
"zoom_out": "Zoom Out",
|
||||
"zoom_reset": "Reset Zoom",
|
||||
"show_settings": "Open Settings"
|
||||
"zoom_reset": "Reset Zoom"
|
||||
},
|
||||
"theme.auto": "Auto",
|
||||
"theme.dark": "Dark",
|
||||
@ -783,7 +790,6 @@
|
||||
"translate": {
|
||||
"any.language": "Any language",
|
||||
"button.translate": "Translate",
|
||||
"tooltip.newline": "Newline",
|
||||
"close": "Close",
|
||||
"confirm": {
|
||||
"content": "Translation will replace the original text, continue?",
|
||||
@ -791,17 +797,18 @@
|
||||
},
|
||||
"error.failed": "Translation failed",
|
||||
"error.not_configured": "Translation model is not configured",
|
||||
"history": {
|
||||
"clear": "Clear History",
|
||||
"clear_description": "Clear history will delete all translation history, continue?",
|
||||
"delete": "Delete",
|
||||
"empty": "No translation history",
|
||||
"title": "Translation History"
|
||||
},
|
||||
"input.placeholder": "Enter text to translate",
|
||||
"output.placeholder": "Translation",
|
||||
"processing": "Translation in progress...",
|
||||
"title": "Translation",
|
||||
"history": {
|
||||
"title": "Translation History",
|
||||
"empty": "No translation history",
|
||||
"clear": "Clear History",
|
||||
"delete": "Delete",
|
||||
"clear_description": "Clear history will delete all translation history, continue?"
|
||||
}
|
||||
"tooltip.newline": "Newline"
|
||||
},
|
||||
"tray": {
|
||||
"quit": "Quit",
|
||||
@ -813,9 +820,6 @@
|
||||
"quit": "Quit",
|
||||
"show_window": "Show Window",
|
||||
"visualization": "Visualization"
|
||||
},
|
||||
"docs": {
|
||||
"title": "Docs"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -47,13 +47,13 @@
|
||||
"settings.model": "モデル設定",
|
||||
"settings.preset_messages": "プリセットメッセージ",
|
||||
"settings.prompt": "プロンプト設定",
|
||||
"title": "アシスタント",
|
||||
"settings.reasoning_effort": "思考連鎖の長さ",
|
||||
"settings.reasoning_effort.high": "長い",
|
||||
"settings.reasoning_effort.low": "短い",
|
||||
"settings.reasoning_effort.medium": "中程度",
|
||||
"settings.reasoning_effort.off": "オフ",
|
||||
"settings.reasoning_effort.tip": "この設定は推論モデルのみサポートしています"
|
||||
"settings.reasoning_effort.tip": "この設定は推論モデルのみサポートしています",
|
||||
"title": "アシスタント"
|
||||
},
|
||||
"auth": {
|
||||
"error": "APIキーの自動取得に失敗しました。手動で取得してください",
|
||||
@ -73,7 +73,9 @@
|
||||
"chat": {
|
||||
"add.assistant.title": "アシスタントを追加",
|
||||
"artifacts.button.download": "ダウンロード",
|
||||
"artifacts.button.openExternal": "外部ブラウザで開く",
|
||||
"artifacts.button.preview": "プレビュー",
|
||||
"artifacts.preview.openExternal.error.content": "外部ブラウザの起動に失敗しました。",
|
||||
"assistant.search.placeholder": "検索",
|
||||
"deeply_thought": "深く考えています({{secounds}} 秒)",
|
||||
"default.description": "こんにちは、私はデフォルトのアシスタントです。すぐにチャットを始められます。",
|
||||
@ -86,6 +88,7 @@
|
||||
"input.context_count.tip": "コンテキスト数",
|
||||
"input.estimated_tokens.tip": "推定トークン数",
|
||||
"input.expand": "展開",
|
||||
"input.file_not_supported": "モデルはこのファイルタイプをサポートしません",
|
||||
"input.knowledge_base": "ナレッジベース",
|
||||
"input.new.context": "コンテキストをクリア {{Command}}",
|
||||
"input.new_topic": "新しいトピック {{Command}}",
|
||||
@ -98,7 +101,6 @@
|
||||
"input.upload": "画像またはドキュメントをアップロード",
|
||||
"input.upload.document": "ドキュメントをアップロード(モデルは画像をサポートしません)",
|
||||
"input.web_search": "ウェブ検索を有効にする",
|
||||
"input.file_not_supported": "モデルはこのファイルタイプをサポートしません",
|
||||
"message.new.branch": "新しいブランチ",
|
||||
"message.new.branch.created": "新しいブランチが作成されました",
|
||||
"message.new.context": "新しいコンテキスト",
|
||||
@ -111,22 +113,26 @@
|
||||
"settings.context_count.tip": "コンテキストに保持する以前のメッセージの数",
|
||||
"settings.max": "最大",
|
||||
"settings.max_tokens": "最大トークン制限を有効にする",
|
||||
"settings.max_tokens.confirm": "最大トークン制限を有効にする",
|
||||
"settings.max_tokens.confirm_content": "最大トークン制限を有効にすると、モデルが生成できる最大トークン数が制限されます。これにより、返される結果の長さに影響が出る可能性があります。モデルのコンテキスト制限に基づいて設定する必要があります。そうしないとエラーが発生します",
|
||||
"settings.max_tokens.tip": "モデルが生成できる最大トークン数。モデルのコンテキスト制限に基づいて設定する必要があります。そうしないとエラーが発生します",
|
||||
"settings.reset": "リセット",
|
||||
"settings.set_as_default": "デフォルトのアシスタントに適用",
|
||||
"settings.show_line_numbers": "コードに行番号を表示",
|
||||
"settings.temperature": "温度",
|
||||
"settings.temperature.tip": "低い値はモデルをより創造的で予測不可能にし、高い値はより決定論的で正確にします",
|
||||
"settings.top_p": "Top-P",
|
||||
"settings.top_p.tip": "デフォルト値は1で、値が小さいほど回答の多様性が減り、理解しやすくなります。値が大きいほど、AIの語彙範囲が広がり、多様性が増します",
|
||||
"settings.max_tokens.confirm": "最大トークン制限を有効にする",
|
||||
"settings.max_tokens.confirm_content": "最大トークン制限を有効にすると、モデルが生成できる最大トークン数が制限されます。これにより、返される結果の長さに影響が出る可能性があります。モデルのコンテキスト制限に基づいて設定する必要があります。そうしないとエラーが発生します",
|
||||
"settings.thought_auto_collapse": "思考内容を自動的に折りたたむ",
|
||||
"settings.thought_auto_collapse.tip": "思考が終了したら思考内容を自動的に折りたたみます",
|
||||
"settings.top_p": "Top-P",
|
||||
"settings.top_p.tip": "デフォルト値は1で、値が小さいほど回答の多様性が減り、理解しやすくなります。値が大きいほど、AIの語彙範囲が広がり、多様性が増します",
|
||||
"suggestions.title": "提案された質問",
|
||||
"thinking": "思考中...",
|
||||
"topics.auto_rename": "自動リネーム",
|
||||
"topics.clear.title": "メッセージをクリア",
|
||||
"topics.copy.image": "画像",
|
||||
"topics.copy.md": "Markdown",
|
||||
"topics.copy.title": "複製",
|
||||
"topics.delete.shortcut": "{{key}}キーを押しながらで直接削除",
|
||||
"topics.edit.placeholder": "新しい名前を入力",
|
||||
"topics.edit.title": "名前を編集",
|
||||
"topics.export.image": "画像としてエクスポート",
|
||||
@ -137,15 +143,12 @@
|
||||
"topics.list": "トピックリスト",
|
||||
"topics.move_to": "移動先",
|
||||
"topics.pinned": "トピックを固定",
|
||||
"topics.prompt": "トピック提示語",
|
||||
"topics.prompt.edit.title": "トピック提示語を編集する",
|
||||
"topics.prompt.tips": "トピック提示語:現在のトピックに対して追加の補足提示語を提供",
|
||||
"topics.title": "トピック",
|
||||
"topics.unpinned": "固定解除",
|
||||
"topics.delete.shortcut": "{{key}}キーを押しながらで直接削除",
|
||||
"translate": "翻訳",
|
||||
"topics.prompt": "トピック提示語",
|
||||
"topics.prompt.tips": "トピック提示語:現在のトピックに対して追加の補足提示語を提供",
|
||||
"topics.prompt.edit.title": "トピック提示語を編集する",
|
||||
"artifacts.button.openExternal": "外部ブラウザで開く",
|
||||
"artifacts.preview.openExternal.error.content": "外部ブラウザの起動に失敗しました。"
|
||||
"translate": "翻訳"
|
||||
},
|
||||
"common": {
|
||||
"add": "追加",
|
||||
@ -166,6 +169,7 @@
|
||||
"download": "ダウンロード",
|
||||
"duplicate": "複製",
|
||||
"edit": "編集",
|
||||
"footnote": "引用内容",
|
||||
"footnotes": "脚注",
|
||||
"knowledge_base": "ナレッジベース",
|
||||
"language": "言語",
|
||||
@ -183,8 +187,10 @@
|
||||
"select": "選択",
|
||||
"topics": "トピック",
|
||||
"warning": "警告",
|
||||
"you": "あなた",
|
||||
"footnote": "引用内容"
|
||||
"you": "あなた"
|
||||
},
|
||||
"docs": {
|
||||
"title": "ドキュメント"
|
||||
},
|
||||
"error": {
|
||||
"backup.file_format": "バックアップファイルの形式エラー",
|
||||
@ -281,6 +287,7 @@
|
||||
"invalid_url": "無効なURL",
|
||||
"model_info": "モデル情報",
|
||||
"no_bases": "ナレッジベースがありません",
|
||||
"no_match": "知識ベースの内容が見つかりませんでした。",
|
||||
"no_provider": "ナレッジベースモデルプロバイダーが設定されていません。ナレッジベースはもうサポートされていません。新しいナレッジベースを作成してください",
|
||||
"not_set": "未設定",
|
||||
"not_support": "ナレッジベースデータベースエンジンが更新されました。このナレッジベースはもうサポートされていません。新しいナレッジベースを作成してください",
|
||||
@ -299,15 +306,14 @@
|
||||
"status_new": "追加済み",
|
||||
"status_pending": "保留中",
|
||||
"status_processing": "処理中",
|
||||
"threshold": "マッチング度閾値",
|
||||
"threshold_placeholder": "未設置",
|
||||
"threshold_too_large_or_small": "しきい値は0より大きく1より小さい必要があります",
|
||||
"threshold_tooltip": "ユーザーの質問と知識ベースの内容の関連性を評価するためのしきい値(0-1)",
|
||||
"title": "ナレッジベース",
|
||||
"url_added": "URLが追加されました",
|
||||
"url_placeholder": "URLを入力, 複数のURLはEnterで区切る",
|
||||
"urls": "URL",
|
||||
"threshold_tooltip": "ユーザーの質問と知識ベースの内容の関連性を評価するためのしきい値(0-1)",
|
||||
"threshold_placeholder": "未設置",
|
||||
"threshold_too_large_or_small": "しきい値は0より大きく1より小さい必要があります",
|
||||
"no_match": "知識ベースの内容が見つかりませんでした。",
|
||||
"threshold": "マッチング度閾値"
|
||||
"urls": "URL"
|
||||
},
|
||||
"languages": {
|
||||
"arabic": "アラビア語",
|
||||
@ -323,6 +329,12 @@
|
||||
"russian": "ロシア語",
|
||||
"spanish": "スペイン語"
|
||||
},
|
||||
"lmstudio": {
|
||||
"keep_alive_time.description": "モデルがメモリに保持される時間(デフォルト:5分)",
|
||||
"keep_alive_time.placeholder": "分",
|
||||
"keep_alive_time.title": "保持時間",
|
||||
"title": "LM Studio"
|
||||
},
|
||||
"mermaid": {
|
||||
"download": {
|
||||
"png": "PNGをダウンロード",
|
||||
@ -354,7 +366,10 @@
|
||||
"error.enter.api.host": "APIホストを入力してください",
|
||||
"error.enter.api.key": "APIキーを入力してください",
|
||||
"error.enter.model": "モデルを選択してください",
|
||||
"error.enter.name": "ナレッジベース名を入力してください",
|
||||
"error.get_embedding_dimensions": "埋込み次元を取得できませんでした",
|
||||
"error.invalid.api.host": "無効なAPIアドレスです",
|
||||
"error.invalid.api.key": "無効なAPIキーです",
|
||||
"error.invalid.enter.model": "モデルを選択してください",
|
||||
"error.invalid.proxy.url": "無効なプロキシURL",
|
||||
"error.invalid.webdav": "無効なWebDAV設定",
|
||||
@ -368,9 +383,9 @@
|
||||
"message.delete.title": "メッセージを削除",
|
||||
"message.multi_model_style": "複数モデル回答スタイル",
|
||||
"message.multi_model_style.fold": "折りたたむ",
|
||||
"message.multi_model_style.grid": "グリッド",
|
||||
"message.multi_model_style.horizontal": "水平",
|
||||
"message.multi_model_style.vertical": "垂直",
|
||||
"message.multi_model_style.grid": "グリッド",
|
||||
"message.style": "メッセージスタイル",
|
||||
"message.style.bubble": "バブル",
|
||||
"message.style.plain": "プレーン",
|
||||
@ -386,10 +401,7 @@
|
||||
"upgrade.success.button": "再起動",
|
||||
"upgrade.success.content": "アップグレードを完了するためにアプリケーションを再起動してください",
|
||||
"upgrade.success.title": "アップグレードに成功しました",
|
||||
"warn.notion.exporting": "Notionにエクスポート中です。重複してエクスポートしないでください! ",
|
||||
"error.enter.name": "ナレッジベース名を入力してください",
|
||||
"error.invalid.api.host": "無効なAPIアドレスです",
|
||||
"error.invalid.api.key": "無効なAPIキーです"
|
||||
"warn.notion.exporting": "Notionにエクスポート中です。重複してエクスポートしないでください! "
|
||||
},
|
||||
"minapp": {
|
||||
"sidebar.add.title": "サイドバーに追加",
|
||||
@ -455,12 +467,6 @@
|
||||
"keep_alive_time.title": "保持時間",
|
||||
"title": "Ollama"
|
||||
},
|
||||
"lmstudio": {
|
||||
"keep_alive_time.description": "モデルがメモリに保持される時間(デフォルト:5分)",
|
||||
"keep_alive_time.placeholder": "分",
|
||||
"keep_alive_time.title": "保持時間",
|
||||
"title": "LM Studio"
|
||||
},
|
||||
"paintings": {
|
||||
"button.delete.image": "画像を削除",
|
||||
"button.delete.image.confirm": "この画像を削除してもよろしいですか?",
|
||||
@ -482,23 +488,32 @@
|
||||
"seed_tip": "同じシードとプロンプトで似た画像を生成できます",
|
||||
"title": "画像"
|
||||
},
|
||||
"plantuml": {
|
||||
"download": {
|
||||
"failed": "ダウンロードに失敗しました。ネットワークを確認してください",
|
||||
"png": "PNG をダウンロード",
|
||||
"svg": "SVG をダウンロード"
|
||||
},
|
||||
"tabs": {
|
||||
"preview": "プレビュー",
|
||||
"source": "ソースコード"
|
||||
},
|
||||
"title": "PlantUML 図表"
|
||||
},
|
||||
"prompts": {
|
||||
"explanation": "この概念を説明してください",
|
||||
"summarize": "このテキストを要約してください",
|
||||
"title": "あなたは会話を得意とするアシスタントです。ユーザーの会話を10文字以内のタイトルに要約し、ユーザーの主言語と一致していることを確認してください。句読点や特殊記号は使用しないでください。"
|
||||
},
|
||||
"provider": {
|
||||
"infini": "Infini",
|
||||
"perplexity": "Perplexity",
|
||||
"dmxapi": "DMXAPI",
|
||||
"aihubmix": "AiHubMix",
|
||||
"anthropic": "Anthropic",
|
||||
"azure-openai": "Azure OpenAI",
|
||||
"baichuan": "百川",
|
||||
"baidu-cloud": "Baidu Cloud",
|
||||
"dashscope": "Alibaba Cloud",
|
||||
"modelscope": "ModelScope",
|
||||
"deepseek": "DeepSeek",
|
||||
"dmxapi": "DMXAPI",
|
||||
"doubao": "Volcengine",
|
||||
"fireworks": "Fireworks",
|
||||
"gemini": "Gemini",
|
||||
@ -509,24 +524,27 @@
|
||||
"groq": "Groq",
|
||||
"hunyuan": "腾讯混元",
|
||||
"hyperbolic": "Hyperbolic",
|
||||
"infini": "Infini",
|
||||
"jina": "Jina",
|
||||
"lmstudio": "LM Studio",
|
||||
"minimax": "MiniMax",
|
||||
"mistral": "Mistral",
|
||||
"modelscope": "ModelScope",
|
||||
"moonshot": "月の暗面",
|
||||
"nvidia": "NVIDIA",
|
||||
"ocoolai": "ocoolAI",
|
||||
"ollama": "Ollama",
|
||||
"lmstudio": "LM Studio",
|
||||
"openai": "OpenAI",
|
||||
"openrouter": "OpenRouter",
|
||||
"perplexity": "Perplexity",
|
||||
"ppio": "PPIO パイオウクラウド",
|
||||
"qwenlm": "QwenLM",
|
||||
"silicon": "SiliconFlow",
|
||||
"stepfun": "StepFun",
|
||||
"together": "Together",
|
||||
"yi": "零一万物",
|
||||
"zhinao": "360智脳",
|
||||
"zhipu": "智譜AI",
|
||||
"ppio": "PPIO パイオウクラウド"
|
||||
"zhipu": "智譜AI"
|
||||
},
|
||||
"settings": {
|
||||
"about": "について",
|
||||
@ -566,22 +584,26 @@
|
||||
"title": "キャッシュをクリア"
|
||||
},
|
||||
"data.title": "データディレクトリ",
|
||||
"hour_interval_one": "{{count}} 時間",
|
||||
"hour_interval_other": "{{count}} 時間",
|
||||
"minute_interval_one": "{{count}} 分",
|
||||
"minute_interval_other": "{{count}} 分",
|
||||
"notion.api_key": "Notion APIキー",
|
||||
"notion.api_key_placeholder": "Notion APIキーを入力してください",
|
||||
"notion.check": {
|
||||
"button": "確認",
|
||||
"empty_api_key": "Api_keyが設定されていません",
|
||||
"empty_database_id": "Database_idが設定されていません",
|
||||
"error": "接続エラー、ネットワーク設定とApi_keyとDatabase_idを確認してください",
|
||||
"fail": "接続エラー、ネットワーク設定とApi_keyとDatabase_idを確認してください",
|
||||
"success": "接続に成功しました。"
|
||||
},
|
||||
"notion.database_id": "Notion データベースID",
|
||||
"notion.database_id_placeholder": "Notion データベースIDを入力してください",
|
||||
"notion.help": "Notion 設定ドキュメント",
|
||||
"notion.page_name_key": "ページタイトルフィールド名",
|
||||
"notion.page_name_key_placeholder": "ページタイトルフィールド名を入力してください。デフォルトは Name です",
|
||||
"notion.title": "Notion 設定",
|
||||
"notion.help": "Notion 設定ドキュメント",
|
||||
"notion.check": {
|
||||
"button": "確認",
|
||||
"fail": "接続エラー、ネットワーク設定とApi_keyとDatabase_idを確認してください",
|
||||
"success": "接続に成功しました。",
|
||||
"error": "接続エラー、ネットワーク設定とApi_keyとDatabase_idを確認してください",
|
||||
"empty_api_key": "Api_keyが設定されていません",
|
||||
"empty_database_id": "Database_idが設定されていません"
|
||||
},
|
||||
"title": "データ設定",
|
||||
"webdav": {
|
||||
"autoSync": "自動バックアップ",
|
||||
@ -589,11 +611,11 @@
|
||||
"backup.button": "WebDAVにバックアップ",
|
||||
"host": "WebDAVホスト",
|
||||
"host.placeholder": "http://localhost:8080",
|
||||
"minute_interval_one": "{{count}} 分",
|
||||
"minute_interval_other": "{{count}} 分",
|
||||
"hour_interval_one": "{{count}} 時間",
|
||||
"hour_interval_other": "{{count}} 時間",
|
||||
"lastSync": "最終バックアップ",
|
||||
"minute_interval_one": "{{count}} 分",
|
||||
"minute_interval_other": "{{count}} 分",
|
||||
"noSync": "次回のバックアップを待機中",
|
||||
"password": "WebDAVパスワード",
|
||||
"path": "WebDAVパス",
|
||||
@ -605,30 +627,7 @@
|
||||
"syncStatus": "バックアップ状態",
|
||||
"title": "WebDAV",
|
||||
"user": "WebDAVユーザー"
|
||||
},
|
||||
"webdav.autoSync": "自動バックアップ",
|
||||
"webdav.autoSync.off": "オフ",
|
||||
"webdav.backup.button": "WebDAVにバックアップ",
|
||||
"webdav.host": "WebDAVホスト",
|
||||
"webdav.host.placeholder": "http://localhost:8080",
|
||||
"webdav.hours": "時間",
|
||||
"webdav.lastSync": "最終同期",
|
||||
"webdav.minutes": "分",
|
||||
"webdav.noSync": "次回のバックアップを待っています",
|
||||
"webdav.password": "WebDAVパスワード",
|
||||
"webdav.path": "WebDAVパス",
|
||||
"webdav.path.placeholder": "/backup",
|
||||
"webdav.restore.button": "WebDAVから復元",
|
||||
"webdav.restore.content": "WebDAVから復元すると、現在のデータが上書きされます。続行しますか?",
|
||||
"webdav.restore.title": "WebDAVから復元",
|
||||
"webdav.syncError": "バックアップエラー",
|
||||
"webdav.syncStatus": "バックアップ状態",
|
||||
"webdav.title": "WebDAV",
|
||||
"webdav.user": "WebDAVユーザー",
|
||||
"minute_interval_one": "{{count}} 分",
|
||||
"minute_interval_other": "{{count}} 分",
|
||||
"hour_interval_one": "{{count}} 時間",
|
||||
"hour_interval_other": "{{count}} 時間"
|
||||
}
|
||||
},
|
||||
"display.custom.css": "カスタムCSS",
|
||||
"display.custom.css.placeholder": "/* ここにカスタムCSSを入力 */",
|
||||
@ -669,6 +668,10 @@
|
||||
"input.target_language.japanese": "日本語",
|
||||
"input.target_language.russian": "ロシア語",
|
||||
"messages.divider": "メッセージ間に区切り線を表示",
|
||||
"messages.grid_columns": "メッセージグリッドの表示列数",
|
||||
"messages.grid_popover_trigger": "グリッド詳細トリガー",
|
||||
"messages.grid_popover_trigger.click": "クリックで表示",
|
||||
"messages.grid_popover_trigger.hover": "ホバーで表示",
|
||||
"messages.input.paste_long_text_as_file": "長いテキストをファイルとして貼り付け",
|
||||
"messages.input.paste_long_text_threshold": "長いテキストの長さ",
|
||||
"messages.input.send_shortcuts": "送信ショートカット",
|
||||
@ -676,10 +679,6 @@
|
||||
"messages.input.title": "入力設定",
|
||||
"messages.markdown_rendering_input_message": "Markdownで入力メッセージをレンダリング",
|
||||
"messages.math_engine": "数式エンジン",
|
||||
"messages.grid_columns": "メッセージグリッドの表示列数",
|
||||
"messages.grid_popover_trigger": "グリッド詳細トリガー",
|
||||
"messages.grid_popover_trigger.hover": "ホバーで表示",
|
||||
"messages.grid_popover_trigger.click": "クリックで表示",
|
||||
"messages.metrics": "最初のトークンまでの時間 {{time_first_token_millsec}}ms | トークン速度 {{token_speed}} tok/sec",
|
||||
"messages.model.title": "モデル設定",
|
||||
"messages.title": "メッセージ設定",
|
||||
@ -765,14 +764,14 @@
|
||||
"reset_to_default": "デフォルトにリセット",
|
||||
"search_message": "メッセージを検索",
|
||||
"show_app": "アプリを表示",
|
||||
"show_settings": "設定を開く",
|
||||
"title": "ショートカット",
|
||||
"toggle_new_context": "コンテキストをクリア",
|
||||
"toggle_show_assistants": "アシスタントの表示を切り替え",
|
||||
"toggle_show_topics": "トピックの表示を切り替え",
|
||||
"zoom_in": "ズームイン",
|
||||
"zoom_out": "ズームアウト",
|
||||
"zoom_reset": "ズームをリセット",
|
||||
"show_settings": "設定を開く"
|
||||
"zoom_reset": "ズームをリセット"
|
||||
},
|
||||
"theme.auto": "自動",
|
||||
"theme.dark": "ダークテーマ",
|
||||
@ -791,7 +790,6 @@
|
||||
"translate": {
|
||||
"any.language": "任意の言語",
|
||||
"button.translate": "翻訳",
|
||||
"tooltip.newline": "改行",
|
||||
"close": "閉じる",
|
||||
"confirm": {
|
||||
"content": "翻訳すると元のテキストが上書きされます。続行しますか?",
|
||||
@ -799,10 +797,18 @@
|
||||
},
|
||||
"error.failed": "翻訳に失敗しました",
|
||||
"error.not_configured": "翻訳モデルが設定されていません",
|
||||
"history": {
|
||||
"clear": "履歴をクリア",
|
||||
"clear_description": "履歴をクリアすると、すべての翻訳履歴が削除されます。続行しますか?",
|
||||
"delete": "削除",
|
||||
"empty": "翻訳履歴がありません",
|
||||
"title": "翻訳履歴"
|
||||
},
|
||||
"input.placeholder": "翻訳するテキストを入力",
|
||||
"output.placeholder": "翻訳",
|
||||
"processing": "翻訳中...",
|
||||
"title": "翻訳"
|
||||
"title": "翻訳",
|
||||
"tooltip.newline": "改行"
|
||||
},
|
||||
"tray": {
|
||||
"quit": "終了",
|
||||
@ -814,9 +820,6 @@
|
||||
"quit": "終了",
|
||||
"show_window": "ウィンドウを表示",
|
||||
"visualization": "可視化"
|
||||
},
|
||||
"docs": {
|
||||
"title": "ドキュメント"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -47,13 +47,13 @@
|
||||
"settings.model": "Настройки модели",
|
||||
"settings.preset_messages": "Предустановленные сообщения",
|
||||
"settings.prompt": "Настройки промптов",
|
||||
"title": "Ассистенты",
|
||||
"settings.reasoning_effort": "Длина цепочки рассуждений",
|
||||
"settings.reasoning_effort.high": "Длинная",
|
||||
"settings.reasoning_effort.low": "Короткая",
|
||||
"settings.reasoning_effort.medium": "Средняя",
|
||||
"settings.reasoning_effort.off": "Выключено",
|
||||
"settings.reasoning_effort.tip": "Эта настройка поддерживается только моделями с рассуждением"
|
||||
"settings.reasoning_effort.tip": "Эта настройка поддерживается только моделями с рассуждением",
|
||||
"title": "Ассистенты"
|
||||
},
|
||||
"auth": {
|
||||
"error": "Автоматический получение ключа API не удалось, пожалуйста, получите ключ вручную",
|
||||
@ -73,7 +73,9 @@
|
||||
"chat": {
|
||||
"add.assistant.title": "Добавить ассистента",
|
||||
"artifacts.button.download": "Скачать",
|
||||
"artifacts.button.openExternal": "Открыть во внешнем браузере",
|
||||
"artifacts.button.preview": "Предпросмотр",
|
||||
"artifacts.preview.openExternal.error.content": "Внешний браузер открылся с ошибкой",
|
||||
"assistant.search.placeholder": "Поиск",
|
||||
"deeply_thought": "Мыслим ({{secounds}} секунд)",
|
||||
"default.description": "Привет, я Ассистент по умолчанию. Вы можете начать общаться со мной прямо сейчас",
|
||||
@ -86,6 +88,7 @@
|
||||
"input.context_count.tip": "Количество контекстов",
|
||||
"input.estimated_tokens.tip": "Затраты токенов",
|
||||
"input.expand": "Развернуть",
|
||||
"input.file_not_supported": "Модель не поддерживает этот тип файла",
|
||||
"input.knowledge_base": "База знаний",
|
||||
"input.new.context": "Очистить контекст {{Command}}",
|
||||
"input.new_topic": "Новый топик {{Command}}",
|
||||
@ -98,7 +101,6 @@
|
||||
"input.upload": "Загрузить изображение или документ",
|
||||
"input.upload.document": "Загрузить документ (модель не поддерживает изображения)",
|
||||
"input.web_search": "Включить веб-поиск",
|
||||
"input.file_not_supported": "Модель не поддерживает этот тип файла",
|
||||
"message.new.branch": "Новая ветка",
|
||||
"message.new.branch.created": "Новая ветка создана",
|
||||
"message.new.context": "Новый контекст",
|
||||
@ -111,22 +113,26 @@
|
||||
"settings.context_count.tip": "Количество предыдущих сообщений, которые нужно сохранить в контексте.",
|
||||
"settings.max": "Максимум",
|
||||
"settings.max_tokens": "Включить лимит максимальных токенов",
|
||||
"settings.max_tokens.confirm": "Включить лимит максимальных токенов",
|
||||
"settings.max_tokens.confirm_content": "Включить лимит максимальных токенов, влияет на длину результата. Нужно учитывать контекст модели, иначе будет ошибка",
|
||||
"settings.max_tokens.tip": "Максимальное количество токенов, которые может сгенерировать модель. Нужно учитывать контекст модели, иначе будет ошибка",
|
||||
"settings.reset": "Сбросить",
|
||||
"settings.set_as_default": "Применить к ассистенту по умолчанию",
|
||||
"settings.show_line_numbers": "Показать номера строк в коде",
|
||||
"settings.temperature": "Температура",
|
||||
"settings.temperature.tip": "Меньшие значения делают модель более креативной и непредсказуемой, в то время как большие значения делают её более детерминированной и точной.",
|
||||
"settings.top_p": "Top-P",
|
||||
"settings.top_p.tip": "Значение по умолчанию 1, чем меньше значение, тем меньше вариативности в ответах, тем проще понять, чем больше значение, тем больше вариативности в ответах, тем больше разнообразие",
|
||||
"settings.max_tokens.confirm": "Включить лимит максимальных токенов",
|
||||
"settings.max_tokens.confirm_content": "Включить лимит максимальных токенов, влияет на длину результата. Нужно учитывать контекст модели, иначе будет ошибка",
|
||||
"settings.thought_auto_collapse": "Автоматически сворачивать содержание мыслей",
|
||||
"settings.thought_auto_collapse.tip": "Автоматически сворачивать содержание мыслей после завершения размышления",
|
||||
"settings.top_p": "Top-P",
|
||||
"settings.top_p.tip": "Значение по умолчанию 1, чем меньше значение, тем меньше вариативности в ответах, тем проще понять, чем больше значение, тем больше вариативности в ответах, тем больше разнообразие",
|
||||
"suggestions.title": "Предложенные вопросы",
|
||||
"thinking": "Мыслим",
|
||||
"topics.auto_rename": "Автопереименование",
|
||||
"topics.clear.title": "Очистить сообщения",
|
||||
"topics.copy.image": "Изображение",
|
||||
"topics.copy.md": "Markdown",
|
||||
"topics.copy.title": "Скопировать как",
|
||||
"topics.delete.shortcut": "Удерживайте {{key}} для мгновенного удаления",
|
||||
"topics.edit.placeholder": "Введите новый заголовок",
|
||||
"topics.edit.title": "Редактировать заголовок",
|
||||
"topics.export.image": "Экспорт как изображение",
|
||||
@ -137,15 +143,12 @@
|
||||
"topics.list": "Список топиков",
|
||||
"topics.move_to": "Переместить в",
|
||||
"topics.pinned": "Закрепленные темы",
|
||||
"topics.prompt": "Тематические подсказки",
|
||||
"topics.prompt.edit.title": "Редактировать подсказки темы",
|
||||
"topics.prompt.tips": "Тематические подсказки: Дополнительные подсказки, предоставленные для текущей темы",
|
||||
"topics.title": "Топики",
|
||||
"topics.unpinned": "Открепленные темы",
|
||||
"topics.delete.shortcut": "Удерживайте {{key}} для мгновенного удаления",
|
||||
"translate": "Перевести",
|
||||
"topics.prompt": "Тематические подсказки",
|
||||
"topics.prompt.tips": "Тематические подсказки: Дополнительные подсказки, предоставленные для текущей темы",
|
||||
"topics.prompt.edit.title": "Редактировать подсказки темы",
|
||||
"artifacts.button.openExternal": "Открыть во внешнем браузере",
|
||||
"artifacts.preview.openExternal.error.content": "Внешний браузер открылся с ошибкой"
|
||||
"translate": "Перевести"
|
||||
},
|
||||
"common": {
|
||||
"add": "Добавить",
|
||||
@ -166,6 +169,7 @@
|
||||
"download": "Скачать",
|
||||
"duplicate": "Дублировать",
|
||||
"edit": "Редактировать",
|
||||
"footnote": "Цитируемый контент",
|
||||
"footnotes": "Сноски",
|
||||
"knowledge_base": "База знаний",
|
||||
"language": "Язык",
|
||||
@ -183,8 +187,10 @@
|
||||
"select": "Выбрать",
|
||||
"topics": "Топики",
|
||||
"warning": "Предупреждение",
|
||||
"you": "Вы",
|
||||
"footnote": "Цитируемый контент"
|
||||
"you": "Вы"
|
||||
},
|
||||
"docs": {
|
||||
"title": "Документация"
|
||||
},
|
||||
"error": {
|
||||
"backup.file_format": "Ошибка формата файла резервной копии",
|
||||
@ -281,6 +287,7 @@
|
||||
"invalid_url": "Неверный URL",
|
||||
"model_info": "Модель информации",
|
||||
"no_bases": "База знаний не найдена",
|
||||
"no_match": "Не найдено содержимого в базе знаний.",
|
||||
"no_provider": "База знаний модель поставщика не настроена, база знаний больше не поддерживается, пожалуйста, создайте новую базу знаний",
|
||||
"not_set": "Не установлено",
|
||||
"not_support": "База знаний базы данных движок обновлен, база знаний больше не поддерживается, пожалуйста, создайте новую базу знаний",
|
||||
@ -299,15 +306,14 @@
|
||||
"status_new": "Добавлено",
|
||||
"status_pending": "Ожидание",
|
||||
"status_processing": "Обработка",
|
||||
"threshold": "Порог соответствия",
|
||||
"threshold_placeholder": "Не установлено",
|
||||
"threshold_too_large_or_small": "Порог не может быть больше 1 или меньше 0",
|
||||
"threshold_tooltip": "Используется для оценки соответствия между пользовательским вопросом и содержимым в базе знаний (0-1)",
|
||||
"title": "База знаний",
|
||||
"url_added": "URL добавлен",
|
||||
"url_placeholder": "Введите URL, несколько URL через Enter",
|
||||
"urls": "URL-адреса",
|
||||
"threshold_tooltip": "Используется для оценки соответствия между пользовательским вопросом и содержимым в базе знаний (0-1)",
|
||||
"threshold_placeholder": "Не установлено",
|
||||
"threshold_too_large_or_small": "Порог не может быть больше 1 или меньше 0",
|
||||
"no_match": "Не найдено содержимого в базе знаний.",
|
||||
"threshold": "Порог соответствия"
|
||||
"urls": "URL-адреса"
|
||||
},
|
||||
"languages": {
|
||||
"arabic": "Арабский",
|
||||
@ -323,6 +329,12 @@
|
||||
"russian": "Русский",
|
||||
"spanish": "Испанский"
|
||||
},
|
||||
"lmstudio": {
|
||||
"keep_alive_time.description": "Время в минутах, в течение которого модель остается активной, по умолчанию 5 минут.",
|
||||
"keep_alive_time.placeholder": "Минуты",
|
||||
"keep_alive_time.title": "Время жизни модели",
|
||||
"title": "LM Studio"
|
||||
},
|
||||
"mermaid": {
|
||||
"download": {
|
||||
"png": "Скачать PNG",
|
||||
@ -356,6 +368,8 @@
|
||||
"error.enter.model": "Пожалуйста, выберите модель",
|
||||
"error.enter.name": "Пожалуйста, введите название базы знаний",
|
||||
"error.get_embedding_dimensions": "Не удалось получить размерность встраивания",
|
||||
"error.invalid.api.host": "Неверный API адрес",
|
||||
"error.invalid.api.key": "Неверный API ключ",
|
||||
"error.invalid.enter.model": "Пожалуйста, выберите модель",
|
||||
"error.invalid.proxy.url": "Неверный URL прокси",
|
||||
"error.invalid.webdav": "Неверные настройки WebDAV",
|
||||
@ -369,9 +383,9 @@
|
||||
"message.delete.title": "Удалить сообщение",
|
||||
"message.multi_model_style": "Стиль ответов от нескольких моделей",
|
||||
"message.multi_model_style.fold": "Свернуть",
|
||||
"message.multi_model_style.grid": "клетчатый вид",
|
||||
"message.multi_model_style.horizontal": "Горизонтальный",
|
||||
"message.multi_model_style.vertical": "Вертикальный",
|
||||
"message.multi_model_style.grid": "клетчатый вид",
|
||||
"message.style": "Стиль сообщения",
|
||||
"message.style.bubble": "Пузырь",
|
||||
"message.style.plain": "Простой",
|
||||
@ -387,9 +401,7 @@
|
||||
"upgrade.success.button": "Перезапустить",
|
||||
"upgrade.success.content": "Пожалуйста, перезапустите приложение для завершения обновления",
|
||||
"upgrade.success.title": "Обновление успешно",
|
||||
"warn.notion.exporting": "Экспортируется в Notion, пожалуйста, не отправляйте повторные запросы!",
|
||||
"error.invalid.api.host": "Неверный API адрес",
|
||||
"error.invalid.api.key": "Неверный API ключ"
|
||||
"warn.notion.exporting": "Экспортируется в Notion, пожалуйста, не отправляйте повторные запросы!"
|
||||
},
|
||||
"minapp": {
|
||||
"sidebar.add.title": "Добавить в боковую панель",
|
||||
@ -455,12 +467,6 @@
|
||||
"keep_alive_time.title": "Время жизни модели",
|
||||
"title": "Ollama"
|
||||
},
|
||||
"lmstudio": {
|
||||
"keep_alive_time.description": "Время в минутах, в течение которого модель остается активной, по умолчанию 5 минут.",
|
||||
"keep_alive_time.placeholder": "Минуты",
|
||||
"keep_alive_time.title": "Время жизни модели",
|
||||
"title": "LM Studio"
|
||||
},
|
||||
"paintings": {
|
||||
"button.delete.image": "Удалить изображение",
|
||||
"button.delete.image.confirm": "Вы уверены, что хотите удалить это изображение?",
|
||||
@ -482,23 +488,32 @@
|
||||
"seed_tip": "Одинаковый ключ генерации и промпт могут производить похожие изображения",
|
||||
"title": "Изображения"
|
||||
},
|
||||
"plantuml": {
|
||||
"download": {
|
||||
"failed": "下载失败,请检查网络",
|
||||
"png": "下载 PNG",
|
||||
"svg": "下载 SVG"
|
||||
},
|
||||
"tabs": {
|
||||
"preview": "Предпросмотр",
|
||||
"source": "Исходный код"
|
||||
},
|
||||
"title": "PlantUML 图表"
|
||||
},
|
||||
"prompts": {
|
||||
"explanation": "Объясните мне этот концепт",
|
||||
"summarize": "Суммируйте этот текст",
|
||||
"title": "Вы - эксперт в общении, который суммирует разговоры пользователя в 10-символьном заголовке, совпадающем с языком пользователя, без использования знаков препинания и других специальных символов"
|
||||
},
|
||||
"provider": {
|
||||
"infini": "Infini",
|
||||
"perplexity": "Perplexity",
|
||||
"dmxapi": "DMXAPI",
|
||||
"aihubmix": "AiHubMix",
|
||||
"anthropic": "Anthropic",
|
||||
"azure-openai": "Azure OpenAI",
|
||||
"baichuan": "Baichuan",
|
||||
"baidu-cloud": "Baidu Cloud",
|
||||
"dashscope": "Alibaba Cloud",
|
||||
"modelscope": "ModelScope",
|
||||
"deepseek": "DeepSeek",
|
||||
"dmxapi": "DMXAPI",
|
||||
"doubao": "Volcengine",
|
||||
"fireworks": "Fireworks",
|
||||
"gemini": "Gemini",
|
||||
@ -509,24 +524,27 @@
|
||||
"groq": "Groq",
|
||||
"hunyuan": "Tencent Hunyuan",
|
||||
"hyperbolic": "Hyperbolic",
|
||||
"infini": "Infini",
|
||||
"jina": "Jina",
|
||||
"lmstudio": "LM Studio",
|
||||
"minimax": "MiniMax",
|
||||
"mistral": "Mistral",
|
||||
"modelscope": "ModelScope",
|
||||
"moonshot": "Moonshot",
|
||||
"nvidia": "Nvidia",
|
||||
"ocoolai": "ocoolAI",
|
||||
"ollama": "Ollama",
|
||||
"lmstudio": "LM Studio",
|
||||
"openai": "OpenAI",
|
||||
"openrouter": "OpenRouter",
|
||||
"perplexity": "Perplexity",
|
||||
"ppio": "PPIO",
|
||||
"qwenlm": "QwenLM",
|
||||
"silicon": "SiliconFlow",
|
||||
"stepfun": "StepFun",
|
||||
"together": "Together",
|
||||
"yi": "Yi",
|
||||
"zhinao": "360AI",
|
||||
"zhipu": "ZHIPU AI",
|
||||
"ppio": "PPIO"
|
||||
"zhipu": "ZHIPU AI"
|
||||
},
|
||||
"settings": {
|
||||
"about": "О программе и обратная связь",
|
||||
@ -566,22 +584,26 @@
|
||||
"title": "Очистка кэша"
|
||||
},
|
||||
"data.title": "Каталог данных",
|
||||
"hour_interval_one": "{{count}} час",
|
||||
"hour_interval_other": "{{count}} часов",
|
||||
"minute_interval_one": "{{count}} минута",
|
||||
"minute_interval_other": "{{count}} минут",
|
||||
"notion.api_key": "Ключ API Notion",
|
||||
"notion.api_key_placeholder": "Введите ключ API Notion",
|
||||
"notion.check": {
|
||||
"button": "Проверить",
|
||||
"empty_api_key": "Не настроен Api_key",
|
||||
"empty_database_id": "Не настроен Database_id",
|
||||
"error": "Аномалия в подключении, пожалуйста, проверьте настройки сети, а также правильность Api_key и Database_id",
|
||||
"fail": "Не удалось подключиться, пожалуйста, проверьте сеть и правильность Api_key и Database_id",
|
||||
"success": "Подключение успешно"
|
||||
},
|
||||
"notion.database_id": "ID базы данных Notion",
|
||||
"notion.database_id_placeholder": "Введите ID базы данных Notion",
|
||||
"notion.help": "Документация по настройке Notion",
|
||||
"notion.page_name_key": "Название поля заголовка страницы",
|
||||
"notion.page_name_key_placeholder": "Введите название поля заголовка страницы, по умолчанию Name",
|
||||
"notion.title": "Настройки Notion",
|
||||
"notion.help": "Документация по настройке Notion",
|
||||
"notion.check": {
|
||||
"button": "Проверить",
|
||||
"fail": "Не удалось подключиться, пожалуйста, проверьте сеть и правильность Api_key и Database_id",
|
||||
"success": "Подключение успешно",
|
||||
"error": "Аномалия в подключении, пожалуйста, проверьте настройки сети, а также правильность Api_key и Database_id",
|
||||
"empty_api_key": "Не настроен Api_key",
|
||||
"empty_database_id": "Не настроен Database_id"
|
||||
},
|
||||
"title": "Настройки данных",
|
||||
"webdav": {
|
||||
"autoSync": "Автоматическое резервное копирование",
|
||||
@ -589,13 +611,11 @@
|
||||
"backup.button": "Резервное копирование на WebDAV",
|
||||
"host": "Хост WebDAV",
|
||||
"host.placeholder": "http://localhost:8080",
|
||||
"minute_interval_one": "{{count}} минута",
|
||||
"minute_interval_few": "{{count}} минуты",
|
||||
"minute_interval_many": "{{count}} минут",
|
||||
"hour_interval_one": "{{count}} час",
|
||||
"hour_interval_few": "{{count}} часа",
|
||||
"hour_interval_many": "{{count}} часов",
|
||||
"hour_interval_other": "{{count}} часов",
|
||||
"lastSync": "Последняя синхронизация",
|
||||
"minute_interval_one": "{{count}} минута",
|
||||
"minute_interval_other": "{{count}} минут",
|
||||
"noSync": "Ожидание следующего резервного копирования",
|
||||
"password": "Пароль WebDAV",
|
||||
"path": "Путь WebDAV",
|
||||
@ -646,7 +666,12 @@
|
||||
"input.target_language.chinese-traditional": "Китайский традиционный",
|
||||
"input.target_language.english": "Английский",
|
||||
"input.target_language.japanese": "Японский",
|
||||
"input.target_language.russian": "Русский",
|
||||
"messages.divider": "Показывать разделитель между сообщениями",
|
||||
"messages.grid_columns": "Количество столбцов сетки сообщений",
|
||||
"messages.grid_popover_trigger": "Триггер для отображения подробной информации в сетке",
|
||||
"messages.grid_popover_trigger.click": "Нажатие для отображения",
|
||||
"messages.grid_popover_trigger.hover": "Наведение для отображения",
|
||||
"messages.input.paste_long_text_as_file": "Вставлять длинный текст как файл",
|
||||
"messages.input.paste_long_text_threshold": "Длина вставки длинного текста",
|
||||
"messages.input.send_shortcuts": "Горячие клавиши для отправки",
|
||||
@ -656,10 +681,6 @@
|
||||
"messages.math_engine": "Математический движок",
|
||||
"messages.metrics": "{{time_first_token_millsec}}ms до первого токена | {{token_speed}} tok/sec",
|
||||
"messages.model.title": "Настройки модели",
|
||||
"messages.grid_columns": "Количество столбцов сетки сообщений",
|
||||
"messages.grid_popover_trigger": "Триггер для отображения подробной информации в сетке",
|
||||
"messages.grid_popover_trigger.hover": "Наведение для отображения",
|
||||
"messages.grid_popover_trigger.click": "Нажатие для отображения",
|
||||
"messages.title": "Настройки сообщений",
|
||||
"messages.use_serif_font": "Использовать serif шрифт",
|
||||
"model": "Модель по умолчанию",
|
||||
@ -743,14 +764,14 @@
|
||||
"reset_to_default": "Сбросить настройки по умолчанию",
|
||||
"search_message": "Поиск сообщения",
|
||||
"show_app": "Показать приложение",
|
||||
"show_settings": "Открыть настройки",
|
||||
"title": "Горячие клавиши",
|
||||
"toggle_new_context": "Очистить контекст",
|
||||
"toggle_show_assistants": "Переключить отображение ассистентов",
|
||||
"toggle_show_topics": "Переключить отображение топиков",
|
||||
"zoom_in": "Увеличить",
|
||||
"zoom_out": "Уменьшить",
|
||||
"zoom_reset": "Сбросить масштаб",
|
||||
"show_settings": "Открыть настройки"
|
||||
"zoom_reset": "Сбросить масштаб"
|
||||
},
|
||||
"theme.auto": "Автоматически",
|
||||
"theme.dark": "Темная",
|
||||
@ -764,13 +785,11 @@
|
||||
"topic.position.left": "Слева",
|
||||
"topic.position.right": "Справа",
|
||||
"topic.show.time": "Показывать время топика",
|
||||
"tray.title": "Включить значок системного трея",
|
||||
"input.target_language.russian": "Русский"
|
||||
"tray.title": "Включить значок системного трея"
|
||||
},
|
||||
"translate": {
|
||||
"any.language": "Любой язык",
|
||||
"button.translate": "Перевести",
|
||||
"tooltip.newline": "Перевести",
|
||||
"close": "Закрыть",
|
||||
"confirm": {
|
||||
"content": "Перевод заменит исходный текст, продолжить?",
|
||||
@ -778,10 +797,18 @@
|
||||
},
|
||||
"error.failed": "Перевод не удалось",
|
||||
"error.not_configured": "Модель перевода не настроена",
|
||||
"history": {
|
||||
"clear": "Очистить историю",
|
||||
"clear_description": "Очистка истории удалит все записи переводов. Продолжить?",
|
||||
"delete": "Удалить",
|
||||
"empty": "История переводов отсутствует",
|
||||
"title": "История переводов"
|
||||
},
|
||||
"input.placeholder": "Введите текст для перевода",
|
||||
"output.placeholder": "Перевод",
|
||||
"processing": "Перевод в процессе...",
|
||||
"title": "Перевод"
|
||||
"title": "Перевод",
|
||||
"tooltip.newline": "Перевести"
|
||||
},
|
||||
"tray": {
|
||||
"quit": "Выйти",
|
||||
@ -793,9 +820,6 @@
|
||||
"quit": "Выйти",
|
||||
"show_window": "Показать окно",
|
||||
"visualization": "Визуализация"
|
||||
},
|
||||
"docs": {
|
||||
"title": "Документация"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -73,8 +73,8 @@
|
||||
"chat": {
|
||||
"add.assistant.title": "添加助手",
|
||||
"artifacts.button.download": "下载",
|
||||
"artifacts.button.preview": "预览",
|
||||
"artifacts.button.openExternal": "外部浏览器打开",
|
||||
"artifacts.button.preview": "预览",
|
||||
"artifacts.preview.openExternal.error.content": "外部浏览器打开出错",
|
||||
"assistant.search.placeholder": "搜索",
|
||||
"deeply_thought": "已深度思考(用时 {{secounds}} 秒)",
|
||||
@ -88,6 +88,7 @@
|
||||
"input.context_count.tip": "上下文数",
|
||||
"input.estimated_tokens.tip": "预估 token 数",
|
||||
"input.expand": "展开",
|
||||
"input.file_not_supported": "模型不支持此文件类型",
|
||||
"input.knowledge_base": "知识库",
|
||||
"input.new.context": "清除上下文 {{Command}}",
|
||||
"input.new_topic": "新话题 {{Command}}",
|
||||
@ -100,7 +101,6 @@
|
||||
"input.upload": "上传图片或文档",
|
||||
"input.upload.document": "上传文档(模型不支持图片)",
|
||||
"input.web_search": "开启网络搜索",
|
||||
"input.file_not_supported": "模型不支持此文件类型",
|
||||
"message.new.branch": "分支",
|
||||
"message.new.branch.created": "新分支已创建",
|
||||
"message.new.context": "清除上下文",
|
||||
@ -113,25 +113,26 @@
|
||||
"settings.context_count.tip": "要保留在上下文中的消息数量,数值越大,上下文越长,消耗的 token 越多。普通聊天建议 5-10",
|
||||
"settings.max": "不限",
|
||||
"settings.max_tokens": "开启消息长度限制",
|
||||
"settings.max_tokens.confirm": "开启消息长度限制",
|
||||
"settings.max_tokens.confirm_content": "开启消息长度限制后,单次交互所用的最大 Token 数, 会影响返回结果的长度。要根据模型上下文限制来设置,否则会报错",
|
||||
"settings.max_tokens.tip": "单次交互所用的最大 Token 数, 会影响返回结果的长度。要根据模型上下文限制来设置,否则会报错",
|
||||
"settings.reset": "重置",
|
||||
"settings.set_as_default": "应用到默认助手",
|
||||
"settings.show_line_numbers": "代码显示行号",
|
||||
"settings.temperature": "模型温度",
|
||||
"settings.temperature.tip": "模型生成文本的随机程度。值越大,回复内容越赋有多样性、创造性、随机性;设为 0 根据事实回答。日常聊天建议设置为 0.7",
|
||||
"settings.top_p": "Top-P",
|
||||
"settings.top_p.tip": "默认值为 1,值越小,AI 生成的内容越单调,也越容易理解;值越大,AI 回复的词汇围越大,越多样化",
|
||||
"settings.max_tokens.confirm": "开启消息长度限制",
|
||||
"settings.max_tokens.confirm_content": "开启消息长度限制后,单次交互所用的最大 Token 数, 会影响返回结果的长度。要根据模型上下文限制来设置,否则会报错",
|
||||
"settings.thought_auto_collapse": "思考内容自动折叠",
|
||||
"settings.thought_auto_collapse.tip": "思考结束后思考内容自动折叠",
|
||||
"settings.top_p": "Top-P",
|
||||
"settings.top_p.tip": "默认值为 1,值越小,AI 生成的内容越单调,也越容易理解;值越大,AI 回复的词汇围越大,越多样化",
|
||||
"suggestions.title": "建议的问题",
|
||||
"thinking": "思考中",
|
||||
"topics.auto_rename": "生成话题名",
|
||||
"topics.copy.title": "复制为",
|
||||
"topics.clear.title": "清空消息",
|
||||
"topics.copy.image": "图片",
|
||||
"topics.copy.md": "Markdown",
|
||||
"topics.clear.title": "清空消息",
|
||||
"topics.copy.title": "复制为",
|
||||
"topics.delete.shortcut": "按住 {{key}} 可直接删除",
|
||||
"topics.edit.placeholder": "输入新名称",
|
||||
"topics.edit.title": "编辑话题名",
|
||||
"topics.export.image": "导出为图片",
|
||||
@ -142,12 +143,12 @@
|
||||
"topics.list": "话题列表",
|
||||
"topics.move_to": "移动到",
|
||||
"topics.pinned": "固定话题",
|
||||
"topics.prompt": "话题提示词",
|
||||
"topics.prompt.edit.title": "编辑话题提示词",
|
||||
"topics.prompt.tips": "话题提示词: 针对当前话题提供额外的补充提示词",
|
||||
"topics.title": "话题",
|
||||
"topics.unpinned": "取消固定",
|
||||
"topics.delete.shortcut": "按住 {{key}} 可直接删除",
|
||||
"translate": "翻译",
|
||||
"topics.prompt": "话题提示词",
|
||||
"topics.prompt.tips": "话题提示词: 针对当前话题提供额外的补充提示词"
|
||||
"translate": "翻译"
|
||||
},
|
||||
"common": {
|
||||
"add": "添加",
|
||||
@ -188,6 +189,9 @@
|
||||
"warning": "警告",
|
||||
"you": "用户"
|
||||
},
|
||||
"docs": {
|
||||
"title": "帮助文档"
|
||||
},
|
||||
"error": {
|
||||
"backup.file_format": "备份文件格式错误",
|
||||
"chat.response": "出错了,如果没有配置 API 密钥,请前往设置 > 模型提供商中配置密钥",
|
||||
@ -303,9 +307,9 @@
|
||||
"status_pending": "等待中",
|
||||
"status_processing": "处理中",
|
||||
"threshold": "匹配度阈值",
|
||||
"threshold_tooltip": "用于衡量用户问题与知识库内容之间的相关性(0-1)",
|
||||
"threshold_placeholder": "未设置",
|
||||
"threshold_too_large_or_small": "阈值不能大于1或小于0",
|
||||
"threshold_tooltip": "用于衡量用户问题与知识库内容之间的相关性(0-1)",
|
||||
"title": "知识库",
|
||||
"url_added": "网址已添加",
|
||||
"url_placeholder": "请输入网址, 多个网址用回车分隔",
|
||||
@ -317,13 +321,19 @@
|
||||
"chinese-traditional": "繁体中文",
|
||||
"english": "英文",
|
||||
"french": "法文",
|
||||
"german": "德文",
|
||||
"italian": "意大利文",
|
||||
"japanese": "日文",
|
||||
"korean": "韩文",
|
||||
"portuguese": "葡萄牙文",
|
||||
"russian": "俄文",
|
||||
"spanish": "西班牙文",
|
||||
"german": "德文"
|
||||
"spanish": "西班牙文"
|
||||
},
|
||||
"lmstudio": {
|
||||
"keep_alive_time.description": "对话后模型在内存中保持的时间(默认:5分钟)",
|
||||
"keep_alive_time.placeholder": "分钟",
|
||||
"keep_alive_time.title": "保持活跃时间",
|
||||
"title": "LM Studio"
|
||||
},
|
||||
"mermaid": {
|
||||
"download": {
|
||||
@ -340,18 +350,6 @@
|
||||
},
|
||||
"title": "Mermaid 图表"
|
||||
},
|
||||
"plantuml": {
|
||||
"title": "PlantUML 图表",
|
||||
"download": {
|
||||
"png": "下载 PNG",
|
||||
"svg": "下载 SVG",
|
||||
"failed": "下载失败,请检查网络"
|
||||
},
|
||||
"tabs": {
|
||||
"preview": "预览",
|
||||
"source": "源码"
|
||||
}
|
||||
},
|
||||
"message": {
|
||||
"api.check.model.title": "请选择要检测的模型",
|
||||
"api.connection.failed": "连接失败",
|
||||
@ -385,9 +383,9 @@
|
||||
"message.delete.title": "删除消息",
|
||||
"message.multi_model_style": "多模型回答样式",
|
||||
"message.multi_model_style.fold": "折叠",
|
||||
"message.multi_model_style.grid": "网格",
|
||||
"message.multi_model_style.horizontal": "水平",
|
||||
"message.multi_model_style.vertical": "垂直",
|
||||
"message.multi_model_style.grid": "网格",
|
||||
"message.style": "消息样式",
|
||||
"message.style.bubble": "气泡",
|
||||
"message.style.plain": "简洁",
|
||||
@ -469,12 +467,6 @@
|
||||
"keep_alive_time.title": "保持活跃时间",
|
||||
"title": "Ollama"
|
||||
},
|
||||
"lmstudio": {
|
||||
"keep_alive_time.description": "对话后模型在内存中保持的时间(默认:5分钟)",
|
||||
"keep_alive_time.placeholder": "分钟",
|
||||
"keep_alive_time.title": "保持活跃时间",
|
||||
"title": "LM Studio"
|
||||
},
|
||||
"paintings": {
|
||||
"button.delete.image": "删除图片",
|
||||
"button.delete.image.confirm": "确定要删除此图片吗?",
|
||||
@ -496,23 +488,32 @@
|
||||
"seed_tip": "相同的种子和提示词可以生成相似的图片",
|
||||
"title": "图片"
|
||||
},
|
||||
"plantuml": {
|
||||
"download": {
|
||||
"failed": "下载失败,请检查网络",
|
||||
"png": "下载 PNG",
|
||||
"svg": "下载 SVG"
|
||||
},
|
||||
"tabs": {
|
||||
"preview": "预览",
|
||||
"source": "源码"
|
||||
},
|
||||
"title": "PlantUML 图表"
|
||||
},
|
||||
"prompts": {
|
||||
"explanation": "帮我解释一下这个概念",
|
||||
"summarize": "帮我总结一下这段话",
|
||||
"title": "你是一名擅长会话的助理,你需要将用户的会话总结为 10 个字以内的标题,标题语言与用户的首要语言一致,不要使用标点符号和其他特殊符号"
|
||||
},
|
||||
"provider": {
|
||||
"infini": "无问芯穹",
|
||||
"perplexity": "Perplexity",
|
||||
"dmxapi": "DMXAPI",
|
||||
"aihubmix": "AiHubMix",
|
||||
"anthropic": "Anthropic",
|
||||
"azure-openai": "Azure OpenAI",
|
||||
"baichuan": "百川",
|
||||
"baidu-cloud": "百度云千帆",
|
||||
"dashscope": "阿里云百炼",
|
||||
"modelscope": "ModelScope 魔搭",
|
||||
"deepseek": "深度求索",
|
||||
"dmxapi": "DMXAPI",
|
||||
"doubao": "火山引擎",
|
||||
"fireworks": "Fireworks",
|
||||
"gemini": "Gemini",
|
||||
@ -523,16 +524,19 @@
|
||||
"groq": "Groq",
|
||||
"hunyuan": "腾讯混元",
|
||||
"hyperbolic": "Hyperbolic",
|
||||
"infini": "无问芯穹",
|
||||
"jina": "Jina",
|
||||
"lmstudio": "LM Studio",
|
||||
"minimax": "MiniMax",
|
||||
"mistral": "Mistral",
|
||||
"modelscope": "ModelScope 魔搭",
|
||||
"moonshot": "月之暗面",
|
||||
"nvidia": "英伟达",
|
||||
"ocoolai": "ocoolAI",
|
||||
"ollama": "Ollama",
|
||||
"lmstudio": "LM Studio",
|
||||
"openai": "OpenAI",
|
||||
"openrouter": "OpenRouter",
|
||||
"perplexity": "Perplexity",
|
||||
"ppio": "PPIO 派欧云",
|
||||
"qwenlm": "QwenLM",
|
||||
"silicon": "硅基流动",
|
||||
@ -580,22 +584,26 @@
|
||||
"title": "清除缓存"
|
||||
},
|
||||
"data.title": "数据目录",
|
||||
"hour_interval_one": "{{count}} 小时",
|
||||
"hour_interval_other": "{{count}} 小时",
|
||||
"minute_interval_one": "{{count}} 分钟",
|
||||
"minute_interval_other": "{{count}} 分钟",
|
||||
"notion.api_key": "Notion 密钥",
|
||||
"notion.api_key_placeholder": "请输入Notion 密钥",
|
||||
"notion.check": {
|
||||
"button": "检查",
|
||||
"empty_api_key": "未配置Api_key",
|
||||
"empty_database_id": "未配置Database_id",
|
||||
"error": "连接异常,请检查网络及Api_key和Database_id是否正确",
|
||||
"fail": "连接失败,请检查网络及Api_key和Database_id是否正确",
|
||||
"success": "连接成功"
|
||||
},
|
||||
"notion.database_id": "Notion 数据库 ID",
|
||||
"notion.database_id_placeholder": "请输入Notion 数据库 ID",
|
||||
"notion.help": "Notion 配置文档",
|
||||
"notion.page_name_key": "页面标题字段名",
|
||||
"notion.page_name_key_placeholder": "请输入页面标题字段名,默认为 Name",
|
||||
"notion.title": "Notion 配置",
|
||||
"notion.help": "Notion 配置文档",
|
||||
"notion.check": {
|
||||
"button": "检查",
|
||||
"fail": "连接失败,请检查网络及Api_key和Database_id是否正确",
|
||||
"success": "连接成功",
|
||||
"error": "连接异常,请检查网络及Api_key和Database_id是否正确",
|
||||
"empty_api_key": "未配置Api_key",
|
||||
"empty_database_id": "未配置Database_id"
|
||||
},
|
||||
"title": "数据设置",
|
||||
"webdav": {
|
||||
"autoSync": "自动备份",
|
||||
@ -603,11 +611,11 @@
|
||||
"backup.button": "备份到 WebDAV",
|
||||
"host": "WebDAV 地址",
|
||||
"host.placeholder": "http://localhost:8080",
|
||||
"minute_interval_one": "{{count}} 分钟",
|
||||
"minute_interval_other": "{{count}} 分钟",
|
||||
"hour_interval_one": "{{count}} 小时",
|
||||
"hour_interval_other": "{{count}} 小时",
|
||||
"lastSync": "上次备份时间",
|
||||
"minute_interval_one": "{{count}} 分钟",
|
||||
"minute_interval_other": "{{count}} 分钟",
|
||||
"noSync": "等待下次备份",
|
||||
"password": "WebDAV 密码",
|
||||
"path": "WebDAV 路径",
|
||||
@ -619,11 +627,7 @@
|
||||
"syncStatus": "备份状态",
|
||||
"title": "WebDAV",
|
||||
"user": "WebDAV 用户名"
|
||||
},
|
||||
"minute_interval_one": "{{count}} 分钟",
|
||||
"minute_interval_other": "{{count}} 分钟",
|
||||
"hour_interval_one": "{{count}} 小时",
|
||||
"hour_interval_other": "{{count}} 小时"
|
||||
}
|
||||
},
|
||||
"display.custom.css": "自定义 CSS",
|
||||
"display.custom.css.placeholder": "/* 这里写自定义CSS */",
|
||||
@ -664,6 +668,10 @@
|
||||
"input.target_language.japanese": "日文",
|
||||
"input.target_language.russian": "俄文",
|
||||
"messages.divider": "消息分割线",
|
||||
"messages.grid_columns": "消息网格展示列数",
|
||||
"messages.grid_popover_trigger": "网格详情触发",
|
||||
"messages.grid_popover_trigger.click": "点击显示",
|
||||
"messages.grid_popover_trigger.hover": "悬停显示",
|
||||
"messages.input.paste_long_text_as_file": "长文本粘贴为文件",
|
||||
"messages.input.paste_long_text_threshold": "长文本长度",
|
||||
"messages.input.send_shortcuts": "发送快捷键",
|
||||
@ -671,10 +679,6 @@
|
||||
"messages.input.title": "输入设置",
|
||||
"messages.markdown_rendering_input_message": "Markdown 渲染输入消息",
|
||||
"messages.math_engine": "数学公式引擎",
|
||||
"messages.grid_columns": "消息网格展示列数",
|
||||
"messages.grid_popover_trigger": "网格详情触发",
|
||||
"messages.grid_popover_trigger.hover": "悬停显示",
|
||||
"messages.grid_popover_trigger.click": "点击显示",
|
||||
"messages.metrics": "首字时延 {{time_first_token_millsec}}ms | 每秒 {{token_speed}} tokens",
|
||||
"messages.model.title": "模型设置",
|
||||
"messages.title": "消息设置",
|
||||
@ -786,7 +790,6 @@
|
||||
"translate": {
|
||||
"any.language": "任意语言",
|
||||
"button.translate": "翻译",
|
||||
"tooltip.newline": "换行",
|
||||
"close": "关闭",
|
||||
"confirm": {
|
||||
"content": "翻译后将覆盖原文,是否继续?",
|
||||
@ -794,17 +797,18 @@
|
||||
},
|
||||
"error.failed": "翻译失败",
|
||||
"error.not_configured": "翻译模型未配置",
|
||||
"history": {
|
||||
"clear": "清空历史",
|
||||
"clear_description": "清空历史将删除所有翻译历史记录,是否继续?",
|
||||
"delete": "删除",
|
||||
"empty": "暂无翻译历史",
|
||||
"title": "翻译历史"
|
||||
},
|
||||
"input.placeholder": "输入文本进行翻译",
|
||||
"output.placeholder": "翻译",
|
||||
"processing": "翻译中...",
|
||||
"title": "翻译",
|
||||
"history": {
|
||||
"title": "翻译历史",
|
||||
"empty": "暂无翻译历史",
|
||||
"clear": "清空历史",
|
||||
"delete": "删除",
|
||||
"clear_description": "清空历史将删除所有翻译历史记录,是否继续?"
|
||||
}
|
||||
"tooltip.newline": "换行"
|
||||
},
|
||||
"tray": {
|
||||
"quit": "退出",
|
||||
@ -816,9 +820,6 @@
|
||||
"quit": "退出",
|
||||
"show_window": "显示窗口",
|
||||
"visualization": "可视化"
|
||||
},
|
||||
"docs": {
|
||||
"title": "帮助文档"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -73,7 +73,9 @@
|
||||
"chat": {
|
||||
"add.assistant.title": "添加助手",
|
||||
"artifacts.button.download": "下載",
|
||||
"artifacts.button.openExternal": "外部瀏覽器打開",
|
||||
"artifacts.button.preview": "預覽",
|
||||
"artifacts.preview.openExternal.error.content": "外部瀏覽器打開出錯",
|
||||
"assistant.search.placeholder": "搜尋",
|
||||
"deeply_thought": "已深度思考(用時 {{secounds}} 秒)",
|
||||
"default.description": "你好,我是預設助手。你可以立即開始與我聊天。",
|
||||
@ -86,6 +88,7 @@
|
||||
"input.context_count.tip": "上下文數量",
|
||||
"input.estimated_tokens.tip": "預估 Token 數",
|
||||
"input.expand": "展開",
|
||||
"input.file_not_supported": "模型不支持此文件類型",
|
||||
"input.knowledge_base": "知識庫",
|
||||
"input.new.context": "清除上下文 {{Command}}",
|
||||
"input.new_topic": "新話題 {{Command}}",
|
||||
@ -98,7 +101,6 @@
|
||||
"input.upload": "上傳圖片或文檔",
|
||||
"input.upload.document": "上傳文檔(模型不支持圖片)",
|
||||
"input.web_search": "開啟網路搜索",
|
||||
"input.file_not_supported": "模型不支持此文件類型",
|
||||
"message.new.branch": "分支",
|
||||
"message.new.branch.created": "新分支已建立",
|
||||
"message.new.context": "新上下文",
|
||||
@ -111,22 +113,26 @@
|
||||
"settings.context_count.tip": "在上下文中保留的前幾則訊息。",
|
||||
"settings.max": "最大",
|
||||
"settings.max_tokens": "啟用最大 Token 限制",
|
||||
"settings.max_tokens.confirm": "啟用消息長度限制",
|
||||
"settings.max_tokens.confirm_content": "啟用消息長度限制後,單次交互所用的最大 Token 數, 會影響返回結果的長度。要根據模型上下文限制來設置,否則會報錯",
|
||||
"settings.max_tokens.tip": "模型可以生成的最大 Token 數。要根据模型上下文限制来设置,否则会报错",
|
||||
"settings.reset": "重置",
|
||||
"settings.set_as_default": "設為預設助手",
|
||||
"settings.show_line_numbers": "代码顯示行號",
|
||||
"settings.temperature": "溫度",
|
||||
"settings.temperature.tip": "模型產生文字的隨機程度。數值越高,回應內容越具多樣性、創意性及隨機性;設定為 0 則會依據事實回答。一般聊天建議設定為 0.7",
|
||||
"settings.top_p": "Top-P",
|
||||
"settings.top_p.tip": "模型生成文本的隨機程度。值越小,AI 生成的內容越單調,也越容易理解;值越大,AI 回覆的詞彙範圍越大,越多樣化",
|
||||
"settings.max_tokens.confirm": "啟用消息長度限制",
|
||||
"settings.max_tokens.confirm_content": "啟用消息長度限制後,單次交互所用的最大 Token 數, 會影響返回結果的長度。要根據模型上下文限制來設置,否則會報錯",
|
||||
"settings.thought_auto_collapse": "思考內容自動折疊",
|
||||
"settings.thought_auto_collapse.tip": "思考結束後思考內容自動折疊",
|
||||
"settings.top_p": "Top-P",
|
||||
"settings.top_p.tip": "模型生成文本的隨機程度。值越小,AI 生成的內容越單調,也越容易理解;值越大,AI 回覆的詞彙範圍越大,越多樣化",
|
||||
"suggestions.title": "建議的問題",
|
||||
"thinking": "思考中",
|
||||
"topics.auto_rename": "自動重新命名",
|
||||
"topics.clear.title": "清空消息",
|
||||
"topics.copy.image": "圖片",
|
||||
"topics.copy.md": "Markdown",
|
||||
"topics.copy.title": "複製為",
|
||||
"topics.delete.shortcut": "按住 {{key}} 可直接刪除",
|
||||
"topics.edit.placeholder": "輸入新名稱",
|
||||
"topics.edit.title": "編輯名稱",
|
||||
"topics.export.image": "匯出為圖片",
|
||||
@ -137,15 +143,12 @@
|
||||
"topics.list": "話題列表",
|
||||
"topics.move_to": "移動到",
|
||||
"topics.pinned": "固定話題",
|
||||
"topics.prompt": "話題提示詞",
|
||||
"topics.prompt.edit.title": "編輯話題提示詞",
|
||||
"topics.prompt.tips": "話題提示詞:針對目前話題提供額外的補充提示詞",
|
||||
"topics.title": "話題",
|
||||
"topics.unpinned": "取消固定",
|
||||
"topics.delete.shortcut": "按住 {{key}} 可直接刪除",
|
||||
"translate": "翻譯",
|
||||
"topics.prompt": "話題提示詞",
|
||||
"topics.prompt.tips": "話題提示詞:針對目前話題提供額外的補充提示詞",
|
||||
"topics.prompt.edit.title": "編輯話題提示詞",
|
||||
"artifacts.button.openExternal": "外部瀏覽器打開",
|
||||
"artifacts.preview.openExternal.error.content": "外部瀏覽器打開出錯"
|
||||
"translate": "翻譯"
|
||||
},
|
||||
"common": {
|
||||
"add": "添加",
|
||||
@ -166,6 +169,7 @@
|
||||
"download": "下載",
|
||||
"duplicate": "複製",
|
||||
"edit": "編輯",
|
||||
"footnote": "引用內容",
|
||||
"footnotes": "引用",
|
||||
"knowledge_base": "知識庫",
|
||||
"language": "語言",
|
||||
@ -183,8 +187,10 @@
|
||||
"select": "選擇",
|
||||
"topics": "話題",
|
||||
"warning": "警告",
|
||||
"you": "您",
|
||||
"footnote": "引用內容"
|
||||
"you": "您"
|
||||
},
|
||||
"docs": {
|
||||
"title": "幫助文件"
|
||||
},
|
||||
"error": {
|
||||
"backup.file_format": "備份文件格式錯誤",
|
||||
@ -281,6 +287,7 @@
|
||||
"invalid_url": "無效的網址",
|
||||
"model_info": "模型信息",
|
||||
"no_bases": "暫無知識庫",
|
||||
"no_match": "未匹配到知識庫內容",
|
||||
"no_provider": "知識庫模型提供商遺失,該知識庫將不再支持,請重新創建知識庫",
|
||||
"not_set": "未設置",
|
||||
"not_support": "知識庫數據庫引擎已更新,該知識庫將不再支持,請重新創建知識庫",
|
||||
@ -299,15 +306,14 @@
|
||||
"status_new": "已添加",
|
||||
"status_pending": "等待中",
|
||||
"status_processing": "處理中",
|
||||
"threshold": "匹配度閾值",
|
||||
"threshold_placeholder": "未設置",
|
||||
"threshold_too_large_or_small": "閾值不能大於1或小於0",
|
||||
"threshold_tooltip": "用於衡量用戶問題與知識庫內容之間的相關性(0-1)",
|
||||
"title": "知識庫",
|
||||
"url_added": "網址已添加",
|
||||
"url_placeholder": "請輸入網址, 多個網址用回車分隔",
|
||||
"urls": "網址",
|
||||
"threshold_tooltip": "用於衡量用戶問題與知識庫內容之間的相關性(0-1)",
|
||||
"threshold_placeholder": "未設置",
|
||||
"threshold_too_large_or_small": "閾值不能大於1或小於0",
|
||||
"no_match": "未匹配到知識庫內容",
|
||||
"threshold": "匹配度閾值"
|
||||
"urls": "網址"
|
||||
},
|
||||
"languages": {
|
||||
"arabic": "阿拉伯文",
|
||||
@ -315,13 +321,19 @@
|
||||
"chinese-traditional": "繁體中文",
|
||||
"english": "英文",
|
||||
"french": "法文",
|
||||
"german": "德文",
|
||||
"italian": "意大利文",
|
||||
"japanese": "日文",
|
||||
"korean": "韓文",
|
||||
"portuguese": "葡萄牙文",
|
||||
"russian": "俄文",
|
||||
"spanish": "西班牙文",
|
||||
"german": "德文"
|
||||
"spanish": "西班牙文"
|
||||
},
|
||||
"lmstudio": {
|
||||
"keep_alive_time.description": "對話後模型在記憶體中保持的時間(預設為 5 分鐘)。",
|
||||
"keep_alive_time.placeholder": "分鐘",
|
||||
"keep_alive_time.title": "保持活躍時間",
|
||||
"title": "LM Studio"
|
||||
},
|
||||
"mermaid": {
|
||||
"download": {
|
||||
@ -356,6 +368,8 @@
|
||||
"error.enter.model": "請先選擇一個模型",
|
||||
"error.enter.name": "請先輸入知識庫名稱",
|
||||
"error.get_embedding_dimensions": "獲取嵌入維度失敗",
|
||||
"error.invalid.api.host": "無效的 API 位址",
|
||||
"error.invalid.api.key": "無效的 API 密鑰",
|
||||
"error.invalid.enter.model": "請選擇一個模型",
|
||||
"error.invalid.proxy.url": "無效的代理 URL",
|
||||
"error.invalid.webdav": "無效的 WebDAV 設定",
|
||||
@ -369,9 +383,9 @@
|
||||
"message.delete.title": "刪除訊息",
|
||||
"message.multi_model_style": "多模型回答樣式",
|
||||
"message.multi_model_style.fold": "折疊",
|
||||
"message.multi_model_style.grid": "网格",
|
||||
"message.multi_model_style.horizontal": "水平",
|
||||
"message.multi_model_style.vertical": "垂直",
|
||||
"message.multi_model_style.grid": "网格",
|
||||
"message.style": "消息樣式",
|
||||
"message.style.bubble": "氣泡",
|
||||
"message.style.plain": "簡潔",
|
||||
@ -387,9 +401,7 @@
|
||||
"upgrade.success.button": "重新啟動",
|
||||
"upgrade.success.content": "請重新啟動應用以完成升級",
|
||||
"upgrade.success.title": "升級成功",
|
||||
"warn.notion.exporting": "正在導出到Notion,請勿重複請求導出!",
|
||||
"error.invalid.api.host": "無效的 API 位址",
|
||||
"error.invalid.api.key": "無效的 API 密鑰"
|
||||
"warn.notion.exporting": "正在導出到Notion,請勿重複請求導出!"
|
||||
},
|
||||
"minapp": {
|
||||
"sidebar.add.title": "添加到側邊欄",
|
||||
@ -455,12 +467,6 @@
|
||||
"keep_alive_time.title": "保持活躍時間",
|
||||
"title": "Ollama"
|
||||
},
|
||||
"lmstudio": {
|
||||
"keep_alive_time.description": "對話後模型在記憶體中保持的時間(預設為 5 分鐘)。",
|
||||
"keep_alive_time.placeholder": "分鐘",
|
||||
"keep_alive_time.title": "保持活躍時間",
|
||||
"title": "LM Studio"
|
||||
},
|
||||
"paintings": {
|
||||
"button.delete.image": "刪除繪圖",
|
||||
"button.delete.image.confirm": "確定要刪除此繪圖嗎?",
|
||||
@ -482,6 +488,18 @@
|
||||
"seed_tip": "相同的種子和提示詞可以生成相似的圖片",
|
||||
"title": "繪圖"
|
||||
},
|
||||
"plantuml": {
|
||||
"download": {
|
||||
"failed": "下載失敗,請檢查網絡",
|
||||
"png": "下載 PNG",
|
||||
"svg": "下載 SVG"
|
||||
},
|
||||
"tabs": {
|
||||
"preview": "預覽",
|
||||
"source": "源碼"
|
||||
},
|
||||
"title": "PlantUML 圖表"
|
||||
},
|
||||
"prompts": {
|
||||
"explanation": "幫我解釋一下這個概念",
|
||||
"summarize": "幫我總結一下這段話",
|
||||
@ -494,8 +512,8 @@
|
||||
"baichuan": "百川",
|
||||
"baidu-cloud": "百度云千帆",
|
||||
"dashscope": "阿里雲百鍊",
|
||||
"modelscope": "ModelScope 魔搭",
|
||||
"deepseek": "深度求索",
|
||||
"dmxapi": "DMXAPI",
|
||||
"doubao": "火山引擎",
|
||||
"fireworks": "Fireworks",
|
||||
"gemini": "Gemini",
|
||||
@ -506,16 +524,19 @@
|
||||
"groq": "Groq",
|
||||
"hunyuan": "騰訊混元",
|
||||
"hyperbolic": "Hyperbolic",
|
||||
"infini": "無問芯穹",
|
||||
"jina": "Jina",
|
||||
"lmstudio": "LM Studio",
|
||||
"minimax": "MiniMax",
|
||||
"mistral": "Mistral",
|
||||
"modelscope": "ModelScope 魔搭",
|
||||
"moonshot": "月之暗面",
|
||||
"nvidia": "輝達",
|
||||
"ocoolai": "ocoolAI",
|
||||
"ollama": "Ollama",
|
||||
"lmstudio": "LM Studio",
|
||||
"openai": "OpenAI",
|
||||
"openrouter": "OpenRouter",
|
||||
"perplexity": "Perplexity",
|
||||
"ppio": "PPIO 派歐雲",
|
||||
"qwenlm": "QwenLM",
|
||||
"silicon": "SiliconFlow",
|
||||
@ -523,10 +544,7 @@
|
||||
"together": "Together",
|
||||
"yi": "零一萬物",
|
||||
"zhinao": "360智腦",
|
||||
"zhipu": "智譜AI",
|
||||
"infini": "無問芯穹",
|
||||
"perplexity": "Perplexity",
|
||||
"dmxapi": "DMXAPI"
|
||||
"zhipu": "智譜AI"
|
||||
},
|
||||
"settings": {
|
||||
"about": "關於與回饋",
|
||||
@ -556,6 +574,8 @@
|
||||
"assistant.model_params": "模型參數",
|
||||
"assistant.title": "預設助手",
|
||||
"data": {
|
||||
"app_data": "應用數據",
|
||||
"app_logs": "應用日誌",
|
||||
"clear_cache": {
|
||||
"button": "清除緩存",
|
||||
"confirm": "清除緩存將刪除應用緩存數據,包括小程序數據。此操作不可恢復,是否繼續?",
|
||||
@ -564,22 +584,26 @@
|
||||
"title": "清除緩存"
|
||||
},
|
||||
"data.title": "數據目錄",
|
||||
"hour_interval_one": "{{count}} 小時",
|
||||
"hour_interval_other": "{{count}} 小時",
|
||||
"minute_interval_one": "{{count}} 分鐘",
|
||||
"minute_interval_other": "{{count}} 分鐘",
|
||||
"notion.api_key": "Notion 密鑰",
|
||||
"notion.api_key_placeholder": "請輸入Notion 密鑰",
|
||||
"notion.check": {
|
||||
"button": "檢查",
|
||||
"empty_api_key": "未配置Api_key",
|
||||
"empty_database_id": "未配置Database_id",
|
||||
"error": "連接異常,請檢查網絡及Api_key和Database_id是否正確",
|
||||
"fail": "連接失敗,請檢查網絡及Api_key和Database_id是否正確",
|
||||
"success": "連線成功"
|
||||
},
|
||||
"notion.database_id": "Notion 資料庫 ID",
|
||||
"notion.database_id_placeholder": "請輸入Notion 資料庫 ID",
|
||||
"notion.help": "Notion 配置文檔",
|
||||
"notion.page_name_key": "頁面標題欄位名稱",
|
||||
"notion.page_name_key_placeholder": "請輸入頁面標題欄位名稱,預設為 Name",
|
||||
"notion.title": "Notion 配置",
|
||||
"notion.help": "Notion 配置文檔",
|
||||
"notion.check": {
|
||||
"button": "檢查",
|
||||
"fail": "連接失敗,請檢查網絡及Api_key和Database_id是否正確",
|
||||
"success": "連線成功",
|
||||
"error": "連接異常,請檢查網絡及Api_key和Database_id是否正確",
|
||||
"empty_api_key": "未配置Api_key",
|
||||
"empty_database_id": "未配置Database_id"
|
||||
},
|
||||
"title": "數據設定",
|
||||
"webdav": {
|
||||
"autoSync": "自動備份",
|
||||
@ -587,11 +611,11 @@
|
||||
"backup.button": "備份到 WebDAV",
|
||||
"host": "WebDAV 主機位址",
|
||||
"host.placeholder": "http://localhost:8080",
|
||||
"minute_interval_one": "{{count}} 分鐘",
|
||||
"minute_interval_other": "{{count}} 分鐘",
|
||||
"hour_interval_one": "{{count}} 小時",
|
||||
"hour_interval_other": "{{count}} 小時",
|
||||
"lastSync": "上次備份時間",
|
||||
"minute_interval_one": "{{count}} 分鐘",
|
||||
"minute_interval_other": "{{count}} 分鐘",
|
||||
"noSync": "等待下次備份",
|
||||
"password": "WebDAV 密碼",
|
||||
"path": "WebDAV 路徑",
|
||||
@ -603,13 +627,7 @@
|
||||
"syncStatus": "備份狀態",
|
||||
"title": "WebDAV",
|
||||
"user": "WebDAV 使用者名稱"
|
||||
},
|
||||
"app_data": "應用數據",
|
||||
"app_logs": "應用日誌",
|
||||
"minute_interval_one": "{{count}} 分鐘",
|
||||
"minute_interval_other": "{{count}} 分鐘",
|
||||
"hour_interval_one": "{{count}} 小時",
|
||||
"hour_interval_other": "{{count}} 小時"
|
||||
}
|
||||
},
|
||||
"display.custom.css": "自定義 CSS",
|
||||
"display.custom.css.placeholder": "/* 這裡寫自定義 CSS */",
|
||||
@ -650,16 +668,17 @@
|
||||
"input.target_language.japanese": "日文",
|
||||
"input.target_language.russian": "俄文",
|
||||
"messages.divider": "訊息間顯示分隔線",
|
||||
"messages.grid_columns": "消息網格展示列數",
|
||||
"messages.grid_popover_trigger": "網格詳情觸發",
|
||||
"messages.grid_popover_trigger.click": "點擊顯示",
|
||||
"messages.grid_popover_trigger.hover": "懸停顯示",
|
||||
"messages.input.paste_long_text_as_file": "將長文本貼上為檔案",
|
||||
"messages.input.paste_long_text_threshold": "長文本長度",
|
||||
"messages.input.send_shortcuts": "發送快捷鍵",
|
||||
"messages.input.show_estimated_tokens": "顯示預估 Token 數",
|
||||
"messages.input.title": "輸入設定",
|
||||
"messages.markdown_rendering_input_message": "Markdown 渲染輸入訊息",
|
||||
"messages.math_engine": "Markdown 渲染輸入訊息",
|
||||
"messages.grid_columns": "消息網格展示列數",
|
||||
"messages.grid_popover_trigger": "網格詳情觸發",
|
||||
"messages.grid_popover_trigger.hover": "懸停顯示",
|
||||
"messages.grid_popover_trigger.click": "點擊顯示",
|
||||
"messages.metrics": "首字時延 {{time_first_token_millsec}}ms | 每秒 {{token_speed}} tokens",
|
||||
"messages.model.title": "模型設定",
|
||||
"messages.title": "訊息設定",
|
||||
@ -745,14 +764,14 @@
|
||||
"reset_to_default": "重置為預設",
|
||||
"search_message": "搜索消息",
|
||||
"show_app": "顯示應用",
|
||||
"show_settings": "打開設定",
|
||||
"title": "快速方式",
|
||||
"toggle_new_context": "清除上下文",
|
||||
"toggle_show_assistants": "切換助手顯示",
|
||||
"toggle_show_topics": "切換話題顯示",
|
||||
"zoom_in": "放大界面",
|
||||
"zoom_out": "縮小界面",
|
||||
"zoom_reset": "重置縮放",
|
||||
"show_settings": "打開設定"
|
||||
"zoom_reset": "重置縮放"
|
||||
},
|
||||
"theme.auto": "自動",
|
||||
"theme.dark": "深色主題",
|
||||
@ -766,13 +785,11 @@
|
||||
"topic.position.left": "左側",
|
||||
"topic.position.right": "右側",
|
||||
"topic.show.time": "顯示話題時間",
|
||||
"tray.title": "啟用系統托盤圖標",
|
||||
"messages.markdown_rendering_input_message": "Markdown 渲染輸入訊息"
|
||||
"tray.title": "啟用系統托盤圖標"
|
||||
},
|
||||
"translate": {
|
||||
"any.language": "任意語言",
|
||||
"button.translate": "翻譯",
|
||||
"tooltip.newline": "換行",
|
||||
"close": "關閉",
|
||||
"confirm": {
|
||||
"content": "翻譯後將覆蓋原文,是否繼續?",
|
||||
@ -780,10 +797,18 @@
|
||||
},
|
||||
"error.failed": "翻譯失敗",
|
||||
"error.not_configured": "翻譯模型未配置",
|
||||
"history": {
|
||||
"clear": "清空歷史",
|
||||
"clear_description": "清空歷史將刪除所有翻譯歷史記錄,是否繼續?",
|
||||
"delete": "刪除",
|
||||
"empty": "翻譯歷史為空",
|
||||
"title": "翻譯歷史"
|
||||
},
|
||||
"input.placeholder": "輸入文字進行翻譯",
|
||||
"output.placeholder": "翻譯",
|
||||
"processing": "翻譯中...",
|
||||
"title": "翻譯"
|
||||
"title": "翻譯",
|
||||
"tooltip.newline": "換行"
|
||||
},
|
||||
"tray": {
|
||||
"quit": "退出",
|
||||
@ -795,9 +820,6 @@
|
||||
"quit": "退出",
|
||||
"show_window": "顯示視窗",
|
||||
"visualization": "可視化"
|
||||
},
|
||||
"docs": {
|
||||
"title": "幫助文件"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user