From a6137f97c1ef18f8b4a270351ec9e66e267f8566 Mon Sep 17 00:00:00 2001 From: jeessy2 <6205259+jeessy2@users.noreply.github.com> Date: Thu, 1 Aug 2024 01:11:55 -0700 Subject: [PATCH] chore: change the 'OpenExplorer' logs to english (#1205) * chore: change the 'OpenExplorer' logs to english * break line --- util/open_explorer.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/util/open_explorer.go b/util/open_explorer.go index 785de6443..768f32322 100644 --- a/util/open_explorer.go +++ b/util/open_explorer.go @@ -25,8 +25,8 @@ func OpenExplorer(url string) { } if err := cmd.Start(); err != nil { - fmt.Printf("请手动打开浏览器并访问 %s 进行配置\n", url) + fmt.Printf("Please open a browser and visit %s to finish the configuration\n", url) } else { - fmt.Println("成功打开浏览器, 请在网页中进行配置") + fmt.Printf("Success to open the browser, please configure in the web page\n") } }