Fix Untranslated Text on Actions Page (#33635)

Fix the problem of untranslated text on the actions page

Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
(cherry picked from commit ce65613690e4564d9961f847ebd6eb2137f0c885)
This commit is contained in:
Kerwin Bryant 2025-02-18 19:29:08 +08:00 committed by Gusted
parent e09ea821bd
commit 12488d3f2d
No known key found for this signature in database
GPG key ID: FD821B732837125F
2 changed files with 4 additions and 3 deletions

View file

@ -240,7 +240,7 @@ func List(ctx *context.Context) {
}
ctx.Data["Actors"] = repo.MakeSelfOnTop(ctx.Doer, actors)
ctx.Data["StatusInfoList"] = actions_model.GetStatusInfoList(ctx)
ctx.Data["StatusInfoList"] = actions_model.GetStatusInfoList(ctx, ctx.Locale)
pager := context.NewPagination(int(total), opts.PageSize, opts.Page, 5)
pager.SetDefaultParams(ctx)