blob: 4d9d75c13a0fcda4f3ee5abca4207f1b956a57d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
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
// for a 'ut.Translator' for use within the 'TranslationFunc'
type RegisterTranslationsFunc func(ut ut.Translator) error
|