Change hovertext from "x children" to "x child albums".

master
voussoir 2020-07-26 19:18:27 -07:00
parent 976534982b
commit 31d4e58dbc
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ draggable=true
{% else %}
{% set child_count = album.get_children()|length %}
{% set photo_count = album.sum_photos(recurse=False) %}
<span class="album_card_child_count" title="{{child_count}} children">{{child_count}}</span>
<span class="album_card_child_count" title="{{child_count}} child albums">{{child_count}}</span>
{{-' | '-}}
<span class="album_card_photo_count" title="{{photo_count}} photos">{{photo_count}}</span>
{% endif %}