mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-22 20:31:13 +00:00
Add error message paragraph
This commit is contained in:
parent
1f5493325c
commit
51c0c98faa
1 changed files with 15 additions and 11 deletions
|
@ -22,16 +22,14 @@ export class ErrorPage extends Component<any, any> {
|
||||||
? i18n.t("error_page_title")
|
? i18n.t("error_page_title")
|
||||||
: i18n.t("not_found_page_title")}
|
: i18n.t("not_found_page_title")}
|
||||||
</h1>
|
</h1>
|
||||||
<p className="p-4">
|
{errorPageData ? (
|
||||||
{errorPageData ? (
|
<T i18nKey="error_page_paragraph" className="p-4" parent="p">
|
||||||
<T i18nKey="error_page_paragraph" class="d-inline">
|
#<a href="https://lemmy.ml/c/lemmy_support">#</a>#
|
||||||
#<a href="https://lemmy.ml/c/lemmy_support">#</a>#
|
<a href="https://matrix.to/#/#lemmy-space:matrix.org">#</a>#
|
||||||
<a href="https://matrix.to/#/#lemmy-space:matrix.org">#</a>#
|
</T>
|
||||||
</T>
|
) : (
|
||||||
) : (
|
<p>{i18n.t("not_found_page_message")}</p>
|
||||||
i18n.t("not_found_page_message")
|
)}
|
||||||
)}
|
|
||||||
</p>
|
|
||||||
{!errorPageData && (
|
{!errorPageData && (
|
||||||
<Link to="/" replace>
|
<Link to="/" replace>
|
||||||
{i18n.t("not_found_return_home_button")}
|
{i18n.t("not_found_return_home_button")}
|
||||||
|
@ -57,7 +55,13 @@ export class ErrorPage extends Component<any, any> {
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
{errorPageData?.error && (
|
{errorPageData?.error && (
|
||||||
<strong className="d-block">Error Code: {errorPageData.error}</strong>
|
<T
|
||||||
|
i18nKey="error_code_message"
|
||||||
|
parent="p"
|
||||||
|
interpolation={{ error: errorPageData.error }}
|
||||||
|
>
|
||||||
|
#<strong className="text-danger">#</strong>#
|
||||||
|
</T>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue