Files
translation/context.go
andrey1s 9129f25c31
All checks were successful
continuous-integration/drone/push Build is passing
first commit
2021-04-26 17:49:02 +03:00

28 lines
511 B
Go

package translation
import (
"context"
"golang.org/x/text/language"
)
type ctxkey uint8
const (
localeKey ctxkey = iota
)
// WithLanguage sets language to context.
func WithLanguage(ctx context.Context, lang language.Tag) context.Context {
return context.WithValue(ctx, localeKey, lang)
}
// FromContext get language from context or use default.
func FromContext(ctx context.Context, def language.Tag) language.Tag {
if t, ok := ctx.Value(localeKey).(language.Tag); ok {
return t
}
return def
}