[GITEA] Fix required error for token name

- Say to the binding middleware which locale should be used for the
required error.
- Resolves https://codeberg.org/forgejo/forgejo/issues/1683

(cherry picked from commit 64faeb6bef)
(cherry picked from commit e65acf3baf)
(cherry picked from commit 7f47f5e6f0)
This commit is contained in:
Gusted 2023-11-02 12:21:14 +01:00 committed by Earl Warren
parent 6e417087dd
commit 5a2d796612
No known key found for this signature in database
GPG key ID: 0579CB2928A78A00

View file

@ -365,7 +365,7 @@ func (f *EditVariableForm) Validate(req *http.Request, errs binding.Errors) bind
// NewAccessTokenForm form for creating access token
type NewAccessTokenForm struct {
Name string `binding:"Required;MaxSize(255)"`
Name string `binding:"Required;MaxSize(255)" locale:"settings.token_name"`
Scope []string
}