diff --git a/options/locale/locale_en-US.ini b/options/locale/locale_en-US.ini
index b6279d092..f4e2d7a9c 100644
--- a/options/locale/locale_en-US.ini
+++ b/options/locale/locale_en-US.ini
@@ -357,6 +357,10 @@ issues.in_your_repos = In your repositories
[explore]
repos = Repositories
users = Users
+stars_one = %d star
+stars_few = %d stars
+forks_one = %d fork
+forks_few = %d forks
organizations = Organizations
search = Search
go_to = Go to
diff --git a/templates/explore/repo_list.tmpl b/templates/explore/repo_list.tmpl
index 848afd305..0c466dffa 100644
--- a/templates/explore/repo_list.tmpl
+++ b/templates/explore/repo_list.tmpl
@@ -37,10 +37,10 @@
{{end}}
{{if not $.DisableStars}}
- {{svg "octicon-star" 16}}{{.NumStars}}
+ {{svg "octicon-star" 16}}{{.NumStars}}
{{end}}
{{if not $.DisableForks}}
- {{svg "octicon-git-branch" 16}}{{.NumForks}}
+ {{svg "octicon-git-branch" 16}}{{.NumForks}}
{{end}}