2020-12-05 15:21:52 +08:00
|
|
|
package validator
|
|
|
|
|
2020-12-05 15:37:56 +08:00
|
|
|
import ut "git.ningdatech.com/ningda/gin_valid/go-playground/universal-translator"
|
2020-12-05 15:21:52 +08:00
|
|
|
|
|
|
|
// TranslationFunc is the function type used to register or override
|
|
|
|
// custom translations
|
|
|
|
type TranslationFunc func(ut ut.Translator, fe FieldError) string
|
|
|
|
|
|
|
|
// RegisterTranslationsFunc allows for registering of translations
|
|
|
|
// for a 'ut.Translator' for use within the 'TranslationFunc'
|
|
|
|
type RegisterTranslationsFunc func(ut ut.Translator) error
|