修改托盘图标顺序

pull/733/head
lyswhut 2021-12-07 17:48:01 +08:00
parent 5aa3502ef5
commit ddca70980e
4 changed files with 4 additions and 4 deletions

View File

@ -301,7 +301,7 @@
"setting__other_resource_cache_label": "The software has used cache size: ",
"setting__other_tray_theme": "Tray Icon Style",
"setting__other_tray_theme_black": "Black Color",
"setting__other_tray_theme_native": "Solid Color",
"setting__other_tray_theme_native": "White",
"setting__other_tray_theme_origin": "Primary Color",
"setting__play": "Play",
"setting__play_lyric_lxlrc": "Use Karaoke-style lyrics playback (if supported)",

View File

@ -301,7 +301,7 @@
"setting__other_resource_cache_label": "软件已使用缓存大小:",
"setting__other_tray_theme": "托盘图标样式",
"setting__other_tray_theme_black": "黑色",
"setting__other_tray_theme_native": "色",
"setting__other_tray_theme_native": "色",
"setting__other_tray_theme_origin": "原色",
"setting__play": "播放设置",
"setting__play_lyric_lxlrc": "使用卡拉OK式歌词播放如果支持",

View File

@ -301,7 +301,7 @@
"setting__other_resource_cache_label": "軟件已使用緩存大小:",
"setting__other_tray_theme": "托盤圖標樣式",
"setting__other_tray_theme_black": "黑色",
"setting__other_tray_theme_native": "色",
"setting__other_tray_theme_native": "色",
"setting__other_tray_theme_origin": "原色",
"setting__play": "播放設置",
"setting__play_lyric_lxlrc": "使用卡拉OK式歌詞播放如果支持",

View File

@ -33,8 +33,8 @@ export default {
const trayThemeList = computed(() => {
return [
{ id: 0, name: 'native', label: t('setting__other_tray_theme_native') },
{ id: 1, name: 'origin', label: t('setting__other_tray_theme_origin') },
{ id: 2, name: 'black', label: t('setting__other_tray_theme_black') },
{ id: 1, name: 'origin', label: t('setting__other_tray_theme_origin') },
]
})