diff --git a/src/locales/en-US.ts b/src/locales/en-US.ts index 31643420..b59aef71 100644 --- a/src/locales/en-US.ts +++ b/src/locales/en-US.ts @@ -1052,7 +1052,7 @@ export default { wallpaperItems: { tmdb: 'TMDB Movie Posters', bing: 'Bing Daily Wallpaper', - bingDaily: 'Bing Daily Image', + mediaserver: 'Media Server', none: 'No Wallpaper', }, mb: 'MB', diff --git a/src/locales/zh-CN.ts b/src/locales/zh-CN.ts index 4041830c..c40ec210 100644 --- a/src/locales/zh-CN.ts +++ b/src/locales/zh-CN.ts @@ -1043,7 +1043,7 @@ export default { wallpaperItems: { tmdb: 'TMDB电影海报', bing: 'Bing每日壁纸', - bingDaily: 'Bing每日图片', + mediaserver: '媒体服务器', none: '无壁纸', }, mb: 'MB', diff --git a/src/locales/zh-TW.ts b/src/locales/zh-TW.ts index 4911fd99..6f7b76f5 100644 --- a/src/locales/zh-TW.ts +++ b/src/locales/zh-TW.ts @@ -1045,7 +1045,7 @@ export default { wallpaperItems: { tmdb: 'TMDB電影海報', bing: 'Bing每日壁紙', - bingDaily: 'Bing每日圖片', + mediaserver: '媒體服務器', none: '無壁紙', }, mb: 'MB', diff --git a/src/views/setting/AccountSettingSystem.vue b/src/views/setting/AccountSettingSystem.vue index fa4a0975..1f8b3bb9 100644 --- a/src/views/setting/AccountSettingSystem.vue +++ b/src/views/setting/AccountSettingSystem.vue @@ -250,8 +250,8 @@ async function copyValue(value: string) { const wallpaperItems = [ { title: t('setting.system.wallpaperItems.tmdb'), value: 'tmdb' }, { title: t('setting.system.wallpaperItems.bing'), value: 'bing' }, - { title: t('setting.system.wallpaperItems.bingDaily'), value: 'bing-daily' }, - { title: t('setting.system.wallpaperItems.none'), value: 'none' }, + { title: t('setting.system.wallpaperItems.mediaserver'), value: 'mediaserver' }, + { title: t('setting.system.wallpaperItems.none'), value: '' }, ] // 预设部分Github加速站 @@ -412,12 +412,7 @@ onDeactivated(() => { :label="t('setting.system.wallpaper')" :hint="t('setting.system.wallpaperHint')" persistent-hint - :items="[ - { title: t('setting.system.wallpaperItems.tmdb'), value: 'tmdb' }, - { title: t('setting.system.wallpaperItems.bing'), value: 'bing' }, - { title: t('setting.system.wallpaperItems.bingDaily'), value: 'bing-daily' }, - { title: t('setting.system.wallpaperItems.none'), value: 'none' }, - ]" + :items="wallpaperItems" />