]> source.dussan.org Git - gitea.git/commitdiff
Fix mispelling of starred as stared (#17465)
authorzeripath <art27@cantab.net>
Thu, 28 Oct 2021 07:05:00 +0000 (08:05 +0100)
committerGitHub <noreply@github.com>
Thu, 28 Oct 2021 07:05:00 +0000 (15:05 +0800)
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>
options/locale/locale_en-US.ini
routers/web/feed/convert.go

index 309ff99c431e0da9be4e962c061bf7a4e02203a1..c1762799ebcfccba662d7929a485e328633ffe03 100644 (file)
@@ -2786,7 +2786,7 @@ publish_release  = `released <a href="%s/releases/tag/%s"> "%[4]s" </a> at <a hr
 review_dismissed = `dismissed review from <b>%[4]s</b> for <a href="%[1]s/pulls/%[2]s">%[3]s#%[2]s</a>`
 review_dismissed_reason = Reason:
 create_branch = created branch <a href="%[1]s/src/branch/%[2]s">%[3]s</a> in <a href="%[1]s">%[4]s</a>
-stared_repo = stared <a href="%[1]s">%[2]s</a>
+starred_repo = starred <a href="%[1]s">%[2]s</a>
 watched_repo = started watching <a href="%[1]s">%[2]s</a>
 
 [tool]
index 8fd8a6c6b787a52b32eba5e493c8a4c6b073ace7..dfb03785a64382855f22cda877ca3e107dbb7dec 100644 (file)
@@ -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())