mirror of
https://github.com/gogf/gf.git
synced 2025-04-05 11:18:50 +08:00
40 lines
996 B
Go
40 lines
996 B
Go
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
|
|
//
|
|
// This Source Code Form is subject to the terms of the MIT License.
|
|
// If a copy of the MIT was not distributed with this file,
|
|
// You can obtain one at https://github.com/gogf/gf.
|
|
|
|
// Package gi18n implements internationalization and localization.
|
|
package gi18n
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/gogf/gf/v2/os/gctx"
|
|
)
|
|
|
|
const (
|
|
ctxLanguage gctx.StrKey = "I18nLanguage"
|
|
)
|
|
|
|
// WithLanguage append language setting to the context and returns a new context.
|
|
func WithLanguage(ctx context.Context, language string) context.Context {
|
|
if ctx == nil {
|
|
ctx = context.TODO()
|
|
}
|
|
return context.WithValue(ctx, ctxLanguage, language)
|
|
}
|
|
|
|
// LanguageFromCtx retrieves and returns language name from context.
|
|
// It returns an empty string if it is not set previously.
|
|
func LanguageFromCtx(ctx context.Context) string {
|
|
if ctx == nil {
|
|
return ""
|
|
}
|
|
v := ctx.Value(ctxLanguage)
|
|
if v != nil {
|
|
return v.(string)
|
|
}
|
|
return ""
|
|
}
|