2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-06 10:07:15 +08:00

fix: 翻译错误

This commit is contained in:
2025-04-12 19:53:33 +08:00
parent 985f4a6e6b
commit d2587e77d4
2 changed files with 4 additions and 4 deletions

View File

@@ -273,7 +273,7 @@ func (r *certRepo) Renew(id uint) (*acme.Certificate, error) {
}
if cert.CertURL == "" {
return nil, errors.New(r.t.Get("this certificate has not been signed successfully and cannot be renewed"))
return nil, errors.New(r.t.Get("this certificate has not been issued successfully and cannot be renewed"))
}
if cert.DNS != nil {
@@ -348,7 +348,7 @@ func (r *certRepo) Deploy(ID, WebsiteID uint) error {
}
if cert.Cert == "" || cert.Key == "" {
return errors.New(r.t.Get("this certificate has not been signed successfully and cannot be deployed"))
return errors.New(r.t.Get("this certificate has not been issued successfully and cannot be deployed"))
}
website := new(biz.Website)

View File

@@ -1471,11 +1471,11 @@ msgid "the current version is the latest version"
msgstr ""
#: internal/data/cert.go:351
msgid "this certificate has not been signed successfully and cannot be deployed"
msgid "this certificate has not been issued successfully and cannot be deployed"
msgstr ""
#: internal/data/cert.go:276
msgid "this certificate has not been signed successfully and cannot be renewed"
msgid "this certificate has not been issued successfully and cannot be renewed"
msgstr ""
#: internal/data/cert.go:168