From d9b1b200cebb82087037d505f13151dd425577a6 Mon Sep 17 00:00:00 2001 From: Hamidreza Ghavami <70919649+hamid-gh98@users.noreply.github.com> Date: Sun, 21 May 2023 03:29:27 +0430 Subject: rename I18n to I18nWeb --- web/controller/base.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'web/controller/base.go') diff --git a/web/controller/base.go b/web/controller/base.go index 53c80f07..674a195d 100644 --- a/web/controller/base.go +++ b/web/controller/base.go @@ -15,7 +15,7 @@ type BaseController struct { func (a *BaseController) checkLogin(c *gin.Context) { if !session.IsLogin(c) { if isAjax(c) { - pureJsonMsg(c, false, WebI18n(c, "pages.login.loginAgain")) + pureJsonMsg(c, false, I18nWeb(c, "pages.login.loginAgain")) } else { c.Redirect(http.StatusTemporaryRedirect, c.GetString("base_path")) } @@ -25,7 +25,7 @@ func (a *BaseController) checkLogin(c *gin.Context) { } } -func WebI18n(c *gin.Context, name string, params ...string) string { +func I18nWeb(c *gin.Context, name string, params ...string) string { anyfunc, funcExists := c.Get("I18n") if !funcExists { logger.Warning("I18n function not exists in gin context!") -- cgit v1.2.3