Skip to content

Commit 173a5bd

Browse files
committed
fix: add internationalization for 'About' title in SupportPage
1 parent f6c9108 commit 173a5bd

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

frontend/components/SupportPage/SupportPage.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import { __ } from '@common/helpers/i18nwrap'
12
import { Col, Row, theme, Typography } from 'antd'
23
import { type ReactNode } from 'react'
34

@@ -33,7 +34,9 @@ export default function SupportPage({
3334
<Row gutter={20}>
3435
<Col md={15} sm={24}>
3536
<div className="mb-12">
36-
<Title level={5}>About {aboutPlugin.title}</Title>
37+
<Title level={5}>
38+
{__('About')} {aboutPlugin.title}
39+
</Title>
3740
<Paragraph style={{ color: token.colorTextSecondary }}>{aboutPlugin.description}</Paragraph>
3841
</div>
3942

0 commit comments

Comments
 (0)