Overhaul English (#2166)
* Overhaul English Let's go!!! Overhaul with reference to Simplified Chinese text and English user habits. * Clarify `Music API` and `Song Source` * fixpull/2170/head
parent
77ecd4be9b
commit
b28fb5c9b4
File diff suppressed because it is too large
Load Diff
|
@ -54,24 +54,24 @@ const themeList = [
|
||||||
|
|
||||||
const messages = {
|
const messages = {
|
||||||
'en-us': {
|
'en-us': {
|
||||||
collect: 'Collection',
|
collect: 'Love',
|
||||||
uncollect: 'Cancel collection',
|
uncollect: 'Unlove',
|
||||||
play: 'Play',
|
play: 'Play',
|
||||||
pause: 'Pause',
|
pause: 'Pause',
|
||||||
next: 'Next song',
|
next: 'Next Song',
|
||||||
prev: 'Previous song',
|
prev: 'Prev Song',
|
||||||
hide_win_main: 'Hide Main Window',
|
hide_win_main: 'Hide Main Window',
|
||||||
show_win_main: 'Show Main Window',
|
show_win_main: 'Show Main Window',
|
||||||
hide_win_lyric: 'Close desktop lyrics',
|
hide_win_lyric: 'Hide Lyric Window',
|
||||||
show_win_lyric: 'Open desktop lyrics',
|
show_win_lyric: 'Show Lyric Window',
|
||||||
lock_win_lyric: 'Lock desktop lyrics',
|
lock_win_lyric: 'Lock Lyric Window',
|
||||||
unlock_win_lyric: 'Unlock desktop lyrics',
|
unlock_win_lyric: 'Unlock Lyric Window',
|
||||||
top_win_lyric: 'Set top lyrics',
|
top_win_lyric: 'On-top Lyric Window',
|
||||||
untop_win_lyric: 'Cancel top lyrics',
|
untop_win_lyric: 'Un-top Lyric Window',
|
||||||
show_statusbar_lyric: 'Show statusbar lyric',
|
show_statusbar_lyric: 'Show Lyrics on Statusbar',
|
||||||
hide_statusbar_lyric: 'Hide statusbar lyric',
|
hide_statusbar_lyric: 'Hide Lyrics on Statusbar',
|
||||||
exit: 'Exit',
|
exit: 'Exit',
|
||||||
music_name: 'Name: ',
|
music_name: 'Title: ',
|
||||||
music_singer: 'Artist: ',
|
music_singer: 'Artist: ',
|
||||||
},
|
},
|
||||||
'zh-cn': {
|
'zh-cn': {
|
||||||
|
|
|
@ -12,11 +12,11 @@ export default () => {
|
||||||
appSetting['desktopLyric.enable']
|
appSetting['desktopLyric.enable']
|
||||||
? t('player__desktop_lyric_off')
|
? t('player__desktop_lyric_off')
|
||||||
: t('player__desktop_lyric_on')
|
: t('player__desktop_lyric_on')
|
||||||
}(${
|
}\n(${
|
||||||
appSetting['desktopLyric.isLock']
|
appSetting['desktopLyric.isLock']
|
||||||
? t('player__desktop_lyric_unlock')
|
? t('player__desktop_lyric_unlock')
|
||||||
: t('player__desktop_lyric_lock')
|
: t('player__desktop_lyric_lock')
|
||||||
})`
|
})`
|
||||||
})
|
})
|
||||||
|
|
||||||
const toggleDesktopLyric = () => {
|
const toggleDesktopLyric = () => {
|
||||||
|
|
Loading…
Reference in New Issue