mirror of
https://github.com/algerkong/AlgerMusicPlayer.git
synced 2026-05-18 11:37:31 +08:00
refactor: 重构音乐和歌词缓存逻辑 可配置缓存目录
This commit is contained in:
@@ -29,6 +29,7 @@ export default {
|
||||
retry: 'Retry',
|
||||
reset: 'Reset',
|
||||
loadFailed: 'Load Failed',
|
||||
noData: 'No data',
|
||||
back: 'Back',
|
||||
copySuccess: 'Copied to clipboard',
|
||||
copyFailed: 'Copy failed',
|
||||
@@ -36,9 +37,7 @@ export default {
|
||||
required: 'This field is required',
|
||||
invalidInput: 'Invalid input',
|
||||
selectRequired: 'Please select an option',
|
||||
numberRange: 'Please enter a number between {min} and {max}',
|
||||
ipAddress: 'Please enter a valid IP address',
|
||||
portNumber: 'Please enter a valid port number (1-65535)'
|
||||
numberRange: 'Please enter a number between {min} and {max}'
|
||||
},
|
||||
viewMore: 'View More',
|
||||
noMore: 'No more',
|
||||
|
||||
@@ -16,7 +16,6 @@ export default {
|
||||
progress: {
|
||||
total: 'Total Progress: {progress}%'
|
||||
},
|
||||
items: 'items',
|
||||
status: {
|
||||
downloading: 'Downloading',
|
||||
completed: 'Completed',
|
||||
@@ -42,12 +41,12 @@ export default {
|
||||
'Are you sure you want to clear all download records? This will not delete the actual music files, but will clear all records.',
|
||||
confirm: 'Clear',
|
||||
cancel: 'Cancel',
|
||||
success: 'Download records cleared'
|
||||
success: 'Download records cleared',
|
||||
failed: 'Failed to clear download records'
|
||||
},
|
||||
message: {
|
||||
downloadComplete: '{filename} download completed',
|
||||
downloadFailed: '{filename} download failed: {error}',
|
||||
alreadyDownloading: '{filename} is already downloading'
|
||||
downloadFailed: '{filename} download failed: {error}'
|
||||
},
|
||||
loading: 'Loading...',
|
||||
playStarted: 'Play started: {name}',
|
||||
|
||||
@@ -2,12 +2,8 @@ export default {
|
||||
title: 'Favorites',
|
||||
count: 'Total {count}',
|
||||
batchDownload: 'Batch Download',
|
||||
selectAll: 'All',
|
||||
download: 'Download ({count})',
|
||||
cancel: 'Cancel',
|
||||
emptyTip: 'No favorite songs yet',
|
||||
viewMore: 'View More',
|
||||
noMore: 'No more',
|
||||
downloadSuccess: 'Download completed',
|
||||
downloadFailed: 'Download failed',
|
||||
downloading: 'Downloading, please wait...',
|
||||
|
||||
@@ -23,7 +23,6 @@ export default {
|
||||
merging: 'Merging records...',
|
||||
noDescription: 'No description',
|
||||
noData: 'No records',
|
||||
newKey: 'New translation',
|
||||
heatmap: {
|
||||
title: 'Play Heatmap',
|
||||
loading: 'Loading data...',
|
||||
|
||||
@@ -131,10 +131,7 @@ export default {
|
||||
timerEnded: 'Sleep timer ended',
|
||||
playbackStopped: 'Music playback stopped',
|
||||
minutesRemaining: '{minutes} min remaining',
|
||||
songsRemaining: '{count} songs remaining',
|
||||
activeTime: 'Timer Active',
|
||||
activeSongs: 'Counting Songs',
|
||||
activeEnd: 'End After List'
|
||||
songsRemaining: '{count} songs remaining'
|
||||
},
|
||||
playList: {
|
||||
clearAll: 'Clear Playlist',
|
||||
|
||||
@@ -12,6 +12,10 @@ export default {
|
||||
subscribe: 'Subscribe',
|
||||
subscribed: 'Subscribed',
|
||||
unsubscribe: 'Unsubscribe',
|
||||
unsubscribed: 'Unsubscribed',
|
||||
subscribeSuccess: 'Subscribed successfully',
|
||||
unsubscribeFailed: 'Failed to unsubscribe',
|
||||
subscribeFailed: 'Failed to subscribe',
|
||||
radioDetail: 'Radio Detail',
|
||||
programList: 'Episodes',
|
||||
playProgram: 'Play',
|
||||
|
||||
@@ -196,6 +196,36 @@ export default {
|
||||
system: {
|
||||
cache: 'Cache Management',
|
||||
cacheDesc: 'Clear cache',
|
||||
diskCache: 'Disk Cache',
|
||||
diskCacheDesc: 'Cache played music and lyrics on local disk to speed up repeated playback',
|
||||
cacheDirectory: 'Cache Directory',
|
||||
cacheDirectoryDesc: 'Custom directory for music and lyric cache files',
|
||||
selectDirectory: 'Select Directory',
|
||||
openDirectory: 'Open Directory',
|
||||
cacheMaxSize: 'Cache Size Limit',
|
||||
cacheMaxSizeDesc: 'Older cache items are cleaned automatically when limit is reached',
|
||||
cleanupPolicy: 'Cleanup Policy',
|
||||
cleanupPolicyDesc: 'Auto cleanup rule when cache reaches the size limit',
|
||||
cleanupPolicyOptions: {
|
||||
lru: 'Least Recently Used',
|
||||
fifo: 'First In, First Out'
|
||||
},
|
||||
cacheStatus: 'Cache Status',
|
||||
cacheStatusDesc: 'Used {used} / Limit {limit}',
|
||||
cacheStatusDetail: 'Music {musicCount}, Lyrics {lyricCount}',
|
||||
manageDiskCache: 'Manual Disk Cache Cleanup',
|
||||
manageDiskCacheDesc: 'Clean cache by category',
|
||||
clearMusicCache: 'Clear Music Cache',
|
||||
clearLyricCache: 'Clear Lyric Cache',
|
||||
clearAllCache: 'Clear All Cache',
|
||||
switchDirectoryMigrateTitle: 'Existing Cache Detected',
|
||||
switchDirectoryMigrateContent: 'Do you want to migrate old cache files to the new directory?',
|
||||
switchDirectoryMigrateConfirm: 'Migrate',
|
||||
switchDirectoryDestroyTitle: 'Destroy Old Cache',
|
||||
switchDirectoryDestroyContent:
|
||||
'If you do not migrate, do you want to destroy old cache files in the previous directory?',
|
||||
switchDirectoryDestroyConfirm: 'Destroy',
|
||||
switchDirectoryKeepOld: 'Keep Old Cache',
|
||||
cacheClearTitle: 'Select cache types to clear:',
|
||||
cacheTypes: {
|
||||
history: {
|
||||
@@ -230,7 +260,14 @@ export default {
|
||||
restart: 'Restart',
|
||||
restartDesc: 'Restart application',
|
||||
messages: {
|
||||
clearSuccess: 'Cache cleared successfully, some settings will take effect after restart'
|
||||
clearSuccess: 'Cache cleared successfully, some settings will take effect after restart',
|
||||
diskCacheClearSuccess: 'Disk cache cleaned',
|
||||
diskCacheClearFailed: 'Failed to clean disk cache',
|
||||
diskCacheStatsLoadFailed: 'Failed to load cache status',
|
||||
switchDirectorySuccess: 'Cache directory switched, old cache is kept',
|
||||
switchDirectoryFailed: 'Failed to switch cache directory',
|
||||
switchDirectoryMigrated: 'Cache directory switched, migrated {count} cache files',
|
||||
switchDirectoryDestroyed: 'Cache directory switched, destroyed {count} old cache files'
|
||||
}
|
||||
},
|
||||
about: {
|
||||
|
||||
@@ -29,6 +29,7 @@ export default {
|
||||
retry: '再試行',
|
||||
reset: 'リセット',
|
||||
loadFailed: '読み込みに失敗しました',
|
||||
noData: 'データがありません',
|
||||
back: '戻る',
|
||||
copySuccess: 'クリップボードにコピーしました',
|
||||
copyFailed: 'コピーに失敗しました',
|
||||
|
||||
@@ -41,7 +41,8 @@ export default {
|
||||
'すべてのダウンロード記録をクリアしますか?この操作はダウンロード済みの音楽ファイルを削除しませんが、すべての記録をクリアします。',
|
||||
confirm: 'クリア確認',
|
||||
cancel: 'キャンセル',
|
||||
success: 'ダウンロード記録をクリアしました'
|
||||
success: 'ダウンロード記録をクリアしました',
|
||||
failed: 'ダウンロード記録のクリアに失敗しました'
|
||||
},
|
||||
message: {
|
||||
downloadComplete: '{filename}のダウンロードが完了しました',
|
||||
|
||||
@@ -12,6 +12,10 @@ export default {
|
||||
subscribe: '購読',
|
||||
subscribed: '購読中',
|
||||
unsubscribe: '購読解除',
|
||||
unsubscribed: '購読を解除しました',
|
||||
subscribeSuccess: '購読しました',
|
||||
unsubscribeFailed: '購読解除に失敗しました',
|
||||
subscribeFailed: '購読に失敗しました',
|
||||
radioDetail: 'ラジオ詳細',
|
||||
programList: 'エピソード一覧',
|
||||
playProgram: '再生',
|
||||
|
||||
@@ -195,6 +195,35 @@ export default {
|
||||
system: {
|
||||
cache: 'キャッシュ管理',
|
||||
cacheDesc: 'キャッシュをクリア',
|
||||
diskCache: 'ディスクキャッシュ',
|
||||
diskCacheDesc: '再生した音楽と歌詞をローカルディスクへ保存し、再生速度を向上します',
|
||||
cacheDirectory: 'キャッシュディレクトリ',
|
||||
cacheDirectoryDesc: '音楽・歌詞キャッシュの保存先を指定',
|
||||
selectDirectory: 'ディレクトリ選択',
|
||||
openDirectory: 'ディレクトリを開く',
|
||||
cacheMaxSize: 'キャッシュ上限',
|
||||
cacheMaxSizeDesc: '上限に達すると古いキャッシュを自動削除します',
|
||||
cleanupPolicy: 'クリーンアップポリシー',
|
||||
cleanupPolicyDesc: 'キャッシュ上限到達時の自動削除ルール',
|
||||
cleanupPolicyOptions: {
|
||||
lru: '最近未使用優先',
|
||||
fifo: '先入れ先出し'
|
||||
},
|
||||
cacheStatus: 'キャッシュ状態',
|
||||
cacheStatusDesc: '使用量 {used} / 上限 {limit}',
|
||||
cacheStatusDetail: '音楽 {musicCount} 曲、歌詞 {lyricCount} 曲',
|
||||
manageDiskCache: '手動キャッシュクリア',
|
||||
manageDiskCacheDesc: '種類ごとにキャッシュを削除',
|
||||
clearMusicCache: '音楽キャッシュを削除',
|
||||
clearLyricCache: '歌詞キャッシュを削除',
|
||||
clearAllCache: 'すべて削除',
|
||||
switchDirectoryMigrateTitle: '既存キャッシュを検出',
|
||||
switchDirectoryMigrateContent: '旧ディレクトリのキャッシュを新ディレクトリへ移行しますか?',
|
||||
switchDirectoryMigrateConfirm: '移行する',
|
||||
switchDirectoryDestroyTitle: '旧キャッシュを削除',
|
||||
switchDirectoryDestroyContent: '移行しない場合、旧ディレクトリのキャッシュを削除しますか?',
|
||||
switchDirectoryDestroyConfirm: '削除する',
|
||||
switchDirectoryKeepOld: '旧キャッシュを保持',
|
||||
cacheClearTitle: 'クリアするキャッシュタイプを選択してください:',
|
||||
cacheTypes: {
|
||||
history: {
|
||||
@@ -229,7 +258,15 @@ export default {
|
||||
restart: '再起動',
|
||||
restartDesc: 'アプリを再起動',
|
||||
messages: {
|
||||
clearSuccess: 'クリア成功。一部の設定は再起動後に有効になります'
|
||||
clearSuccess: 'クリア成功。一部の設定は再起動後に有効になります',
|
||||
diskCacheClearSuccess: 'ディスクキャッシュを削除しました',
|
||||
diskCacheClearFailed: 'ディスクキャッシュの削除に失敗しました',
|
||||
diskCacheStatsLoadFailed: 'キャッシュ状態の取得に失敗しました',
|
||||
switchDirectorySuccess: 'キャッシュディレクトリを切り替えました(旧キャッシュは保持)',
|
||||
switchDirectoryFailed: 'キャッシュディレクトリの切り替えに失敗しました',
|
||||
switchDirectoryMigrated: 'キャッシュディレクトリを切り替え、{count} 件を移行しました',
|
||||
switchDirectoryDestroyed:
|
||||
'キャッシュディレクトリを切り替え、旧キャッシュ {count} 件を削除しました'
|
||||
}
|
||||
},
|
||||
about: {
|
||||
|
||||
@@ -29,6 +29,7 @@ export default {
|
||||
retry: '다시 시도',
|
||||
reset: '재설정',
|
||||
loadFailed: '로드 실패',
|
||||
noData: '데이터 없음',
|
||||
back: '뒤로',
|
||||
copySuccess: '클립보드에 복사됨',
|
||||
copyFailed: '복사 실패',
|
||||
|
||||
@@ -41,7 +41,8 @@ export default {
|
||||
'모든 다운로드 기록을 지우시겠습니까? 이 작업은 다운로드된 음악 파일을 삭제하지 않지만 모든 기록을 지웁니다.',
|
||||
confirm: '지우기 확인',
|
||||
cancel: '취소',
|
||||
success: '다운로드 기록이 지워졌습니다'
|
||||
success: '다운로드 기록이 지워졌습니다',
|
||||
failed: '다운로드 기록 삭제에 실패했습니다'
|
||||
},
|
||||
message: {
|
||||
downloadComplete: '{filename} 다운로드 완료',
|
||||
|
||||
@@ -12,6 +12,10 @@ export default {
|
||||
subscribe: '구독',
|
||||
subscribed: '구독 중',
|
||||
unsubscribe: '구독 취소',
|
||||
unsubscribed: '구독이 취소되었습니다',
|
||||
subscribeSuccess: '구독되었습니다',
|
||||
unsubscribeFailed: '구독 취소에 실패했습니다',
|
||||
subscribeFailed: '구독에 실패했습니다',
|
||||
radioDetail: '라디오 상세',
|
||||
programList: '에피소드 목록',
|
||||
playProgram: '재생',
|
||||
|
||||
@@ -196,6 +196,36 @@ export default {
|
||||
system: {
|
||||
cache: '캐시 관리',
|
||||
cacheDesc: '캐시 지우기',
|
||||
diskCache: '디스크 캐시',
|
||||
diskCacheDesc: '재생한 음악과 가사를 로컬 디스크에 캐시하여 재생 속도를 높입니다',
|
||||
cacheDirectory: '캐시 디렉터리',
|
||||
cacheDirectoryDesc: '음악 및 가사 캐시 저장 경로를 사용자 지정',
|
||||
selectDirectory: '디렉터리 선택',
|
||||
openDirectory: '디렉터리 열기',
|
||||
cacheMaxSize: '캐시 용량 제한',
|
||||
cacheMaxSizeDesc: '용량 제한 도달 시 오래된 캐시를 자동 정리합니다',
|
||||
cleanupPolicy: '정리 정책',
|
||||
cleanupPolicyDesc: '캐시 용량 제한 도달 시 적용할 자동 정리 규칙',
|
||||
cleanupPolicyOptions: {
|
||||
lru: '최근 사용 안 함 우선',
|
||||
fifo: '선입선출'
|
||||
},
|
||||
cacheStatus: '캐시 상태',
|
||||
cacheStatusDesc: '사용량 {used} / 제한 {limit}',
|
||||
cacheStatusDetail: '음악 {musicCount}곡, 가사 {lyricCount}곡',
|
||||
manageDiskCache: '수동 디스크 캐시 정리',
|
||||
manageDiskCacheDesc: '캐시 유형별로 정리',
|
||||
clearMusicCache: '음악 캐시 정리',
|
||||
clearLyricCache: '가사 캐시 정리',
|
||||
clearAllCache: '전체 캐시 정리',
|
||||
switchDirectoryMigrateTitle: '기존 캐시가 감지되었습니다',
|
||||
switchDirectoryMigrateContent: '기존 캐시를 새 디렉터리로 마이그레이션할까요?',
|
||||
switchDirectoryMigrateConfirm: '마이그레이션',
|
||||
switchDirectoryDestroyTitle: '기존 캐시 삭제',
|
||||
switchDirectoryDestroyContent:
|
||||
'마이그레이션하지 않을 경우, 이전 디렉터리의 캐시 파일을 삭제할까요?',
|
||||
switchDirectoryDestroyConfirm: '삭제',
|
||||
switchDirectoryKeepOld: '기존 캐시 유지',
|
||||
cacheClearTitle: '지울 캐시 유형을 선택하세요:',
|
||||
cacheTypes: {
|
||||
history: {
|
||||
@@ -230,7 +260,14 @@ export default {
|
||||
restart: '재시작',
|
||||
restartDesc: '앱 재시작',
|
||||
messages: {
|
||||
clearSuccess: '지우기 성공, 일부 설정은 재시작 후 적용됩니다'
|
||||
clearSuccess: '지우기 성공, 일부 설정은 재시작 후 적용됩니다',
|
||||
diskCacheClearSuccess: '디스크 캐시를 정리했습니다',
|
||||
diskCacheClearFailed: '디스크 캐시 정리에 실패했습니다',
|
||||
diskCacheStatsLoadFailed: '캐시 상태를 불러오지 못했습니다',
|
||||
switchDirectorySuccess: '캐시 디렉터리가 변경되었습니다. 기존 캐시는 유지됩니다',
|
||||
switchDirectoryFailed: '캐시 디렉터리 변경에 실패했습니다',
|
||||
switchDirectoryMigrated: '캐시 디렉터리를 변경하고 {count}개 파일을 마이그레이션했습니다',
|
||||
switchDirectoryDestroyed: '캐시 디렉터리를 변경하고 기존 캐시 {count}개 파일을 삭제했습니다'
|
||||
}
|
||||
},
|
||||
about: {
|
||||
|
||||
@@ -29,6 +29,7 @@ export default {
|
||||
retry: '重试',
|
||||
reset: '重置',
|
||||
loadFailed: '加载失败',
|
||||
noData: '暂无数据',
|
||||
back: '返回',
|
||||
copySuccess: '已复制到剪贴板',
|
||||
copyFailed: '复制失败',
|
||||
|
||||
@@ -40,7 +40,8 @@ export default {
|
||||
message: '确定要清空所有下载记录吗?此操作不会删除已下载的音乐文件,但将清空所有记录。',
|
||||
confirm: '确定清空',
|
||||
cancel: '取消',
|
||||
success: '下载记录已清空'
|
||||
success: '下载记录已清空',
|
||||
failed: '清空下载记录失败'
|
||||
},
|
||||
message: {
|
||||
downloadComplete: '{filename} 下载完成',
|
||||
|
||||
@@ -12,6 +12,10 @@ export default {
|
||||
subscribe: '订阅',
|
||||
subscribed: '已订阅',
|
||||
unsubscribe: '取消订阅',
|
||||
unsubscribed: '已取消订阅',
|
||||
subscribeSuccess: '订阅成功',
|
||||
unsubscribeFailed: '取消订阅失败',
|
||||
subscribeFailed: '订阅失败',
|
||||
radioDetail: '电台详情',
|
||||
programList: '节目列表',
|
||||
playProgram: '播放节目',
|
||||
|
||||
@@ -193,6 +193,35 @@ export default {
|
||||
system: {
|
||||
cache: '缓存管理',
|
||||
cacheDesc: '清除缓存',
|
||||
diskCache: '磁盘缓存',
|
||||
diskCacheDesc: '将播放过的音乐与歌词缓存到本地磁盘,提升二次播放速度',
|
||||
cacheDirectory: '缓存目录',
|
||||
cacheDirectoryDesc: '自定义音乐与歌词缓存保存目录',
|
||||
selectDirectory: '选择目录',
|
||||
openDirectory: '打开目录',
|
||||
cacheMaxSize: '缓存上限',
|
||||
cacheMaxSizeDesc: '达到上限后将自动清理最旧缓存',
|
||||
cleanupPolicy: '清理策略',
|
||||
cleanupPolicyDesc: '达到缓存上限时的自动清理规则',
|
||||
cleanupPolicyOptions: {
|
||||
lru: '最近最少使用',
|
||||
fifo: '先进先出'
|
||||
},
|
||||
cacheStatus: '缓存状态',
|
||||
cacheStatusDesc: '已用 {used} / 上限 {limit}',
|
||||
cacheStatusDetail: '音乐 {musicCount} 首,歌词 {lyricCount} 首',
|
||||
manageDiskCache: '手动清理磁盘缓存',
|
||||
manageDiskCacheDesc: '按缓存类型进行清理',
|
||||
clearMusicCache: '清理音乐缓存',
|
||||
clearLyricCache: '清理歌词缓存',
|
||||
clearAllCache: '清理全部缓存',
|
||||
switchDirectoryMigrateTitle: '检测到已有缓存',
|
||||
switchDirectoryMigrateContent: '是否将旧目录缓存迁移到新目录?',
|
||||
switchDirectoryMigrateConfirm: '迁移',
|
||||
switchDirectoryDestroyTitle: '是否销毁旧缓存',
|
||||
switchDirectoryDestroyContent: '不迁移时,是否销毁旧目录缓存文件?',
|
||||
switchDirectoryDestroyConfirm: '销毁',
|
||||
switchDirectoryKeepOld: '保留旧缓存',
|
||||
cacheClearTitle: '请选择要清除的缓存类型:',
|
||||
cacheTypes: {
|
||||
history: {
|
||||
@@ -227,7 +256,14 @@ export default {
|
||||
restart: '重启',
|
||||
restartDesc: '重启应用',
|
||||
messages: {
|
||||
clearSuccess: '清除成功,部分设置在重启后生效'
|
||||
clearSuccess: '清除成功,部分设置在重启后生效',
|
||||
diskCacheClearSuccess: '磁盘缓存已清理',
|
||||
diskCacheClearFailed: '清理磁盘缓存失败',
|
||||
diskCacheStatsLoadFailed: '读取缓存状态失败',
|
||||
switchDirectorySuccess: '缓存目录已切换,旧缓存已保留',
|
||||
switchDirectoryFailed: '缓存目录切换失败',
|
||||
switchDirectoryMigrated: '缓存目录已切换,已迁移 {count} 个缓存文件',
|
||||
switchDirectoryDestroyed: '缓存目录已切换,已销毁 {count} 个旧缓存文件'
|
||||
}
|
||||
},
|
||||
about: {
|
||||
|
||||
@@ -29,6 +29,7 @@ export default {
|
||||
retry: '重試',
|
||||
reset: '重設',
|
||||
loadFailed: '載入失敗',
|
||||
noData: '暫無資料',
|
||||
back: '返回',
|
||||
copySuccess: '已複製到剪貼簿',
|
||||
copyFailed: '複製失敗',
|
||||
|
||||
@@ -40,7 +40,8 @@ export default {
|
||||
message: '確定要清空所有下載記錄嗎?此操作不會刪除已下載的音樂檔案,但將清空所有記錄。',
|
||||
confirm: '確定清空',
|
||||
cancel: '取消',
|
||||
success: '下載記錄已清空'
|
||||
success: '下載記錄已清空',
|
||||
failed: '清空下載記錄失敗'
|
||||
},
|
||||
message: {
|
||||
downloadComplete: '{filename} 下載完成',
|
||||
|
||||
@@ -12,6 +12,10 @@ export default {
|
||||
subscribe: '訂閱',
|
||||
subscribed: '已訂閱',
|
||||
unsubscribe: '取消訂閱',
|
||||
unsubscribed: '已取消訂閱',
|
||||
subscribeSuccess: '訂閱成功',
|
||||
unsubscribeFailed: '取消訂閱失敗',
|
||||
subscribeFailed: '訂閱失敗',
|
||||
radioDetail: '電台詳情',
|
||||
programList: '節目列表',
|
||||
playProgram: '播放節目',
|
||||
|
||||
@@ -25,7 +25,6 @@ export default {
|
||||
tokenSet: '已設定',
|
||||
tokenNotSet: '未設定',
|
||||
setToken: '設定Cookie',
|
||||
setCookie: '設定Cookie',
|
||||
modifyToken: '修改Cookie',
|
||||
clearToken: '清除Cookie',
|
||||
font: '字體設定',
|
||||
@@ -190,6 +189,35 @@ export default {
|
||||
system: {
|
||||
cache: '快取管理',
|
||||
cacheDesc: '清除快取',
|
||||
diskCache: '磁碟快取',
|
||||
diskCacheDesc: '將播放過的音樂與歌詞快取到本機磁碟,加速二次播放',
|
||||
cacheDirectory: '快取目錄',
|
||||
cacheDirectoryDesc: '自訂音樂與歌詞快取儲存位置',
|
||||
selectDirectory: '選擇目錄',
|
||||
openDirectory: '開啟目錄',
|
||||
cacheMaxSize: '快取上限',
|
||||
cacheMaxSizeDesc: '達到上限時會自動清理較舊快取',
|
||||
cleanupPolicy: '清理策略',
|
||||
cleanupPolicyDesc: '快取達到上限時的自動清理規則',
|
||||
cleanupPolicyOptions: {
|
||||
lru: '最近最少使用',
|
||||
fifo: '先進先出'
|
||||
},
|
||||
cacheStatus: '快取狀態',
|
||||
cacheStatusDesc: '已用 {used} / 上限 {limit}',
|
||||
cacheStatusDetail: '音樂 {musicCount} 首,歌詞 {lyricCount} 首',
|
||||
manageDiskCache: '手動清理磁碟快取',
|
||||
manageDiskCacheDesc: '依快取類型進行清理',
|
||||
clearMusicCache: '清理音樂快取',
|
||||
clearLyricCache: '清理歌詞快取',
|
||||
clearAllCache: '清理全部快取',
|
||||
switchDirectoryMigrateTitle: '偵測到既有快取',
|
||||
switchDirectoryMigrateContent: '是否將舊目錄快取搬移到新目錄?',
|
||||
switchDirectoryMigrateConfirm: '搬移',
|
||||
switchDirectoryDestroyTitle: '是否刪除舊快取',
|
||||
switchDirectoryDestroyContent: '不搬移時,是否刪除舊目錄的快取檔案?',
|
||||
switchDirectoryDestroyConfirm: '刪除',
|
||||
switchDirectoryKeepOld: '保留舊快取',
|
||||
cacheClearTitle: '請選擇要清除的快取類型:',
|
||||
cacheTypes: {
|
||||
history: {
|
||||
@@ -224,7 +252,14 @@ export default {
|
||||
restart: '重新啟動',
|
||||
restartDesc: '重新啟動應用程式',
|
||||
messages: {
|
||||
clearSuccess: '清除成功,部分設定在重啟後生效'
|
||||
clearSuccess: '清除成功,部分設定在重啟後生效',
|
||||
diskCacheClearSuccess: '磁碟快取已清理',
|
||||
diskCacheClearFailed: '清理磁碟快取失敗',
|
||||
diskCacheStatsLoadFailed: '讀取快取狀態失敗',
|
||||
switchDirectorySuccess: '快取目錄已切換,舊快取已保留',
|
||||
switchDirectoryFailed: '快取目錄切換失敗',
|
||||
switchDirectoryMigrated: '快取目錄已切換,已搬移 {count} 個快取檔案',
|
||||
switchDirectoryDestroyed: '快取目錄已切換,已刪除 {count} 個舊快取檔案'
|
||||
}
|
||||
},
|
||||
about: {
|
||||
|
||||
Reference in New Issue
Block a user