mirror of
https://github.com/kilyabin/psysonic.git
synced 2026-07-21 22:15:40 +00:00
e7431b94b8
Implement share-link detection in search (track, queue, album, artist, composer): enqueue tracks/queues without interrupting playback; preview album/artist/composer without switching the active server; queue preview modal with scrollable track list. Based on community PR #551. Co-authored-by: Daniel Wagner <daniel.iuser@icloud.com>
46 lines
1.8 KiB
TypeScript
46 lines
1.8 KiB
TypeScript
export const search = {
|
|
placeholder: '搜索艺术家、专辑或歌曲…',
|
|
noResults: '未找到 "{{query}}" 的相关结果',
|
|
artists: '艺术家',
|
|
albums: '专辑',
|
|
songs: '歌曲',
|
|
clearLabel: '清除搜索',
|
|
addedToQueueToast: '已将"{{title}}"加入队列',
|
|
title: '搜索',
|
|
resultsFor: '"{{query}}" 的搜索结果',
|
|
album: '专辑',
|
|
advanced: '高级搜索',
|
|
advancedSearchTerm: '搜索词',
|
|
advancedSearchPlaceholder: '标题、专辑、艺术家…',
|
|
advancedGenre: '流派',
|
|
advancedAllGenres: '所有流派',
|
|
advancedYear: '年份',
|
|
advancedYearFrom: '从',
|
|
advancedYearTo: '至',
|
|
advancedAll: '全部',
|
|
advancedSearch: '搜索',
|
|
advancedEmpty: '请输入搜索词或选择过滤器。',
|
|
advancedNoResults: '未找到结果。',
|
|
advancedGenreNote: '歌曲从该流派中随机选取。',
|
|
recentSearches: '最近搜索',
|
|
browse: '浏览',
|
|
emptyHint: '你想听什么?',
|
|
genres: '流派',
|
|
shareLink: 'Share link',
|
|
shareTrackTitle: 'Shared track',
|
|
shareQueueTitle_one: 'Shared queue ({{count}} track)',
|
|
shareQueueTitle_other: 'Shared queue ({{count}} tracks)',
|
|
shareQueueAction: 'Add to queue',
|
|
shareQueueing: 'Adding to queue…',
|
|
shareQueued_one: 'Added {{count}} shared track to queue',
|
|
shareQueued_other: 'Added {{count}} shared tracks to queue',
|
|
shareQueuedPartial: 'Added {{queued}} of {{total}} shared tracks to queue ({{skipped}} not found).',
|
|
shareUnsupportedTitle: 'This share link cannot be used here',
|
|
shareUnsupportedSub: 'Use a track, album, artist, composer, or queue share link.',
|
|
shareFromServer: 'From {{server}}',
|
|
shareQueuePreview: 'Preview tracks',
|
|
shareQueuePreviewLoading: 'Loading tracks…',
|
|
shareQueuePreviewEmpty: 'No tracks from this link could be found on the server.',
|
|
shareQueuePreviewSkipped: '{{skipped}} of {{total}} tracks were not found on this server.',
|
|
};
|