diff --git a/error-404.hbs b/error-404.hbs
index 2752c111be..0db1379f4c 100644
--- a/error-404.hbs
+++ b/error-404.hbs
@@ -17,7 +17,7 @@ Keep this template as lightweight as you can!
{{statusCode}}
{{message}}
- Go to the front page →
+ {{t "Go to the front page →"}}
diff --git a/error.hbs b/error.hbs
index b1c0dd384c..43a1c53595 100644
--- a/error.hbs
+++ b/error.hbs
@@ -46,12 +46,12 @@ Keep this template as lightweight as you can!
diff --git a/partials/post-card.hbs b/partials/post-card.hbs
index f21e32d529..ad58dd7632 100644
--- a/partials/post-card.hbs
+++ b/partials/post-card.hbs
@@ -24,9 +24,9 @@ which templates loop over to generate a list of posts. --}}
{{> "icons/lock"}}
{{#has visibility="members"}}
- Members only
+ {{t "Members only"}}
{{else}}
- Paid-members only
+ {{t "Paid-members only"}}
{{/has}}
{{/has}}
@@ -44,7 +44,7 @@ which templates loop over to generate a list of posts. --}}
{{name}}
{{/primary_tag}}
{{#if featured}}
- {{> "icons/fire"}} Featured
+ {{> "icons/fire"}} {{t "Featured"}}
{{/if}}
@@ -66,7 +66,7 @@ which templates loop over to generate a list of posts. --}}
diff --git a/tag.hbs b/tag.hbs
index 6a99a7ae6a..419a70fa7b 100644
--- a/tag.hbs
+++ b/tag.hbs
@@ -33,7 +33,7 @@
{{#if description}}
{{description}}
{{else}}
- A collection of {{plural ../pagination.total empty='zero posts' singular='% post' plural='% posts'}}
+ {{plural ../pagination.total empty=(t "A collection of 0 posts") singular=(t "A collection of 1 post") plural=(t "A collection of {numberOfPosts} posts" numberOfPosts=../pagination.total)}}
{{/if}}