diff --git a/bookwyrm/templates/feed/feed_layout.html b/bookwyrm/templates/feed/feed_layout.html
index 7f35d2f3..04826a64 100644
--- a/bookwyrm/templates/feed/feed_layout.html
+++ b/bookwyrm/templates/feed/feed_layout.html
@@ -20,7 +20,10 @@
{% with shelf_counter=forloop.counter %}
- {{ shelf.name }}
+ {% if shelf.identifier == 'to-read' %}{% trans "To Read" %}
+ {% elif shelf.identifier == 'reading' %}{% trans "Currently Reading" %}
+ {% elif shelf.identifier == 'read' %}{% trans "Read" %}
+ {% else %}{{ shelf.name }}{% endif %}
diff --git a/bookwyrm/templates/user/shelf.html b/bookwyrm/templates/user/shelf.html
index c7c83388..189d2856 100644
--- a/bookwyrm/templates/user/shelf.html
+++ b/bookwyrm/templates/user/shelf.html
@@ -21,7 +21,7 @@
diff --git a/bookwyrm/views/feed.py b/bookwyrm/views/feed.py
index f9cb9d59..f7e93e9a 100644
--- a/bookwyrm/views/feed.py
+++ b/bookwyrm/views/feed.py
@@ -166,6 +166,7 @@ def get_suggested_books(user, max_books=5):
continue
shelf_preview = {
'name': shelf.name,
+ 'identifier': shelf.identifier,
'books': [s.book for s in shelf_books]
}
suggested_books.append(shelf_preview)