mirror of
https://github.com/jeffvli/feishin.git
synced 2024-11-20 06:27:09 +01:00
commit
b93ad40571
@ -139,6 +139,8 @@
|
||||
"genreWithCount_other": "{{count}} genres",
|
||||
"playlist_one": "playlist",
|
||||
"playlist_other": "playlists",
|
||||
"play_one": "{{count}} play",
|
||||
"play_other": "{{count}} plays",
|
||||
"playlistWithCount_one": "{{count}} playlist",
|
||||
"playlistWithCount_other": "{{count}} playlists",
|
||||
"smartPlaylist": "smart $t(entity.playlist_one)",
|
||||
|
@ -48,6 +48,12 @@ export const AlbumDetailHeader = forwardRef(
|
||||
value:
|
||||
detailQuery?.data?.duration && formatDurationString(detailQuery.data.duration),
|
||||
},
|
||||
{
|
||||
id: 'playCount',
|
||||
value: t('entity.play', {
|
||||
count: detailQuery?.data?.playCount as number,
|
||||
}),
|
||||
},
|
||||
];
|
||||
|
||||
if (originalDifferentFromRelease) {
|
||||
|
Loading…
Reference in New Issue
Block a user