diff options
author | zeripath <art27@cantab.net> | 2021-10-28 08:05:00 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-28 15:05:00 +0800 |
commit | 3fc465ba5ea521cdb72972d12418b09dfb51a51c (patch) | |
tree | 31d9729cf1ceae8e77faf896c9bb2cc58a2eae65 /routers | |
parent | 0b4a8be26bf9c2941f62ba9444ae9a60d432f0a9 (diff) | |
download | gitea-3fc465ba5ea521cdb72972d12418b09dfb51a51c.tar.gz gitea-3fc465ba5ea521cdb72972d12418b09dfb51a51c.zip |
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>
Diffstat (limited to 'routers')
-rw-r--r-- | routers/web/feed/convert.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/web/feed/convert.go b/routers/web/feed/convert.go index 8fd8a6c6b7..dfb03785a6 100644 --- a/routers/web/feed/convert.go +++ b/routers/web/feed/convert.go @@ -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()) |