Expand i18n coverage

This commit is contained in:
ZacharyZcR
2026-05-23 15:18:40 +08:00
parent 9ed6cc95b6
commit 73cbe803c4
79 changed files with 2540 additions and 621 deletions
+3 -3
View File
@@ -251,7 +251,7 @@ func (g *Client) ProbeOSInfo(host, domain, user, pwd string, timeout int64, rdpP
g.pdu.On("bitmap", func(rectangles []pdu.BitmapData) {
})
g.pdu.On("done", func() {
glog.Debug("done信号触发")
glog.Debug("done signal triggered")
exitFlag <- true
})
@@ -266,10 +266,10 @@ loop:
case <-exitFlag:
break loop
case <-ctx.Done():
glog.Debug("总超时已达到,退出")
glog.Debug("total timeout reached, exiting")
break loop
}
}
glog.Debug("循环结束,总时间过去了:", time.Since(start))
glog.Debug("loop ended, elapsed time: ", time.Since(start))
return info
}