mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-27 04:43:59 +01:00
i18n: improve 'Verify' error message, stopgap for #2809 (#5479)
Some checks are pending
/ release (push) Waiting to run
testing / security-check (push) Blocked by required conditions
testing / backend-checks (push) Waiting to run
testing / frontend-checks (push) Waiting to run
testing / test-unit (push) Blocked by required conditions
testing / test-e2e (push) Blocked by required conditions
testing / test-remote-cacher (map[image:docker.io/bitnami/redis:7.2 port:6379]) (push) Blocked by required conditions
testing / test-remote-cacher (map[image:docker.io/bitnami/valkey:7.2 port:6379]) (push) Blocked by required conditions
testing / test-remote-cacher (map[image:ghcr.io/microsoft/garnet-alpine:1.0.14 port:6379]) (push) Blocked by required conditions
testing / test-remote-cacher (map[image:registry.redict.io/redict:7.3.0-scratch port:6379]) (push) Blocked by required conditions
testing / test-mysql (push) Blocked by required conditions
testing / test-pgsql (push) Blocked by required conditions
testing / test-sqlite (push) Blocked by required conditions
Some checks are pending
/ release (push) Waiting to run
testing / security-check (push) Blocked by required conditions
testing / backend-checks (push) Waiting to run
testing / frontend-checks (push) Waiting to run
testing / test-unit (push) Blocked by required conditions
testing / test-e2e (push) Blocked by required conditions
testing / test-remote-cacher (map[image:docker.io/bitnami/redis:7.2 port:6379]) (push) Blocked by required conditions
testing / test-remote-cacher (map[image:docker.io/bitnami/valkey:7.2 port:6379]) (push) Blocked by required conditions
testing / test-remote-cacher (map[image:ghcr.io/microsoft/garnet-alpine:1.0.14 port:6379]) (push) Blocked by required conditions
testing / test-remote-cacher (map[image:registry.redict.io/redict:7.3.0-scratch port:6379]) (push) Blocked by required conditions
testing / test-mysql (push) Blocked by required conditions
testing / test-pgsql (push) Blocked by required conditions
testing / test-sqlite (push) Blocked by required conditions
Signed-off-by: Adam Baxter <codeberg@voltagex.org> Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/5479 Reviewed-by: Otto <otto@codeberg.org> Co-authored-by: voltagex <voltagex@noreply.codeberg.org> Co-committed-by: voltagex <voltagex@noreply.codeberg.org>
This commit is contained in:
parent
c82e5d1a1a
commit
d17db93fbf
2 changed files with 3 additions and 1 deletions
|
@ -438,6 +438,8 @@ reset_password_wrong_user = You are signed in as %s, but the account recovery li
|
|||
password_too_short = Password length cannot be less than %d characters.
|
||||
non_local_account = Non-local users cannot update their password through the Forgejo web interface.
|
||||
verify = Verify
|
||||
;As https://codeberg.org/forgejo/forgejo/issues/2809 progresses, please update this error message if possible
|
||||
unauthorized_credentials = Credentials are incorrect or have expired. Retry your command or see %s for more information
|
||||
scratch_code = Scratch code
|
||||
use_scratch_code = Use a scratch code
|
||||
twofa_scratch_used = You have used your scratch code. You have been redirected to the two-factor settings page so you may remove your device enrollment or generate a new scratch code.
|
||||
|
|
|
@ -122,7 +122,7 @@ func webAuth(authMethod auth_service.Method) func(*context.Context) {
|
|||
ar, err := common.AuthShared(ctx.Base, ctx.Session, authMethod)
|
||||
if err != nil {
|
||||
log.Error("Failed to verify user: %v", err)
|
||||
ctx.Error(http.StatusUnauthorized, "Verify")
|
||||
ctx.Error(http.StatusUnauthorized, ctx.Locale.TrString("auth.unauthorized_credentials", "https://codeberg.org/forgejo/forgejo/issues/2809"))
|
||||
return
|
||||
}
|
||||
ctx.Doer = ar.Doer
|
||||
|
|
Loading…
Reference in a new issue