From 46e0472ec1db2c8396b11df3f1e7050a089679c9 Mon Sep 17 00:00:00 2001 From: ZacharyZcR <2903735704@qq.com> Date: Fri, 7 Feb 2025 13:10:38 +0800 Subject: [PATCH] feat: i18n --- Common/Flag.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Common/Flag.go b/Common/Flag.go index 69c8b3c..54df9f5 100644 --- a/Common/Flag.go +++ b/Common/Flag.go @@ -130,7 +130,7 @@ func Flag(Info *HostInfo) { flag.StringVar(&LogLevel, "log", LogLevelSuccess, GetText("flag_log_level")) flag.BoolVar(&ShowProgress, "pg", false, GetText("flag_show_progress")) - flag.StringVar(&Language, "lang", "en", GetText("flag_language")) + flag.StringVar(&Language, "lang", "zh", GetText("flag_language")) flag.Parse()