mirror of
https://github.com/Psychotoxical/psysonic.git
synced 2026-07-21 14:55:43 +00:00
ea6ac49885
* feat(offline): show cached albums from all servers in Offline Library List every offline album regardless of active server; load cover art per source server and switch before play/enqueue. Sidebar, mobile nav, and disconnect auto-nav use any cached content; multi-server cards show a label. * docs(changelog): link offline library PR #719 * chore(pr-719): address review — CHANGELOG in Added, helper tests Move release note to ## Added per team changelog policy; cover offlineAlbumCoverArt and ensureServerForOfflineAlbum in unit tests.
30 lines
1.3 KiB
TypeScript
30 lines
1.3 KiB
TypeScript
export const connection = {
|
|
connected: 'Connected',
|
|
connectedTo: 'Connected to {{server}}',
|
|
disconnected: 'Disconnected',
|
|
disconnectedFrom: 'Cannot reach {{server}} — click to check settings',
|
|
checking: 'Connecting…',
|
|
extern: 'Extern',
|
|
offlineTitle: 'No server connection',
|
|
offlineSubtitle: 'Cannot reach {{server}}. Check your network or server.',
|
|
offlineModeBanner: 'Offline Mode — playing from local cache',
|
|
offlineNoCacheBanner: 'No server connection — cannot reach {{server}}',
|
|
offlineLibraryTitle: 'Offline Library',
|
|
offlineLibraryEmpty: 'No albums cached yet. Go online, open an album and click "Make available offline".',
|
|
offlineCachedOnServer: 'On {{server}}',
|
|
offlineAlbumCount: '{{n}} album',
|
|
offlineAlbumCount_plural: '{{n}} albums',
|
|
offlineFilterAll: 'All',
|
|
offlineFilterAlbums: 'Albums',
|
|
offlineFilterPlaylists: 'Playlists',
|
|
offlineFilterArtists: 'Discographies',
|
|
retry: 'Retry',
|
|
serverSettings: 'Server Settings',
|
|
switchServerTitle: 'Switch server',
|
|
switchServerHint: 'Click to choose another saved server.',
|
|
manageServers: 'Manage servers…',
|
|
switchFailed: 'Could not switch — server unreachable.',
|
|
lastfmConnected: 'Last.fm connected as @{{user}}',
|
|
lastfmSessionInvalid: 'Session invalid — click to re-connect',
|
|
};
|