mirror of
https://github.com/jeffvli/feishin.git
synced 2026-06-17 00:44:23 +02:00
@@ -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 New Issue
Block a user