mirror of
https://github.com/algerkong/AlgerMusicPlayer.git
synced 2026-05-18 19:47:29 +08:00
50 lines
955 B
TypeScript
50 lines
955 B
TypeScript
|
|
export default {
|
||
|
|
nowPlaying: 'Now Playing',
|
||
|
|
playlist: 'Playlist',
|
||
|
|
lyrics: 'Lyrics',
|
||
|
|
previous: 'Previous',
|
||
|
|
play: 'Play',
|
||
|
|
pause: 'Pause',
|
||
|
|
next: 'Next',
|
||
|
|
volumeUp: 'Volume Up',
|
||
|
|
volumeDown: 'Volume Down',
|
||
|
|
mute: 'Mute',
|
||
|
|
unmute: 'Unmute',
|
||
|
|
playMode: {
|
||
|
|
sequence: 'Sequence',
|
||
|
|
loop: 'Loop',
|
||
|
|
random: 'Random'
|
||
|
|
},
|
||
|
|
fullscreen: {
|
||
|
|
enter: 'Enter Fullscreen',
|
||
|
|
exit: 'Exit Fullscreen'
|
||
|
|
},
|
||
|
|
close: 'Close',
|
||
|
|
modeHint: {
|
||
|
|
single: 'Single',
|
||
|
|
list: 'Next'
|
||
|
|
},
|
||
|
|
lrc: {
|
||
|
|
noLrc: 'No lyrics, please enjoy'
|
||
|
|
},
|
||
|
|
playBar: {
|
||
|
|
expand: 'Expand Lyrics',
|
||
|
|
collapse: 'Collapse Lyrics',
|
||
|
|
like: 'Like',
|
||
|
|
lyric: 'Lyric',
|
||
|
|
playList: 'Play List',
|
||
|
|
playMode: {
|
||
|
|
sequence: 'Sequence',
|
||
|
|
loop: 'Loop',
|
||
|
|
random: 'Random'
|
||
|
|
},
|
||
|
|
play: 'Play',
|
||
|
|
pause: 'Pause',
|
||
|
|
prev: 'Previous',
|
||
|
|
next: 'Next',
|
||
|
|
volume: 'Volume',
|
||
|
|
favorite: 'Favorite {name}',
|
||
|
|
unFavorite: 'Unfavorite {name}'
|
||
|
|
}
|
||
|
|
};
|