feat: add new social media translations and links
This commit is contained in:
parent
408976e5dc
commit
28a27447a5
@ -336,6 +336,7 @@
|
|||||||
"about.updateNotAvailable": "You are using the latest version",
|
"about.updateNotAvailable": "You are using the latest version",
|
||||||
"about.website.button": "Website",
|
"about.website.button": "Website",
|
||||||
"about.website.title": "Official Website",
|
"about.website.title": "Official Website",
|
||||||
|
"about.social.title": "Social Accounts",
|
||||||
"advanced.auto_switch_to_topics": "Auto switch to topic",
|
"advanced.auto_switch_to_topics": "Auto switch to topic",
|
||||||
"advanced.title": "Advanced Settings",
|
"advanced.title": "Advanced Settings",
|
||||||
"assistant": "Default Assistant",
|
"assistant": "Default Assistant",
|
||||||
|
|||||||
@ -336,6 +336,7 @@
|
|||||||
"about.updateNotAvailable": "Вы используете последнюю версию",
|
"about.updateNotAvailable": "Вы используете последнюю версию",
|
||||||
"about.website.button": "Сайт",
|
"about.website.button": "Сайт",
|
||||||
"about.website.title": "Официальный сайт",
|
"about.website.title": "Официальный сайт",
|
||||||
|
"about.social.title": "Социальные аккаунты",
|
||||||
"advanced.auto_switch_to_topics": "Автоматически переключаться на топик",
|
"advanced.auto_switch_to_topics": "Автоматически переключаться на топик",
|
||||||
"advanced.title": "Расширенные настройки",
|
"advanced.title": "Расширенные настройки",
|
||||||
"assistant": "Ассистент по умолчанию",
|
"assistant": "Ассистент по умолчанию",
|
||||||
|
|||||||
@ -336,6 +336,7 @@
|
|||||||
"about.updateNotAvailable": "你的软件已是最新版本",
|
"about.updateNotAvailable": "你的软件已是最新版本",
|
||||||
"about.website.button": "查看",
|
"about.website.button": "查看",
|
||||||
"about.website.title": "官方网站",
|
"about.website.title": "官方网站",
|
||||||
|
"about.social.title": "社交账号",
|
||||||
"advanced.auto_switch_to_topics": "自动切换到话题",
|
"advanced.auto_switch_to_topics": "自动切换到话题",
|
||||||
"advanced.title": "高级设置",
|
"advanced.title": "高级设置",
|
||||||
"assistant": "默认助手",
|
"assistant": "默认助手",
|
||||||
|
|||||||
@ -336,6 +336,7 @@
|
|||||||
"about.updateNotAvailable": "您正在使用最新版本",
|
"about.updateNotAvailable": "您正在使用最新版本",
|
||||||
"about.website.button": "網站",
|
"about.website.button": "網站",
|
||||||
"about.website.title": "官方網站",
|
"about.website.title": "官方網站",
|
||||||
|
"about.social.title": "社交帳號",
|
||||||
"advanced.auto_switch_to_topics": "自動切換到話題",
|
"advanced.auto_switch_to_topics": "自動切換到話題",
|
||||||
"advanced.title": "進階設定",
|
"advanced.title": "進階設定",
|
||||||
"assistant": "預設助手",
|
"assistant": "預設助手",
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
import { GithubOutlined } from '@ant-design/icons'
|
import { GithubOutlined, TwitterOutlined } from '@ant-design/icons'
|
||||||
import { FileProtectOutlined, GlobalOutlined, MailOutlined, SoundOutlined } from '@ant-design/icons'
|
import { FileProtectOutlined, GlobalOutlined, MailOutlined, SendOutlined, SoundOutlined } from '@ant-design/icons'
|
||||||
import IndicatorLight from '@renderer/components/IndicatorLight'
|
import IndicatorLight from '@renderer/components/IndicatorLight'
|
||||||
import { HStack } from '@renderer/components/Layout'
|
import { HStack } from '@renderer/components/Layout'
|
||||||
import MinApp from '@renderer/components/MinApp'
|
import MinApp from '@renderer/components/MinApp'
|
||||||
@ -201,6 +201,24 @@ const AboutSettings: FC = () => {
|
|||||||
<Button onClick={mailto}>{t('settings.about.contact.button')}</Button>
|
<Button onClick={mailto}>{t('settings.about.contact.button')}</Button>
|
||||||
</SettingRow>
|
</SettingRow>
|
||||||
</SettingGroup>
|
</SettingGroup>
|
||||||
|
<SettingGroup theme={theme}>
|
||||||
|
<SettingTitle>{t('settings.about.social.title')}</SettingTitle>
|
||||||
|
<SettingDivider />
|
||||||
|
<SettingRow>
|
||||||
|
<SettingRowTitle>
|
||||||
|
<TwitterOutlined />X
|
||||||
|
</SettingRowTitle>
|
||||||
|
<Button onClick={() => onOpenWebsite('https://x.com/kangfenmao')}>@kangfenmao</Button>
|
||||||
|
</SettingRow>
|
||||||
|
<SettingDivider />
|
||||||
|
<SettingRow>
|
||||||
|
<SettingRowTitle>
|
||||||
|
<SendOutlined />
|
||||||
|
Telegram
|
||||||
|
</SettingRowTitle>
|
||||||
|
<Button onClick={() => onOpenWebsite('https://t.me/CherryStudioAI')}>@CherryStudioAI</Button>
|
||||||
|
</SettingRow>
|
||||||
|
</SettingGroup>
|
||||||
</SettingContainer>
|
</SettingContainer>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user