forked from forgejo/forgejo
Fix mispelling of starred as stared (#17465)
There was a recent spelling mistake added to the locale file where stared was used instead of starred. This PR changes this to starred. Signed-off-by: Andrew Thornton <art27@cantab.net> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
This commit is contained in:
parent
0b4a8be26b
commit
3fc465ba5e
2 changed files with 2 additions and 2 deletions
|
@ -83,7 +83,7 @@ func feedActionsToFeedItems(ctx *context.Context, actions []*models.Action) (ite
|
|||
case models.ActionPullReviewDismissed:
|
||||
title += ctx.Tr("action.review_dismissed", act.GetRepoLink(), act.GetIssueInfos()[0], act.ShortRepoPath(), act.GetIssueInfos()[1])
|
||||
case models.ActionStarRepo:
|
||||
title += ctx.Tr("action.stared_repo", act.GetRepoLink(), act.GetRepoPath())
|
||||
title += ctx.Tr("action.starred_repo", act.GetRepoLink(), act.GetRepoPath())
|
||||
link = &feeds.Link{Href: act.GetRepoLink()}
|
||||
case models.ActionWatchRepo:
|
||||
title += ctx.Tr("action.watched_repo", act.GetRepoLink(), act.GetRepoPath())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue