Files
psysonic/src/locales/en/home.ts
T
Frank Stellmacher 02e23b5755 fix(home): align mainstage row title with "New Releases" (#741)
* fix(home): mainstage row matches "New Releases" sidebar + page label

The Mainstage row whose title chevron links to `/new-releases` was
labelled **Recently Added** (`home.recent`) while the sidebar entry and
the page itself are **New Releases** (`sidebar.newReleases`) — three
labels for the same destination. Reported on the Psysonic Discord.

Reuse `sidebar.newReleases` in both consumers (the row title in
`Home.tsx` and the section label in `HomeCustomizer.tsx`) so the
string lives in exactly one place. The now-orphaned `home.recent` key
is dropped from all nine locale files.

* docs(changelog): mainstage New Releases label fix (PR #741)
2026-05-17 01:06:23 +02:00

19 lines
613 B
TypeScript

export const home = {
hero: 'Featured',
starred: 'Personal Favorites',
mostPlayed: 'Most Played',
recentlyPlayed: 'Recently Played',
losslessAlbums: 'Lossless Albums',
discover: 'Discover',
discoverSongs: 'Discover Songs',
loadMore: 'Load More',
discoverMore: 'Discover More',
discoverArtists: 'Discover Artists',
discoverArtistsMore: 'All Artists',
becauseYouLike: 'Because you listened…',
becauseYouLikeFor: 'Because you listened to {{artist}}',
similarTo: 'Similar to {{artist}}',
becauseYouLikeTracks_one: '{{count}} track',
becauseYouLikeTracks_other: '{{count}} tracks'
};