diff --git a/FAQ_EN.md b/FAQ_EN.md index 12785db..49c5491 100644 --- a/FAQ_EN.md +++ b/FAQ_EN.md @@ -4,7 +4,7 @@ This FAQ has been modified from PicGo's FAQ, and thanks to the author Molunerfin ## Common Questions -> Please refer to [user manual](https://piclist.cn) for general configuration issues. +> Please refer to [user manual](https://piclist.cn/en) for general configuration issues. ## 1. What is the relationship between PicList and PicGo? diff --git a/src/renderer/pages/PicGoSetting.vue b/src/renderer/pages/PicGoSetting.vue index 30258a4..cc40ffa 100644 --- a/src/renderer/pages/PicGoSetting.vue +++ b/src/renderer/pages/PicGoSetting.vue @@ -1735,7 +1735,7 @@ import pkg from 'root/package.json' // 事件常量 import { PICGO_OPEN_FILE, PICGO_OPEN_DIRECTORY, OPEN_URL, GET_PICBEDS, HIDE_DOCK } from '#/events/constants' -import { IRPCActionType, ISartMode } from '~/universal/types/enum' +import { II18nLanguage, IRPCActionType, ISartMode } from '~/universal/types/enum' // Electron 相关 import { @@ -2704,8 +2704,10 @@ function handleManualPageOpenChange (val: string) { }) } -function goConfigPage () { - sendToMain(OPEN_URL, 'https://piclist.cn/configure.html') +async function goConfigPage () { + const lang = await getConfig(configPaths.settings.language) || II18nLanguage.ZH_CN + const url = lang === II18nLanguage.ZH_CN ? 'https://piclist.cn/configure.html' : 'https://piclist.cn/en/configure.html' + sendToMain(OPEN_URL, url) } function goShortCutPage () { diff --git a/src/renderer/pages/picbeds/index.vue b/src/renderer/pages/picbeds/index.vue index 7583695..4365560 100644 --- a/src/renderer/pages/picbeds/index.vue +++ b/src/renderer/pages/picbeds/index.vue @@ -97,7 +97,7 @@