mirror of
https://github.com/algerkong/AlgerMusicPlayer.git
synced 2026-05-17 18:47:29 +08:00
e355341596
集成 Pinia 状态管理
78 lines
1.5 KiB
TypeScript
78 lines
1.5 KiB
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',
|
|
songNum: 'Song Number: {num}',
|
|
playFailed: 'Play Failed, Play Next Song',
|
|
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',
|
|
noSongPlaying: 'No song playing',
|
|
eq: 'Equalizer',
|
|
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}'
|
|
},
|
|
eq: {
|
|
title: 'Equalizer',
|
|
reset: 'Reset',
|
|
on: 'On',
|
|
off: 'Off',
|
|
bass: 'Bass',
|
|
midrange: 'Midrange',
|
|
treble: 'Treble',
|
|
presets: {
|
|
flat: 'Flat',
|
|
pop: 'Pop',
|
|
rock: 'Rock',
|
|
classical: 'Classical',
|
|
jazz: 'Jazz',
|
|
electronic: 'Electronic',
|
|
hiphop: 'Hip-Hop',
|
|
rb: 'R&B',
|
|
metal: 'Metal',
|
|
vocal: 'Vocal',
|
|
dance: 'Dance',
|
|
acoustic: 'Acoustic',
|
|
custom: 'Custom'
|
|
}
|
|
}
|
|
};
|