Skip to content

Commit c91d17e

Browse files
committed
fix: update log messages to English for consistency
1 parent d4505ba commit c91d17e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

xtask/src/cargo.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ impl Context {
2525
PathBuf::from(format!(".qemu-{arch:?}.toml").to_lowercase())
2626
};
2727

28-
// 如果配置文件不存在,从默认位置复制
28+
// If the configuration file does not exist, copy from the default location
2929
if !config_path.exists() {
3030
fs::copy(
3131
PathBuf::from("scripts")

xtask/src/menuconfig.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ use std::sync::Arc; // HashMap is unused
66
impl Context {
77
/// Main menuconfig runner function
88
pub async fn run_menuconfig(&mut self) -> anyhow::Result<()> {
9-
println!("配置运行参数");
9+
println!("Configure runtime parameters");
1010
let config_path = self.ctx.workspace_folder.join(".build.toml");
1111
if config_path.exists() {
12-
println!("\n当前 .build.toml 配置文件: {}", config_path.display());
12+
println!("\nCurrent .build.toml configuration file: {}", config_path.display());
1313
} else {
14-
println!("\n未找到 .build.toml 配置文件,将使用默认配置");
14+
println!("\nNo .build.toml configuration file found, will use default configuration");
1515
}
1616

1717
let Some(_c): Option<Config> =

0 commit comments

Comments
 (0)