added in welsh translations and spot check 2

This commit is contained in:
2021-10-25 16:29:36 +01:00
parent 7d0ccf481d
commit 6a1ee7a5d3
41 changed files with 647 additions and 363 deletions
+29 -35
View File
@@ -33,7 +33,8 @@ const Home = (props) => {
<div>
<Head>
<title>
{t("search:page-title")} - {t("common:service-name")}
{t("account:register-new-account-heading")} -{" "}
{t("common:service-name")}
</title>
</Head>
<div id="page_wrapper">
@@ -53,16 +54,26 @@ const Home = (props) => {
<div className="govuk-grid-column-two-thirds">
{registerFormComplete != true ||
accountCreatedComplete != true ? (
<h1>Create a new account</h1>
<h1>
{t(
"account:register-new-account-heading"
)}
</h1>
) : (
<h1>
{props.accountDetails.accCr !=
"false"
? props.accountDetails
.accCr == "exists"
? "Your account has not created"
: "Your account has been created"
: "Checking for account.."}
? t(
"account:register-new-account-status-not-created-label"
)
: t(
"account:register-new-account-status-created-label"
)
: t(
"account:register-new-account-checking-label"
)}
</h1>
)}
<RegisterForm
@@ -85,54 +96,37 @@ const Home = (props) => {
accountCreatedComplete != true ? (
<div className="govuk-grid-column-one-third">
<h2 className="govuk-heading-m">
Help
{t("account:help-heading")}
</h2>
<h3>
Companies or submissions by more
than one individual (groups)
{t(
"account:help-sub-heading-1"
)}
</h3>
<p className="govuk-body">
If you are submitting an appeal
or representation from a company
e.g. &quot;Acme Inc&quot; or a
group of people e.g.
&quot;Residents of 1-10 High
street&quot;, you should enter
the name of the company or group
in the Company/Group field. You
will be deemed as acting as
their representative.
{t("account:help-paragraph-1")}
</p>
<h3>
Enforcement appeals by
married/civil partnership
couples
{t(
"account:help-sub-heading-2"
)}
</h3>
<p className="govuk-body">
You should not enter a group
name. You need only enter your
partner&apos;s name on the
appeal form itself as an
additional appellant.
{t("account:help-paragraph-2")}
</p>
<h3>
Other appeals by married/civil
partnership couples
{t(
"account:help-sub-heading-3"
)}
</h3>
<p className="govuk-body">
For any other type of appeal,
for example a planning appeal,
you should enter a group name
when creating your account e.g.
&quot;Mr and Mrs Smith&quot;, if
that is the name on the
application.
{t("account:help-paragraph-3")}
</p>
</div>
) : (