Change hovertext from "x children" to "x child albums".
This commit is contained in:
parent
976534982b
commit
31d4e58dbc
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ draggable=true
|
||||||
{% else %}
|
{% else %}
|
||||||
{% set child_count = album.get_children()|length %}
|
{% set child_count = album.get_children()|length %}
|
||||||
{% set photo_count = album.sum_photos(recurse=False) %}
|
{% 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>
|
<span class="album_card_photo_count" title="{{photo_count}} photos">{{photo_count}}</span>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
Loading…
Reference in a new issue