mirror of
https://github.com/thomiceli/opengist.git
synced 2024-12-22 20:42:40 +00:00
Fix translation string (#293)
This commit is contained in:
parent
7d113e026e
commit
d40eb65086
1 changed files with 1 additions and 1 deletions
|
@ -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")
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue