chore: translate Chinese strings to English across repository

This commit is contained in:
2025-12-23 09:52:55 +01:00
parent 4590d46e17
commit ce649f0e18
15 changed files with 99 additions and 59 deletions

View File

@@ -9,18 +9,18 @@ func (config *Config) Verify() {
a := config.SafeLine.Verify()
b := config.ApplyCert.Verify()
if a || b {
log.Printf("配置检查完毕,请检查相关配置后重新运行!")
log.Printf("Configuration check complete; please review settings and rerun!")
os.Exit(0)
}
log.Printf("配置检查完毕,即将开始更新证书!")
log.Printf("Configuration check complete; starting certificate updates!")
}
func (config *Config) VerifyCommand() {
a := config.SafeLine.VerifyCommand()
b := config.ApplyCert.VerifyCommand()
if a || b {
log.Printf("配置检查完毕,请检查相关配置后重新运行!")
log.Printf("Configuration check complete; please review settings and rerun!")
os.Exit(0)
}
log.Printf("配置检查完毕,即将开始更新证书!")
log.Printf("Configuration check complete; starting certificate updates!")
}