mirror of
https://github.com/kilyabin/psysonic.git
synced 2026-07-22 06:25:41 +00:00
33b0206ea2
Global queue paste opens the preview modal before play; overlay scrollbar, context-menu suppression, changelog/credits for PR #716 and DanielWTE (#551).
21 lines
1.1 KiB
TypeScript
21 lines
1.1 KiB
TypeScript
export const sharePaste = {
|
|
notLoggedIn: 'Sign in and add the server before pasting a share link.',
|
|
noMatchingServer: 'No saved server matches this link. Add a server with this address: {{url}}',
|
|
trackUnavailable: 'This track was not found on the server.',
|
|
albumUnavailable: 'This album was not found on the server.',
|
|
artistUnavailable: 'This artist was not found on the server.',
|
|
composerUnavailable: 'This composer was not found on the server.',
|
|
openedTrack: 'Playing shared track.',
|
|
openedAlbum: 'Opening shared album.',
|
|
openedArtist: 'Opening shared artist.',
|
|
openedComposer: 'Opening shared composer.',
|
|
openedQueue_one: 'Playing {{count}} track from the share link.',
|
|
openedQueue_other: 'Playing {{count}} tracks from the share link.',
|
|
openedQueuePartial:
|
|
'Playing {{played}} of {{total}} tracks from the link ({{skipped}} not found on this server).',
|
|
queueAllUnavailable: 'None of the tracks from this link were found on the server.',
|
|
playQueue: 'Play queue',
|
|
playQueueing: 'Starting playback…',
|
|
genericError: 'Could not open the share link.',
|
|
};
|