當前位置: 首頁>>代碼示例>>Golang>>正文


Golang utils.GetLocale函數代碼示例

本文整理匯總了Golang中github.com/qor/qor/utils.GetLocale函數的典型用法代碼示例。如果您正苦於以下問題:Golang GetLocale函數的具體用法?Golang GetLocale怎麽用?Golang GetLocale使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了GetLocale函數的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: getLocaleFromContext

func getLocaleFromContext(context *qor.Context) string {
	if locale := utils.GetLocale(context); locale != "" {
		return locale
	}

	return Default
}
開發者ID:qor,項目名稱:i18n,代碼行數:7,代碼來源:i18n.go

示例2: Router

func Router() *http.ServeMux {
	if rootMux == nil {
		router := gin.Default()
		router.Use(func(ctx *gin.Context) {
			if locale := utils.GetLocale(&qor.Context{Request: ctx.Request, Writer: ctx.Writer}); locale != "" {
				ctx.Set("DB", db.DB.Set("l10n:locale", locale))
			}
		})
		gin.SetMode(gin.DebugMode)

		router.GET("/", controllers.HomeIndex)
		router.GET("/products/:code", controllers.ProductShow)
		router.GET("/switch_locale", controllers.SwitchLocale)

		rootMux = http.NewServeMux()
		rootMux.Handle("/auth/", auth.Auth.NewRouter())
		publicDir := http.Dir(strings.Join([]string{config.Root, "public"}, "/"))
		rootMux.Handle("/dist/", http.FileServer(publicDir))
		rootMux.Handle("/vendors/", http.FileServer(publicDir))
		rootMux.Handle("/images/", http.FileServer(publicDir))
		rootMux.Handle("/fonts/", http.FileServer(publicDir))

		WildcardRouter = wildcard_router.New()
		WildcardRouter.MountTo("/", rootMux)
		WildcardRouter.AddHandler(router)
	}
	return rootMux
}
開發者ID:grengojbo,項目名稱:qor-example,代碼行數:28,代碼來源:routes.go

示例3: dt

func (context *Context) dt(key string, value string, values ...interface{}) string {
	locale := utils.GetLocale(context.Context)

	if context.Admin.I18n == nil {
		if result, err := cldr.Parse(locale, value, values...); err == nil {
			return result
		}
		return key
	} else {
		return context.Admin.I18n.Scope("qor_admin").Default(value).T(locale, key, values...)
	}
}
開發者ID:kennylixi,項目名稱:qor,代碼行數:12,代碼來源:func_map.go

示例4: T

func (admin *Admin) T(context *qor.Context, key string, value string, values ...interface{}) template.HTML {
	locale := utils.GetLocale(context)

	if admin.I18n == nil {
		if result, err := cldr.Parse(locale, value, values...); err == nil {
			return template.HTML(result)
		}
		return template.HTML(key)
	} else {
		return admin.I18n.Scope("qor_admin").Default(value).T(locale, key, values...)
	}
}
開發者ID:musicking,項目名稱:qor,代碼行數:12,代碼來源:admin.go


注:本文中的github.com/qor/qor/utils.GetLocale函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。