mirror of
https://github.com/Psychotoxical/psysonic.git
synced 2026-07-22 07:15:47 +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
579 B
TypeScript
19 lines
579 B
TypeScript
export const home = {
|
|
hero: '精选',
|
|
starred: '个人收藏',
|
|
mostPlayed: '最常播放',
|
|
recentlyPlayed: '最近播放',
|
|
losslessAlbums: '无损专辑',
|
|
discover: '发现',
|
|
discoverSongs: '发现曲目',
|
|
loadMore: '加载更多',
|
|
discoverMore: '发现更多',
|
|
discoverArtists: '发现艺术家',
|
|
discoverArtistsMore: '全部艺术家',
|
|
becauseYouLike: '因为你听过…',
|
|
becauseYouLikeFor: '因为你听过 {{artist}}',
|
|
similarTo: '类似 {{artist}}',
|
|
becauseYouLikeTracks_one: '{{count}} 首',
|
|
becauseYouLikeTracks_other: '{{count}} 首'
|
|
};
|