mirror of
https://github.com/kilyabin/psysonic.git
synced 2026-07-22 06:25:41 +00:00
cc04a0c93d
* feat(tracks): distinct circular song cards with jump-to-album badge Single-track cards looked identical to album tiles, so clicking the body read as album behaviour even though it starts playback. Give them a round vinyl-style cover (square stays album-only) via a shared .cover-circle utility, and add a 'To album' badge under the artist that navigates to the track's album. Card click still plays; the badge is the explicit nav path. * i18n(tracks): add toAlbum label across 9 locales * docs(changelog): track-card redesign + to-album badge (#953)
17 lines
584 B
TypeScript
17 lines
584 B
TypeScript
export const tracks = {
|
|
title: 'Tracks',
|
|
subtitle: 'Browse. Search. Discover.',
|
|
heroEyebrow: 'Track of the moment',
|
|
heroReroll: 'Pick another',
|
|
playSong: 'Play',
|
|
enqueueSong: 'Add to queue',
|
|
toAlbum: 'To album',
|
|
railRandom: 'Random Pick',
|
|
railHighlyRated: 'Highly Rated',
|
|
browseTitle: 'Browse all tracks',
|
|
browseUnsupported: "This server doesn't list the whole library at once. Use the search above to find specific tracks.",
|
|
searchPlaceholder: 'Find a track by title, artist or album…',
|
|
count_one: '{{count}} track',
|
|
count_other: '{{count}} tracks',
|
|
};
|