File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff 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" )
Original file line number Diff line number Diff line change @@ -6,12 +6,12 @@ use std::sync::Arc; // HashMap is unused
66impl 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 ! ( "\n Current .build.toml configuration file : {}" , config_path. display( ) ) ;
1313 } else {
14- println ! ( "\n 未找到 .build.toml 配置文件,将使用默认配置 " ) ;
14+ println ! ( "\n No .build.toml configuration file found, will use default configuration " ) ;
1515 }
1616
1717 let Some ( _c) : Option < Config > =
You can’t perform that action at this time.
0 commit comments