mirror of
https://github.com/Psychotoxical/psysonic.git
synced 2026-07-22 15:25:46 +00:00
908c349cfd
* fix(mainstage): rename Home Page setting, add start-page fallback + empty state - Rename "Home Page" personalisation section to "Mainstage" across 9 locales so the heading matches the sidebar entry; add "mainstage" search keyword. - Index route "/" now redirects to the first visible library item when the Mainstage sidebar entry is hidden, instead of stranding the app on a blank page. New pure resolveStartRoute() mirrors sidebar order + nav-mode gating. - Show a guided empty state on Mainstage when every section is toggled off, with a CTA into Settings -> Personalisation. - Unit tests for resolveStartRoute. * docs(changelog): Mainstage rename, start-page fallback + empty state (#975)
22 lines
867 B
TypeScript
22 lines
867 B
TypeScript
export const home = {
|
|
hero: 'Featured',
|
|
starred: 'Persönliche Favoriten',
|
|
mostPlayed: 'Meistgehört',
|
|
recentlyPlayed: 'Kürzlich gespielt',
|
|
losslessAlbums: 'Lossless-Alben',
|
|
discover: 'Entdecken',
|
|
discoverSongs: 'Titel entdecken',
|
|
loadMore: 'Mehr laden',
|
|
discoverMore: 'Mehr entdecken',
|
|
discoverArtists: 'Künstler entdecken',
|
|
discoverArtistsMore: 'Alle Künstler',
|
|
becauseYouLike: 'Weil du gehört hast…',
|
|
becauseYouLikeFor: 'Weil du {{artist}} gehört hast',
|
|
similarTo: 'Ähnlich wie {{artist}}',
|
|
becauseYouLikeTracks_one: '{{count}} Titel',
|
|
becauseYouLikeTracks_other: '{{count}} Titel',
|
|
mainstageEmptyTitle: 'Deine Mainstage ist leer',
|
|
mainstageEmptyBody: 'Alle Bereiche sind ausgeschaltet. Schalte Bereiche wieder ein oder blende die Mainstage aus der Seitenleiste aus.',
|
|
mainstageEmptyCta: 'Personalisierung öffnen'
|
|
};
|