diff --git a/src/renderer/src/i18n/index.ts b/src/renderer/src/i18n/index.ts
index 26afaf8878..3a531dfce7 100644
--- a/src/renderer/src/i18n/index.ts
+++ b/src/renderer/src/i18n/index.ts
@@ -155,6 +155,8 @@ const resources = {
'about.feedback.title': '๐ Feedback',
'about.feedback.button': 'Feedback',
'about.contact.title': '๐ง Contact',
+ 'about.license.title': '๐ License',
+ 'about.license.button': 'License',
'about.contact.button': 'Email',
'proxy.title': 'Proxy Address',
'theme.title': 'Theme',
@@ -337,6 +339,8 @@ const resources = {
'about.feedback.title': '๐ ๆ่งๅ้ฆ',
'about.feedback.button': 'ๅ้ฆ',
'about.contact.title': '๐ง ้ฎไปถ่็ณป',
+ 'about.license.title': '๐ ่ฎธๅฏ่ฏ',
+ 'about.license.button': 'ๆฅ็',
'about.contact.button': '้ฎไปถ',
'proxy.title': 'ไปฃ็ๅฐๅ',
'theme.title': 'ไธป้ข',
diff --git a/src/renderer/src/pages/settings/AboutSettings.tsx b/src/renderer/src/pages/settings/AboutSettings.tsx
index e640f94ff8..2367bda210 100644
--- a/src/renderer/src/pages/settings/AboutSettings.tsx
+++ b/src/renderer/src/pages/settings/AboutSettings.tsx
@@ -39,6 +39,10 @@ const AboutSettings: FC = () => {
onOpenWebsite(url)
}
+ const showLicense = () => {
+ window.api.openWebsite('https://raw.githubusercontent.com/kangfenmao/cherry-studio/main/LICENSE')
+ }
+
useEffect(() => {
runAsyncFunction(async () => {
const appInfo = await window.api.getAppInfo()
@@ -131,6 +135,11 @@ const AboutSettings: FC = () => {
+
+ {t('settings.about.license.title')}
+
+
+
{t('settings.about.contact.title')}