From 9092c9c80c06154f3bd2394b68ca6599ea4ee4e6 Mon Sep 17 00:00:00 2001 From: Neil Roberts Date: Thu, 6 Apr 2023 11:53:17 +0200 Subject: [PATCH] Add a translatable name for the "stopped-reading" status shelf --- bookwyrm/templatetags/shelf_tags.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bookwyrm/templatetags/shelf_tags.py b/bookwyrm/templatetags/shelf_tags.py index ea093b8a5..6243fcae2 100644 --- a/bookwyrm/templatetags/shelf_tags.py +++ b/bookwyrm/templatetags/shelf_tags.py @@ -14,6 +14,7 @@ SHELF_NAMES = { "to-read": _("To Read"), "reading": _("Currently Reading"), "read": _("Read"), + "stopped-reading": _("Stopped Reading"), }