mirror of
https://github.com/Psychotoxical/psysonic.git
synced 2026-07-21 14:55:43 +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
830 B
TypeScript
22 lines
830 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',
|
|
mainstageEmptyTitle: 'Your Mainstage is empty',
|
|
mainstageEmptyBody: 'Every section is turned off. Turn sections back on, or hide Mainstage from the sidebar.',
|
|
mainstageEmptyCta: 'Open Personalisation settings'
|
|
};
|