mirror of
https://github.com/algerkong/AlgerMusicPlayer.git
synced 2026-05-18 03:17:29 +08:00
19 lines
486 B
TypeScript
19 lines
486 B
TypeScript
export default {
|
|
menu: {
|
|
play: 'Play',
|
|
playNext: 'Play Next',
|
|
download: 'Download',
|
|
addToPlaylist: 'Add to Playlist',
|
|
favorite: 'Like',
|
|
unfavorite: 'Unlike',
|
|
removeFromPlaylist: 'Remove from Playlist'
|
|
},
|
|
message: {
|
|
downloading: 'Downloading, please wait...',
|
|
downloadFailed: 'Download failed',
|
|
downloadQueued: 'Added to download queue',
|
|
addedToNextPlay: 'Added to play next',
|
|
getUrlFailed: 'Failed to get music download URL'
|
|
}
|
|
};
|