mirror of
https://github.com/algerkong/AlgerMusicPlayer.git
synced 2026-05-19 03:57:28 +08:00
37 lines
859 B
TypeScript
37 lines
859 B
TypeScript
|
|
export default {
|
||
|
|
title: 'Download Manager',
|
||
|
|
localMusic: 'Local Music',
|
||
|
|
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',
|
||
|
|
failed: 'Failed to delete'
|
||
|
|
},
|
||
|
|
message: {
|
||
|
|
downloadComplete: '{filename} download completed',
|
||
|
|
downloadFailed: '{filename} download failed: {error}'
|
||
|
|
}
|
||
|
|
};
|