Skip to content

Commit 3fc465b

Browse files
zeripathwxiaoguang
andauthored
Fix mispelling of starred as stared (go-gitea#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 <[email protected]> Co-authored-by: wxiaoguang <[email protected]>
1 parent 0b4a8be commit 3fc465b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

options/locale/locale_en-US.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2786,7 +2786,7 @@ publish_release = `released <a href="%s/releases/tag/%s"> "%[4]s" </a> at <a hr
27862786
review_dismissed = `dismissed review from <b>%[4]s</b> for <a href="%[1]s/pulls/%[2]s">%[3]s#%[2]s</a>`
27872787
review_dismissed_reason = Reason:
27882788
create_branch = created branch <a href="%[1]s/src/branch/%[2]s">%[3]s</a> in <a href="%[1]s">%[4]s</a>
2789-
stared_repo = stared <a href="%[1]s">%[2]s</a>
2789+
starred_repo = starred <a href="%[1]s">%[2]s</a>
27902790
watched_repo = started watching <a href="%[1]s">%[2]s</a>
27912791

27922792
[tool]

routers/web/feed/convert.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ func feedActionsToFeedItems(ctx *context.Context, actions []*models.Action) (ite
8383
case models.ActionPullReviewDismissed:
8484
title += ctx.Tr("action.review_dismissed", act.GetRepoLink(), act.GetIssueInfos()[0], act.ShortRepoPath(), act.GetIssueInfos()[1])
8585
case models.ActionStarRepo:
86-
title += ctx.Tr("action.stared_repo", act.GetRepoLink(), act.GetRepoPath())
86+
title += ctx.Tr("action.starred_repo", act.GetRepoLink(), act.GetRepoPath())
8787
link = &feeds.Link{Href: act.GetRepoLink()}
8888
case models.ActionWatchRepo:
8989
title += ctx.Tr("action.watched_repo", act.GetRepoLink(), act.GetRepoPath())

0 commit comments

Comments
 (0)