feat: support OAuth & API key for Qwen/MiniMax providers (#177)
This commit is contained in:
committed by
GitHub
Unverified
parent
e1ae68ce7e
commit
7b16b6af14
@@ -1,138 +1,156 @@
|
||||
{
|
||||
"title": "Settings",
|
||||
"subtitle": "Configure your ClawX experience",
|
||||
"appearance": {
|
||||
"title": "Appearance",
|
||||
"description": "Customize the look and feel",
|
||||
"theme": "Theme",
|
||||
"light": "Light",
|
||||
"dark": "Dark",
|
||||
"system": "System",
|
||||
"language": "Language"
|
||||
"title": "Settings",
|
||||
"subtitle": "Configure your ClawX experience",
|
||||
"appearance": {
|
||||
"title": "Appearance",
|
||||
"description": "Customize the look and feel",
|
||||
"theme": "Theme",
|
||||
"light": "Light",
|
||||
"dark": "Dark",
|
||||
"system": "System",
|
||||
"language": "Language"
|
||||
},
|
||||
"aiProviders": {
|
||||
"title": "AI Providers",
|
||||
"description": "Configure your AI model providers and API keys",
|
||||
"add": "Add Provider",
|
||||
"custom": "Custom",
|
||||
"notRequired": "Not required",
|
||||
"empty": {
|
||||
"title": "No providers configured",
|
||||
"desc": "Add an AI provider to start using ClawX",
|
||||
"cta": "Add Your First Provider"
|
||||
},
|
||||
"aiProviders": {
|
||||
"title": "AI Providers",
|
||||
"description": "Configure your AI model providers and API keys",
|
||||
"add": "Add Provider",
|
||||
"custom": "Custom",
|
||||
"notRequired": "Not required",
|
||||
"empty": {
|
||||
"title": "No providers configured",
|
||||
"desc": "Add an AI provider to start using ClawX",
|
||||
"cta": "Add Your First Provider"
|
||||
},
|
||||
"dialog": {
|
||||
"title": "Add AI Provider",
|
||||
"desc": "Configure a new AI model provider",
|
||||
"displayName": "Display Name",
|
||||
"apiKey": "API Key",
|
||||
"apiKeyStored": "Your API key is stored locally on your machine.",
|
||||
"baseUrl": "Base URL",
|
||||
"modelId": "Model ID",
|
||||
"cancel": "Cancel",
|
||||
"change": "Change provider",
|
||||
"add": "Add Provider",
|
||||
"save": "Save",
|
||||
"validate": "Validate"
|
||||
},
|
||||
"card": {
|
||||
"default": "Default",
|
||||
"configured": "Configured",
|
||||
"noKey": "No API key set",
|
||||
"setDefault": "Set as default",
|
||||
"editKey": "Edit API key",
|
||||
"delete": "Delete provider"
|
||||
},
|
||||
"toast": {
|
||||
"added": "Provider added successfully",
|
||||
"failedAdd": "Failed to add provider",
|
||||
"deleted": "Provider deleted",
|
||||
"failedDelete": "Failed to delete provider",
|
||||
"defaultUpdated": "Default provider updated",
|
||||
"failedDefault": "Failed to set default",
|
||||
"updated": "Provider updated",
|
||||
"failedUpdate": "Failed to update provider",
|
||||
"invalidKey": "Invalid API key",
|
||||
"modelRequired": "Model ID is required"
|
||||
}
|
||||
"dialog": {
|
||||
"title": "Add AI Provider",
|
||||
"desc": "Configure a new AI model provider",
|
||||
"displayName": "Display Name",
|
||||
"apiKey": "API Key",
|
||||
"apiKeyStored": "Your API key is stored locally on your machine.",
|
||||
"baseUrl": "Base URL",
|
||||
"modelId": "Model ID",
|
||||
"cancel": "Cancel",
|
||||
"change": "Change provider",
|
||||
"add": "Add Provider",
|
||||
"save": "Save",
|
||||
"validate": "Validate"
|
||||
},
|
||||
"gateway": {
|
||||
"title": "Gateway",
|
||||
"description": "OpenClaw Gateway settings",
|
||||
"status": "Status",
|
||||
"port": "Port",
|
||||
"logs": "Logs",
|
||||
"appLogs": "Application Logs",
|
||||
"openFolder": "Open Folder",
|
||||
"autoStart": "Auto-start Gateway",
|
||||
"autoStartDesc": "Start Gateway when ClawX launches"
|
||||
"card": {
|
||||
"default": "Default",
|
||||
"configured": "Configured",
|
||||
"noKey": "No API key set",
|
||||
"setDefault": "Set as default",
|
||||
"editKey": "Edit API key",
|
||||
"delete": "Delete provider"
|
||||
},
|
||||
"updates": {
|
||||
"title": "Updates",
|
||||
"description": "Keep ClawX up to date",
|
||||
"autoCheck": "Auto-check for updates",
|
||||
"autoCheckDesc": "Check for updates on startup",
|
||||
"autoDownload": "Auto-update",
|
||||
"autoDownloadDesc": "Automatically download and install updates",
|
||||
"status": {
|
||||
"checking": "Checking for updates...",
|
||||
"downloading": "Downloading update...",
|
||||
"available": "Update available: v{{version}}",
|
||||
"downloaded": "Ready to install: v{{version}}",
|
||||
"autoInstalling": "Restarting to install update in {{seconds}}s...",
|
||||
"failed": "Update check failed",
|
||||
"latest": "You have the latest version",
|
||||
"check": "Check for updates to get the latest features"
|
||||
},
|
||||
"action": {
|
||||
"checking": "Checking...",
|
||||
"downloading": "Downloading...",
|
||||
"download": "Download Update",
|
||||
"install": "Install & Restart",
|
||||
"cancelAutoInstall": "Cancel",
|
||||
"retry": "Retry",
|
||||
"check": "Check for Updates"
|
||||
},
|
||||
"currentVersion": "Current Version",
|
||||
"whatsNew": "What's New:",
|
||||
"errorDetails": "Error Details:",
|
||||
"help": "When auto-update is enabled, updates are downloaded and installed automatically."
|
||||
"toast": {
|
||||
"added": "Provider added successfully",
|
||||
"failedAdd": "Failed to add provider",
|
||||
"deleted": "Provider deleted",
|
||||
"failedDelete": "Failed to delete provider",
|
||||
"defaultUpdated": "Default provider updated",
|
||||
"failedDefault": "Failed to set default",
|
||||
"updated": "Provider updated",
|
||||
"failedUpdate": "Failed to update provider",
|
||||
"invalidKey": "Invalid API key",
|
||||
"modelRequired": "Model ID is required"
|
||||
},
|
||||
"advanced": {
|
||||
"title": "Advanced",
|
||||
"description": "Power-user options",
|
||||
"devMode": "Developer Mode",
|
||||
"devModeDesc": "Show developer tools and shortcuts"
|
||||
},
|
||||
"developer": {
|
||||
"title": "Developer",
|
||||
"description": "Advanced options for developers",
|
||||
"console": "OpenClaw Console",
|
||||
"consoleDesc": "Access the native OpenClaw management interface",
|
||||
"openConsole": "Open Developer Console",
|
||||
"consoleNote": "Opens the Control UI with gateway token injected",
|
||||
"gatewayToken": "Gateway Token",
|
||||
"gatewayTokenDesc": "Paste this into Control UI settings if prompted",
|
||||
"tokenUnavailable": "Token unavailable",
|
||||
"tokenCopied": "Gateway token copied",
|
||||
"cli": "OpenClaw CLI",
|
||||
"cliDesc": "Copy a command to run OpenClaw without modifying PATH.",
|
||||
"cliPowershell": "PowerShell command.",
|
||||
"cmdUnavailable": "Command unavailable",
|
||||
"cmdCopied": "CLI command copied",
|
||||
"installCmd": "Install \"openclaw\" Command",
|
||||
"installCmdDesc": "Installs ~/.local/bin/openclaw (no admin required)",
|
||||
"installTitle": "Install OpenClaw Command",
|
||||
"installMessage": "Install the \"openclaw\" command?",
|
||||
"installDetail": "This will create ~/.local/bin/openclaw. Ensure ~/.local/bin is on your PATH if you want to run it globally."
|
||||
},
|
||||
"about": {
|
||||
"title": "About",
|
||||
"appName": "ClawX",
|
||||
"tagline": "Graphical AI Assistant",
|
||||
"basedOn": "Based on OpenClaw",
|
||||
"version": "Version {{version}}",
|
||||
"docs": "Website",
|
||||
"github": "GitHub"
|
||||
"oauth": {
|
||||
"loginMode": "OAuth Login",
|
||||
"apikeyMode": "API Key",
|
||||
"loginPrompt": "This provider requires signing in via your browser.",
|
||||
"loginButton": "Login with Browser",
|
||||
"waiting": "Waiting...",
|
||||
"openLoginPage": "Open Login Page",
|
||||
"waitingApproval": "Waiting for approval in browser...",
|
||||
"cancel": "Cancel",
|
||||
"codeCopied": "Code copied to clipboard",
|
||||
"authFailed": "Authentication Failed",
|
||||
"tryAgain": "Try Again",
|
||||
"approveLogin": "Approve Login",
|
||||
"step1": "Copy the authorization code below.",
|
||||
"step2": "Open the login page in your browser.",
|
||||
"step3": "Paste the code to approve access.",
|
||||
"requestingCode": "Requesting secure login code..."
|
||||
}
|
||||
},
|
||||
"gateway": {
|
||||
"title": "Gateway",
|
||||
"description": "OpenClaw Gateway settings",
|
||||
"status": "Status",
|
||||
"port": "Port",
|
||||
"logs": "Logs",
|
||||
"appLogs": "Application Logs",
|
||||
"openFolder": "Open Folder",
|
||||
"autoStart": "Auto-start Gateway",
|
||||
"autoStartDesc": "Start Gateway when ClawX launches"
|
||||
},
|
||||
"updates": {
|
||||
"title": "Updates",
|
||||
"description": "Keep ClawX up to date",
|
||||
"autoCheck": "Auto-check for updates",
|
||||
"autoCheckDesc": "Check for updates on startup",
|
||||
"autoDownload": "Auto-update",
|
||||
"autoDownloadDesc": "Automatically download and install updates",
|
||||
"status": {
|
||||
"checking": "Checking for updates...",
|
||||
"downloading": "Downloading update...",
|
||||
"available": "Update available: v{{version}}",
|
||||
"downloaded": "Ready to install: v{{version}}",
|
||||
"autoInstalling": "Restarting to install update in {{seconds}}s...",
|
||||
"failed": "Update check failed",
|
||||
"latest": "You have the latest version",
|
||||
"check": "Check for updates to get the latest features"
|
||||
},
|
||||
"action": {
|
||||
"checking": "Checking...",
|
||||
"downloading": "Downloading...",
|
||||
"download": "Download Update",
|
||||
"install": "Install & Restart",
|
||||
"cancelAutoInstall": "Cancel",
|
||||
"retry": "Retry",
|
||||
"check": "Check for Updates"
|
||||
},
|
||||
"currentVersion": "Current Version",
|
||||
"whatsNew": "What's New:",
|
||||
"errorDetails": "Error Details:",
|
||||
"help": "When auto-update is enabled, updates are downloaded and installed automatically."
|
||||
},
|
||||
"advanced": {
|
||||
"title": "Advanced",
|
||||
"description": "Power-user options",
|
||||
"devMode": "Developer Mode",
|
||||
"devModeDesc": "Show developer tools and shortcuts"
|
||||
},
|
||||
"developer": {
|
||||
"title": "Developer",
|
||||
"description": "Advanced options for developers",
|
||||
"console": "OpenClaw Console",
|
||||
"consoleDesc": "Access the native OpenClaw management interface",
|
||||
"openConsole": "Open Developer Console",
|
||||
"consoleNote": "Opens the Control UI with gateway token injected",
|
||||
"gatewayToken": "Gateway Token",
|
||||
"gatewayTokenDesc": "Paste this into Control UI settings if prompted",
|
||||
"tokenUnavailable": "Token unavailable",
|
||||
"tokenCopied": "Gateway token copied",
|
||||
"cli": "OpenClaw CLI",
|
||||
"cliDesc": "Copy a command to run OpenClaw without modifying PATH.",
|
||||
"cliPowershell": "PowerShell command.",
|
||||
"cmdUnavailable": "Command unavailable",
|
||||
"cmdCopied": "CLI command copied",
|
||||
"installCmd": "Install \"openclaw\" Command",
|
||||
"installCmdDesc": "Installs ~/.local/bin/openclaw (no admin required)",
|
||||
"installTitle": "Install OpenClaw Command",
|
||||
"installMessage": "Install the \"openclaw\" command?",
|
||||
"installDetail": "This will create ~/.local/bin/openclaw. Ensure ~/.local/bin is on your PATH if you want to run it globally."
|
||||
},
|
||||
"about": {
|
||||
"title": "About",
|
||||
"appName": "ClawX",
|
||||
"tagline": "Graphical AI Assistant",
|
||||
"basedOn": "Based on OpenClaw",
|
||||
"version": "Version {{version}}",
|
||||
"docs": "Website",
|
||||
"github": "GitHub"
|
||||
}
|
||||
}
|
||||
@@ -1,138 +1,156 @@
|
||||
{
|
||||
"title": "設定",
|
||||
"subtitle": "ClawX の体験をカスタマイズ",
|
||||
"appearance": {
|
||||
"title": "外観",
|
||||
"description": "外観とスタイルをカスタマイズ",
|
||||
"theme": "テーマ",
|
||||
"light": "ライト",
|
||||
"dark": "ダーク",
|
||||
"system": "システム",
|
||||
"language": "言語"
|
||||
"title": "設定",
|
||||
"subtitle": "ClawX の体験をカスタマイズ",
|
||||
"appearance": {
|
||||
"title": "外観",
|
||||
"description": "外観とスタイルをカスタマイズ",
|
||||
"theme": "テーマ",
|
||||
"light": "ライト",
|
||||
"dark": "ダーク",
|
||||
"system": "システム",
|
||||
"language": "言語"
|
||||
},
|
||||
"aiProviders": {
|
||||
"title": "AI プロバイダー",
|
||||
"description": "AI モデルプロバイダーと API キーを設定",
|
||||
"add": "プロバイダーを追加",
|
||||
"custom": "カスタム",
|
||||
"notRequired": "不要",
|
||||
"empty": {
|
||||
"title": "プロバイダーが構成されていません",
|
||||
"desc": "ClawX の使用を開始するには AI プロバイダーを追加してください",
|
||||
"cta": "最初のプロバイダーを追加"
|
||||
},
|
||||
"aiProviders": {
|
||||
"title": "AI プロバイダー",
|
||||
"description": "AI モデルプロバイダーと API キーを設定",
|
||||
"add": "プロバイダーを追加",
|
||||
"custom": "カスタム",
|
||||
"notRequired": "不要",
|
||||
"empty": {
|
||||
"title": "プロバイダーが構成されていません",
|
||||
"desc": "ClawX の使用を開始するには AI プロバイダーを追加してください",
|
||||
"cta": "最初のプロバイダーを追加"
|
||||
},
|
||||
"dialog": {
|
||||
"title": "AI プロバイダーを追加",
|
||||
"desc": "新しい AI モデルプロバイダーを構成",
|
||||
"displayName": "表示名",
|
||||
"apiKey": "API キー",
|
||||
"apiKeyStored": "API キーはローカルマシンに保存されます。",
|
||||
"baseUrl": "ベース URL",
|
||||
"modelId": "モデル ID",
|
||||
"cancel": "キャンセル",
|
||||
"change": "プロバイダーを変更",
|
||||
"add": "プロバイダーを追加",
|
||||
"save": "保存",
|
||||
"validate": "検証"
|
||||
},
|
||||
"card": {
|
||||
"default": "デフォルト",
|
||||
"configured": "構成済み",
|
||||
"noKey": "API キー未設定",
|
||||
"setDefault": "デフォルトに設定",
|
||||
"editKey": "API キーを編集",
|
||||
"delete": "プロバイダーを削除"
|
||||
},
|
||||
"toast": {
|
||||
"added": "プロバイダーが正常に追加されました",
|
||||
"failedAdd": "プロバイダーの追加に失敗しました",
|
||||
"deleted": "プロバイダーが削除されました",
|
||||
"failedDelete": "プロバイダーの削除に失敗しました",
|
||||
"defaultUpdated": "デフォルトプロバイダーが更新されました",
|
||||
"failedDefault": "デフォルトの設定に失敗しました",
|
||||
"updated": "プロバイダーが更新されました",
|
||||
"failedUpdate": "プロバイダーの更新に失敗しました",
|
||||
"invalidKey": "無効な API キー",
|
||||
"modelRequired": "モデル ID が必要です"
|
||||
}
|
||||
"dialog": {
|
||||
"title": "AI プロバイダーを追加",
|
||||
"desc": "新しい AI モデルプロバイダーを構成",
|
||||
"displayName": "表示名",
|
||||
"apiKey": "API キー",
|
||||
"apiKeyStored": "API キーはローカルマシンに保存されます。",
|
||||
"baseUrl": "ベース URL",
|
||||
"modelId": "モデル ID",
|
||||
"cancel": "キャンセル",
|
||||
"change": "プロバイダーを変更",
|
||||
"add": "プロバイダーを追加",
|
||||
"save": "保存",
|
||||
"validate": "検証"
|
||||
},
|
||||
"gateway": {
|
||||
"title": "ゲートウェイ",
|
||||
"description": "OpenClaw ゲートウェイ設定",
|
||||
"status": "ステータス",
|
||||
"port": "ポート",
|
||||
"logs": "ログ",
|
||||
"appLogs": "アプリケーションログ",
|
||||
"openFolder": "フォルダーを開く",
|
||||
"autoStart": "ゲートウェイ自動起動",
|
||||
"autoStartDesc": "ClawX 起動時にゲートウェイを自動起動"
|
||||
"card": {
|
||||
"default": "デフォルト",
|
||||
"configured": "構成済み",
|
||||
"noKey": "API キー未設定",
|
||||
"setDefault": "デフォルトに設定",
|
||||
"editKey": "API キーを編集",
|
||||
"delete": "プロバイダーを削除"
|
||||
},
|
||||
"updates": {
|
||||
"title": "アップデート",
|
||||
"description": "ClawX を最新に保つ",
|
||||
"autoCheck": "自動更新チェック",
|
||||
"autoCheckDesc": "起動時に更新を確認",
|
||||
"autoDownload": "自動アップデート",
|
||||
"autoDownloadDesc": "更新を自動的にダウンロードしてインストール",
|
||||
"status": {
|
||||
"checking": "更新を確認中...",
|
||||
"downloading": "更新をダウンロード中...",
|
||||
"available": "更新あり: v{{version}}",
|
||||
"downloaded": "インストール準備完了: v{{version}}",
|
||||
"autoInstalling": "{{seconds}} 秒後に再起動して更新をインストールします...",
|
||||
"failed": "更新の確認に失敗しました",
|
||||
"latest": "最新バージョンです",
|
||||
"check": "更新を確認して最新の機能を入手"
|
||||
},
|
||||
"action": {
|
||||
"checking": "確認中...",
|
||||
"downloading": "ダウンロード中...",
|
||||
"download": "更新をダウンロード",
|
||||
"install": "インストールして再起動",
|
||||
"cancelAutoInstall": "キャンセル",
|
||||
"retry": "再試行",
|
||||
"check": "更新を確認"
|
||||
},
|
||||
"currentVersion": "現在のバージョン",
|
||||
"whatsNew": "更新内容:",
|
||||
"errorDetails": "エラー詳細:",
|
||||
"help": "自動アップデートが有効な場合、更新は自動的にダウンロードされインストールされます。"
|
||||
"toast": {
|
||||
"added": "プロバイダーが正常に追加されました",
|
||||
"failedAdd": "プロバイダーの追加に失敗しました",
|
||||
"deleted": "プロバイダーが削除されました",
|
||||
"failedDelete": "プロバイダーの削除に失敗しました",
|
||||
"defaultUpdated": "デフォルトプロバイダーが更新されました",
|
||||
"failedDefault": "デフォルトの設定に失敗しました",
|
||||
"updated": "プロバイダーが更新されました",
|
||||
"failedUpdate": "プロバイダーの更新に失敗しました",
|
||||
"invalidKey": "無効な API キー",
|
||||
"modelRequired": "モデル ID が必要です"
|
||||
},
|
||||
"advanced": {
|
||||
"title": "詳細設定",
|
||||
"description": "上級ユーザー向けオプション",
|
||||
"devMode": "開発者モード",
|
||||
"devModeDesc": "開発者ツールとショートカットを表示"
|
||||
},
|
||||
"developer": {
|
||||
"title": "開発者",
|
||||
"description": "開発者向け詳細オプション",
|
||||
"console": "OpenClaw コンソール",
|
||||
"consoleDesc": "ネイティブ OpenClaw 管理インターフェースにアクセス",
|
||||
"openConsole": "開発者コンソールを開く",
|
||||
"consoleNote": "ゲートウェイトークンを注入して Control UI を開きます",
|
||||
"gatewayToken": "ゲートウェイトークン",
|
||||
"gatewayTokenDesc": "Control UI の設定に求められた場合、これを貼り付けてください",
|
||||
"tokenUnavailable": "トークンが利用できません",
|
||||
"tokenCopied": "ゲートウェイトークンをコピーしました",
|
||||
"cli": "OpenClaw CLI",
|
||||
"cliDesc": "PATH を変更せずに OpenClaw を実行するコマンドをコピー。",
|
||||
"cliPowershell": "PowerShell コマンド。",
|
||||
"cmdUnavailable": "コマンドが利用できません",
|
||||
"cmdCopied": "CLI コマンドをコピーしました",
|
||||
"installCmd": "\"openclaw\" コマンドをインストール",
|
||||
"installCmdDesc": "~/.local/bin/openclaw をインストール(管理者権限不要)",
|
||||
"installTitle": "OpenClaw コマンドをインストール",
|
||||
"installMessage": "\"openclaw\" コマンドをインストールしますか?",
|
||||
"installDetail": "~/.local/bin/openclaw が作成されます。グローバルに実行するには ~/.local/bin が PATH に含まれていることを確認してください。"
|
||||
},
|
||||
"about": {
|
||||
"title": "バージョン情報",
|
||||
"appName": "ClawX",
|
||||
"tagline": "グラフィカル AI アシスタント",
|
||||
"basedOn": "OpenClaw ベース",
|
||||
"version": "バージョン {{version}}",
|
||||
"docs": "公式サイト",
|
||||
"github": "GitHub"
|
||||
"oauth": {
|
||||
"loginMode": "OAuthログイン",
|
||||
"apikeyMode": "APIキー",
|
||||
"loginPrompt": "このプロバイダーはブラウザからのサインインが必要です。",
|
||||
"loginButton": "ブラウザでログイン",
|
||||
"waiting": "待機中...",
|
||||
"openLoginPage": "ログインページを開く",
|
||||
"waitingApproval": "ブラウザの承認を待っています...",
|
||||
"cancel": "キャンセル",
|
||||
"codeCopied": "コードをクリップボードにコピーしました",
|
||||
"authFailed": "認証に失敗しました",
|
||||
"tryAgain": "再試行",
|
||||
"approveLogin": "ログインを承認",
|
||||
"step1": "以下の認証コードをコピーしてください。",
|
||||
"step2": "ブラウザでログインページを開いてください。",
|
||||
"step3": "コードを貼り付けてアクセスを承認してください。",
|
||||
"requestingCode": "セキュアログインコードを取得中..."
|
||||
}
|
||||
},
|
||||
"gateway": {
|
||||
"title": "ゲートウェイ",
|
||||
"description": "OpenClaw ゲートウェイ設定",
|
||||
"status": "ステータス",
|
||||
"port": "ポート",
|
||||
"logs": "ログ",
|
||||
"appLogs": "アプリケーションログ",
|
||||
"openFolder": "フォルダーを開く",
|
||||
"autoStart": "ゲートウェイ自動起動",
|
||||
"autoStartDesc": "ClawX 起動時にゲートウェイを自動起動"
|
||||
},
|
||||
"updates": {
|
||||
"title": "アップデート",
|
||||
"description": "ClawX を最新に保つ",
|
||||
"autoCheck": "自動更新チェック",
|
||||
"autoCheckDesc": "起動時に更新を確認",
|
||||
"autoDownload": "自動アップデート",
|
||||
"autoDownloadDesc": "更新を自動的にダウンロードしてインストール",
|
||||
"status": {
|
||||
"checking": "更新を確認中...",
|
||||
"downloading": "更新をダウンロード中...",
|
||||
"available": "更新あり: v{{version}}",
|
||||
"downloaded": "インストール準備完了: v{{version}}",
|
||||
"autoInstalling": "{{seconds}} 秒後に再起動して更新をインストールします...",
|
||||
"failed": "更新の確認に失敗しました",
|
||||
"latest": "最新バージョンです",
|
||||
"check": "更新を確認して最新の機能を入手"
|
||||
},
|
||||
"action": {
|
||||
"checking": "確認中...",
|
||||
"downloading": "ダウンロード中...",
|
||||
"download": "更新をダウンロード",
|
||||
"install": "インストールして再起動",
|
||||
"cancelAutoInstall": "キャンセル",
|
||||
"retry": "再試行",
|
||||
"check": "更新を確認"
|
||||
},
|
||||
"currentVersion": "現在のバージョン",
|
||||
"whatsNew": "更新内容:",
|
||||
"errorDetails": "エラー詳細:",
|
||||
"help": "自動アップデートが有効な場合、更新は自動的にダウンロードされインストールされます。"
|
||||
},
|
||||
"advanced": {
|
||||
"title": "詳細設定",
|
||||
"description": "上級ユーザー向けオプション",
|
||||
"devMode": "開発者モード",
|
||||
"devModeDesc": "開発者ツールとショートカットを表示"
|
||||
},
|
||||
"developer": {
|
||||
"title": "開発者",
|
||||
"description": "開発者向け詳細オプション",
|
||||
"console": "OpenClaw コンソール",
|
||||
"consoleDesc": "ネイティブ OpenClaw 管理インターフェースにアクセス",
|
||||
"openConsole": "開発者コンソールを開く",
|
||||
"consoleNote": "ゲートウェイトークンを注入して Control UI を開きます",
|
||||
"gatewayToken": "ゲートウェイトークン",
|
||||
"gatewayTokenDesc": "Control UI の設定に求められた場合、これを貼り付けてください",
|
||||
"tokenUnavailable": "トークンが利用できません",
|
||||
"tokenCopied": "ゲートウェイトークンをコピーしました",
|
||||
"cli": "OpenClaw CLI",
|
||||
"cliDesc": "PATH を変更せずに OpenClaw を実行するコマンドをコピー。",
|
||||
"cliPowershell": "PowerShell コマンド。",
|
||||
"cmdUnavailable": "コマンドが利用できません",
|
||||
"cmdCopied": "CLI コマンドをコピーしました",
|
||||
"installCmd": "\"openclaw\" コマンドをインストール",
|
||||
"installCmdDesc": "~/.local/bin/openclaw をインストール(管理者権限不要)",
|
||||
"installTitle": "OpenClaw コマンドをインストール",
|
||||
"installMessage": "\"openclaw\" コマンドをインストールしますか?",
|
||||
"installDetail": "~/.local/bin/openclaw が作成されます。グローバルに実行するには ~/.local/bin が PATH に含まれていることを確認してください。"
|
||||
},
|
||||
"about": {
|
||||
"title": "バージョン情報",
|
||||
"appName": "ClawX",
|
||||
"tagline": "グラフィカル AI アシスタント",
|
||||
"basedOn": "OpenClaw ベース",
|
||||
"version": "バージョン {{version}}",
|
||||
"docs": "公式サイト",
|
||||
"github": "GitHub"
|
||||
}
|
||||
}
|
||||
@@ -1,138 +1,156 @@
|
||||
{
|
||||
"title": "设置",
|
||||
"subtitle": "配置您的 ClawX 体验",
|
||||
"appearance": {
|
||||
"title": "外观",
|
||||
"description": "自定义外观和风格",
|
||||
"theme": "主题",
|
||||
"light": "浅色",
|
||||
"dark": "深色",
|
||||
"system": "跟随系统",
|
||||
"language": "语言"
|
||||
"title": "设置",
|
||||
"subtitle": "配置您的 ClawX 体验",
|
||||
"appearance": {
|
||||
"title": "外观",
|
||||
"description": "自定义外观和风格",
|
||||
"theme": "主题",
|
||||
"light": "浅色",
|
||||
"dark": "深色",
|
||||
"system": "跟随系统",
|
||||
"language": "语言"
|
||||
},
|
||||
"aiProviders": {
|
||||
"title": "AI 模型提供商",
|
||||
"description": "配置 AI 模型提供商和 API 密钥",
|
||||
"add": "添加提供商",
|
||||
"custom": "自定义",
|
||||
"notRequired": "非必填",
|
||||
"empty": {
|
||||
"title": "未配置提供商",
|
||||
"desc": "添加 AI 提供商以开始使用 ClawX",
|
||||
"cta": "添加您的第一个提供商"
|
||||
},
|
||||
"aiProviders": {
|
||||
"title": "AI 模型提供商",
|
||||
"description": "配置 AI 模型提供商和 API 密钥",
|
||||
"add": "添加提供商",
|
||||
"custom": "自定义",
|
||||
"notRequired": "非必填",
|
||||
"empty": {
|
||||
"title": "未配置提供商",
|
||||
"desc": "添加 AI 提供商以开始使用 ClawX",
|
||||
"cta": "添加您的第一个提供商"
|
||||
},
|
||||
"dialog": {
|
||||
"title": "添加 AI 提供商",
|
||||
"desc": "配置新的 AI 模型提供商",
|
||||
"displayName": "显示名称",
|
||||
"apiKey": "API 密钥",
|
||||
"apiKeyStored": "您的 API 密钥存储在本地机器上。",
|
||||
"baseUrl": "基础 URL",
|
||||
"modelId": "模型 ID",
|
||||
"cancel": "取消",
|
||||
"change": "更换提供商",
|
||||
"add": "添加提供商",
|
||||
"save": "保存",
|
||||
"validate": "验证"
|
||||
},
|
||||
"card": {
|
||||
"default": "默认",
|
||||
"configured": "已配置",
|
||||
"noKey": "未设置 API 密钥",
|
||||
"setDefault": "设为默认",
|
||||
"editKey": "编辑 API 密钥",
|
||||
"delete": "删除提供商"
|
||||
},
|
||||
"toast": {
|
||||
"added": "提供商添加成功",
|
||||
"failedAdd": "添加提供商失败",
|
||||
"deleted": "提供商已删除",
|
||||
"failedDelete": "删除提供商失败",
|
||||
"defaultUpdated": "默认提供商已更新",
|
||||
"failedDefault": "设置默认失败",
|
||||
"updated": "提供商已更新",
|
||||
"failedUpdate": "更新提供商失败",
|
||||
"invalidKey": "无效的 API 密钥",
|
||||
"modelRequired": "需要模型 ID"
|
||||
}
|
||||
"dialog": {
|
||||
"title": "添加 AI 提供商",
|
||||
"desc": "配置新的 AI 模型提供商",
|
||||
"displayName": "显示名称",
|
||||
"apiKey": "API 密钥",
|
||||
"apiKeyStored": "您的 API 密钥存储在本地机器上。",
|
||||
"baseUrl": "基础 URL",
|
||||
"modelId": "模型 ID",
|
||||
"cancel": "取消",
|
||||
"change": "更换提供商",
|
||||
"add": "添加提供商",
|
||||
"save": "保存",
|
||||
"validate": "验证"
|
||||
},
|
||||
"gateway": {
|
||||
"title": "网关",
|
||||
"description": "OpenClaw 网关设置",
|
||||
"status": "状态",
|
||||
"port": "端口",
|
||||
"logs": "日志",
|
||||
"appLogs": "应用日志",
|
||||
"openFolder": "打开文件夹",
|
||||
"autoStart": "自动启动网关",
|
||||
"autoStartDesc": "ClawX 启动时自动启动网关"
|
||||
"card": {
|
||||
"default": "默认",
|
||||
"configured": "已配置",
|
||||
"noKey": "未设置 API 密钥",
|
||||
"setDefault": "设为默认",
|
||||
"editKey": "编辑 API 密钥",
|
||||
"delete": "删除提供商"
|
||||
},
|
||||
"updates": {
|
||||
"title": "更新",
|
||||
"description": "保持 ClawX 最新",
|
||||
"autoCheck": "自动检查更新",
|
||||
"autoCheckDesc": "启动时检查更新",
|
||||
"autoDownload": "自动更新",
|
||||
"autoDownloadDesc": "自动下载并安装更新",
|
||||
"status": {
|
||||
"checking": "正在检查更新...",
|
||||
"downloading": "正在下载更新...",
|
||||
"available": "可用更新:v{{version}}",
|
||||
"downloaded": "准备安装:v{{version}}",
|
||||
"autoInstalling": "将在 {{seconds}} 秒后重启并安装更新...",
|
||||
"failed": "检查更新失败",
|
||||
"latest": "您已拥有最新版本",
|
||||
"check": "检查更新以获取最新功能"
|
||||
},
|
||||
"action": {
|
||||
"checking": "检查中...",
|
||||
"downloading": "下载中...",
|
||||
"download": "下载更新",
|
||||
"install": "安装并重启",
|
||||
"cancelAutoInstall": "取消",
|
||||
"retry": "重试",
|
||||
"check": "检查更新"
|
||||
},
|
||||
"currentVersion": "当前版本",
|
||||
"whatsNew": "更新内容:",
|
||||
"errorDetails": "错误详情:",
|
||||
"help": "开启自动更新后,更新将自动下载并安装。"
|
||||
"toast": {
|
||||
"added": "提供商添加成功",
|
||||
"failedAdd": "添加提供商失败",
|
||||
"deleted": "提供商已删除",
|
||||
"failedDelete": "删除提供商失败",
|
||||
"defaultUpdated": "默认提供商已更新",
|
||||
"failedDefault": "设置默认失败",
|
||||
"updated": "提供商已更新",
|
||||
"failedUpdate": "更新提供商失败",
|
||||
"invalidKey": "无效的 API 密钥",
|
||||
"modelRequired": "需要模型 ID"
|
||||
},
|
||||
"advanced": {
|
||||
"title": "高级",
|
||||
"description": "高级选项",
|
||||
"devMode": "开发者模式",
|
||||
"devModeDesc": "显示开发者工具和快捷方式"
|
||||
},
|
||||
"developer": {
|
||||
"title": "开发者",
|
||||
"description": "开发者高级选项",
|
||||
"console": "OpenClaw 控制台",
|
||||
"consoleDesc": "访问原生 OpenClaw 管理界面",
|
||||
"openConsole": "打开开发者控制台",
|
||||
"consoleNote": "使用注入的网关令牌打开控制台",
|
||||
"gatewayToken": "网关令牌",
|
||||
"gatewayTokenDesc": "如果需要,将此粘贴到控制台设置中",
|
||||
"tokenUnavailable": "令牌不可用",
|
||||
"tokenCopied": "网关令牌已复制",
|
||||
"cli": "OpenClaw CLI",
|
||||
"cliDesc": "复制命令以运行 OpenClaw,无需修改 PATH。",
|
||||
"cliPowershell": "PowerShell 命令。",
|
||||
"cmdUnavailable": "命令不可用",
|
||||
"cmdCopied": "CLI 命令已复制",
|
||||
"installCmd": "安装 \"openclaw\" 命令",
|
||||
"installCmdDesc": "安装 ~/.local/bin/openclaw(无需管理员权限)",
|
||||
"installTitle": "安装 OpenClaw 命令",
|
||||
"installMessage": "安装 \"openclaw\" 命令?",
|
||||
"installDetail": "这将创建 ~/.local/bin/openclaw。确保 ~/.local/bin 在您的 PATH 中。"
|
||||
},
|
||||
"about": {
|
||||
"title": "关于",
|
||||
"appName": "ClawX",
|
||||
"tagline": "图形化 AI 助手",
|
||||
"basedOn": "基于 OpenClaw",
|
||||
"version": "版本 {{version}}",
|
||||
"docs": "官网",
|
||||
"github": "GitHub"
|
||||
"oauth": {
|
||||
"loginMode": "OAuth 登录",
|
||||
"apikeyMode": "API 密钥",
|
||||
"loginPrompt": "此提供商需要通过浏览器登录授权。",
|
||||
"loginButton": "浏览器登录",
|
||||
"waiting": "等待中...",
|
||||
"openLoginPage": "打开登录页面",
|
||||
"waitingApproval": "等待浏览器中的授权...",
|
||||
"cancel": "取消",
|
||||
"codeCopied": "代码已复制到剪贴板",
|
||||
"authFailed": "认证失败",
|
||||
"tryAgain": "重试",
|
||||
"approveLogin": "确认登录",
|
||||
"step1": "复制下方的授权码。",
|
||||
"step2": "在浏览器中打开登录页面。",
|
||||
"step3": "粘贴授权码以批准访问。",
|
||||
"requestingCode": "正在获取安全登录码..."
|
||||
}
|
||||
},
|
||||
"gateway": {
|
||||
"title": "网关",
|
||||
"description": "OpenClaw 网关设置",
|
||||
"status": "状态",
|
||||
"port": "端口",
|
||||
"logs": "日志",
|
||||
"appLogs": "应用日志",
|
||||
"openFolder": "打开文件夹",
|
||||
"autoStart": "自动启动网关",
|
||||
"autoStartDesc": "ClawX 启动时自动启动网关"
|
||||
},
|
||||
"updates": {
|
||||
"title": "更新",
|
||||
"description": "保持 ClawX 最新",
|
||||
"autoCheck": "自动检查更新",
|
||||
"autoCheckDesc": "启动时检查更新",
|
||||
"autoDownload": "自动更新",
|
||||
"autoDownloadDesc": "自动下载并安装更新",
|
||||
"status": {
|
||||
"checking": "正在检查更新...",
|
||||
"downloading": "正在下载更新...",
|
||||
"available": "可用更新:v{{version}}",
|
||||
"downloaded": "准备安装:v{{version}}",
|
||||
"autoInstalling": "将在 {{seconds}} 秒后重启并安装更新...",
|
||||
"failed": "检查更新失败",
|
||||
"latest": "您已拥有最新版本",
|
||||
"check": "检查更新以获取最新功能"
|
||||
},
|
||||
"action": {
|
||||
"checking": "检查中...",
|
||||
"downloading": "下载中...",
|
||||
"download": "下载更新",
|
||||
"install": "安装并重启",
|
||||
"cancelAutoInstall": "取消",
|
||||
"retry": "重试",
|
||||
"check": "检查更新"
|
||||
},
|
||||
"currentVersion": "当前版本",
|
||||
"whatsNew": "更新内容:",
|
||||
"errorDetails": "错误详情:",
|
||||
"help": "开启自动更新后,更新将自动下载并安装。"
|
||||
},
|
||||
"advanced": {
|
||||
"title": "高级",
|
||||
"description": "高级选项",
|
||||
"devMode": "开发者模式",
|
||||
"devModeDesc": "显示开发者工具和快捷方式"
|
||||
},
|
||||
"developer": {
|
||||
"title": "开发者",
|
||||
"description": "开发者高级选项",
|
||||
"console": "OpenClaw 控制台",
|
||||
"consoleDesc": "访问原生 OpenClaw 管理界面",
|
||||
"openConsole": "打开开发者控制台",
|
||||
"consoleNote": "使用注入的网关令牌打开控制台",
|
||||
"gatewayToken": "网关令牌",
|
||||
"gatewayTokenDesc": "如果需要,将此粘贴到控制台设置中",
|
||||
"tokenUnavailable": "令牌不可用",
|
||||
"tokenCopied": "网关令牌已复制",
|
||||
"cli": "OpenClaw CLI",
|
||||
"cliDesc": "复制命令以运行 OpenClaw,无需修改 PATH。",
|
||||
"cliPowershell": "PowerShell 命令。",
|
||||
"cmdUnavailable": "命令不可用",
|
||||
"cmdCopied": "CLI 命令已复制",
|
||||
"installCmd": "安装 \"openclaw\" 命令",
|
||||
"installCmdDesc": "安装 ~/.local/bin/openclaw(无需管理员权限)",
|
||||
"installTitle": "安装 OpenClaw 命令",
|
||||
"installMessage": "安装 \"openclaw\" 命令?",
|
||||
"installDetail": "这将创建 ~/.local/bin/openclaw。确保 ~/.local/bin 在您的 PATH 中。"
|
||||
},
|
||||
"about": {
|
||||
"title": "关于",
|
||||
"appName": "ClawX",
|
||||
"tagline": "图形化 AI 助手",
|
||||
"basedOn": "基于 OpenClaw",
|
||||
"version": "版本 {{version}}",
|
||||
"docs": "官网",
|
||||
"github": "GitHub"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user