Skip to content

Commit

Permalink
Fix translation string (#293)
Browse files Browse the repository at this point in the history
  • Loading branch information
thomiceli committed Jun 3, 2024
1 parent 7d113e0 commit d40eb65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/web/gist.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
Expand Down

0 comments on commit d40eb65

Please sign in to comment.