From b9dde4ebf0d8da45d4c28b2d8faea77409e0f0f0 Mon Sep 17 00:00:00 2001 From: ssongliu <73214554+ssongliu@users.noreply.github.com> Date: Fri, 26 Apr 2024 16:13:12 +0800 Subject: [PATCH] =?UTF-8?q?style:=20=E4=BC=98=E5=8C=96=E6=A6=82=E8=A7=88?= =?UTF-8?q?=E9=A1=B5=20CPU=20=E6=98=BE=E7=A4=BA=20(#4721)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/api/interface/setting.ts | 1 + frontend/src/lang/modules/en.ts | 2 + frontend/src/lang/modules/tw.ts | 2 + frontend/src/lang/modules/zh.ts | 2 + frontend/src/views/home/status/index.vue | 57 +++++++++++++++++------- 5 files changed, 49 insertions(+), 15 deletions(-) diff --git a/frontend/src/api/interface/setting.ts b/frontend/src/api/interface/setting.ts index b59018801..677c8800d 100644 --- a/frontend/src/api/interface/setting.ts +++ b/frontend/src/api/interface/setting.ts @@ -140,6 +140,7 @@ export namespace Setting { upload: string; } export interface UpgradeInfo { + testVersion: string; newVersion: string; latestVersion: string; releaseNote: string; diff --git a/frontend/src/lang/modules/en.ts b/frontend/src/lang/modules/en.ts index 4a262bcdb..a47646532 100644 --- a/frontend/src/lang/modules/en.ts +++ b/frontend/src/lang/modules/en.ts @@ -58,6 +58,8 @@ const message = { fullscreen: 'Fullscreen', quitFullscreen: 'Quit Fullscreen', update: 'Edit', + showAll: 'Show All', + hideSome: 'Hide Some', }, search: { timeStart: 'Time start', diff --git a/frontend/src/lang/modules/tw.ts b/frontend/src/lang/modules/tw.ts index 7fcde3b8d..6e6987084 100644 --- a/frontend/src/lang/modules/tw.ts +++ b/frontend/src/lang/modules/tw.ts @@ -58,6 +58,8 @@ const message = { fullscreen: '全屏', quitFullscreen: '退出全屏', update: '編輯', + showAll: '顯示所有', + hideSome: '隱藏部分', }, search: { timeStart: '開始時間', diff --git a/frontend/src/lang/modules/zh.ts b/frontend/src/lang/modules/zh.ts index e1900f0be..d082f39f1 100644 --- a/frontend/src/lang/modules/zh.ts +++ b/frontend/src/lang/modules/zh.ts @@ -58,6 +58,8 @@ const message = { fullscreen: '全屏', quitFullscreen: '退出全屏', update: '编辑', + showAll: '显示所有', + hideSome: '隐藏部分', }, search: { timeStart: '开始时间', diff --git a/frontend/src/views/home/status/index.vue b/frontend/src/views/home/status/index.vue index 52a7a6bdd..bb131191b 100644 --- a/frontend/src/views/home/status/index.vue +++ b/frontend/src/views/home/status/index.vue @@ -1,12 +1,7 @@