From 68295d0bbf87484f06db5571258b8094d8f3376a Mon Sep 17 00:00:00 2001 From: Alexander Farber Date: Wed, 10 Dec 2025 13:00:07 +0100 Subject: [PATCH] Rename leftover Gemini references to Qwen in UI strings --- packages/cli/src/config/settingsSchema.ts | 6 +++--- packages/cli/src/i18n/locales/en.js | 4 ++-- packages/cli/src/i18n/locales/zh.js | 4 ++-- packages/cli/src/ui/commands/directoryCommand.tsx | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/packages/cli/src/config/settingsSchema.ts b/packages/cli/src/config/settingsSchema.ts index d95f4dbb..957ef7e4 100644 --- a/packages/cli/src/config/settingsSchema.ts +++ b/packages/cli/src/config/settingsSchema.ts @@ -263,7 +263,7 @@ const SETTINGS_SCHEMA = { requiresRestart: false, default: false, description: - 'Show Gemini CLI status and thoughts in the terminal window title', + 'Show Qwen Code status and thoughts in the terminal window title', showInDialog: true, }, hideTips: { @@ -291,7 +291,7 @@ const SETTINGS_SCHEMA = { requiresRestart: false, default: false, description: - 'Hide the context summary (GEMINI.md, MCP servers) above the input.', + 'Hide the context summary (QWEN.md, MCP servers) above the input.', showInDialog: true, }, footer: { @@ -497,7 +497,7 @@ const SETTINGS_SCHEMA = { category: 'Model', requiresRestart: false, default: undefined as string | undefined, - description: 'The Gemini model to use for conversations.', + description: 'The model to use for conversations.', showInDialog: false, }, maxSessionTurns: { diff --git a/packages/cli/src/i18n/locales/en.js b/packages/cli/src/i18n/locales/en.js index c2217757..a58ea0db 100644 --- a/packages/cli/src/i18n/locales/en.js +++ b/packages/cli/src/i18n/locales/en.js @@ -635,8 +635,8 @@ export default { 'The /directory add command is not supported in restrictive sandbox profiles. Please use --include-directories when starting the session instead.': 'The /directory add command is not supported in restrictive sandbox profiles. Please use --include-directories when starting the session instead.', "Error adding '{{path}}': {{error}}": "Error adding '{{path}}': {{error}}", - 'Successfully added GEMINI.md files from the following directories if there are:\n- {{directories}}': - 'Successfully added GEMINI.md files from the following directories if there are:\n- {{directories}}', + 'Successfully added QWEN.md files from the following directories if there are:\n- {{directories}}': + 'Successfully added QWEN.md files from the following directories if there are:\n- {{directories}}', 'Error refreshing memory: {{error}}': 'Error refreshing memory: {{error}}', 'Successfully added directories:\n- {{directories}}': 'Successfully added directories:\n- {{directories}}', diff --git a/packages/cli/src/i18n/locales/zh.js b/packages/cli/src/i18n/locales/zh.js index adeb85f1..bf8efa2c 100644 --- a/packages/cli/src/i18n/locales/zh.js +++ b/packages/cli/src/i18n/locales/zh.js @@ -601,8 +601,8 @@ export default { 'The /directory add command is not supported in restrictive sandbox profiles. Please use --include-directories when starting the session instead.': '/directory add 命令在限制性沙箱配置文件中不受支持。请改为在启动会话时使用 --include-directories。', "Error adding '{{path}}': {{error}}": "添加 '{{path}}' 时出错:{{error}}", - 'Successfully added GEMINI.md files from the following directories if there are:\n- {{directories}}': - '如果存在,已成功从以下目录添加 GEMINI.md 文件:\n- {{directories}}', + 'Successfully added QWEN.md files from the following directories if there are:\n- {{directories}}': + '如果存在,已成功从以下目录添加 QWEN.md 文件:\n- {{directories}}', 'Error refreshing memory: {{error}}': '刷新内存时出错:{{error}}', 'Successfully added directories:\n- {{directories}}': '成功添加目录:\n- {{directories}}', diff --git a/packages/cli/src/ui/commands/directoryCommand.tsx b/packages/cli/src/ui/commands/directoryCommand.tsx index e44530b7..536cc9bb 100644 --- a/packages/cli/src/ui/commands/directoryCommand.tsx +++ b/packages/cli/src/ui/commands/directoryCommand.tsx @@ -130,7 +130,7 @@ export const directoryCommand: SlashCommand = { { type: MessageType.INFO, text: t( - 'Successfully added GEMINI.md files from the following directories if there are:\n- {{directories}}', + 'Successfully added QWEN.md files from the following directories if there are:\n- {{directories}}', { directories: added.join('\n- '), },