From 0e1409ac9fa0fe95f42e9ab8a9f2b3798efe6751 Mon Sep 17 00:00:00 2001 From: prin Date: Tue, 22 Oct 2024 00:42:00 +0800 Subject: [PATCH] feat: update title text on UI --- src/core/app.tsx | 7 ++++--- src/i18n/locales/en/common.json | 2 +- src/i18n/locales/zh-Hans/common.json | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/src/core/app.tsx b/src/core/app.tsx index 231f61b..a10aa6f 100644 --- a/src/core/app.tsx +++ b/src/core/app.tsx @@ -1,7 +1,7 @@ import { Fragment } from 'preact'; import { useEffect } from 'preact/hooks'; import { useSignal } from '@preact/signals'; -import { IconX } from '@tabler/icons-preact'; +import { IconBrandTwitterFilled, IconX } from '@tabler/icons-preact'; import { GM_registerMenuCommand } from '$'; import { ErrorBoundary } from '@/components/error-boundary'; @@ -64,7 +64,8 @@ export function App() { > {/* Card title. */}
-

Web Exporter (α)

+ +

Web Exporter

@@ -76,7 +77,7 @@ export function App() {

- {t('Refresh or clear to start new captures.')} + {t('Browse around to capture more data.')}

{/* Extensions UI. */} diff --git a/src/i18n/locales/en/common.json b/src/i18n/locales/en/common.json index 7282498..20f9227 100644 --- a/src/i18n/locales/en/common.json +++ b/src/i18n/locales/en/common.json @@ -1,6 +1,6 @@ { "Open Control Panel": "Open Control Panel", - "Refresh or clear to start new captures.": "Refresh or clear to start new captures.", + "Browse around to capture more data.": "Browse around to capture more data.", "Settings": "Settings", "General": "General", "Theme": "Theme", diff --git a/src/i18n/locales/zh-Hans/common.json b/src/i18n/locales/zh-Hans/common.json index f037e67..1f77a2a 100644 --- a/src/i18n/locales/zh-Hans/common.json +++ b/src/i18n/locales/zh-Hans/common.json @@ -1,6 +1,6 @@ { "Open Control Panel": "打开控制面板", - "Refresh or clear to start new captures.": "刷新页面或清除数据以开始新的捕获。", + "Browse around to capture more data.": "浏览页面以捕获更多数据。", "Settings": "设置", "General": "通用", "Theme": "主题",