From 9f446da6eecd600f4f5c37b293765da907c91942 Mon Sep 17 00:00:00 2001 From: John Date: Wed, 25 Dec 2024 10:13:35 +0800 Subject: [PATCH] fix: r.GetString(xxx) -> r.Get(xxx).String() --- ...214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" | 2 +- ...214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" | 2 +- ...214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" | 2 +- ...214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" | 2 +- ...214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" | 2 +- ...214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" | 2 +- ...214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" | 2 +- ...214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" | 2 +- ...214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" | 2 +- ...214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" | 2 +- ...214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git "a/docs/docs/\346\240\270\345\277\203\347\273\204\344\273\266/I18N\345\233\275\351\231\205\345\214\226/I18N\345\233\275\351\231\205\345\214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" "b/docs/docs/\346\240\270\345\277\203\347\273\204\344\273\266/I18N\345\233\275\351\231\205\345\214\226/I18N\345\233\275\351\231\205\345\214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" index 1cc173c1a7b..72825279377 100644 --- "a/docs/docs/\346\240\270\345\277\203\347\273\204\344\273\266/I18N\345\233\275\351\231\205\345\214\226/I18N\345\233\275\351\231\205\345\214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" +++ "b/docs/docs/\346\240\270\345\277\203\347\273\204\344\273\266/I18N\345\233\275\351\231\205\345\214\226/I18N\345\233\275\351\231\205\345\214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" @@ -320,7 +320,7 @@ func main() { s := g.Server() s.Group("/", func(group *ghttp.RouterGroup) { group.Middleware(func(r *ghttp.Request) { - r.SetCtx(gi18n.WithLanguage(r.Context(), r.GetString("lang", "zh-CN"))) + r.SetCtx(gi18n.WithLanguage(r.Context(), r.Get("lang", "zh-CN").String())) r.Middleware.Next() }) group.ALL("/", func(r *ghttp.Request) { diff --git "a/i18n/en/docusaurus-plugin-content-docs/current/docs/\346\240\270\345\277\203\347\273\204\344\273\266/I18N\345\233\275\351\231\205\345\214\226/I18N\345\233\275\351\231\205\345\214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" "b/i18n/en/docusaurus-plugin-content-docs/current/docs/\346\240\270\345\277\203\347\273\204\344\273\266/I18N\345\233\275\351\231\205\345\214\226/I18N\345\233\275\351\231\205\345\214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" index ad87efee7ca..4c5e083d901 100644 --- "a/i18n/en/docusaurus-plugin-content-docs/current/docs/\346\240\270\345\277\203\347\273\204\344\273\266/I18N\345\233\275\351\231\205\345\214\226/I18N\345\233\275\351\231\205\345\214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" +++ "b/i18n/en/docusaurus-plugin-content-docs/current/docs/\346\240\270\345\277\203\347\273\204\344\273\266/I18N\345\233\275\351\231\205\345\214\226/I18N\345\233\275\351\231\205\345\214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" @@ -320,7 +320,7 @@ func main() { s := g.Server() s.Group("/", func(group *ghttp.RouterGroup) { group.Middleware(func(r *ghttp.Request) { - r.SetCtx(gi18n.WithLanguage(r.Context(), r.GetString("lang", "zh-CN"))) + r.SetCtx(gi18n.WithLanguage(r.Context(), r.Get("lang", "zh-CN").String())) r.Middleware.Next() }) group.ALL("/", func(r *ghttp.Request) { diff --git "a/versioned_docs/version-1.16.x/\346\240\270\345\277\203\347\273\204\344\273\266-\351\207\215\347\202\271/I18N\345\233\275\351\231\205\345\214\226/I18N\345\233\275\351\231\205\345\214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" "b/versioned_docs/version-1.16.x/\346\240\270\345\277\203\347\273\204\344\273\266-\351\207\215\347\202\271/I18N\345\233\275\351\231\205\345\214\226/I18N\345\233\275\351\231\205\345\214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" index af145094971..06d476b13b2 100644 --- "a/versioned_docs/version-1.16.x/\346\240\270\345\277\203\347\273\204\344\273\266-\351\207\215\347\202\271/I18N\345\233\275\351\231\205\345\214\226/I18N\345\233\275\351\231\205\345\214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" +++ "b/versioned_docs/version-1.16.x/\346\240\270\345\277\203\347\273\204\344\273\266-\351\207\215\347\202\271/I18N\345\233\275\351\231\205\345\214\226/I18N\345\233\275\351\231\205\345\214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" @@ -283,7 +283,7 @@ func main() { s := g.Server() s.Group("/", func(group *ghttp.RouterGroup) { group.Middleware(func(r *ghttp.Request) { - r.SetCtx(gi18n.WithLanguage(r.Context(), r.GetString("lang", "zh-CN"))) + r.SetCtx(gi18n.WithLanguage(r.Context(), r.Get("lang", "zh-CN").String())) r.Middleware.Next() }) group.ALL("/", func(r *ghttp.Request) { diff --git "a/versioned_docs/version-2.0.x/\346\240\270\345\277\203\347\273\204\344\273\266-\351\207\215\347\202\271/I18N\345\233\275\351\231\205\345\214\226/I18N\345\233\275\351\231\205\345\214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" "b/versioned_docs/version-2.0.x/\346\240\270\345\277\203\347\273\204\344\273\266-\351\207\215\347\202\271/I18N\345\233\275\351\231\205\345\214\226/I18N\345\233\275\351\231\205\345\214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" index 6c6b5b87e6e..5daa901ed31 100644 --- "a/versioned_docs/version-2.0.x/\346\240\270\345\277\203\347\273\204\344\273\266-\351\207\215\347\202\271/I18N\345\233\275\351\231\205\345\214\226/I18N\345\233\275\351\231\205\345\214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" +++ "b/versioned_docs/version-2.0.x/\346\240\270\345\277\203\347\273\204\344\273\266-\351\207\215\347\202\271/I18N\345\233\275\351\231\205\345\214\226/I18N\345\233\275\351\231\205\345\214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" @@ -316,7 +316,7 @@ func main() { s := g.Server() s.Group("/", func(group *ghttp.RouterGroup) { group.Middleware(func(r *ghttp.Request) { - r.SetCtx(gi18n.WithLanguage(r.Context(), r.GetString("lang", "zh-CN"))) + r.SetCtx(gi18n.WithLanguage(r.Context(), r.Get("lang", "zh-CN").String())) r.Middleware.Next() }) group.ALL("/", func(r *ghttp.Request) { diff --git "a/versioned_docs/version-2.1.x/\346\240\270\345\277\203\347\273\204\344\273\266-\351\207\215\347\202\271/I18N\345\233\275\351\231\205\345\214\226/I18N\345\233\275\351\231\205\345\214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" "b/versioned_docs/version-2.1.x/\346\240\270\345\277\203\347\273\204\344\273\266-\351\207\215\347\202\271/I18N\345\233\275\351\231\205\345\214\226/I18N\345\233\275\351\231\205\345\214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" index 6c6b5b87e6e..5daa901ed31 100644 --- "a/versioned_docs/version-2.1.x/\346\240\270\345\277\203\347\273\204\344\273\266-\351\207\215\347\202\271/I18N\345\233\275\351\231\205\345\214\226/I18N\345\233\275\351\231\205\345\214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" +++ "b/versioned_docs/version-2.1.x/\346\240\270\345\277\203\347\273\204\344\273\266-\351\207\215\347\202\271/I18N\345\233\275\351\231\205\345\214\226/I18N\345\233\275\351\231\205\345\214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" @@ -316,7 +316,7 @@ func main() { s := g.Server() s.Group("/", func(group *ghttp.RouterGroup) { group.Middleware(func(r *ghttp.Request) { - r.SetCtx(gi18n.WithLanguage(r.Context(), r.GetString("lang", "zh-CN"))) + r.SetCtx(gi18n.WithLanguage(r.Context(), r.Get("lang", "zh-CN").String())) r.Middleware.Next() }) group.ALL("/", func(r *ghttp.Request) { diff --git "a/versioned_docs/version-2.2.x/\346\240\270\345\277\203\347\273\204\344\273\266-\351\207\215\347\202\271/I18N\345\233\275\351\231\205\345\214\226/I18N\345\233\275\351\231\205\345\214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" "b/versioned_docs/version-2.2.x/\346\240\270\345\277\203\347\273\204\344\273\266-\351\207\215\347\202\271/I18N\345\233\275\351\231\205\345\214\226/I18N\345\233\275\351\231\205\345\214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" index 6c6b5b87e6e..5daa901ed31 100644 --- "a/versioned_docs/version-2.2.x/\346\240\270\345\277\203\347\273\204\344\273\266-\351\207\215\347\202\271/I18N\345\233\275\351\231\205\345\214\226/I18N\345\233\275\351\231\205\345\214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" +++ "b/versioned_docs/version-2.2.x/\346\240\270\345\277\203\347\273\204\344\273\266-\351\207\215\347\202\271/I18N\345\233\275\351\231\205\345\214\226/I18N\345\233\275\351\231\205\345\214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" @@ -316,7 +316,7 @@ func main() { s := g.Server() s.Group("/", func(group *ghttp.RouterGroup) { group.Middleware(func(r *ghttp.Request) { - r.SetCtx(gi18n.WithLanguage(r.Context(), r.GetString("lang", "zh-CN"))) + r.SetCtx(gi18n.WithLanguage(r.Context(), r.Get("lang", "zh-CN").String())) r.Middleware.Next() }) group.ALL("/", func(r *ghttp.Request) { diff --git "a/versioned_docs/version-2.3.x/\346\240\270\345\277\203\347\273\204\344\273\266-\351\207\215\347\202\271/I18N\345\233\275\351\231\205\345\214\226/I18N\345\233\275\351\231\205\345\214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" "b/versioned_docs/version-2.3.x/\346\240\270\345\277\203\347\273\204\344\273\266-\351\207\215\347\202\271/I18N\345\233\275\351\231\205\345\214\226/I18N\345\233\275\351\231\205\345\214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" index 6c6b5b87e6e..5daa901ed31 100644 --- "a/versioned_docs/version-2.3.x/\346\240\270\345\277\203\347\273\204\344\273\266-\351\207\215\347\202\271/I18N\345\233\275\351\231\205\345\214\226/I18N\345\233\275\351\231\205\345\214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" +++ "b/versioned_docs/version-2.3.x/\346\240\270\345\277\203\347\273\204\344\273\266-\351\207\215\347\202\271/I18N\345\233\275\351\231\205\345\214\226/I18N\345\233\275\351\231\205\345\214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" @@ -316,7 +316,7 @@ func main() { s := g.Server() s.Group("/", func(group *ghttp.RouterGroup) { group.Middleware(func(r *ghttp.Request) { - r.SetCtx(gi18n.WithLanguage(r.Context(), r.GetString("lang", "zh-CN"))) + r.SetCtx(gi18n.WithLanguage(r.Context(), r.Get("lang", "zh-CN").String())) r.Middleware.Next() }) group.ALL("/", func(r *ghttp.Request) { diff --git "a/versioned_docs/version-2.4.x/\346\240\270\345\277\203\347\273\204\344\273\266-\351\207\215\347\202\271/I18N\345\233\275\351\231\205\345\214\226/I18N\345\233\275\351\231\205\345\214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" "b/versioned_docs/version-2.4.x/\346\240\270\345\277\203\347\273\204\344\273\266-\351\207\215\347\202\271/I18N\345\233\275\351\231\205\345\214\226/I18N\345\233\275\351\231\205\345\214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" index 6c6b5b87e6e..5daa901ed31 100644 --- "a/versioned_docs/version-2.4.x/\346\240\270\345\277\203\347\273\204\344\273\266-\351\207\215\347\202\271/I18N\345\233\275\351\231\205\345\214\226/I18N\345\233\275\351\231\205\345\214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" +++ "b/versioned_docs/version-2.4.x/\346\240\270\345\277\203\347\273\204\344\273\266-\351\207\215\347\202\271/I18N\345\233\275\351\231\205\345\214\226/I18N\345\233\275\351\231\205\345\214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" @@ -316,7 +316,7 @@ func main() { s := g.Server() s.Group("/", func(group *ghttp.RouterGroup) { group.Middleware(func(r *ghttp.Request) { - r.SetCtx(gi18n.WithLanguage(r.Context(), r.GetString("lang", "zh-CN"))) + r.SetCtx(gi18n.WithLanguage(r.Context(), r.Get("lang", "zh-CN").String())) r.Middleware.Next() }) group.ALL("/", func(r *ghttp.Request) { diff --git "a/versioned_docs/version-2.5.x/\346\240\270\345\277\203\347\273\204\344\273\266/I18N\345\233\275\351\231\205\345\214\226/I18N\345\233\275\351\231\205\345\214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" "b/versioned_docs/version-2.5.x/\346\240\270\345\277\203\347\273\204\344\273\266/I18N\345\233\275\351\231\205\345\214\226/I18N\345\233\275\351\231\205\345\214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" index 6c6b5b87e6e..5daa901ed31 100644 --- "a/versioned_docs/version-2.5.x/\346\240\270\345\277\203\347\273\204\344\273\266/I18N\345\233\275\351\231\205\345\214\226/I18N\345\233\275\351\231\205\345\214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" +++ "b/versioned_docs/version-2.5.x/\346\240\270\345\277\203\347\273\204\344\273\266/I18N\345\233\275\351\231\205\345\214\226/I18N\345\233\275\351\231\205\345\214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" @@ -316,7 +316,7 @@ func main() { s := g.Server() s.Group("/", func(group *ghttp.RouterGroup) { group.Middleware(func(r *ghttp.Request) { - r.SetCtx(gi18n.WithLanguage(r.Context(), r.GetString("lang", "zh-CN"))) + r.SetCtx(gi18n.WithLanguage(r.Context(), r.Get("lang", "zh-CN").String())) r.Middleware.Next() }) group.ALL("/", func(r *ghttp.Request) { diff --git "a/versioned_docs/version-2.6.x/\346\240\270\345\277\203\347\273\204\344\273\266/I18N\345\233\275\351\231\205\345\214\226/I18N\345\233\275\351\231\205\345\214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" "b/versioned_docs/version-2.6.x/\346\240\270\345\277\203\347\273\204\344\273\266/I18N\345\233\275\351\231\205\345\214\226/I18N\345\233\275\351\231\205\345\214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" index 6c6b5b87e6e..5daa901ed31 100644 --- "a/versioned_docs/version-2.6.x/\346\240\270\345\277\203\347\273\204\344\273\266/I18N\345\233\275\351\231\205\345\214\226/I18N\345\233\275\351\231\205\345\214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" +++ "b/versioned_docs/version-2.6.x/\346\240\270\345\277\203\347\273\204\344\273\266/I18N\345\233\275\351\231\205\345\214\226/I18N\345\233\275\351\231\205\345\214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" @@ -316,7 +316,7 @@ func main() { s := g.Server() s.Group("/", func(group *ghttp.RouterGroup) { group.Middleware(func(r *ghttp.Request) { - r.SetCtx(gi18n.WithLanguage(r.Context(), r.GetString("lang", "zh-CN"))) + r.SetCtx(gi18n.WithLanguage(r.Context(), r.Get("lang", "zh-CN").String())) r.Middleware.Next() }) group.ALL("/", func(r *ghttp.Request) { diff --git "a/versioned_docs/version-2.7.x/docs/\346\240\270\345\277\203\347\273\204\344\273\266/I18N\345\233\275\351\231\205\345\214\226/I18N\345\233\275\351\231\205\345\214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" "b/versioned_docs/version-2.7.x/docs/\346\240\270\345\277\203\347\273\204\344\273\266/I18N\345\233\275\351\231\205\345\214\226/I18N\345\233\275\351\231\205\345\214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" index 1cc173c1a7b..72825279377 100644 --- "a/versioned_docs/version-2.7.x/docs/\346\240\270\345\277\203\347\273\204\344\273\266/I18N\345\233\275\351\231\205\345\214\226/I18N\345\233\275\351\231\205\345\214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" +++ "b/versioned_docs/version-2.7.x/docs/\346\240\270\345\277\203\347\273\204\344\273\266/I18N\345\233\275\351\231\205\345\214\226/I18N\345\233\275\351\231\205\345\214\226-\344\275\277\347\224\250\344\273\213\347\273\215.md" @@ -320,7 +320,7 @@ func main() { s := g.Server() s.Group("/", func(group *ghttp.RouterGroup) { group.Middleware(func(r *ghttp.Request) { - r.SetCtx(gi18n.WithLanguage(r.Context(), r.GetString("lang", "zh-CN"))) + r.SetCtx(gi18n.WithLanguage(r.Context(), r.Get("lang", "zh-CN").String())) r.Middleware.Next() }) group.ALL("/", func(r *ghttp.Request) {