commit
b93ad40571
2 changed files with 8 additions and 0 deletions
|
@ -139,6 +139,8 @@
|
||||||
"genreWithCount_other": "{{count}} genres",
|
"genreWithCount_other": "{{count}} genres",
|
||||||
"playlist_one": "playlist",
|
"playlist_one": "playlist",
|
||||||
"playlist_other": "playlists",
|
"playlist_other": "playlists",
|
||||||
|
"play_one": "{{count}} play",
|
||||||
|
"play_other": "{{count}} plays",
|
||||||
"playlistWithCount_one": "{{count}} playlist",
|
"playlistWithCount_one": "{{count}} playlist",
|
||||||
"playlistWithCount_other": "{{count}} playlists",
|
"playlistWithCount_other": "{{count}} playlists",
|
||||||
"smartPlaylist": "smart $t(entity.playlist_one)",
|
"smartPlaylist": "smart $t(entity.playlist_one)",
|
||||||
|
|
|
@ -48,6 +48,12 @@ export const AlbumDetailHeader = forwardRef(
|
||||||
value:
|
value:
|
||||||
detailQuery?.data?.duration && formatDurationString(detailQuery.data.duration),
|
detailQuery?.data?.duration && formatDurationString(detailQuery.data.duration),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
id: 'playCount',
|
||||||
|
value: t('entity.play', {
|
||||||
|
count: detailQuery?.data?.playCount as number,
|
||||||
|
}),
|
||||||
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
if (originalDifferentFromRelease) {
|
if (originalDifferentFromRelease) {
|
||||||
|
|
Reference in a new issue