summaryrefslogtreecommitdiffstats
path: root/routers/install.go
diff options
context:
space:
mode:
authorUnknwon <joe2010xtmf@163.com>2014-11-10 05:30:07 -0500
committerUnknwon <joe2010xtmf@163.com>2014-11-10 05:30:07 -0500
commite0de6cb5adf5a81a95840f648d8a388b566202bd (patch)
tree6407a7524675e00d2a942ffa2868074dbd17b96c /routers/install.go
parentff8578082eaa356637cc24a3a09548b37aad2371 (diff)
downloadgitea-e0de6cb5adf5a81a95840f648d8a388b566202bd.tar.gz
gitea-e0de6cb5adf5a81a95840f648d8a388b566202bd.zip
work on #616 and update locales
Diffstat (limited to 'routers/install.go')
-rw-r--r--routers/install.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/routers/install.go b/routers/install.go
index eff66e84b3..408ca108f6 100644
--- a/routers/install.go
+++ b/routers/install.go
@@ -165,9 +165,9 @@ func InstallPost(ctx *middleware.Context, form auth.InstallForm) {
// Set test engine.
var x *xorm.Engine
if err := models.NewTestEngine(x); err != nil {
- // NOTE: should use core.QueryDriver (github.com/go-xorm/core)
+ // FIXME: should use core.QueryDriver (github.com/go-xorm/core)
if strings.Contains(err.Error(), `Unknown database type: sqlite3`) {
- ctx.RenderWithErr(ctx.Tr("install.sqlite3_not_available"), INSTALL, &form)
+ ctx.RenderWithErr(ctx.Tr("install.sqlite3_not_available", "http://gogs.io/docs/installation/install_from_binary.html"), INSTALL, &form)
} else {
ctx.RenderWithErr(ctx.Tr("install.invalid_db_setting", err), INSTALL, &form)
}