Add error message paragraph

This commit is contained in:
abias 2023-05-22 12:57:52 -04:00
parent 1f5493325c
commit 51c0c98faa
1 changed files with 15 additions and 11 deletions

View File

@ -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>
); );