diff options
author | Bo-Yi Wu <appleboy.tw@gmail.com> | 2017-06-05 02:49:46 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-05 02:49:46 -0500 |
commit | 703d18e50d69974779c5fab0d1bb6c082a3923fd (patch) | |
tree | 7837f4e248e7bfc4f91993dad64ab71efe01e26a /routers/user/setting.go | |
parent | ed31dff5ab9e3bc618c647acca2d3f34e720a2d7 (diff) | |
download | gitea-703d18e50d69974779c5fab0d1bb6c082a3923fd.tar.gz gitea-703d18e50d69974779c5fab0d1bb6c082a3923fd.zip |
feat: add check misspelling (#1877)
Diffstat (limited to 'routers/user/setting.go')
-rw-r--r-- | routers/user/setting.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/user/setting.go b/routers/user/setting.go index f0cb9e7843..1cc6012820 100644 --- a/routers/user/setting.go +++ b/routers/user/setting.go @@ -489,7 +489,7 @@ func SettingsApplicationsPost(ctx *context.Context, form auth.NewAccessTokenForm return } - ctx.Flash.Success(ctx.Tr("settings.generate_token_succees")) + ctx.Flash.Success(ctx.Tr("settings.generate_token_success")) ctx.Flash.Info(t.Sha1) ctx.Redirect(setting.AppSubURL + "/user/settings/applications") |