* First pass at configuring localization * Add CI job for translations * Update CI job * Update default value * Update parser config * Update defaults again * try to fix the multiple parsing of a file * Update crowdlin config * Update configs * New Crowdin translations by GitHub Action (#3448) Co-authored-by: Crowdin Bot <support+bot@crowdin.com> * Point to updated translated files * Tooltip i18n * Run translation job when web components are updated * Commit updated translations * Translations update (#3453) * Update source file strings.json Updated translations * New translations strings.json (French) Updated translations * New translations strings.json (Spanish) Updated translations * New translations strings.json (German) Updated translations * New translations strings.json (English, United States) Updated translations * Commit updated translations * New Crowdin translations by GitHub Action (#3452) Co-authored-by: Owncast <owncast@owncast.online> * chore(deps): update to next config to address build errors * New Crowdin translations by GitHub Action (#3455) Co-authored-by: Crowdin Bot <support+bot@crowdin.com> * Translations update (#3456) * New translations strings.json (Arabic) Updated translations * New translations strings.json (German) Updated translations * New translations strings.json (Greek) Updated translations * New translations strings.json (Irish) Updated translations * New translations strings.json (Italian) Updated translations * New translations strings.json (Japanese) Updated translations * New translations strings.json (Korean) Updated translations * New translations strings.json (Dutch) Updated translations * New translations strings.json (Norwegian) Updated translations * New translations strings.json (Punjabi) Updated translations * New translations strings.json (Russian) Updated translations * New translations strings.json (Swedish) Updated translations * New translations strings.json (Chinese Traditional) Updated translations * New translations strings.json (Vietnamese) Updated translations * New translations strings.json (Bengali) Updated translations * New translations strings.json (Thai) Updated translations * New translations strings.json (Croatian) Updated translations * New translations strings.json (Hindi) Updated translations * New translations strings.json (Malay) Updated translations * New Crowdin translations by GitHub Action (#3457) * New translations strings.json (Arabic) Updated translations * New translations strings.json (German) Updated translations * New translations strings.json (Greek) Updated translations * New translations strings.json (Irish) Updated translations * New translations strings.json (Italian) Updated translations * New translations strings.json (Japanese) Updated translations * New translations strings.json (Korean) Updated translations * New translations strings.json (Dutch) Updated translations * New translations strings.json (Norwegian) Updated translations * New translations strings.json (Punjabi) Updated translations * New translations strings.json (Russian) Updated translations * New translations strings.json (Swedish) Updated translations * New translations strings.json (Chinese Traditional) Updated translations * New translations strings.json (Vietnamese) Updated translations * New translations strings.json (Bengali) Updated translations * New translations strings.json (Thai) Updated translations * New translations strings.json (Croatian) Updated translations * New translations strings.json (Hindi) Updated translations * New translations strings.json (Malay) Updated translations * New Crowdin translations by GitHub Action --------- Co-authored-by: Gabe Kangas <gabek@real-ity.com> Co-authored-by: Crowdin Bot <support+bot@crowdin.com> * Commit updated API documentation * Update translations job * New Crowdin translations by GitHub Action (#3698) Co-authored-by: Crowdin Bot <support+bot@crowdin.com> * Update Crowdin configuration file * Translations update (#3700) * New translations strings.json (French) Updated translations * New translations strings.json (Italian) Updated translations * Translations update (#3699) * New translations strings.json (French) Updated translations * New translations strings.json (Spanish) Updated translations * New translations strings.json (Italian) Updated translations * New translations strings.json (Japanese) Updated translations * New translations strings.json (Polish) Updated translations * New translations strings.json (Russian) Updated translations * New translations strings.json (Portuguese, Brazilian) Updated translations * Commit updated API documentation --------- Co-authored-by: Owncast <owncast@owncast.online> * New Crowdin translations by GitHub Action (#3701) * New translations strings.json (French) Updated translations * New translations strings.json (Spanish) Updated translations * New translations strings.json (Italian) Updated translations * New translations strings.json (Japanese) Updated translations * New translations strings.json (Polish) Updated translations * New translations strings.json (Russian) Updated translations * New translations strings.json (Portuguese, Brazilian) Updated translations * New Crowdin translations by GitHub Action --------- Co-authored-by: Gabe Kangas <gabek@real-ity.com> Co-authored-by: Crowdin Bot <support+bot@crowdin.com> * Draft: Mark strings for translation. (#3458) * Mark strings for translation. * Mark up strings for translation * fix(web): fix linter warnings --------- Co-authored-by: Le fractal <17422-fractal@users.noreply.framagit.org> Co-authored-by: Gabe Kangas <gabek@real-ity.com> * do not pull from cowdin via workflow * Commit updated translations * feat: add translations support to admin pages and components (#3977) * feat: add translations support to admin pages and components Added translations support admin main page and its components, help page, handware-info page. Added translations support for LogTable, NewsFeed and StreamHealthOverview components. * update package.json * fix rendering issue * Commit updated API documentation --------- Co-authored-by: Owncast <owncast@owncast.online> Co-authored-by: Gabe Kangas <gabek@real-ity.com> * Offline banner i18n formatting (#3997) * Fix "Last live ago" string formatting with i18n interpolation * Change some base translation jsons to use i18n interpolation * Linting fix * chore(js): ignore i18n pkgs in knip * fix(test): fix browser ui test * fix(js): remove unused var --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Crowdin Bot <support+bot@crowdin.com> Co-authored-by: Owncast <owncast@owncast.online> Co-authored-by: taintedcypher <119351153+taintedcypher@users.noreply.github.com> Co-authored-by: Le fractal <17422-fractal@users.noreply.framagit.org> Co-authored-by: Sufyaan Khateeb <81009832+SufyaanKhateeb@users.noreply.github.com> Co-authored-by: mahmed2000 <mahmad2000@protonmail.com>
270 lines
7.4 KiB
TypeScript
270 lines
7.4 KiB
TypeScript
import { Button, Card, Col, Divider, Result, Row } from 'antd';
|
|
import Meta from 'antd/lib/card/Meta';
|
|
import Title from 'antd/lib/typography/Title';
|
|
|
|
import React, { ReactElement } from 'react';
|
|
import dynamic from 'next/dynamic';
|
|
|
|
import { useTranslation } from 'next-export-i18n';
|
|
import { AdminLayout } from '../../components/layouts/AdminLayout';
|
|
|
|
// Lazy loaded components
|
|
|
|
const ApiTwoTone = dynamic(() => import('@ant-design/icons/ApiTwoTone'), {
|
|
ssr: false,
|
|
});
|
|
|
|
const BugTwoTone = dynamic(() => import('@ant-design/icons/BugTwoTone'), {
|
|
ssr: false,
|
|
});
|
|
|
|
const CameraTwoTone = dynamic(() => import('@ant-design/icons/CameraTwoTone'), {
|
|
ssr: false,
|
|
});
|
|
|
|
const DatabaseTwoTone = dynamic(() => import('@ant-design/icons/DatabaseTwoTone'), {
|
|
ssr: false,
|
|
});
|
|
|
|
const EditTwoTone = dynamic(() => import('@ant-design/icons/EditTwoTone'), {
|
|
ssr: false,
|
|
});
|
|
|
|
const Html5TwoTone = dynamic(() => import('@ant-design/icons/Html5TwoTone'), {
|
|
ssr: false,
|
|
});
|
|
|
|
const LinkOutlined = dynamic(() => import('@ant-design/icons/LinkOutlined'), {
|
|
ssr: false,
|
|
});
|
|
|
|
const QuestionCircleTwoTone = dynamic(() => import('@ant-design/icons/QuestionCircleTwoTone'), {
|
|
ssr: false,
|
|
});
|
|
|
|
const SettingTwoTone = dynamic(() => import('@ant-design/icons/SettingTwoTone'), {
|
|
ssr: false,
|
|
});
|
|
|
|
const SlidersTwoTone = dynamic(() => import('@ant-design/icons/SlidersTwoTone'), {
|
|
ssr: false,
|
|
});
|
|
|
|
export default function Help() {
|
|
const { t } = useTranslation();
|
|
|
|
const questions = [
|
|
{
|
|
icon: <SettingTwoTone style={{ fontSize: '24px' }} />,
|
|
title: t('I want to configure my owncast instance'),
|
|
content: (
|
|
<div>
|
|
<a
|
|
href="https://owncast.online/docs/configuration/?source=admin"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
<LinkOutlined /> {t('Learn more')}
|
|
</a>
|
|
</div>
|
|
),
|
|
},
|
|
{
|
|
icon: <CameraTwoTone style={{ fontSize: '24px' }} />,
|
|
title: t('Help configuring my broadcasting software'),
|
|
content: (
|
|
<div>
|
|
<a
|
|
href="https://owncast.online/docs/broadcasting/?source=admin"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
<LinkOutlined /> {t('Learn more')}
|
|
</a>
|
|
</div>
|
|
),
|
|
},
|
|
{
|
|
icon: <Html5TwoTone style={{ fontSize: '24px' }} />,
|
|
title: t('I want to embed my stream into another site'),
|
|
content: (
|
|
<div>
|
|
<a
|
|
href="https://owncast.online/docs/embed/?source=admin"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
<LinkOutlined /> {t('Learn more')}
|
|
</a>
|
|
</div>
|
|
),
|
|
},
|
|
{
|
|
icon: <EditTwoTone style={{ fontSize: '24px' }} />,
|
|
title: t('I want to customize my website'),
|
|
content: (
|
|
<div>
|
|
<a
|
|
href="https://owncast.online/docs/website/?source=admin"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
<LinkOutlined /> {t('Learn more')}
|
|
</a>
|
|
</div>
|
|
),
|
|
},
|
|
{
|
|
icon: <SlidersTwoTone style={{ fontSize: '24px' }} />,
|
|
title: t('I want to tweak my video output'),
|
|
content: (
|
|
<div>
|
|
<a
|
|
href="https://owncast.online/docs/encoding/?source=admin"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
<LinkOutlined /> {t('Learn more')}
|
|
</a>
|
|
</div>
|
|
),
|
|
},
|
|
{
|
|
icon: <DatabaseTwoTone style={{ fontSize: '24px' }} />,
|
|
title: t('I want to use an external storage provider'),
|
|
content: (
|
|
<div>
|
|
<a
|
|
href="https://owncast.online/docs/storage/?source=admin"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
<LinkOutlined /> {t('Learn more')}
|
|
</a>
|
|
</div>
|
|
),
|
|
},
|
|
];
|
|
|
|
const otherResources = [
|
|
{
|
|
icon: <BugTwoTone style={{ fontSize: '24px' }} />,
|
|
title: t('I found a bug'),
|
|
content: (
|
|
<div>
|
|
{t('If you found a bug, then please')}
|
|
<a
|
|
href="https://github.com/owncast/owncast/issues/new/choose"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
{' '}
|
|
{t('let us know')}
|
|
</a>
|
|
</div>
|
|
),
|
|
},
|
|
{
|
|
icon: <QuestionCircleTwoTone style={{ fontSize: '24px' }} />,
|
|
title: t('I have a general question'),
|
|
content: (
|
|
<div>
|
|
{t('Most general questions are answered in our')}
|
|
<a
|
|
href="https://owncast.online/faq/?source=admin"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
{' '}
|
|
{t('FAQ')}
|
|
</a>{' '}
|
|
{t('or exist in our')}{' '}
|
|
<a
|
|
href="https://github.com/owncast/owncast/discussions"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
{t('discussions')}
|
|
</a>
|
|
</div>
|
|
),
|
|
},
|
|
{
|
|
icon: <ApiTwoTone style={{ fontSize: '24px' }} />,
|
|
title: t('I want to build add-ons for Owncast'),
|
|
content: (
|
|
<div>
|
|
{t('You can build your own bots, overlays, tools and add-ons with our')}
|
|
<a
|
|
href="https://owncast.online/thirdparty?source=admin"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
>
|
|
{t('developer APIs.')}
|
|
</a>
|
|
</div>
|
|
),
|
|
},
|
|
];
|
|
|
|
return (
|
|
<div className="help-page">
|
|
<Title style={{ textAlign: 'center' }}>{t('How can we help you?')}</Title>
|
|
<Row gutter={[16, 16]} justify="space-around" align="middle">
|
|
<Col xs={24} lg={12} style={{ textAlign: 'center' }}>
|
|
<Result status="500" />
|
|
<Title level={2}>{t('Troubleshooting')}</Title>
|
|
<Button
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
href="https://owncast.online/docs/troubleshooting/?source=admin"
|
|
icon={<LinkOutlined />}
|
|
type="primary"
|
|
>
|
|
{t('Fix your problems')}
|
|
</Button>
|
|
</Col>
|
|
<Col xs={24} lg={12} style={{ textAlign: 'center' }}>
|
|
<Result status="404" />
|
|
<Title level={2}>{t('Documentation')}</Title>
|
|
<Button
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
href="https://owncast.online/docs?source=admin"
|
|
icon={<LinkOutlined />}
|
|
type="primary"
|
|
>
|
|
{t('Read the Docs')}
|
|
</Button>
|
|
</Col>
|
|
</Row>
|
|
<Divider />
|
|
<Title level={2}>{t('Common tasks')}</Title>
|
|
<Row gutter={[16, 16]}>
|
|
{questions.map(question => (
|
|
<Col xs={24} lg={12} key={question.title}>
|
|
<Card>
|
|
<Meta avatar={question.icon} title={question.title} description={question.content} />
|
|
</Card>
|
|
</Col>
|
|
))}
|
|
</Row>
|
|
<Divider />
|
|
<Title level={2}>{t('Other')}</Title>
|
|
<Row gutter={[16, 16]}>
|
|
{otherResources.map(question => (
|
|
<Col xs={24} lg={12} key={question.title}>
|
|
<Card>
|
|
<Meta avatar={question.icon} title={question.title} description={question.content} />
|
|
</Card>
|
|
</Col>
|
|
))}
|
|
</Row>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
Help.getLayout = function getLayout(page: ReactElement) {
|
|
return <AdminLayout page={page} />;
|
|
};
|