mirror of
https://github.com/kilyabin/psysonic.git
synced 2026-07-21 22:15:40 +00:00
a8cfff0b62
* feat(library): local lossless index, filters, and conserve dedicated page Add SQLite-backed lossless album browse and advanced-search filtering, wire All Albums and artist/album lossless drill-down mode, and hide the standalone /lossless-albums nav entry from sidebar visibility settings (conserved route, default off). * docs(release): note lossless local index in CHANGELOG and credits (PR #871)
44 lines
1.2 KiB
TypeScript
44 lines
1.2 KiB
TypeScript
export const artistDetail = {
|
|
back: 'Back',
|
|
albums: 'Albums',
|
|
album: 'Album',
|
|
playAll: 'Play All',
|
|
shareArtist: 'Share artist',
|
|
shuffle: 'Shuffle',
|
|
radio: 'Radio',
|
|
loading: 'Loading…',
|
|
noRadio: 'No similar tracks found for this artist.',
|
|
notFound: 'Artist not found.',
|
|
albumsBy: 'Albums by {{name}}',
|
|
albumsByLossless: 'Lossless albums by {{name}}',
|
|
topTracks: 'Top Tracks',
|
|
topTracksLossless: 'Lossless Tracks',
|
|
noAlbums: 'No albums found.',
|
|
trackTitle: 'Title',
|
|
trackAlbum: 'Album',
|
|
trackDuration: 'Duration',
|
|
favoriteAdd: 'Add to Favorites',
|
|
favoriteRemove: 'Remove from Favorites',
|
|
favorite: 'Favorite',
|
|
albumCount_one: '{{count}} Album',
|
|
albumCount_other: '{{count}} Albums',
|
|
openedInBrowser: 'Opened in browser',
|
|
featuredOn: 'Also Featured On',
|
|
similarArtists: 'Similar Artists',
|
|
cacheOffline: 'Save discography offline',
|
|
offlineCached: 'Discography cached',
|
|
offlineDownloading: 'Caching… ({{done}}/{{total}} albums)',
|
|
uploadImage: 'Upload artist image',
|
|
uploadImageError: 'Failed to upload image',
|
|
releaseTypes: {
|
|
album: 'Album',
|
|
ep: 'EP',
|
|
single: 'Single',
|
|
compilation: 'Compilation',
|
|
live: 'Live',
|
|
soundtrack: 'Soundtrack',
|
|
remix: 'Remix',
|
|
other: 'Other',
|
|
},
|
|
};
|