mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
Use proper Vue pluralize filter
This commit is contained in:
parent
d65490ed04
commit
a45222518a
8 changed files with 10 additions and 10 deletions
|
@ -14,7 +14,7 @@
|
|||
<span class="meta" v-show="meta.songCount">
|
||||
by <a class="artist" @click.prevent="viewArtistDetails">{{ album.artist.name }}</a>
|
||||
•
|
||||
{{ meta.songCount }} song{{ meta.songCount === 1 ? '' : 's' }}
|
||||
{{ meta.songCount }} {{ meta.songCount | pluralize 'song' }}
|
||||
•
|
||||
{{ meta.totalLength }}
|
||||
</span>
|
||||
|
|
|
@ -12,9 +12,9 @@
|
|||
@click.prevent="showingControls = false"></i>
|
||||
|
||||
<span class="meta" v-show="meta.songCount">
|
||||
{{ artist.albums.length }} album{{ artist.albums.length === 1 ? '' : 's' }}
|
||||
{{ artist.albums.length }} {{ artist.albums.length | pluralize 'album' }}
|
||||
•
|
||||
{{ meta.songCount }} song{{ meta.songCount === 1 ? '' : 's' }}
|
||||
{{ meta.songCount }} {{ meta.songCount | pluralize 'song' }}
|
||||
•
|
||||
{{ meta.totalLength }}
|
||||
</span>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
@click.prevent="showingControls = false"></i>
|
||||
|
||||
<span class="meta" v-show="meta.songCount">
|
||||
{{ meta.songCount }} song{{ meta.songCount === 1 ? '' : 's' }}
|
||||
{{ meta.songCount }} {{ meta.songCount | pluralize 'song' }}
|
||||
•
|
||||
{{ meta.totalLength }}
|
||||
</span>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
@click.prevent="showingControls = false"></i>
|
||||
|
||||
<span class="meta" v-show="meta.songCount">
|
||||
{{ meta.songCount }} song{{ meta.songCount === 1 ? '' : 's' }}
|
||||
{{ meta.songCount }} {{ meta.songCount | pluralize 'song' }}
|
||||
•
|
||||
{{ meta.totalLength }}
|
||||
</span>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
@click.prevent="showingControls = false"></i>
|
||||
|
||||
<span class="meta" v-show="meta.songCount">
|
||||
{{ meta.songCount }} song{{ meta.songCount === 1 ? '' : 's' }}
|
||||
{{ meta.songCount }} {{ meta.songCount | pluralize 'song' }}
|
||||
•
|
||||
{{ meta.totalLength }}
|
||||
</span>
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
@click.prevent="showingControls = false"></i>
|
||||
|
||||
<span class="meta" v-show="meta.songCount">
|
||||
{{ meta.songCount }} song{{ meta.songCount === 1 ? '' : 's' }}
|
||||
{{ meta.songCount }} {{ meta.songCount | pluralize 'song' }}
|
||||
•
|
||||
{{ meta.totalLength }}
|
||||
</span>
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
<a class="name" @click.prevent="viewDetails">{{ album.name }}</a>
|
||||
<a class="artist" @click.prevent="viewArtistDetails">{{ album.artist.name }}</a>
|
||||
<p class="meta">
|
||||
{{ album.songs.length }} song{{ album.songs.length == 1 ? '' : 's' }}
|
||||
{{ album.songs.length }} {{ album.songs.length | pluralize 'song' }}
|
||||
•
|
||||
{{ album.fmtLength }}
|
||||
</p>
|
||||
|
|
|
@ -8,9 +8,9 @@
|
|||
<footer>
|
||||
<a class="name" @click.prevent="viewDetails">{{ artist.name }}</a>
|
||||
<p class="meta">
|
||||
{{ artist.albums.length }} album{{ artist.albums.length == 1 ? '' : 's' }}
|
||||
{{ artist.albums.length }} {{ artist.albums.length | pluralize 'album' }}
|
||||
•
|
||||
{{ artist.songCount }} song{{ artist.songCount == 1 ? '' : 's' }}
|
||||
{{ artist.songCount }} {{ artist.songCount | pluralize 'song' }}
|
||||
</p>
|
||||
</footer>
|
||||
</article>
|
||||
|
|
Loading…
Reference in a new issue