mirror of
https://github.com/Psychotoxical/psysonic.git
synced 2026-07-21 23:05:46 +00:00
02e23b5755
* 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)
19 lines
647 B
TypeScript
19 lines
647 B
TypeScript
export const home = {
|
|
hero: 'Uitgelicht',
|
|
starred: 'Persoonlijke favorieten',
|
|
mostPlayed: 'Meest gespeeld',
|
|
recentlyPlayed: 'Recent afgespeeld',
|
|
losslessAlbums: 'Lossless-albums',
|
|
discover: 'Ontdekken',
|
|
discoverSongs: 'Nummers ontdekken',
|
|
loadMore: 'Meer laden',
|
|
discoverMore: 'Meer ontdekken',
|
|
discoverArtists: 'Artiesten ontdekken',
|
|
discoverArtistsMore: 'Alle artiesten',
|
|
becauseYouLike: 'Omdat je hebt geluisterd…',
|
|
becauseYouLikeFor: 'Omdat je naar {{artist}} hebt geluisterd',
|
|
similarTo: 'Lijkt op {{artist}}',
|
|
becauseYouLikeTracks_one: '{{count}} nummer',
|
|
becauseYouLikeTracks_other: '{{count}} nummers'
|
|
};
|