diff --git a/options/locale/locale_en-US.ini b/options/locale/locale_en-US.ini
index 309ff99c4..c1762799e 100644
--- a/options/locale/locale_en-US.ini
+++ b/options/locale/locale_en-US.ini
@@ -2786,7 +2786,7 @@ publish_release = `released "%[4]s" at %[4]s for %[3]s#%[2]s`
review_dismissed_reason = Reason:
create_branch = created branch %[3]s in %[4]s
-stared_repo = stared %[2]s
+starred_repo = starred %[2]s
watched_repo = started watching %[2]s
[tool]
diff --git a/routers/web/feed/convert.go b/routers/web/feed/convert.go
index 8fd8a6c6b..dfb03785a 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())