2025-02-19 01:01:43 +08:00
|
|
|
export default {
|
|
|
|
|
title: 'Download Manager',
|
|
|
|
|
localMusic: 'Local Music',
|
2025-04-10 00:26:58 +08:00
|
|
|
count: '{count} songs in total',
|
|
|
|
|
clearAll: 'Clear All',
|
2025-02-19 01:01:43 +08:00
|
|
|
tabs: {
|
|
|
|
|
downloading: 'Downloading',
|
|
|
|
|
downloaded: 'Downloaded'
|
|
|
|
|
},
|
|
|
|
|
empty: {
|
|
|
|
|
noTasks: 'No download tasks',
|
|
|
|
|
noDownloaded: 'No downloaded songs'
|
|
|
|
|
},
|
|
|
|
|
progress: {
|
|
|
|
|
total: 'Total Progress: {progress}%'
|
|
|
|
|
},
|
|
|
|
|
status: {
|
|
|
|
|
downloading: 'Downloading',
|
|
|
|
|
completed: 'Completed',
|
|
|
|
|
failed: 'Failed',
|
|
|
|
|
unknown: 'Unknown'
|
|
|
|
|
},
|
|
|
|
|
artist: {
|
|
|
|
|
unknown: 'Unknown Artist'
|
|
|
|
|
},
|
|
|
|
|
delete: {
|
|
|
|
|
title: 'Delete Confirmation',
|
|
|
|
|
message: 'Are you sure you want to delete "{filename}"? This action cannot be undone.',
|
|
|
|
|
confirm: 'Delete',
|
|
|
|
|
cancel: 'Cancel',
|
|
|
|
|
success: 'Successfully deleted',
|
2025-04-10 00:26:58 +08:00
|
|
|
failed: 'Failed to delete',
|
|
|
|
|
fileNotFound: 'File not found or moved, removed from records',
|
|
|
|
|
recordRemoved: 'Failed to delete file, but removed from records'
|
|
|
|
|
},
|
|
|
|
|
clear: {
|
|
|
|
|
title: 'Clear Download Records',
|
|
|
|
|
message:
|
|
|
|
|
'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'
|
2025-02-19 01:01:43 +08:00
|
|
|
},
|
|
|
|
|
message: {
|
|
|
|
|
downloadComplete: '{filename} download completed',
|
|
|
|
|
downloadFailed: '{filename} download failed: {error}'
|
|
|
|
|
}
|
|
|
|
|
};
|