forked from mirrors/bookwyrm
12 lines
328 B
HTML
12 lines
328 B
HTML
{% 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" %}
|
|
{% else %}
|
|
{{ shelf.name }}
|
|
{% endif %}
|