diff --git a/src/i18n/locales/en.json b/src/i18n/locales/en.json index 7f05b9dd..b6e23299 100644 --- a/src/i18n/locales/en.json +++ b/src/i18n/locales/en.json @@ -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)", diff --git a/src/renderer/features/albums/components/album-detail-header.tsx b/src/renderer/features/albums/components/album-detail-header.tsx index 1c59a49e..9cb017f7 100644 --- a/src/renderer/features/albums/components/album-detail-header.tsx +++ b/src/renderer/features/albums/components/album-detail-header.tsx @@ -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) {