diff options
author | Unknwon <u@gogs.io> | 2015-12-05 01:20:11 -0500 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-12-05 01:20:11 -0500 |
commit | f3eaa4c592727481d1e9b089bf93c78575ba739c (patch) | |
tree | 6e47708f57ae27c29506582b57456542230f5a90 | |
parent | f41360d864bfa3fb850d669a0a8321820fc550de (diff) | |
download | gitea-f3eaa4c592727481d1e9b089bf93c78575ba739c.tar.gz gitea-f3eaa4c592727481d1e9b089bf93c78575ba739c.zip |
Set default language for i18n
-rw-r--r-- | cmd/web.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/web.go b/cmd/web.go index 9efc07b3fb..ad9ba76fd8 100644 --- a/cmd/web.go +++ b/cmd/web.go @@ -82,7 +82,7 @@ func checkVersion() { {"github.com/go-macaron/binding", binding.Version, "0.1.0"}, {"github.com/go-macaron/cache", cache.Version, "0.1.2"}, {"github.com/go-macaron/csrf", csrf.Version, "0.0.3"}, - {"github.com/go-macaron/i18n", i18n.Version, "0.0.7"}, + {"github.com/go-macaron/i18n", i18n.Version, "0.2.0"}, {"github.com/go-macaron/session", session.Version, "0.1.6"}, {"github.com/go-macaron/toolbox", toolbox.Version, "0.1.0"}, {"gopkg.in/ini.v1", ini.Version, "1.3.4"}, @@ -140,6 +140,7 @@ func newMacaron() *macaron.Macaron { CustomDirectory: path.Join(setting.CustomPath, "conf/locale"), Langs: setting.Langs, Names: setting.Names, + DefaultLang: "en-US", Redirect: true, })) m.Use(cache.Cacher(cache.Options{ |