2022-01-11 20:03:04 +00:00
|
|
|
{% load i18n %}
|
|
|
|
{% if shelf.identifier == 'all' %}
|
|
|
|
{% trans "All books" %}
|
|
|
|
{% elif shelf.identifier == 'to-read' %}
|
|
|
|
{% trans "To Read" %}
|
|
|
|
{% elif shelf.identifier == 'reading' %}
|
|
|
|
{% trans "Currently Reading" %}
|
|
|
|
{% elif shelf.identifier == 'read' %}
|
|
|
|
{% trans "Read" %}
|
2022-02-12 18:44:06 +00:00
|
|
|
{% elif shelf.identifier == 'stopped-reading' %}
|
|
|
|
{% trans "Stopped Reading" %}
|
2022-01-11 20:03:04 +00:00
|
|
|
{% else %}
|
|
|
|
{{ shelf.name }}
|
|
|
|
{% endif %}
|