From 0459a2d10851b376bc0bbc3c6cecc6a21294efa3 Mon Sep 17 00:00:00 2001 From: jxxghp Date: Tue, 30 Jun 2026 20:31:27 +0800 Subject: [PATCH] =?UTF-8?q?feat(subscribe):=20=E6=9B=B4=E6=96=B0=E4=B8=8B?= =?UTF-8?q?=E6=8B=89=E8=8F=9C=E5=8D=95=E9=A1=B9=E5=B9=B6=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E5=AA=92=E4=BD=93=E8=AF=A6=E6=83=85=E5=92=8C=E6=96=87=E4=BB=B6?= =?UTF-8?q?=E7=BB=9F=E8=AE=A1=E6=9C=AC=E5=9C=B0=E5=8C=96=E5=AD=97=E7=AC=A6?= =?UTF-8?q?=E4=B8=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/cards/SubscribeCard.vue | 32 +++++++++++++------------- src/locales/en-US.ts | 2 ++ src/locales/zh-CN.ts | 2 ++ 3 files changed, 20 insertions(+), 16 deletions(-) diff --git a/src/components/cards/SubscribeCard.vue b/src/components/cards/SubscribeCard.vue index 518cbe92..5ee5d081 100644 --- a/src/components/cards/SubscribeCard.vue +++ b/src/components/cards/SubscribeCard.vue @@ -290,22 +290,6 @@ const dropdownItems = computed(() => [ click: searchSubscribe, }, }, - { - title: t('common.details'), - value: 3, - props: { - prependIcon: 'mdi-information-outline', - click: viewMediaDetail, - }, - }, - { - title: t('common.files'), - value: 4, - props: { - prependIcon: 'mdi-file-document-outline', - click: viewSubscribeFiles, - }, - }, { title: subscribeState.value === 'S' ? t('common.enable') : t('common.pause'), value: 5, @@ -334,6 +318,22 @@ const dropdownItems = computed(() => [ }, show: props.media?.type === '电视剧', }, + { + title: t('subscribe.mediaDetail'), + value: 3, + props: { + prependIcon: 'mdi-information-outline', + click: viewMediaDetail, + }, + }, + { + title: t('subscribe.fileStatistics'), + value: 4, + props: { + prependIcon: 'mdi-file-document-outline', + click: viewSubscribeFiles, + }, + }, { title: t('common.unsubscribe'), value: 8, diff --git a/src/locales/en-US.ts b/src/locales/en-US.ts index 9718899e..00e506d4 100644 --- a/src/locales/en-US.ts +++ b/src/locales/en-US.ts @@ -1141,6 +1141,8 @@ export default { paused: 'Paused', cardStatePaused: 'Paused', cardStatePending: 'Pending', + mediaDetail: 'Media Details', + fileStatistics: 'File Statistics', sortTitle: 'Sort', sort: { custom: 'Custom', diff --git a/src/locales/zh-CN.ts b/src/locales/zh-CN.ts index f9edeb55..008cf44a 100644 --- a/src/locales/zh-CN.ts +++ b/src/locales/zh-CN.ts @@ -1134,6 +1134,8 @@ export default { paused: '暂停', cardStatePaused: '已暂停', cardStatePending: '待定中', + mediaDetail: '媒体详情', + fileStatistics: '文件统计', sortTitle: '排序', sort: { custom: '自定义',