mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-03 12:20:27 +08:00
增加清空节点同步任务、清空DNS同步任务API
This commit is contained in:
@@ -232,8 +232,9 @@ func init() {
|
||||
langs.Load("` + langCode + `", map[langs.MessageCode]string{
|
||||
`
|
||||
|
||||
for code, value := range messageLang.GetAll() {
|
||||
source += strconv.Quote(code.String()) + ": " + strconv.Quote(value) + ",\n"
|
||||
for _, code := range messageCodes {
|
||||
var value = messageLang.Get(langs.MessageCode(code))
|
||||
source += strconv.Quote(code) + ": " + strconv.Quote(value) + ",\n"
|
||||
}
|
||||
|
||||
source += `
|
||||
|
||||
Reference in New Issue
Block a user