Merge branch 'devilcius/funkwhale-develop' into develop

environments/review-docs-trace-4s67rt/deployments/6715
Georg Krause 2021-04-07 06:51:23 +02:00
commit 5fd7889380
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: FD479B9A4D48E632
3 zmienionych plików z 4 dodań i 2 usunięć

Wyświetl plik

@ -0,0 +1 @@
Adds year to album's card and album's base UI

Wyświetl plik

@ -20,6 +20,7 @@
</div>
</div>
<div class="extra content">
<span v-if="album.release_date">{{ album.release_date | moment('Y') }} · </span>
<translate translate-context="*/*/*" :translate-params="{count: album.tracks_count}" :translate-n="album.tracks_count" translate-plural="%{ count } tracks">%{ count } track</translate>
<play-button class="right floated basic icon" :dropdown-only="true" :is-playable="album.is_playable" :dropdown-icon-classes="['ellipsis', 'horizontal', 'large really discrete']" :album="album"></play-button>
</div>

Wyświetl plik

@ -62,9 +62,9 @@
</h2>
<artist-label class="rounded" :artist="artist"></artist-label>
</header>
<div class="ui small hidden divider"></div>
<div v-if="object.release_date || (totalTracks > 0)" class="ui small hidden divider"></div>
<span v-if="object.release_date">{{ object.release_date | moment('Y') }} · </span>
<template v-if="totalTracks > 0">
<div class="ui hidden very small divider"></div>
<translate key="1" v-if="isSerie" translate-context="Content/Channel/Paragraph"
translate-plural="%{ count } episodes"
:translate-n="totalTracks"