mirror of
https://github.com/kilyabin/psysonic.git
synced 2026-07-21 22:15:40 +00:00
d54eceaf3b
* fix(statistics): keep player stats tab visible without local index Show the tab always and explain that player statistics require the local library index, with a link to library settings, instead of hiding the tab. * docs(release): CHANGELOG and credits for player stats tab UX (PR #851) * docs(credits): drop minor library index and player stats tab fixes Per team policy, small UX fixes (PR #850, #851) stay in CHANGELOG only.
78 lines
3.1 KiB
TypeScript
78 lines
3.1 KiB
TypeScript
export const statistics = {
|
||
title: '统计',
|
||
recentlyPlayed: '最近播放',
|
||
mostPlayed: '最常播放的专辑',
|
||
highestRated: '评分最高的专辑',
|
||
genreDistribution: '流派分布(前 20)',
|
||
loadMore: '加载更多',
|
||
statArtists: '艺术家',
|
||
statArtistsTooltip: '仅限专辑艺术家——仅作为单曲艺术家出现(合唱、客串等)且无自己专辑的艺术家不计入此处。',
|
||
statAlbums: '专辑',
|
||
statSongs: '歌曲',
|
||
statGenres: '流派',
|
||
statPlaytime: '音频总时长',
|
||
genreInsights: '流派洞察',
|
||
formatDistribution: '格式分布',
|
||
formatSample: '{{n}} 首曲目的样本',
|
||
computing: '计算中…',
|
||
genreSongs: '{{count}} 首歌曲',
|
||
genreAlbums: '{{count}} 张专辑',
|
||
recentlyAdded: '最近添加',
|
||
decadeDistribution: '按年代分布的专辑',
|
||
decadeAlbums_one: '{{count}} 张专辑',
|
||
decadeAlbums_other: '{{count}} 张专辑',
|
||
decadeUnknown: '未知',
|
||
lfmTitle: 'Last.fm 统计',
|
||
lfmTopArtists: '热门艺术家',
|
||
lfmTopAlbums: '热门专辑',
|
||
lfmTopTracks: '热门曲目',
|
||
lfmPlays: '{{count}} 次播放',
|
||
lfmPeriodOverall: '全部时间',
|
||
lfmPeriod7day: '7 天',
|
||
lfmPeriod1month: '1 个月',
|
||
lfmPeriod3month: '3 个月',
|
||
lfmPeriod6month: '6 个月',
|
||
lfmPeriod12month: '12 个月',
|
||
lfmNotConnected: '在设置中连接 Last.fm 以查看您的统计。',
|
||
lfmRecentTracks: '最近记录',
|
||
lfmNowPlaying: '正在播放',
|
||
lfmJustNow: '刚刚',
|
||
lfmMinutesAgo: '{{n}} 分钟前',
|
||
lfmHoursAgo: '{{n}} 小时前',
|
||
lfmDaysAgo: '{{n}} 天前',
|
||
topRatedSongs: '最高评分歌曲',
|
||
topRatedArtists: '最高评分艺人',
|
||
noRatedSongs: '暂无已评分歌曲。请在专辑或播放列表中为歌曲评分。',
|
||
noRatedArtists: '暂无已评分艺人。',
|
||
tabServer: '服务器统计',
|
||
tabPlayer: '播放器统计',
|
||
playerEmpty: '开始收听 — 启用媒体库索引后,本地播放历史将显示在这里。',
|
||
playerSummaryTime: '收听时长',
|
||
playerListeningDayShort: '{{count}}天',
|
||
playerListeningHourShort: '{{count}}小时',
|
||
playerListeningMinuteShort: '{{count}}分钟',
|
||
playerSummarySessions: '会话数',
|
||
playerSummaryTracks: '曲目',
|
||
playerSummaryUniqueTracks: '独立曲目',
|
||
playerSummaryDays: 'Days',
|
||
playerPartialIndexNotice: '部分服务器未纳入本地库索引,在这些服务器上的收听不会计入播放器统计。',
|
||
playerIndexRequired: '启用本地库索引后才会显示播放器统计。',
|
||
playerPartialIndexSettings: '库设置',
|
||
playerSummaryCompletion: '完整 / 部分',
|
||
playerYearPrev: '上一年',
|
||
playerYearNext: '下一年',
|
||
playerHeatmapLegend: '颜色越深表示当天收听的曲目越多。',
|
||
playerHeatmapLess: '少',
|
||
playerHeatmapMore: '多',
|
||
playerDaySessions: '{{count}} 次会话',
|
||
playerDayTrackPlays: '{{count}} 首曲目',
|
||
playerDayFullPartial: '{{full}} 完整 · {{partial}} 部分',
|
||
playerRecentDaysTitle: '最近几天',
|
||
playerDayToday: '今天',
|
||
playerDayYesterday: '昨天',
|
||
playerListenedSecShort: '{{seconds}} 秒',
|
||
playerListenedMinDecimal: '{{minutes}} 分钟',
|
||
completionFull: '完整收听',
|
||
completionPartial: '部分',
|
||
};
|