Fix translation string (#293)

This commit is contained in:
Thomas Miceli 2024-06-03 17:14:23 +02:00 committed by GitHub
parent 7d113e026e
commit d40eb65086
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -843,7 +843,7 @@ func forks(ctx echo.Context) error {
return errorRes(404, tr(ctx, "error.page-not-found"), nil)
}
setData(ctx, "htmlTitle", trH(ctx, "gist.forks.for: Forks for %s", gist.Title))
setData(ctx, "htmlTitle", trH(ctx, "gist.forks.for", gist.Title))
setData(ctx, "revision", "HEAD")
return html(ctx, "forks.html")
}