diff options
author | Unknwon <joe2010xtmf@163.com> | 2014-08-09 18:01:29 -0700 |
---|---|---|
committer | Unknwon <joe2010xtmf@163.com> | 2014-08-09 18:01:29 -0700 |
commit | 5605af973b440add79b1c32c911bee03fa821a4e (patch) | |
tree | 5bd6f7145e190933016dd745a833b9596bef87fe /modules | |
parent | 78defd238c939ff577041f2e7b95b2ae48a9fb27 (diff) | |
download | gitea-5605af973b440add79b1c32c911bee03fa821a4e.tar.gz gitea-5605af973b440add79b1c32c911bee03fa821a4e.zip |
Feature: Social sign in
Diffstat (limited to 'modules')
-rw-r--r-- | modules/base/template.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/base/template.go b/modules/base/template.go index 51b1dfff01..f2ae00b915 100644 --- a/modules/base/template.go +++ b/modules/base/template.go @@ -241,7 +241,7 @@ func Oauth2Icon(t int) string { case 3: return "fa-twitter-square" case 4: - return "fa-linux" + return "fa-qq" case 5: return "fa-weibo" } @@ -253,11 +253,11 @@ func Oauth2Name(t int) string { case 1: return "GitHub" case 2: - return "Google" + return "Google+" case 3: return "Twitter" case 4: - return "Tencent QQ" + return "腾讯 QQ" case 5: return "Weibo" } |