2017-08-10 15:31:29 +00:00
|
|
|
package validator
|
|
|
|
|
|
|
|
import ut "github.com/go-playground/universal-translator"
|
|
|
|
|
|
|
|
// 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
|
2019-07-17 22:25:42 +00:00
|
|
|
// for a 'ut.Translator' for use within the 'TranslationFunc'
|
2017-08-10 15:31:29 +00:00
|
|
|
type RegisterTranslationsFunc func(ut ut.Translator) error
|