Merged PR 1112: copy amends as per workshop

Related work items: #10705, #10707, #10708, #10709, #10710, #10711, #10712, #10713, #10714, #10715
This commit is contained in:
Robert Bond
2024-03-27 19:54:00 +00:00
60 changed files with 579 additions and 918 deletions
+32 -5
View File
@@ -243,6 +243,7 @@ export function MultiLinefield(props) {
parentFieldShowOnValue,
validation,
maxFieldLength,
hint,
} = props;
const required = (value) => (value ? undefined : "Is required");
@@ -258,6 +259,7 @@ export function MultiLinefield(props) {
showIfHasParentShowValue;
//console.log(showIfHasParentShowValue, formProps[form].values[parentField]);
let { t } = useTranslation();
return (
<>
@@ -272,6 +274,9 @@ export function MultiLinefield(props) {
id={props.name + "-hint"}
className="govuk-hint govuk-!-font-size-14"
>
{props.hasOwnProperty("hint") &&
props.hint != false &&
t(props.hint)}{" "}
Do not include personal or financial information.
</div>
<Field
@@ -296,6 +301,9 @@ export function MultiLinefield(props) {
id={props.name + "-hint"}
className="govuk-hint govuk-!-font-size-14"
>
{props.hasOwnProperty("hint") &&
props.hint != false &&
t(props.hint)}{" "}
Do not include personal or financial information.
</div>
@@ -394,7 +402,7 @@ export function RichMultiLinefield(props) {
showIfHasParentShowValue;
//console.log(showIfHasParentShowValue, formProps[form].values[parentField]);
let { t } = useTranslation();
return (
<>
{parentField != false ? (
@@ -407,6 +415,9 @@ export function RichMultiLinefield(props) {
id={props.name + "-hint"}
className="govuk-hint govuk-!-font-size-14"
>
{props.hasOwnProperty("hint") &&
props.hint != false &&
t(props.hint)}{" "}
Do not include personal or financial information.
</div>
<Field
@@ -431,6 +442,9 @@ export function RichMultiLinefield(props) {
id={props.name + "-hint"}
className="govuk-hint govuk-!-font-size-14"
>
{props.hasOwnProperty("hint") &&
props.hint != false &&
t(props.hint)}{" "}
Do not include personal or financial information.
</div>
@@ -1194,19 +1208,28 @@ const RenderPickList = ({
};
export function PickList(props) {
const { name, label, datafieldname } = props;
const { name, label, datafieldname, hint } = props;
let { t } = useTranslation();
return (
<div className="govuk-form-group">
<label className="govuk-label govuk-body-m" htmlFor={props.name}>
{FieldsTranslations(label)}
</label>
<div
id={props.name + "-hint"}
className="govuk-hint govuk-!-font-size-14"
>
{props.hasOwnProperty("hint") &&
props.hint != false &&
t(props.hint)}{" "}
</div>
<Field
name={props.name}
label={props.name}
component={RenderPickList}
datafieldname={datafieldname}
picklistData={props.picklistData}
hint={props.hint}
/>
</div>
);
@@ -1389,8 +1412,10 @@ export const FieldsTranslations = (label) => {
let labelTrans =
router.locale == "cy"
? jsonpath("$..[?(@.value=='" + label + "')].value_cy", formObj)
? jsonpath('$..[?(@.value=="' + label + '")].value_cy', formObj)
: label;
console.log(label, labelTrans);
return labelTrans;
};
@@ -1413,7 +1438,9 @@ const PickListTranslations = (optionValue) => {
export function FileUploadField(props) {
return (
<>
<h2 className="govuk-heading-s">{props.label} </h2>
<h2 className="govuk-heading-s">
{FieldsTranslations(props.label)}{" "}
</h2>
<Field
name={props.name}
id={props.name}
+1 -1
View File
@@ -68,7 +68,7 @@ let BuildCheckRow = (props) => {
let labelTrans =
router.locale == "cy"
? jsonpath("$..[?(@.value=='" + label + "')].value_cy", formObj)
? jsonpath('$..[?(@.value=="' + label + '")].value_cy', formObj)
: label;
return labelTrans;
};
+76 -7
View File
@@ -10,6 +10,8 @@ import {
setCurrentSection,
setFormComplete,
} from "../../store/appealType/action";
import fieldLookup from "../../data/crmfieldlookuptranslations.json";
import { JSONPath as jsonpath } from "jsonpath-plus";
import {
getFormCollectionByID,
@@ -74,7 +76,7 @@ let BuildCheckSection = (props) => {
let buildAppealFilesArray = [];
//console.log("attached docs: - ", buildAppealFilesArray);
let filesUplaodObj = Object.keys(props.props.form.appealForm.values)
let filesUploadObj = Object.keys(props.props.form.appealForm.values)
.filter(function (k) {
return k.indexOf("pinswg_fileUpload") == 0;
})
@@ -83,12 +85,12 @@ let BuildCheckSection = (props) => {
return newData;
}, {});
for (let key in filesUplaodObj) {
for (let j in filesUplaodObj[key]) {
typeof filesUplaodObj[key][j].name != "undefined" &&
for (let key in filesUploadObj) {
for (let j in filesUploadObj[key]) {
typeof filesUploadObj[key][j].name != "undefined" &&
buildAppealFilesArray.push({
"name": filesUplaodObj[key][j].name,
"size": filesUplaodObj[key][j].size,
"name": filesUploadObj[key][j].name,
"size": filesUploadObj[key][j].size,
});
}
}
@@ -100,6 +102,22 @@ let BuildCheckSection = (props) => {
"casefolderID": props.appealType.caseReference.ticketnumber,
});
const [confirmSections, setConfirmSections] = useState(false);
const FieldsTranslations = (label) => {
const router = useRouter();
const { locale } = router;
const { appealtypes } = router.query;
let formObj = jsonpath("$['" + appealtypes + "']", fieldLookup);
let labelTrans =
router.locale == "cy"
? jsonpath('$..[?(@.value=="' + label + '")].value_cy', formObj)
: label;
return labelTrans;
};
return (
<div className="govuk-grid-row" key={1222}>
<div className="govuk-grid-column-full">
@@ -111,7 +129,7 @@ let BuildCheckSection = (props) => {
{Object.keys(titles).map((key) => (
<div key={key}>
<h2 className="govuk-heading-m govuk-!-margin-top-9">
{titles[key].value}
{FieldsTranslations(titles[key].value)}
</h2>
<BuildCheckRow
@@ -180,8 +198,59 @@ let BuildCheckSection = (props) => {
</div>
</dl>
</div>
<div className="govuk-form-group ">
<fieldset className="govuk-fieldset">
<div className="govuk-checkboxes govuk-checkboxes--small">
<div className="govuk-checkboxes__item">
<input
name="pinswg_checkconfirmation"
id="pinswg_checkconfirmation"
type="checkbox"
className="govuk-checkboxes__input"
value=""
onChange={(e) => {
setConfirmSections(!confirmSections);
}}
/>
<label
className="govuk-label govuk-checkboxes__label"
htmlFor="pinswg_checkconfirmation"
>
{t(
"newappeal:new-appeal-check-confirm-label"
)}
</label>
</div>
</div>
</fieldset>
<div>
<p className="govuk-body">
{t(
"newappeal:new-appeal-check-confirm-paragraph-one"
)}
</p>
</div>
<div>
<p className="govuk-body">
{t(
"newappeal:new-appeal-check-confirm-paragraph-two"
)}{" "}
<Link
href={t(
"newappeal:new-appeal-check-confirm-paragraph-two-link"
)}
>
{t(
"newappeal:new-appeal-check-confirm-paragraph-two-link"
)}
</Link>
</p>
</div>
</div>
<div className="govuk-button-group">
<a
disabled={confirmSections ? false : true}
className="govuk-button"
data-module="govuk-button"
onClick={() => {
+3
View File
@@ -57,6 +57,7 @@ export default function BuildField(props) {
datafieldname={props.datafieldname}
picklistData={props.picklistData}
validation={props.validation}
hint={props.hint}
/>
);
break;
@@ -146,6 +147,7 @@ export default function BuildField(props) {
parentFieldShowOnValue={props.parentFieldShowOnValue}
validation={props.validation}
maxFieldLength={props.maxFieldLength}
hint={props.hint}
/>
);
break;
@@ -160,6 +162,7 @@ export default function BuildField(props) {
parentFieldShowOnValue={props.parentFieldShowOnValue}
validation={props.validation}
maxFieldLength={props.maxFieldLength}
hint={props.hint}
/>
);
break;
+8 -6
View File
@@ -104,12 +104,14 @@ export default function BuildRow(props) {
dateEnd = !_.isEmpty(dateEnd) && dateEnd[0].value;
const isRequiredField = jsonpath(
"$..value[?(@.LogicalName=='" +
datafieldname[0].value +
"')]",
mandatoryFieldsData
);
// const isRequiredField = jsonpath(
// "$..value[?(@.LogicalName=='" +
// datafieldname[0].value +
// "')]",
// mandatoryFieldsData
// );
console.log("build row datafieldname[0]", datafieldname[0]);
if (datafieldname[0].value == "pinswg_fileUpload") {
return (
+12 -12
View File
@@ -141,7 +141,7 @@ let BuildSection = (props) => {
let buildAppealFilesArray = [];
console.log("attached docs: - ", buildAppealFilesArray);
let filesUplaodObj = Object.keys(values)
let filesUploadObj = Object.keys(values)
.filter(function (k) {
return k.indexOf("pinswg_fileUpload") == 0;
})
@@ -150,13 +150,13 @@ let BuildSection = (props) => {
return newData;
}, {});
console.log(filesUplaodObj);
console.log(filesUploadObj);
for (let key in filesUplaodObj) {
for (let j in filesUplaodObj[key]) {
for (let key in filesUploadObj) {
for (let j in filesUploadObj[key]) {
buildAppealFilesArray.push({
"name": filesUplaodObj[key][j].name,
"size": filesUplaodObj[key][j].size,
"name": filesUploadObj[key][j].name,
"size": filesUploadObj[key][j].size,
});
}
}
@@ -274,7 +274,7 @@ let BuildSection = (props) => {
//if (currentSection == sectionCount) {
let valuesObj = values || {};
let buildAppealFilesArray = [];
let filesUplaodObj = Object.keys(values)
let filesUploadObj = Object.keys(values)
.filter(function (k) {
return k.indexOf("pinswg_fileUpload") == 0;
})
@@ -283,13 +283,13 @@ let BuildSection = (props) => {
return newData;
}, {});
console.log(filesUplaodObj);
console.log(filesUploadObj);
for (let key in filesUplaodObj) {
for (let j in filesUplaodObj[key]) {
for (let key in filesUploadObj) {
for (let j in filesUploadObj[key]) {
buildAppealFilesArray.push({
"name": filesUplaodObj[key][j].name,
"size": filesUplaodObj[key][j].size,
"name": filesUploadObj[key][j].name,
"size": filesUploadObj[key][j].size,
});
}
}
+19 -9
View File
@@ -122,17 +122,27 @@ let CompleteAppeal = (props) => {
<h2 className="govuk-heading-m">What happens next</h2>
<p className="govuk-body">
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Morbi a metus non quam mollis egestas. Integer ac leo
cursus, laoreet nulla sed, tempus tellus. Mauris condimentum
erat arcu.
When we receive your appeal form, we will write to you
letting you know if your appeal is valid, who is dealing
with it and what happens next.
</p>
<p className="govuk-body">
Sed imperdiet dignissim ipsum. Orci varius natoque penatibus
et magnis dis parturient montes, nascetur ridiculus mus. In
id leo in turpis aliquam venenatis ut non erat. Ut est arcu,
luctus sit amet pretium sed, iaculis non purus. Etiam dictum
tortor commodo luctus rhoncus.
Any enquiries regarding this document/publication should be
sent to us at the address above or e-mail:
<Link href="mailto:PEDW.Casework@gov.wales">
PEDW.Casework@gov.wales
</Link>{" "}
/{" "}
<Link href="mailto:PEDW.GwaithAchos@llyw.cymru">
PEDW.GwaithAchos@llyw.cymru
</Link>
</p>
<p className="govuk-body">
Please note you can check for updates on our current service
at:
<Link href="https://www.gov.wales/planning-and-environment-decisions-wales-pedw-service-update">
https://www.gov.wales/planning-and-environment-decisions-wales-pedw-service-update
</Link>
</p>
<p className="govuk-body">
+1 -6
View File
@@ -368,12 +368,7 @@ export const getTempCaseRef = () => {
const randomGUID = uuidv4();
return (
"TMP-" +
randomString(5).toUpperCase() +
"-" +
randomString(6).toUpperCase()
);
return "TMP-" + randomString(5).toUpperCase();
};
export const getThumbnailIconByExtension = (blobName) => {
+144 -72
View File
@@ -140,7 +140,7 @@
},
{
"value": "Non-Validation",
"value_cy": "Barnun Annilys",
"value_cy": "Barnu'n Annilys",
"stringmapid": "c956f05c-7f90-eb11-aac2-00224800be9c",
"attributevalue": 846040024
},
@@ -228,8 +228,8 @@
"value_cy": "Cyfeiriad y Dref Tref"
},
{
"value": "Site Viewable from Road",
"value_cy": "Gellir gweld y safle o'r ffordd"
"value": "Could the Inspector see the relevant parts of the appeal site sufficiently to judge the proposal from public land?",
"value_cy": "A allai'r Arolygydd weld y rhannau perthnasol o safle'r apęl yn ddigonol i farnu'r cynnig o dir cyhoeddus?"
},
{
"value": "Site Within a Green Belt",
@@ -343,8 +343,8 @@
"value_cy": "Cyfeiriad y Dref Tref"
},
{
"value": "Site Viewable from Road",
"value_cy": "Gellir gweld y safle o'r ffordd"
"value": "Could the Inspector see the relevant parts of the appeal site sufficiently to judge the proposal from public land?",
"value_cy": "A allai'r Arolygydd weld y rhannau perthnasol o safle'r apęl yn ddigonol i farnu'r cynnig o dir cyhoeddus?"
},
{
"value": "Site Within Green Belt",
@@ -458,8 +458,8 @@
"value_cy": "Cyfeiriad y Dref Tref"
},
{
"value": "Site Viewable from Road",
"value_cy": "Gellir gweld y safle o'r ffordd"
"value": "Could the Inspector see the relevant parts of the appeal site sufficiently to judge the proposal from public land?",
"value_cy": "A allai'r Arolygydd weld y rhannau perthnasol o safle'r apęl yn ddigonol i farnu'r cynnig o dir cyhoeddus?"
},
{
"value": "Site Within Green Belt",
@@ -557,8 +557,8 @@
"value_cy": "Cyfeiriad y Dref Tref"
},
{
"value": "Site Viewable from Road",
"value_cy": "Gellir gweld y safle o'r ffordd"
"value": "Could the Inspector see the relevant parts of the appeal site sufficiently to judge the proposal from public land?",
"value_cy": "A allai'r Arolygydd weld y rhannau perthnasol o safle'r apęl yn ddigonol i farnu'r cynnig o dir cyhoeddus?"
},
{
"value": "Site Within Green Belt",
@@ -672,8 +672,8 @@
"value_cy": "Cyfeiriad y Dref Tref"
},
{
"value": "Site Viewable from Road",
"value_cy": "Gellir gweld y safle o'r ffordd"
"value": "Could the Inspector see the relevant parts of the appeal site sufficiently to judge the proposal from public land?",
"value_cy": "A allai'r Arolygydd weld y rhannau perthnasol o safle'r apęl yn ddigonol i farnu'r cynnig o dir cyhoeddus?"
},
{
"value": "Site Within SSSI",
@@ -873,8 +873,8 @@
"value_cy": "Cyfeiriad y Dref Tref"
},
{
"value": "Site Viewable from Road",
"value_cy": "Gellir gweld y safle o'r ffordd"
"value": "Could the Inspector see the relevant parts of the appeal site sufficiently to judge the proposal from public land?",
"value_cy": "A allai'r Arolygydd weld y rhannau perthnasol o safle'r apęl yn ddigonol i farnu'r cynnig o dir cyhoeddus?"
},
{
"value": "Site Within Green Belt",
@@ -984,8 +984,8 @@
"value_cy": "Cyfeiriad y Dref Tref"
},
{
"value": "Site Viewable from Road",
"value_cy": "Gellir gweld y safle o'r ffordd"
"value": "Could the Inspector see the relevant parts of the appeal site sufficiently to judge the proposal from public land?",
"value_cy": "A allai'r Arolygydd weld y rhannau perthnasol o safle'r apęl yn ddigonol i farnu'r cynnig o dir cyhoeddus?"
},
{
"value": "Site Within Green Belt",
@@ -1103,8 +1103,8 @@
"value_cy": "Cyfeiriad y Dref Tref"
},
{
"value": "Site Viewable from Road",
"value_cy": "Gellir gweld y safle o'r ffordd"
"value": "Could the Inspector see the relevant parts of the appeal site sufficiently to judge the proposal from public land?",
"value_cy": "A allai'r Arolygydd weld y rhannau perthnasol o safle'r apęl yn ddigonol i farnu'r cynnig o dir cyhoeddus?"
},
{
"value": "Site Within a Green Belt",
@@ -1293,8 +1293,8 @@
"value_cy": "Cyfeiriad y Dref Tref"
},
{
"value": "Site Viewable from Road",
"value_cy": "Gellir gweld y safle o'r ffordd"
"value": "Could the Inspector see the relevant parts of the appeal site sufficiently to judge the proposal from public land?",
"value_cy": "A allai'r Arolygydd weld y rhannau perthnasol o safle'r apęl yn ddigonol i farnu'r cynnig o dir cyhoeddus?"
},
{
"value": "Site Within Green Belt",
@@ -1400,8 +1400,8 @@
"value_cy": "Cyfeiriad y Dref Tref"
},
{
"value": "Site Viewable from Road",
"value_cy": "Gellir gweld y safle o'r ffordd"
"value": "Could the Inspector see the relevant parts of the appeal site sufficiently to judge the proposal from public land?",
"value_cy": "A allai'r Arolygydd weld y rhannau perthnasol o safle'r apęl yn ddigonol i farnu'r cynnig o dir cyhoeddus?"
},
{
"value": "Site Within a Green Belt",
@@ -1523,8 +1523,8 @@
"value_cy": "Cyfeiriad y Dref Tref"
},
{
"value": "Site Viewable from Road",
"value_cy": "Gellir gweld y safle o'r ffordd"
"value": "Could the Inspector see the relevant parts of the appeal site sufficiently to judge the proposal from public land?",
"value_cy": "A allai'r Arolygydd weld y rhannau perthnasol o safle'r apęl yn ddigonol i farnu'r cynnig o dir cyhoeddus?"
},
{
"value": "Site Within a Green Belt",
@@ -1649,8 +1649,8 @@
"value_cy": "Cyfeiriad y Dref Tref"
},
{
"value": "Site Viewable from Road",
"value_cy": "Gellir gweld y safle o'r ffordd"
"value": "Could the Inspector see the relevant parts of the appeal site sufficiently to judge the proposal from public land?",
"value_cy": "A allai'r Arolygydd weld y rhannau perthnasol o safle'r apęl yn ddigonol i farnu'r cynnig o dir cyhoeddus?"
},
{
"value": "Site Within a Green Belt",
@@ -1764,8 +1764,8 @@
"value_cy": "Cyfeiriad y Dref Tref"
},
{
"value": "Site Viewable from Road",
"value_cy": "Gellir gweld y safle o'r ffordd"
"value": "Could the Inspector see the relevant parts of the appeal site sufficiently to judge the proposal from public land?",
"value_cy": "A allai'r Arolygydd weld y rhannau perthnasol o safle'r apęl yn ddigonol i farnu'r cynnig o dir cyhoeddus?"
},
{
"value": "Site Within a Green Belt",
@@ -1863,8 +1863,8 @@
"value_cy": "Cyfeiriad y Dref Tref"
},
{
"value": "Site Viewable from Road",
"value_cy": "Gellir gweld y safle o'r ffordd"
"value": "Could the Inspector see the relevant parts of the appeal site sufficiently to judge the proposal from public land?",
"value_cy": "A allai'r Arolygydd weld y rhannau perthnasol o safle'r apęl yn ddigonol i farnu'r cynnig o dir cyhoeddus?"
},
{
"value": "Site Within a Green Belt",
@@ -1962,8 +1962,8 @@
"value_cy": "Cyfeiriad y Dref Tref"
},
{
"value": "Site Viewable from Road",
"value_cy": "Gellir gweld y safle o'r ffordd"
"value": "Could the Inspector see the relevant parts of the appeal site sufficiently to judge the proposal from public land?",
"value_cy": "A allai'r Arolygydd weld y rhannau perthnasol o safle'r apęl yn ddigonol i farnu'r cynnig o dir cyhoeddus?"
},
{
"value": "Site Within Green Belt",
@@ -2089,8 +2089,8 @@
"value_cy": "Cyfeiriad y Dref Tref"
},
{
"value": "Site Viewable from Road",
"value_cy": "Gellir gweld y safle o'r ffordd"
"value": "Could the Inspector see the relevant parts of the appeal site sufficiently to judge the proposal from public land?",
"value_cy": "A allai'r Arolygydd weld y rhannau perthnasol o safle'r apęl yn ddigonol i farnu'r cynnig o dir cyhoeddus?"
},
{
"value": "Site Within Green Belt",
@@ -2145,12 +2145,12 @@
"value_cy": "Ar ba ddyddiad y penderfynodd yr ACLl ar eich cais?"
},
{
"value": "What was the LPA Application Reference number given to your application?",
"value_cy": "Beth oedd y Cyfeirnod Cais ACLl a roddwyd i'ch cais?"
"value": "LPA's application reference number",
"value_cy": "Cyfeirnod cais yr ACLl"
},
{
"value": "When is the application form dated?",
"value_cy": "Pryd mae dyddiad ar y ffurflen gais?"
"value": "Application form dated",
"value_cy": "Dyddiad y ffurflen gais"
},
{
"value": "Has your application been decided by the LPA?",
@@ -2182,11 +2182,11 @@
},
{
"value": "Certificate A - (If you are the sole owner of the whole appeal site, certificate A applies). I certify that, on the day 21 days before the date of this appeal, nobody except the appellant, was the owner (see the guidance leaflet for a definition) of any part of the land to which the appeal relates",
"value_cy": "Tystysgrif A - (Os mai chi yw unig berchennog safle cyfan yr apźl, mae tystysgrif A yn gymwys). Tystiaf, ar y diwrnod 21 diwrnod cyn dyddiad yr apêl hon, nad oedd neb ac eithrior apelydd, yn berchennog (gweler y daflen arweiniad am ddiffiniad) unrhyw ran or tir y maer apêl yn ymwneud ag ef"
"value_cy": "Tystysgrif A - (Os mai chi yw unig berchennog safle cyfan yr apźl, mae tystysgrif A yn gymwys). Tystiaf, ar y diwrnod 21 diwrnod cyn dyddiad yr apêl hon, nad oedd neb ac eithrio'r apelydd, yn berchennog (gweler y daflen arweiniad am ddiffiniad) unrhyw ran o'r tir y mae'r apêl yn ymwneud ag ef"
},
{
"value": "Certificate B - I certify that the appellant (or the agent) has given the requisite notice (see the guidance leaflet) to everyone else who, on the day 21 days before the date of this appeal, was the owner (see the guidance leaflet for a definition) of any part of the land to which the appeal relates, as listed below:",
"value_cy": "Tystysgrif B Tystiaf fod y maer apelydd (neur asiant) wedi rhoir hysbysiad gofynnol (gweler y daflen arweiniad) i bawb arall a oedd, ar y diwrnod 21 diwrnod cyn dyddiad yr apêl hon, yn berchennog (gweler y daflen arweiniad am ddiffiniad) unrhyw ran o y tir y mae'r apźl yn ymwneud ag ef, fel y'i rhestrir isod:"
"value_cy": "Tystysgrif B Tystiaf fod y mae'r apelydd (neu'r asiant) wedi rhoi'r hysbysiad gofynnol (gweler y daflen arweiniad) i bawb arall a oedd, ar y diwrnod 21 diwrnod cyn dyddiad yr apêl hon, yn berchennog (gweler y daflen arweiniad am ddiffiniad) unrhyw ran o y tir y mae'r apźl yn ymwneud ag ef, fel y'i rhestrir isod:"
},
{
"value": "Certificates C & D - If you do not know who owns all or part of the appeal site, complete either Certificate C or Certificate D at Annexe 1 of our guidance and attach it to the appeal form",
@@ -2202,15 +2202,15 @@
},
{
"value": "(a) None of the land to which the appeal relates is, or is part of, an agricultural holding",
"value_cy": "(a) Nid oes unrhyw ran or tir y maer apêl yn ymwneud ag ef yn ddaliad amaethyddol, neun rhan o ddaliad amaethyddol"
"value_cy": "(a) Nid oes unrhyw ran o'r tir y mae'r apêl yn ymwneud ag ef yn ddaliad amaethyddol, neu'n rhan o ddaliad amaethyddol"
},
{
"value": "(b) (i) The appeal site is, or is part of an agricultural holding, and the appellant is the sole agricultural tenant",
"value_cy": "(b) (i) Mae safler apêl yn ddaliad amaethyddol, neun rhan o ddaliad amaethyddol, ar apelydd ywr unig denant amaethyddol"
"value_cy": "(b) (i) Mae safle'r apêl yn ddaliad amaethyddol, neu'n rhan o ddaliad amaethyddol, a'r apelydd yw'r unig denant amaethyddol"
},
{
"value": "(b) (ii) The appeal site is, or is part of, an agricultural holding and the appellant (or the agent) has given the requisite notice to every person (other than the appellant) who, on the day 21 days before the date of the appeal, was a tenant of anagricultural holding on all or part of the land to which the appeal relates as listed below:",
"value_cy": "(b) (ii) Mae safler apêl yn ddaliad amaethyddol neun rhan o ddaliad amaethyddol ac maer apelydd (neur asiant) wedi rhoir hysbysiad gofynnol i bob person (ac eithrior apelydd) sydd, ar y diwrnod 21 diwrnod cyn y dyddiad or apêl, a oedd yn denant daliad amaethyddol ar y cyfan neu ran or tir y maer apêl yn ymwneud ag ef fel a restrir isod:"
"value_cy": "(b) (ii) Mae safle'r apêl yn ddaliad amaethyddol neu'n rhan o ddaliad amaethyddol ac mae'r apelydd (neu'r asiant) wedi rhoi'r hysbysiad gofynnol i bob person (ac eithrio'r apelydd) sydd, ar y diwrnod 21 diwrnod cyn y dyddiad o'r apêl, a oedd yn denant daliad amaethyddol ar y cyfan neu ran o'r tir y mae'r apêl yn ymwneud ag ef fel a restrir isod:"
},
{
"value": "Tenants name",
@@ -2221,12 +2221,12 @@
"value_cy": "Dyddiad dechrau"
},
{
"value": "Site Viewable from Road",
"value": "Could the Inspector see the relevant parts of the appeal site sufficiently to judge the proposal from public land?",
"value_cy": "Safle Gweladwy o Ffordd"
},
{
"value": "Does the inspector need to enter the site?",
"value_cy": "A oes angen i'r arolygydd fynd i mewn i'r safle?"
"value": "Is it essential for the Inspector to enter the site to check measurements or other relevant facts?",
"value_cy": "A yw'n hanfodol i'r Arolygydd fynd i mewn i'r safle i wirio mesuriadau neu ffeithiau perthnasol eraill?"
},
{
"value": "Please explain why the inspector needs to enter the site",
@@ -2253,8 +2253,8 @@
"value_cy": "Gwybodaeth safle apêl"
},
{
"value": "What is overall the size of the appeal site, as shown on the red line boundary plan? (in hectares)",
"value_cy": "Beth yw maint safle'r apęl yn gyffredinol, fel y dangosir ar gynllun ffin y llinell goch? (mewn hectarau)"
"value": "Size of overall appeal site (in hectares)",
"value_cy": "Maint safle cyffredinol yr apęl (mewn hectarau)"
},
{
"value": "What is the area of floor space proposed? (in square metres). If no new floor space is proposed, please enter 0.",
@@ -2285,8 +2285,8 @@
"value_cy": "A yw unrhyw rywogaethau a warchodir yn debygol o gael eu heffeithio gan y cynigion?"
},
{
"value": "Appeal procedure",
"value_cy": "Trefn apelio"
"value": "Other Appeals",
"value_cy": "Apeliadau Eraill"
},
{
"value": "Upload documents",
@@ -2297,8 +2297,8 @@
"value_cy": "Ydych chi'n apelio oherwydd"
},
{
"value": "Has there been any other appeals made on this, or on nearby land, against a refusal of planning permission?",
"value_cy": "A oes unrhyw apeliadau eraill wedi eu gwneud ar hyn, neu ar dir cyfagos, yn erbyn gwrthod caniatâd cynllunio?"
"value": "Have there been any other appeals decided or are being currently considered on this site, or on nearby land, against a refusal of planning permission?",
"value_cy": "A oes unrhyw apeliadau eraill wedi eu penderfynu neu yn cael eu hystyried ar hyn o bryd ar y safle hwn, neu ar dir cyfagos, yn erbyn gwrthod caniatâd cynllunio?"
},
{
"value": "Please provide details of the appeals including our reference number, if known",
@@ -2313,24 +2313,24 @@
"value_cy": "Cyflwyno achos"
},
{
"value": "Introduction",
"value_cy": "Rhagymadrodd"
"value": "New Appeal",
"value_cy": "Apêl Newydd"
},
{
"value": "What procedure would you like the appeal to follow? More informatiion on this can be found in the guidance notes.",
"value_cy": "Pa weithdrefn yr hoffech i'r apêl ei dilyn? Ceir rhagor o wybodaeth am hyn yn y nodiadau canllaw."
},
{
"value": "Please explain why you have chosen this procedure",
"value_cy": "Eglurwch pam eich bod wedi dewis y driniaeth hon"
"value": "If you feel that a hearing or inquiry is needed please provide your full reasons below, including the likely number of days you feel that the event will last and how many witnesses you intend to call.",
"value_cy": "Os teimlwch fod angen gwrandawiad neu ymchwiliad, rhowch eich rhesymau llawn isod, gan gynnwys nifer tebygol y diwrnodau y teimlwch y bydd y digwyddiad yn para a faint o dystion yr ydych yn bwriadu eu galw."
},
{
"value": "Do not include personal or financial information.",
"value_cy": "Peidiwch â chynnwys gwybodaeth bersonol neu ariannol."
},
{
"value": "Do you intend to submit a costs application with this appeal? (see guidance for further information)",
"value_cy": "A ydych yn bwriadu cyflwyno cais costau gyda'r apêl hon? (gweler y canllawiau am ragor o wybodaeth)"
"value": "Are you submitting a Costs application with this appeal",
"value_cy": "A ydych yn cyflwyno cais Costau gyda'r apêl hon"
},
{
"value": "Would you prefer a virtual or in person event?",
@@ -2344,21 +2344,93 @@
"value": "In person",
"value_cy": "Yn bersonol"
},
{
"value": "Please explain why you have chosen this procedure",
"value_cy": "Eglurwch pam eich bod wedi dewis y driniaeth hon"
},
{
"value": "What procedure would you like the appeal to follow? More information on this can be found in the guidance notes.",
"value_cy": "Pa weithdrefn yr hoffech i'r apêl ei dilyn? Ceir rhagor o wybodaeth am hyn yn y nodiadau canllaw."
},
{
"value": "Do you intend to submit a costs application with this appeal? (see guidance for further information)",
"value_cy": "A ydych yn bwriadu cyflwyno cais costau gyda'r apêl hon? (gweler y canllawiau am ragor o wybodaeth)"
"value": "Are you submitting a Costs application with this appeal?",
"value_cy": "A ydych yn cyflwyno cais Costau gyda'r apêl hon?"
},
{
"value": "Do you intend to submit a planning obligation (a section 106 agreement or a unilateral undertaking) with this appeal?",
"value_cy": "A ydych yn bwriadu cyflwyno rhwymedigaeth gynllunio (cytundeb adran 106 neu ymgymeriad unochrog) gydar apêl hon?"
"value_cy": "A ydych yn bwriadu cyflwyno rhwymedigaeth gynllunio (cytundeb adran 106 neu ymgymeriad unochrog) gyda'r apêl hon?"
},
{
"value": "Are you attaching a separate Statement of Case document?",
"value_cy": "A ydych yn atodi dogfen Datganiad Achos ar wahân?"
},
{
"value": "Are you attaching a separate Costs application?",
"value_cy": "A ydych yn atodi cais Costau ar wahân?"
},
{
"value": "Please submit your Cost Application",
"value_cy": "Cyflwynwch eich Cais Cost"
},
{
"value": "Statement of case",
"value_cy": "Datganiad achos"
},
{
"value": "A copy of the original planning application sent to the LPA.",
"value_cy": "Copi o'r cais cynllunio gwreiddiol a anfonwyd at yr ACLl."
},
{
"value": "A copy of the site ownership certificate and ownership details submitted to the LPA at application stage (this is usually part of the LPA's planning application form).",
"value_cy": "Copi o'r dystysgrif perchnogaeth safle a manylion perchnogaeth a gyflwynwyd i'r ACLl ar y cam ymgeisio (mae hyn fel arfer yn rhan o ffurflen gais cynllunio'r ACLl)"
},
{
"value": "A copy of the LPA's decision notice (if issued).",
"value_cy": "Copi o hysbysiad o benderfyniad yr ACLl (os caiff ei gyhoeddi)"
},
{
"value": "A site plan (preferably on a copy of an Ordnance Survey map at not less than 10,000 scale) showing the general location of the proposed development and its boundary. This plan should show two named roads so as to assist the location of the appeal site or premises. The application site should be edged or shaded in red and any other adjoining land owned or controlled by the appellant (if any) edged or shaded in blue.",
"value_cy": "Cynllun safle (ar gopi o fap Arolwg Ordnans ar raddfa 10,000 o leiaf) yn dangos lleoliad cyffredinol y datblygiad arfaethedig a'i ffin. Dylai'r cynllun hwn ddangos dwy ffordd a enwir er mwyn cynorthwyo'r lleoliad. safle neu safle'r apźl Dylai safle'r cais gael ei ymylu neu ei liwio mewn coch ac unrhyw dir cyfagos sy'n eiddo i'r apelydd neu'n cael ei reoli ganddo (os oes un) wedi'i ymylu neu ei liwio mewn glas."
},
{
"value": "A list (stating drawing numbers) and copies of all plans, drawings and documents sent to the LPA as part of the application. The plans and drawings should show all boundaries and coloured markings given on those sent to the LPA.",
"value_cy": "Rhestr (yn nodi rhifau lluniadau) a chopïau o'r holl blaniau, lluniadau a dogfennau a anfonwyd at yr ACLl fel rhan o'r cais. Dylai'r cynlluniau a'r lluniadau ddangos yr holl ffiniau a marciau lliw a roddir ar y rhai a anfonwyd at yr ACLl."
},
{
"value": "A list (stating drawing numbers) and copies of any additional plans, drawings and documents sent to the LPA but which did not form part of the original application (e.g. drawings for illustrative purposes).",
"value_cy": "Rhestr (yn nodi rhifau lluniadau) a chopïau o'r holl gynlluniau, lluniadau a dogfennau a anfonwyd at yr ACLl fel rhan o'r cais. Dylai'r cynlluniau a'r lluniadau ddangos yr holl ffiniau a marciau lliw a roddir ar y rhai a anfonwyd at yr ACLl."
},
{
"value": "A copy of the Design and Access Statement (if required).",
"value_cy": "Copi o'r Datganiad Dylunio a Mynediad (os oes angen)"
},
{
"value": "Additional plans, drawings or documents relating to the application but not previously seen by the LPA.",
"value_cy": "Cynlluniau, lluniadau neu ddogfennau ychwanegol yn ymwneud â'r cais ond na welwyd o'r blaen gan yr ACLl."
},
{
"value": "All relevant correspondence with the LPA relating to the application.",
"value_cy": "Pob gohebiaeth berthnasol gyda'r ACLl mewn perthynas â'r cais."
},
{
"value": "If the appeal is against the LPA's refusal or failure to decide an application which relates to a condition, we must receive a copy of the original permission with the condition attached.",
"value_cy": "Os yw'r apêl yn erbyn gwrthodiad neu fethiant yr ACLl i benderfynu ar gais sy'n ymwneud ag amod, rhaid i ni dderbyn copi o'r caniatâd gwreiddiol gyda'r amod ynghlwm."
},
{
"value": "If the appeal is against the LPA's failure to decide an application please supply a copy of the LPA's letter registering your application.",
"value_cy": "Os ywr apêl yn erbyn methiant yr ACLl i benderfynu ar gais, a fyddech cystal â darparu copi o lythyr yr ACLl yn cofrestruch cais."
},
{
"value": "A copy of any Environmental Statement plus certificates and notices relating to publicity (if one was sent with the application, or required by the LPA).",
"value_cy": "Copi o unrhyw Ddatganiad Amgylcheddol ynghyd â thystysgrifau a hysbysiadau yn ymwneud â chyhoeddusrwydd (os anfonwyd un gyda'r cais, neu os yw'r ACLl yn ei gwneud yn ofynnol)"
},
{
"value": "Any other material you may deem relevant",
"value_cy": "Unrhyw ddeunydd arall y byddwch yn ei ystyried yn berthnasol"
},
{
"value": "Cost of application",
"value_cy": "Cost y cais"
},
{
"value": "The S106 agreement or unilateral undertaking",
"value_cy": "Cytundeb S106 neu ymgymeriad unochrog"
}
]
}
@@ -2440,8 +2512,8 @@
"value_cy": "Cyfeiriad y Dref Tref"
},
{
"value": "Site Viewable from Road",
"value_cy": "Gellir gweld y safle o'r ffordd"
"value": "Could the Inspector see the relevant parts of the appeal site sufficiently to judge the proposal from public land?",
"value_cy": "A allai'r Arolygydd weld y rhannau perthnasol o safle'r apęl yn ddigonol i farnu'r cynnig o dir cyhoeddus?"
},
{
"value": "Site Within a Green Belt",
@@ -2555,8 +2627,8 @@
"value_cy": "Cyfeiriad y Dref Tref"
},
{
"value": "Site Viewable from Road",
"value_cy": "Gellir gweld y safle o'r ffordd"
"value": "Could the Inspector see the relevant parts of the appeal site sufficiently to judge the proposal from public land?",
"value_cy": "A allai'r Arolygydd weld y rhannau perthnasol o safle'r apęl yn ddigonol i farnu'r cynnig o dir cyhoeddus?"
},
{
"value": "Site Within Green Belt",
@@ -2666,8 +2738,8 @@
"value_cy": "Sir y Safle"
},
{
"value": "Site Viewable from Road",
"value_cy": "Gellir gweld y safle o'r ffordd"
"value": "Could the Inspector see the relevant parts of the appeal site sufficiently to judge the proposal from public land?",
"value_cy": "A allai'r Arolygydd weld y rhannau perthnasol o safle'r apęl yn ddigonol i farnu'r cynnig o dir cyhoeddus?"
},
{
"value": "Site Within Green Belt",
@@ -2856,8 +2928,8 @@
"value_cy": "Cyfeiriad y Dref Tref"
},
{
"value": "Site Viewable from Road",
"value_cy": "Gellir gweld y safle o'r ffordd"
"value": "Could the Inspector see the relevant parts of the appeal site sufficiently to judge the proposal from public land?",
"value_cy": "A allai'r Arolygydd weld y rhannau perthnasol o safle'r apęl yn ddigonol i farnu'r cynnig o dir cyhoeddus?"
},
{
"value": "Site Within a Green Belt",
+4 -1
View File
@@ -1748,7 +1748,10 @@ const AdvertsForm = (props) => {
class="govuk-fieldset__heading govuk-body-m"
id="pinswg_siteviewablefromroad_label"
>
Site Viewable from Road
Could the Inspector see the
relevant parts of the appeal
site sufficiently to judge the
proposal from public land?
</label>
</legend>
<div class="govuk-radios govuk-radios--inline govuk-radios--small">
+4 -1
View File
@@ -1639,7 +1639,10 @@ const Callinss77Form = (props) => {
class="govuk-fieldset__heading govuk-body-m"
id="pinswg_siteviewablefromroad_label"
>
Site Viewable from Road
Could the Inspector see the relevant
parts of the appeal site
sufficiently to judge the proposal
from public land?
</label>
</legend>
<div class="govuk-radios govuk-radios--inline govuk-radios--small">
+4 -1
View File
@@ -1748,7 +1748,10 @@ const CommonLandForm = (props) => {
class="govuk-fieldset__heading govuk-body-m"
id="pinswg_siteviewablefromroad_label"
>
Site Viewable from Road
Could the Inspector see the
relevant parts of the appeal
site sufficiently to judge the
proposal from public land?
</label>
</legend>
<div class="govuk-radios govuk-radios--inline govuk-radios--small">
@@ -1748,7 +1748,10 @@ const CommunityInfrastructureLevys117118119Form = (props) => {
class="govuk-fieldset__heading govuk-body-m"
id="pinswg_siteviewablefromroad_label"
>
Site Viewable from Road
Could the Inspector see the
relevant parts of the appeal
site sufficiently to judge the
proposal from public land?
</label>
</legend>
<div class="govuk-radios govuk-radios--inline govuk-radios--small">
+4 -1
View File
@@ -1709,7 +1709,10 @@ const CompulsoryPurchaseOrdersForm = (props) => {
class="govuk-fieldset__heading govuk-body-m"
id="pinswg_siteviewablefromroad_label"
>
Site Viewable from Road
Could the Inspector see the
relevant parts of the appeal
site sufficiently to judge the
proposal from public land?
</label>
</legend>
<div class="govuk-radios govuk-radios--inline govuk-radios--small">
@@ -1748,7 +1748,10 @@ const EnforcementListedBuildingConservationapForm = (props) => {
class="govuk-fieldset__heading govuk-body-m"
id="pinswg_siteviewablefromroad_label"
>
Site Viewable from Road
Could the Inspector see the
relevant parts of the appeal
site sufficiently to judge the
proposal from public land?
</label>
</legend>
<div class="govuk-radios govuk-radios--inline govuk-radios--small">
+4 -1
View File
@@ -1748,7 +1748,10 @@ const EnforcementNoticeAppeals174Form = (props) => {
class="govuk-fieldset__heading govuk-body-m"
id="pinswg_siteviewablefromroad_label"
>
Site Viewable from road
Could the Inspector see the
relevant parts of the appeal
site sufficiently to judge the
proposal from public land?
</label>
</legend>
<div class="govuk-radios govuk-radios--inline govuk-radios--small">
+4 -1
View File
@@ -1767,7 +1767,10 @@ const EnvironmentalPermittingForm = (props) => {
class="govuk-fieldset__heading govuk-body-m"
id="pinswg_siteviewablefromroad_label"
>
Site Viewable from Road
Could the Inspector see the
relevant parts of the appeal
site sufficiently to judge the
proposal from public land?
</label>
</legend>
<div class="govuk-radios govuk-radios--inline govuk-radios--small">
@@ -1748,7 +1748,10 @@ const HedgesHedgerowsTreePreservationReplacemForm = (props) => {
class="govuk-fieldset__heading govuk-body-m"
id="pinswg_siteviewablefromroad_label"
>
Site Viewable from Road
Could the Inspector see the
relevant parts of the appeal
site sufficiently to judge the
proposal from public land?
</label>
</legend>
<div class="govuk-radios govuk-radios--inline govuk-radios--small">
+4 -1
View File
@@ -1748,7 +1748,10 @@ const HouseholderAppealHasForm = (props) => {
class="govuk-fieldset__heading govuk-body-m"
id="pinswg_siteviewablefromroad_label"
>
Site Viewable from Road
Could the Inspector see the
relevant parts of the appeal
site sufficiently to judge the
proposal from public land?
</label>
</legend>
<div class="govuk-radios govuk-radios--inline govuk-radios--small">
+4 -1
View File
@@ -1748,7 +1748,10 @@ const LawfulDevelopmentCertificateForm = (props) => {
class="govuk-fieldset__heading govuk-body-m"
id="pinswg_siteviewablefromroad_label"
>
Site Viewable from Road
Could the Inspector see the
relevant parts of the appeal
site sufficiently to judge the
proposal from public land?
</label>
</legend>
<div class="govuk-radios govuk-radios--inline govuk-radios--small">
@@ -1748,7 +1748,10 @@ const ListedBuildingAndConservationAreaConsenForm = (props) => {
class="govuk-fieldset__heading govuk-body-m"
id="pinswg_siteviewablefromroad_label"
>
Site Viewable from Road
Could the Inspector see the
relevant parts of the appeal
site sufficiently to judge the
proposal from public land?
</label>
</legend>
<div class="govuk-radios govuk-radios--inline govuk-radios--small">
+4 -1
View File
@@ -1748,7 +1748,10 @@ const MaintenanceOfLands217Form = (props) => {
class="govuk-fieldset__heading govuk-body-m"
id="pinswg_siteviewablefromroad_label"
>
Site Viewable from Road
Could the Inspector see the
relevant parts of the appeal
site sufficiently to judge the
proposal from public land?
</label>
</legend>
<div class="govuk-radios govuk-radios--inline govuk-radios--small">
+4 -1
View File
@@ -1748,7 +1748,10 @@ const MiscellaneousCaseworkForm = (props) => {
class="govuk-fieldset__heading govuk-body-m"
id="pinswg_siteviewablefromroad_label"
>
Site Viewable from Road
Could the Inspector see the
relevant parts of the appeal
site sufficiently to judge the
proposal from public land?
</label>
</legend>
<div class="govuk-radios govuk-radios--inline govuk-radios--small">
+4 -1
View File
@@ -1748,7 +1748,10 @@ const NonValidationForm = (props) => {
class="govuk-fieldset__heading govuk-body-m"
id="pinswg_siteviewablefromroad_label"
>
Site Viewable From Road
Could the Inspector see the
relevant parts of the appeal
site sufficiently to judge the
proposal from public land?
</label>
</legend>
<div class="govuk-radios govuk-radios--inline govuk-radios--small">
+4 -1
View File
@@ -1761,7 +1761,10 @@ const PlanningAppeals78Form = (props) => {
class="govuk-fieldset__heading govuk-body-m"
id="pinswg_siteviewablefromroad_label"
>
Site Viewable from Road
Could the Inspector see the
relevant parts of the appeal
site sufficiently to judge the
proposal from public land?
</label>
</legend>
<div class="govuk-radios govuk-radios--inline govuk-radios--small">
+4 -1
View File
@@ -1748,7 +1748,10 @@ const PlanningConditionss73s79Form = (props) => {
class="govuk-fieldset__heading govuk-body-m"
id="pinswg_siteviewablefromroad_label"
>
Site Viewable from road
Could the Inspector see the
relevant parts of the appeal
site sufficiently to judge the
proposal from public land?
</label>
</legend>
<div class="govuk-radios govuk-radios--inline govuk-radios--small">
+4 -1
View File
@@ -1748,7 +1748,10 @@ const PlanningObligationAppeals106Form = (props) => {
class="govuk-fieldset__heading govuk-body-m"
id="pinswg_siteviewablefromroad_label"
>
Site Viewable from Road
Could the Inspector see the
relevant parts of the appeal
site sufficiently to judge the
proposal from public land?
</label>
</legend>
<div class="govuk-radios govuk-radios--inline govuk-radios--small">
+4 -1
View File
@@ -1748,7 +1748,10 @@ const RowForm = (props) => {
class="govuk-fieldset__heading govuk-body-m"
id="pinswg_siteviewablefromroad_label"
>
Site Viewable from Road
Could the Inspector see the
relevant parts of the appeal
site sufficiently to judge the
proposal from public land?
</label>
</legend>
<div class="govuk-radios govuk-radios--inline govuk-radios--small">
+4 -1
View File
@@ -1709,7 +1709,10 @@ const WayleaveForm = (props) => {
class="govuk-fieldset__heading govuk-body-m"
id="pinswg_siteviewablefromroad_label"
>
Site Viewable from Road
Could the Inspector see the
relevant parts of the appeal
site sufficiently to judge the
proposal from public land?
</label>
</legend>
<div class="govuk-radios govuk-radios--inline govuk-radios--small">
+10 -10
View File
@@ -2,19 +2,19 @@
<tabs>
<tab>
<labels>
<label description="Introduction" />
<label description="New Appeal" />
</labels>
<columns>
<column>
<sections>
<section>
<labels>
<label description="Introduction" />
<label description="New Appeal" />
</labels>
<rows>
<row>
<labels>
<label description="Case reference" />
<label description="Temporary reference" />
</labels>
<control id="pinswg_name" classid="{4273EDBD-AC1D-40d3-9FB2-095C621B552D}" datafieldname="pinswg_name" />
</row>
@@ -62,13 +62,13 @@
</row>
<row>
<labels>
<label description="What was the LPA Application Reference number given to your application?" />
<label description="LPA's application reference number" />
</labels>
<control validation="[required]" id="pinswg_lpaapplicationreference" classid="{4273EDBD-AC1D-40d3-9FB2-095C621B552D}" datafieldname="pinswg_lpaapplicationreference" maxFieldLength="800" disabled="false" />
</row>
<row>
<labels>
<label description="When is the application form dated?" />
<label description="Application form dated" />
</labels>
<control validation="[required]" id="pinswg_dateofapplication" classid="{5B773807-9FB2-42db-97C3-7A91EFF8ADFF}" parentField="pinswg_decisionordiscontinuanceappeal" parentFieldShowOnValue="846040000" datafieldname="pinswg_dateofapplication" dateStart="-5y" dateEnd="0" disabled="false" />
</row>
@@ -222,9 +222,9 @@
</column>
</columns>
</tab>
<tab name="Appeal procedure">
<tab name="Other Appeals">
<labels>
<label description="Appeal procedure" />
<label description="Other Appeals" />
</labels>
<columns>
<column>
@@ -242,7 +242,7 @@
</row>
<row>
<labels>
<label description="Has there been any other appeals made on this, or on nearby land, against a refusal of planning permission?" />
<label description="Have there been any other appeals decided or are being currently considered on this site, or on nearby land, against a refusal of planning permission?" />
</labels>
<control validation="[required]" id="pinswg_additionalappealsmade" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_additionalappealsmade" disabled="false" />
</row>
@@ -290,13 +290,13 @@
</row>
<row>
<labels>
<label description="Please explain why you have chosen this procedure" />
<label description="If you feel that a hearing or inquiry is needed please provide your full reasons below, including the likely number of days you feel that the event will last and how many witnesses you intend to call." />
</labels>
<control id="pinswg_chosenprocedureexplanation" classid="{E0DECE4B-6FC8-4a8f-A065-082708572369}" datafieldname="pinswg_chosenprocedureexplanation" disabled="false" />
</row>
<row>
<labels>
<label description="Do you intend to submit a costs application with this appeal? (see guidance for further information)" />
<label description="Are you submitting a Costs application with this appeal" />
</labels>
<control validation="[required]" id="pinswg_costappliedforindicator" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_costappliedforindicator" requiredDocumentValue="Yes" requiredDocumentLabel="Statement of costs" disabled="false" />
</row>
+1 -1
View File
@@ -557,7 +557,7 @@
</row>
<row>
<labels>
<label description="Site Viewable from Road" />
<label description="Could the Inspector see the relevant parts of the appeal site sufficiently to judge the proposal from public land?" />
</labels>
<control id="pinswg_siteviewablefromroad" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_siteviewablefromroad" disabled="false" />
</row>
+11 -47
View File
@@ -2,19 +2,19 @@
<tabs>
<tab>
<labels>
<label description="Introduction" />
<label description="New Appeal" />
</labels>
<columns>
<column>
<sections>
<section>
<labels>
<label description="Introduction" />
<label description="New Appeal" />
</labels>
<rows>
<row>
<labels>
<label description="Case reference" hint="newappeal:new-appeal-introduction-paragraph" />
<label description="Temporary reference" hint="newappeal:new-appeal-introduction-paragraph" />
</labels>
<control id="pinswg_name" classid="{4273EDBD-AC1D-40d3-9FB2-095C621B552D}" datafieldname="pinswg_name" />
</row>
@@ -71,13 +71,13 @@
</row>
<row>
<labels>
<label description="What was the LPA Application Reference number given to your application?" />
<label description="LPA's application reference number" />
</labels>
<control validation="[required]" id="pinswg_lpaapplicationreference" classid="{4273EDBD-AC1D-40d3-9FB2-095C621B552D}" datafieldname="pinswg_lpaapplicationreference" maxFieldLength="800" disabled="false" />
</row>
<row>
<labels>
<label description="When is the application form dated?" />
<label description="Application form dated" />
</labels>
<control validation="[required]" id="pinswg_dateofapplication" classid="{5B773807-9FB2-42db-97C3-7A91EFF8ADFF}" datafieldname="pinswg_dateofapplication" dateStart="-5y" dateEnd="0" disabled="false" />
</row>
@@ -191,13 +191,13 @@
<rows>
<row>
<labels>
<label description="Site Viewable from Road" />
<label description="Could the Inspector see the relevant parts of the appeal site sufficiently to judge the proposal from public land?" />
</labels>
<control validation="[required]" id="pinswg_siteviewablefromroad" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_siteviewablefromroad" disabled="false" />
</row>
<row>
<labels>
<label description="Does the inspector need to enter the site?" />
<label description="Is it essential for the Inspector to enter the site to check measurements or other relevant facts?" />
</labels>
<control validation="[required]" id="pinswg_inspectorneededonsite" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_inspectorneededonsite" disabled="false" />
</row>
@@ -249,42 +249,6 @@
</labels>
<control validation="[required]" id="pinswg_floorspaceinsquaremeters" classid="{C6D124CA-7EDA-4a60-AEA9-7FB8D318B68F}" datafieldname="pinswg_floorspaceinsquaremeters" maxFieldLength="5" disabled="false" />
</row>
<row>
<labels>
<label description="Is flooding an issue?" />
</labels>
<control validation="[required]" id="pinswg_isfloodingandissue" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_isfloodingandissue" disabled="false" />
</row>
<row>
<labels>
<label description="Do the works affect the setting of a Listed Building?" />
</labels>
<control validation="[required]" id="pinswg_developmentaffectsettingofalisted" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_developmentaffectsettingofalisted" disabled="false" />
</row>
<row>
<labels>
<label description="Is the appeal site within an Area of Outstanding Natural Beauty?" />
</labels>
<control id="pinswg_isthesitewithinanaonb" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_isthesitewithinanaonb" disabled="false" />
</row>
<row>
<labels>
<label description="Is the appeal site in a Conservation Area?" />
</labels>
<control validation="[required]" id="pinswg_incarelatestoca" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_incarelatestoca" disabled="false" />
</row>
<row>
<labels>
<label description="Is the appeal site in or adjacent to, or likely to affect a Site of Special Scientific Interest (SSSI), a Special Conservation Area (SAC) or an Internationally Designated Site?" />
</labels>
<control validation="[required]" id="pinswg_sitewithinsssi" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_sitewithinsssi" disabled="false" />
</row>
<row>
<labels>
<label description="Are any protected species likely to be affected by the proposals?" />
</labels>
<control validation="[required]" id="pinswg_protectedspecies" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_protectedspecies" disabled="false" />
</row>
</rows>
</section>
</sections>
@@ -297,9 +261,9 @@
</column>
</columns>
</tab>
<tab name="Appeal procedure">
<tab name="Other Appeals">
<labels>
<label description="Appeal procedure" />
<label description="Other Appeals" />
</labels>
<columns>
<column>
@@ -317,7 +281,7 @@
</row>
<row>
<labels>
<label description="Has there been any other appeals made on this, or on nearby land, against a refusal of planning permission?" />
<label description="Have there been any other appeals decided or are being currently considered on this site, or on nearby land, against a refusal of planning permission?" />
</labels>
<control validation="[required]" id="pinswg_additionalappealsmade" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_additionalappealsmade" disabled="false" />
</row>
@@ -353,7 +317,7 @@
<rows>
<row>
<labels>
<label description="Do you intend to submit a costs application with this appeal? (see guidance for further information)" />
<label description="Are you submitting a Costs application with this appeal" />
</labels>
<control validation="[required]" id="pinswg_coastappliedforindicator" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_coastappliedforindicator" requiredDocumentValue="Yes" requiredDocumentLabel="Statement of costs" disabled="false" />
</row>
+1 -1
View File
@@ -323,7 +323,7 @@
</row>
<row>
<labels>
<label description="Site Viewable from Road" />
<label description="Could the Inspector see the relevant parts of the appeal site sufficiently to judge the proposal from public land?" />
</labels>
<control id="pinswg_siteviewablefromroad" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_siteviewablefromroad" disabled="false" />
</row>
@@ -557,7 +557,7 @@
</row>
<row>
<labels>
<label description="Site Viewable from Road" />
<label description="Could the Inspector see the relevant parts of the appeal site sufficiently to judge the proposal from public land?" />
</labels>
<control id="pinswg_siteviewablefromroad" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_siteviewablefromroad" disabled="false" />
</row>
+1 -1
View File
@@ -323,7 +323,7 @@
</row>
<row>
<labels>
<label description="Site Viewable from Road" />
<label description="Could the Inspector see the relevant parts of the appeal site sufficiently to judge the proposal from public land?" />
</labels>
<control id="pinswg_siteviewablefromroad" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_siteviewablefromroad" disabled="false" />
</row>
@@ -323,7 +323,7 @@
</row>
<row>
<labels>
<label description="Site Viewable from Road" />
<label description="Could the Inspector see the relevant parts of the appeal site sufficiently to judge the proposal from public land?" />
</labels>
<control id="pinswg_siteviewablefromroad" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_siteviewablefromroad" disabled="false" />
</row>
+10 -10
View File
@@ -2,19 +2,19 @@
<tabs>
<tab>
<labels>
<label description="Introduction" />
<label description="New Appeal" />
</labels>
<columns>
<column>
<sections>
<section>
<labels>
<label description="Introduction" />
<label description="New Appeal" />
</labels>
<rows>
<row>
<labels>
<label description="Case reference" hint="newappeal:new-appeal-introduction-paragraph" />
<label description="Temporary reference" hint="newappeal:new-appeal-introduction-paragraph" />
</labels>
<control id="pinswg_name" classid="{4273EDBD-AC1D-40d3-9FB2-095C621B552D}" datafieldname="pinswg_name" />
</row>
@@ -789,7 +789,7 @@
</row>
<row>
<labels>
<label description="Does the inspector need to enter the site?" />
<label description="Is it essential for the Inspector to enter the site to check measurements or other relevant facts?" />
</labels>
<control validation="[required]" id="pinswg_inspectorneededonsite" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_inspectorneededonsite" disabled="false" />
</row>
@@ -837,7 +837,7 @@
<rows>
<row>
<labels>
<label description="What is overall the size of the appeal site, as shown on the red line boundary plan? (in hectares)" />
<label description="Size of overall appeal site (in hectares)" />
</labels>
<control validation="[required]" id="pinswg_areaofsiteinhectaresdec" classid="{C3EFE0C3-0EC6-42be-8349-CBD9079DFD8E}" datafieldname="pinswg_areaofsiteinhectaresdec" maxFieldLength="4" disabled="false" />
</row>
@@ -1108,7 +1108,7 @@
<rows>
<row>
<labels>
<label description="Has there been any other appeals made on this, or on nearby land, against a refusal of planning permission?" />
<label description="Have there been any other appeals decided or are being currently considered on this site, or on nearby land, against a refusal of planning permission?" />
</labels>
<control validation="[required]" id="pinswg_additionalappealsmade" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_additionalappealsmade" disabled="false" />
</row>
@@ -1130,9 +1130,9 @@
</column>
</columns>
</tab>
<tab name="Appeal Procedure">
<tab name="Other Appeals">
<labels>
<label description="Appeal Procedure" />
<label description="Other Appeals" />
</labels>
<columns>
<column>
@@ -1156,13 +1156,13 @@
</row>
<row>
<labels>
<label description="Please explain why you have chosen this procedure" />
<label description="If you feel that a hearing or inquiry is needed please provide your full reasons below, including the likely number of days you feel that the event will last and how many witnesses you intend to call." />
</labels>
<control id="pinswg_chosenprocedureexplanation" classid="{E0DECE4B-6FC8-4a8f-A065-082708572369}" datafieldname="pinswg_chosenprocedureexplanation" disabled="false" />
</row>
<row>
<labels>
<label description="Do you intend to submit a costs application with this appeal? (see guidance for further information)" />
<label description="Are you submitting a Costs application with this appeal" />
</labels>
<control validation="[required]" id="pinswg_costappliedforindicator" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_costappliedforindicator" requiredDocumentValue="Yes" requiredDocumentLabel="Statement of costs" disabled="false" />
</row>
+1 -1
View File
@@ -323,7 +323,7 @@
</row>
<row>
<labels>
<label description="Site Viewable from Road" />
<label description="Could the Inspector see the relevant parts of the appeal site sufficiently to judge the proposal from public land?" />
</labels>
<control id="pinswg_siteviewablefromroad" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_siteviewablefromroad" disabled="false" />
</row>
@@ -323,7 +323,7 @@
</row>
<row>
<labels>
<label description="Site Viewable from Road" />
<label description="Could the Inspector see the relevant parts of the appeal site sufficiently to judge the proposal from public land?" />
</labels>
<control id="pinswg_siteviewablefromroad" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_siteviewablefromroad" disabled="false" />
</row>
+12 -12
View File
@@ -2,19 +2,19 @@
<tabs>
<tab>
<labels>
<label description="Introduction" />
<label description="New Appeal" />
</labels>
<columns>
<column>
<sections>
<section>
<labels>
<label description="Introduction" />
<label description="New Appeal" />
</labels>
<rows>
<row>
<labels>
<label description="Case reference" hint="newappeal:new-appeal-introduction-paragraph" />
<label description="Temporary reference" hint="newappeal:new-appeal-introduction-paragraph" />
</labels>
<control id="pinswg_name" classid="{4273EDBD-AC1D-40d3-9FB2-095C621B552D}" datafieldname="pinswg_name" />
</row>
@@ -56,13 +56,13 @@
</row>
<row>
<labels>
<label description="What was the LPA Application Reference number given to your application?" />
<label description="LPA's application reference number" />
</labels>
<control validation="[required]" id="pinswg_lpaapplicationreference" classid="{4273EDBD-AC1D-40d3-9FB2-095C621B552D}" datafieldname="pinswg_lpaapplicationreference" maxFieldLength="800" disabled="false" />
</row>
<row>
<labels>
<label description="When is the application form dated?" />
<label description="Application form dated" />
</labels>
<control validation="[required]" id="pinswg_dateofapplication" classid="{5B773807-9FB2-42db-97C3-7A91EFF8ADFF}" datafieldname="pinswg_dateofapplication" dateStart="-5y" dateEnd="0" disabled="false" />
</row>
@@ -176,13 +176,13 @@
<rows>
<row>
<labels>
<label description="Site Viewable from Road" />
<label description="Could the Inspector see the relevant parts of the appeal site sufficiently to judge the proposal from public land?" />
</labels>
<control validation="[required]" id="pinswg_siteviewablefromroad" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_siteviewablefromroad" disabled="false" />
</row>
<row>
<labels>
<label description="Does the inspector need to enter the site?" />
<label description="Is it essential for the Inspector to enter the site to check measurements or other relevant facts?" />
</labels>
<control validation="[required]" id="pinswg_inspectorneededonsite" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_inspectorneededonsite" disabled="false" />
</row>
@@ -230,7 +230,7 @@
<rows>
<row>
<labels>
<label description="What is overall the size of the appeal site, as shown on the red line boundary plan? (in hectares)" />
<label description="Size of overall appeal site (in hectares)" />
</labels>
<control validation="[required]" id="pinswg_areaofsiteinhectaresdec" parentField="pinswg_hascas_appealtype" parentFieldShowOnValue="846040001" classid="{C3EFE0C3-0EC6-42be-8349-CBD9079DFD8E}" datafieldname="pinswg_areaofsiteinhectaresdec" maxFieldLength="4" disabled="false" />
</row>
@@ -288,9 +288,9 @@
</column>
</columns>
</tab>
<tab name="Appeal procedure">
<tab name="Other Appeals">
<labels>
<label description="Appeal procedure" />
<label description="Other Appeals" />
</labels>
<columns>
<column>
@@ -308,7 +308,7 @@
</row>
<row>
<labels>
<label description="Has there been any other appeals made on this, or on nearby land, against a refusal of planning permission?" />
<label description="Have there been any other appeals decided or are being currently considered on this site, or on nearby land, against a refusal of planning permission?" />
</labels>
<control validation="[required]" id="pinswg_additionalappealsmade" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_additionalappealsmade" disabled="false" />
</row>
@@ -344,7 +344,7 @@
<rows>
<row>
<labels>
<label description="Do you intend to submit a costs application with this appeal? (see guidance for further information)" />
<label description="Are you submitting a Costs application with this appeal" />
</labels>
<control validation="[required]" id="pinswg_coastappliedforindicator" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_coastappliedforindicator" requiredDocumentValue="Yes" requiredDocumentLabel="Statement of costs" disabled="false" />
</row>
@@ -557,7 +557,7 @@
</row>
<row>
<labels>
<label description="Site Viewable from Road" />
<label description="Could the Inspector see the relevant parts of the appeal site sufficiently to judge the proposal from public land?" />
</labels>
<control id="pinswg_siteviewablefromroad" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_siteviewablefromroad" disabled="false" />
</row>
@@ -2,19 +2,19 @@
<tabs>
<tab>
<labels>
<label description="Introduction" />
<label description="New Appeal" />
</labels>
<columns>
<column>
<sections>
<section>
<labels>
<label description="Introduction" />
<label description="New Appeal" />
</labels>
<rows>
<row>
<labels>
<label description="Case reference" />
<label description="Temporary reference" />
</labels>
<control id="pinswg_name" classid="{4273EDBD-AC1D-40d3-9FB2-095C621B552D}" datafieldname="pinswg_name" />
</row>
@@ -50,7 +50,7 @@
</row>
<row>
<labels>
<label description="What was the LPA Application Reference number given to your application?" />
<label description="LPA's application reference number" />
</labels>
<control validation="[required]" id="pinswg_lpaapplicationreference" classid="{4273EDBD-AC1D-40d3-9FB2-095C621B552D}" datafieldname="pinswg_lpaapplicationreference" maxFieldLength="800" disabled="false" />
</row>
@@ -158,13 +158,13 @@
<rows>
<row>
<labels>
<label description="Site Viewable from Road" />
<label description="Could the Inspector see the relevant parts of the appeal site sufficiently to judge the proposal from public land?" />
</labels>
<control validation="[required]" id="pinswg_siteviewablefromroad" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_siteviewablefromroad" disabled="false" />
</row>
<row>
<labels>
<label description="Does the inspector need to enter the site?" />
<label description="Is it essential for the Inspector to enter the site to check measurements or other relevant facts?" />
</labels>
<control validation="[required]" id="pinswg_inspectorneededonsite" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_inspectorneededonsite" disabled="false" />
</row>
@@ -254,7 +254,7 @@
</row>
<row>
<labels>
<label description="Has there been any other appeals made on this, or on nearby land, against a refusal of planning permission?" />
<label description="Have there been any other appeals decided or are being currently considered on this site, or on nearby land, against a refusal of planning permission?" />
</labels>
<control validation="[required]" id="pinswg_additionalappealsmade" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_additionalappealsmade" disabled="false" />
</row>
@@ -302,13 +302,13 @@
</row>
<row>
<labels>
<label description="Please explain why you have chosen this procedure" />
<label description="If you feel that a hearing or inquiry is needed please provide your full reasons below, including the likely number of days you feel that the event will last and how many witnesses you intend to call." />
</labels>
<control id="pinswg_chosenprocedureexplanation" parentField="pinswg_procedure" parentFieldShowOnValue="846040001,846040002" classid="{E0DECE4B-6FC8-4a8f-A065-082708572369}" datafieldname="pinswg_chosenprocedureexplanation" disabled="false" />
</row>
<row>
<labels>
<label description="Do you intend to submit a costs application with this appeal? (see guidance for further information)" />
<label description="Are you submitting a Costs application with this appeal" />
</labels>
<control validation="[required]" id="pinswg_costappliedforindecator" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_costappliedforindecator" requiredDocumentValue="Yes" requiredDocumentLabel="Statement of costs" disabled="false" />
</row>
+1 -1
View File
@@ -323,7 +323,7 @@
</row>
<row>
<labels>
<label description="Site Viewable from Road" />
<label description="Could the Inspector see the relevant parts of the appeal site sufficiently to judge the proposal from public land?" />
</labels>
<control id="pinswg_siteviewablefromroad" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_siteviewablefromroad" disabled="false" />
</row>
+1 -1
View File
@@ -279,7 +279,7 @@
</row>
<row>
<labels>
<label description="Site Viewable from Road" />
<label description="Could the Inspector see the relevant parts of the appeal site sufficiently to judge the proposal from public land?" />
</labels>
<control id="pinswg_siteviewablefromroad" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_siteviewablefromroad" disabled="false" />
</row>
+3 -3
View File
@@ -2,19 +2,19 @@
<tabs>
<tab>
<labels>
<label description="Introduction" />
<label description="New Appeal" />
</labels>
<columns>
<column>
<sections>
<section>
<labels>
<label description="Introduction" />
<label description="New Appeal" />
</labels>
<rows>
<row>
<labels>
<label description="Case reference" />
<label description="Temporary reference" />
</labels>
<control id="pinswg_name" classid="{4273EDBD-AC1D-40d3-9FB2-095C621B552D}" datafieldname="pinswg_name" />
</row>
+113 -113
View File
@@ -2,19 +2,19 @@
<tabs>
<tab>
<labels>
<label description="Introduction" />
<label description="New Appeal" />
</labels>
<columns>
<column>
<sections>
<section>
<labels>
<label description="Introduction" />
<label description="New Appeal" />
</labels>
<rows>
<row>
<labels>
<label description="Case reference" hint="newappeal:new-appeal-introduction-paragraph" />
<label description="Temporary reference" hint="newappeal:new-appeal-introduction-paragraph" />
</labels>
<control id="pinswg_name" classid="{4273EDBD-AC1D-40d3-9FB2-095C621B552D}" datafieldname="pinswg_name" />
</row>
@@ -38,7 +38,7 @@
<rows>
<row>
<labels>
<label description="Development description" />
<label description="Development description" hint="newappeal:new-appeal-development-description-hint" />
</labels>
<control validation="[required]" id="pinswg_developmentdescription" classid="{E0DECE4B-6FC8-4a8f-A065-082708572369}" datafieldname="pinswg_developmentdescription" maxFieldLength="800" disabled="false" />
</row>
@@ -46,31 +46,31 @@
<labels>
<label description="Has the description of the development changed since the application was submitted?" />
</labels>
<control validation="[required]" id="pinswg_developmentdescriptionchanged" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_developmentdescriptionchanged" disabled="false" requiredDocumentValue="Yes" requiredDocumentLabel="LPA confirmation of change" />
<control validation="[required]" id="pinswg_developmentdescriptionchanged" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_developmentdescriptionchanged" disabled="false" requiredDocumentValue="Yes" requiredDocumentLabel="Development of description change" />
</row>
<row>
<labels>
<label description="What was the LPA Application Reference number given to your application?" />
<label description="LPA's application reference number" />
</labels>
<control validation="[required]" id="pinswg_lpaapplicationreference" classid="{4273EDBD-AC1D-40d3-9FB2-095C621B552D}" datafieldname="pinswg_lpaapplicationreference" maxFieldLength="12" disabled="false" />
</row>
<row>
<labels>
<label description="When is the application form dated?" />
<label description="Application form dated" />
</labels>
<control validation="[required]" id="pinswg_dateofapplication" classid="{5B773807-9FB2-42db-97C3-7A91EFF8ADFF}" datafieldname="pinswg_dateofapplication" dateStart="-5y" dateEnd="0" disabled="false" />
</row>
<row>
<labels>
<label description="Has your application been decided by the LPA?" />
<label description="Reason for Appeal" />
</labels>
<control validation="[required]" id="pinswg_lpadecisiononapplicationmade" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_lpadecisiononapplicationmade" disabled="false" requiredDocumentValue="Yes" requiredDocumentLabel="LPA Application decision" />
<control validation="[required]" id="pinswg_caseworkreason" classid="{3EF39988-22BB-4f0b-BBBE-64B5A3748AEE}" datafieldname="pinswg_caseworkreason" disabled="false" />
</row>
<row>
<labels>
<label description="What date was your application decided on by the LPA?" />
</labels>
<control id="pinswg_dateoflpadecision" parentField="pinswg_lpadecisiononapplicationmade" parentFieldShowOnValue="Yes" classid="{5B773807-9FB2-42db-97C3-7A91EFF8ADFF}" datafieldname="pinswg_dateoflpadecision" dateStart="-6m" dateEnd="0" disabled="false" />
<control id="pinswg_dateoflpadecision" parentField="pinswg_caseworkreason" parentFieldShowOnValue="846040000" classid="{5B773807-9FB2-42db-97C3-7A91EFF8ADFF}" datafieldname="pinswg_dateoflpadecision" dateStart="-6m" dateEnd="0" disabled="false" />
</row>
<row>
<labels>
@@ -102,6 +102,18 @@
</labels>
<control validation="[required,postcode]" id="pinswg_siteaddresspostcode" classid="{4273EDBD-AC1D-40d3-9FB2-095C621B552D}" datafieldname="pinswg_siteaddresspostcode" disabled="false" />
</row>
<row>
<labels>
<label description="Size of overall appeal site (in hectares)" />
</labels>
<control validation="[required]" id="pinswg_areaofsiteinhectaresdec" classid="{C3EFE0C3-0EC6-42be-8349-CBD9079DFD8E}" datafieldname="pinswg_areaofsiteinhectaresdec" maxFieldLength="4" disabled="false" />
</row>
<row>
<labels>
<label description="What is the area of floor space proposed? (in square metres). If no new floor space is proposed, please enter 0." />
</labels>
<control validation="[required]" id="pinswg_floorspaceinsquaremeters" classid="{C6D124CA-7EDA-4a60-AEA9-7FB8D318B68F}" datafieldname="pinswg_floorspaceinsquaremeters" maxFieldLength="5" disabled="false" />
</row>
</rows>
</section>
</sections>
@@ -130,7 +142,7 @@
<labels>
<label description="Ownership Certificate" hint="newappeal:new-appeal-ownership-hint" />
</labels>
<control validation="[required]" id="pinswg_ownershipcertificate" classid="{07FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldcontent="[846040000|newappeal:new-appeal-ownership-option-NA,846040001|newappeal:new-appeal-ownership-option-A,846040002|newappeal:new-appeal-ownership-option-B,846040003|newappeal:new-appeal-ownership-option-CD]" datafieldname="pinswg_ownershipcertificate" requiredDocumentValue="Yes" requiredDocumentLabel="Relevant Ownership certificate" disabled="false" />
<control validation="[required]" id="pinswg_ownershipcertificate" classid="{07FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldcontent="[846040001|newappeal:new-appeal-ownership-option-A,846040002|newappeal:new-appeal-ownership-option-B,846040003|newappeal:new-appeal-ownership-option-CD]" datafieldname="pinswg_ownershipcertificate" requiredDocumentValue="Yes" requiredDocumentLabel="Relevant Ownership certificate" disabled="false" />
</row>
<row>
<labels>
@@ -170,19 +182,19 @@
<rows>
<row>
<labels>
<label description="Site Viewable from Road" />
<label description="Could the Inspector see the relevant parts of the appeal site sufficiently to judge the proposal from public land?" />
</labels>
<control validation="[required]" id="pinswg_siteviewablefromroad" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_siteviewablefromroad" disabled="false" />
</row>
<row>
<labels>
<label description="Does the inspector need to enter the site?" />
<label description="Is it essential for the Inspector to enter the site to check measurements or other relevant facts?" />
</labels>
<control validation="[required]" id="pinswg_inspectorneededonsite" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_inspectorneededonsite" disabled="false" />
</row>
<row>
<labels>
<label description="Please explain why the inspector needs to enter the site" />
<label description="Please explain why the inspector needs to enter the site" hint="newappeal:new-appeal-inspector-onsite-paragraph" />
</labels>
<control id="pinswg_whyisinspectorneededonsite" parentField="pinswg_inspectorneededonsite" parentFieldShowOnValue="Yes" classid="{E0DECE4B-6FC8-4a8f-A065-082708572369}" datafieldname="pinswg_whyisinspectorneededonsite" maxFieldLength="800" disabled="false" />
</row>
@@ -210,9 +222,9 @@
</column>
</columns>
</tab>
<tab name="Appeal site information">
<tab name="Other Appeals">
<labels>
<label description="Appeal site information" />
<label description="Other Appeals" />
</labels>
<columns>
<column>
@@ -224,85 +236,7 @@
<rows>
<row>
<labels>
<label description="What is overall the size of the appeal site, as shown on the red line boundary plan? (in hectares)" />
</labels>
<control validation="[required]" id="pinswg_areaofsiteinhectaresdec" classid="{C3EFE0C3-0EC6-42be-8349-CBD9079DFD8E}" datafieldname="pinswg_areaofsiteinhectaresdec" maxFieldLength="4" disabled="false" />
</row>
<row>
<labels>
<label description="What is the area of floor space proposed? (in square metres). If no new floor space is proposed, please enter 0." />
</labels>
<control validation="[required]" id="pinswg_floorspaceinsquaremeters" classid="{C6D124CA-7EDA-4a60-AEA9-7FB8D318B68F}" datafieldname="pinswg_floorspaceinsquaremeters" maxFieldLength="5" disabled="false" />
</row>
<row>
<labels>
<label description="Is flooding an issue?" />
</labels>
<control validation="[required]" id="pinswg_isfloodingandissue" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_isfloodingandissue" disabled="false" />
</row>
<row>
<labels>
<label description="Do the works affect the setting of a Listed Building?" />
</labels>
<control validation="[required]" id="pinswg_developmentaffectsettingofalisted" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_developmentaffectsettingofalisted" disabled="false" />
</row>
<row>
<labels>
<label description="Is the appeal site within an Area of Outstanding Natural Beauty?" />
</labels>
<control id="pinswg_isthesitewithinanaonb" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_isthesitewithinanaonb" disabled="false" />
</row>
<row>
<labels>
<label description="Is the appeal site in a Conservation Area?" />
</labels>
<control validation="[required]" id="pinswg_incarelatestoca" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_incarelatestoca" disabled="false" />
</row>
<row>
<labels>
<label description="Is the appeal site in or adjacent to, or likely to affect a Site of Special Scientific Interest (SSSI), a Special Conservation Area (SAC) or an Internationally Designated Site?" />
</labels>
<control validation="[required]" id="pinswg_sitewithinsssi" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_sitewithinsssi" disabled="false" />
</row>
<row>
<labels>
<label description="Are any protected species likely to be affected by the proposals?" />
</labels>
<control validation="[required]" id="pinswg_protectedspecies" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_protectedspecies" disabled="false" />
</row>
</rows>
</section>
</sections>
</column>
<column>
<sections>
<section name="tab_8_section_2">
</section>
</sections>
</column>
</columns>
</tab>
<tab name="Appeal procedure">
<labels>
<label description="Appeal procedure" />
</labels>
<columns>
<column>
<sections>
<section name="tab_8_section_1">
<labels>
<label description="Section" />
</labels>
<rows>
<row>
<labels>
<label description="Are you appealing because of" />
</labels>
<control validation="[required]" id="pinswg_caseworkreason" classid="{3EF39988-22BB-4f0b-BBBE-64B5A3748AEE}" datafieldname="pinswg_caseworkreason" disabled="false" />
</row>
<row>
<labels>
<label description="Has there been any other appeals made on this, or on nearby land, against a refusal of planning permission?" />
<label description="Have there been any other appeals decided or are being currently considered on this site, or on nearby land, against a refusal of planning permission?" />
</labels>
<control validation="[required]" id="pinswg_additionalappealsmade" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_additionalappealsmade" disabled="false" />
</row>
@@ -338,33 +272,45 @@
<rows>
<row>
<labels>
<label description="Please submit your statement of case" />
<label description="Please submit your statement of case" hint="newappeal:new-appeal-submission-of-case-hint" />
</labels>
<control validation="[required]" id="pinswg_statementofcase" classid="{E0DECE4B-6666-4a8f-A065-082708572369}" datafieldname="pinswg_statementofcase" maxFieldLength="5000" disabled="false" />
</row>
<row>
<labels>
<label description="What procedure would you like the appeal to follow? More information on this can be found in the guidance notes." />
<label description="Are you attaching a separate Statement of Case document?" />
</labels>
<control validation="[required]" id="pinswg_attachsoc" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_attachsoc" requiredDocumentValue="Yes" requiredDocumentLabel="Statement of Case" disabled="false" />
</row>
<row>
<labels>
<label description="What procedure would you like the appeal to follow? More information on this can be found in the guidance notes." hint="newappeal:new-appeal-what-procedure-hint" />
</labels>
<control validation="[required]" id="pinswg_procedure" classid="{3EF39988-22BB-4f0b-BBBE-64B5A3748AEE}" datafieldname="pinswg_procedure" disabled="false" />
</row>
<row>
<labels>
<label description="Would you prefer a virtual or in person event?" />
</labels>
<control id="pinswg_virtualorinpersonevent" parentField="pinswg_procedure" parentFieldShowOnValue="846040001,846040002" classid="{07FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldcontent="[846040000|newappeal:new-appeal-procedure-option-virtual,846040001|newappeal:new-appeal-procedure-option-inperson,846040002|newappeal:new-appeal-procedure-option-hybrid]" datafieldname="pinswg_virtualorinpersonevent" disabled="false" />
</row>
<row>
<labels>
<label description="Please explain why you have chosen this procedure" />
<label description="If you feel that a hearing or inquiry is needed please provide your full reasons below, including the likely number of days you feel that the event will last and how many witnesses you intend to call." />
</labels>
<control id="pinswg_chosenprocedureexplanation" parentField="pinswg_procedure" parentFieldShowOnValue="846040001,846040002" classid="{E0DECE4B-6FC8-4a8f-A065-082708572369}" datafieldname="pinswg_chosenprocedureexplanation" disabled="false" />
</row>
<row>
<labels>
<label description="Do you intend to submit a costs application with this appeal? (see guidance for further information)" />
<label description="Are you submitting a Costs application with this appeal?" />
</labels>
<control validation="[required]" id="pinswg_costappliedforindicator" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_costappliedforindicator" requiredDocumentValue="Yes" requiredDocumentLabel="Statement of costs" disabled="false" />
<control validation="[required]" id="pinswg_costappliedforindicator" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_costappliedforindicator" disabled="false" />
</row>
<row>
<labels>
<label description="Please submit your Cost Application" hint="newappeal:new-appeal-cost-application-hint" />
</labels>
<control validation="[required]" id="pinswg_costapplication" parentField="pinswg_costappliedforindicator" parentFieldShowOnValue="Yes,Ydw" classid="{E0DECE4B-6666-4a8f-A065-082708572369}" datafieldname="pinswg_costapplication" maxFieldLength="5000" disabled="false" />
</row>
<row>
<labels>
<label description="Are you attaching a separate Costs application?" />
</labels>
<control validation="[required]" id="pinswg_attachcostapplication" parentField="pinswg_costappliedforindicator" parentFieldShowOnValue="Yes,Ydw" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_attachcostapplication" requiredDocumentValue="Yes" requiredDocumentLabel="Cost Application" disabled="false" />
</row>
<row>
<labels>
@@ -398,46 +344,100 @@
<rows>
<row>
<labels>
<label description="Site plan" ishareDocumentCode="000001" hint="Site plan (preferably on a copy of an Ordnance Survey map at not less than 10,000 scale) showing the general location of the proposed development and its boundary. This plan should show two named roads so as to assist the location of the appeal site or premises. The application site should be edged or shaded in red and any other adjoining land owned or controlled by the appellant (if any) edged or shaded in blue." />
<label description="Statement of case" ishareDocumentCode="000000" />
</labels>
<control id="pinswg_fileUpload" classid="{16D63FD6-119B-4353-BDCA-18358721C3FE}" datafieldname="pinswg_fileUpload" disabled="false" />
</row>
<row>
<labels>
<label description="Plans, drawings and documents submitted to the LPA (and list)" ishareDocumentCode="000002" />
<label description="A copy of the original planning application sent to the LPA." ishareDocumentCode="000001" />
</labels>
<control id="pinswg_fileUpload1" classid="{16D63FD6-119B-4353-BDCA-18358721C3FE}" datafieldname="pinswg_fileUpload1" disabled="false" />
</row>
<row>
<labels>
<label description="A copy of the site ownership certificate and ownership details submitted to the LPA at application stage (this is usually part of the LPA's planning application form)." ishareDocumentCode="000002" />
</labels>
<control id="pinswg_fileUpload2" classid="{16D63FD6-119B-4353-BDCA-18358721C3FE}" datafieldname="pinswg_fileUpload2" disabled="false" />
</row>
<row>
<labels>
<label description="Design and Access Statement (if relevant)" ishareDocumentCode="000003" />
<label description="A copy of the LPA's decision notice (if issued)." ishareDocumentCode="000003" />
</labels>
<control id="pinswg_fileUpload3" classid="{16D63FD6-119B-4353-BDCA-18358721C3FE}" datafieldname="pinswg_fileUpload3" disabled="false" />
</row>
<row>
<labels>
<label description="Correspondence with the LPA relating to the application" ishareDocumentCode="000004" />
<label description="A site plan (preferably on a copy of an Ordnance Survey map at not less than 10,000 scale) showing the general location of the proposed development and its boundary. This plan should show two named roads so as to assist the location of the appeal site or premises. The application site should be edged or shaded in red and any other adjoining land owned or controlled by the appellant (if any) edged or shaded in blue." ishareDocumentCode="000004" />
</labels>
<control id="pinswg_fileUpload4" classid="{16D63FD6-119B-4353-BDCA-18358721C3FE}" datafieldname="pinswg_fileUpload4" disabled="false" />
</row>
<row>
<labels>
<label description="Environmental Statement plus certificates and notices relating to publicity (if relevant)" ishareDocumentCode="000005" />
<label description="A list (stating drawing numbers) and copies of all plans, drawings and documents sent to the LPA as part of the application. The plans and drawings should show all boundaries and coloured markings given on those sent to the LPA." ishareDocumentCode="000005" />
</labels>
<control id="pinswg_fileUpload5" classid="{16D63FD6-119B-4353-BDCA-18358721C3FE}" datafieldname="pinswg_fileUpload5" disabled="false" />
</row>
<row>
<labels>
<label description="Any other material you may deem relevant" ishareDocumentCode="000006" />
<label description="A list (stating drawing numbers) and copies of any additional plans, drawings and documents sent to the LPA but which did not form part of the original application (e.g. drawings for illustrative purposes)." ishareDocumentCode="000006" />
</labels>
<control id="pinswg_fileUpload6" classid="{16D63FD6-119B-4353-BDCA-18358721C3FE}" datafieldname="pinswg_fileUpload6" disabled="false" />
</row>
<row>
<labels>
<label description="The S106 agreement or unilateral undertaking" ishareDocumentCode="000007" />
<label description="A copy of the Design and Access Statement (if required)." ishareDocumentCode="000007" />
</labels>
<control id="pinswg_fileUpload7" classid="{16D63FD6-119B-4353-BDCA-18358721C3FE}" datafieldname="pinswg_fileUpload7" disabled="false" />
</row>
<row>
<labels>
<label description="Additional plans, drawings or documents relating to the application but not previously seen by the LPA." ishareDocumentCode="000008" />
</labels>
<control id="pinswg_fileUpload8" classid="{16D63FD6-119B-4353-BDCA-18358721C3FE}" datafieldname="pinswg_fileUpload8" disabled="false" />
</row>
<row>
<labels>
<label description="All relevant correspondence with the LPA relating to the application." ishareDocumentCode="000009" />
</labels>
<control id="pinswg_fileUpload9" classid="{16D63FD6-119B-4353-BDCA-18358721C3FE}" datafieldname="pinswg_fileUpload9" disabled="false" />
</row>
<row>
<labels>
<label description="If the appeal is against the LPA's refusal or failure to decide an application which relates to a condition, we must receive a copy of the original permission with the condition attached." ishareDocumentCode="000010" />
</labels>
<control id="pinswg_fileUpload10" classid="{16D63FD6-119B-4353-BDCA-18358721C3FE}" datafieldname="pinswg_fileUpload10" disabled="false" />
</row>
<row>
<labels>
<label description="If the appeal is against the LPA's failure to decide an application please supply a copy of the LPA's letter registering your application." ishareDocumentCode="000011" />
</labels>
<control id="pinswg_fileUpload11" classid="{16D63FD6-119B-4353-BDCA-18358721C3FE}" datafieldname="pinswg_fileUpload11" disabled="false" />
</row>
<row>
<labels>
<label description="A copy of any Environmental Statement plus certificates and notices relating to publicity (if one was sent with the application, or required by the LPA)." ishareDocumentCode="000012" />
</labels>
<control id="pinswg_fileUpload12" classid="{16D63FD6-119B-4353-BDCA-18358721C3FE}" datafieldname="pinswg_fileUpload12" disabled="false" />
</row>
<row>
<labels>
<label description="Any other material you may deem relevant" ishareDocumentCode="000013" />
</labels>
<control id="pinswg_fileUpload13" classid="{16D63FD6-119B-4353-BDCA-18358721C3FE}" datafieldname="pinswg_fileUpload13" disabled="false" />
</row>
<row>
<labels>
<label description="Cost of application" ishareDocumentCode="000013" />
</labels>
<control id="pinswg_fileUpload14" classid="{16D63FD6-119B-4353-BDCA-18358721C3FE}" datafieldname="pinswg_fileUpload14" disabled="false" />
</row>
<row>
<labels>
<label description="The S106 agreement or unilateral undertaking" ishareDocumentCode="000008" />
</labels>
<control id="pinswg_fileUpload15" classid="{16D63FD6-119B-4353-BDCA-18358721C3FE}" datafieldname="pinswg_fileUpload15" disabled="false" />
</row>
</rows>
</section>
</sections>
+1 -1
View File
@@ -554,7 +554,7 @@
</row>
<row>
<labels>
<label description="Site Viewable from road" />
<label description="Could the Inspector see the relevant parts of the appeal site sufficiently to judge the proposal from public land?" />
</labels>
<control id="pinswg_siteviewablefromroad" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_siteviewablefromroad" disabled="false" />
</row>
@@ -628,7 +628,7 @@
</row>
<row>
<labels>
<label description="Site Viewable from Road" />
<label description="Could the Inspector see the relevant parts of the appeal site sufficiently to judge the proposal from public land?" />
</labels>
<control id="pinswg_siteviewablefromroad" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_siteviewablefromroad" disabled="false" />
</row>
+1 -1
View File
@@ -323,7 +323,7 @@
</row>
<row>
<labels>
<label description="Site Viewable from Road" />
<label description="Could the Inspector see the relevant parts of the appeal site sufficiently to judge the proposal from public land?" />
</labels>
<control id="pinswg_siteviewablefromroad" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_siteviewablefromroad" disabled="false" />
</row>
+1 -1
View File
@@ -323,7 +323,7 @@
</row>
<row>
<labels>
<label description="Site Viewable from Road" />
<label description="Could the Inspector see the relevant parts of the appeal site sufficiently to judge the proposal from public land?" />
</labels>
<control id="pinswg_siteviewablefromroad" classid="{67FAC785-CD58-4f9f-ABB3-4B7DDC6ED5ED}" datafieldname="pinswg_siteviewablefromroad" disabled="false" />
</row>
-43
View File
@@ -18393,49 +18393,6 @@
"OptionSetType": "Picklist",
"IntroducedVersion": null,
"Options": [
{
"Value": 846040000,
"Label": {
"LocalizedLabels": [
{
"Label": "NA",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "9379bf80-e287-eb11-aac2-00224800be9c",
"HasChanged": null
}
],
"UserLocalizedLabel": {
"Label": "NA",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "9379bf80-e287-eb11-aac2-00224800be9c",
"HasChanged": null
}
},
"Description": {
"LocalizedLabels": [
{
"Label": "",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "9579bf80-e287-eb11-aac2-00224800be9c",
"HasChanged": null
}
],
"UserLocalizedLabel": {
"Label": "",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "9579bf80-e287-eb11-aac2-00224800be9c",
"HasChanged": null
}
},
"Color": "#0000ff",
"IsManaged": false,
"MetadataId": null,
"HasChanged": null
},
{
"Value": 846040001,
"Label": {
@@ -18449,49 +18449,6 @@
"OptionSetType": "Picklist",
"IntroducedVersion": null,
"Options": [
{
"Value": 846040000,
"Label": {
"LocalizedLabels": [
{
"Label": "NA",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "9379bf80-e287-eb11-aac2-00224800be9c",
"HasChanged": null
}
],
"UserLocalizedLabel": {
"Label": "NA",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "9379bf80-e287-eb11-aac2-00224800be9c",
"HasChanged": null
}
},
"Description": {
"LocalizedLabels": [
{
"Label": "",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "9579bf80-e287-eb11-aac2-00224800be9c",
"HasChanged": null
}
],
"UserLocalizedLabel": {
"Label": "",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "9579bf80-e287-eb11-aac2-00224800be9c",
"HasChanged": null
}
},
"Color": "#0000ff",
"IsManaged": false,
"MetadataId": null,
"HasChanged": null
},
{
"Value": 846040001,
"Label": {
@@ -33729,49 +33729,6 @@
"OptionSetType": "Picklist",
"IntroducedVersion": null,
"Options": [
{
"Value": 846040000,
"Label": {
"LocalizedLabels": [
{
"Label": "NA",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "9379bf80-e287-eb11-aac2-00224800be9c",
"HasChanged": null
}
],
"UserLocalizedLabel": {
"Label": "NA",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "9379bf80-e287-eb11-aac2-00224800be9c",
"HasChanged": null
}
},
"Description": {
"LocalizedLabels": [
{
"Label": "",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "9579bf80-e287-eb11-aac2-00224800be9c",
"HasChanged": null
}
],
"UserLocalizedLabel": {
"Label": "",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "9579bf80-e287-eb11-aac2-00224800be9c",
"HasChanged": null
}
},
"Color": "#0000ff",
"IsManaged": false,
"MetadataId": null,
"HasChanged": null
},
{
"Value": 846040001,
"Label": {
@@ -18248,49 +18248,6 @@
"OptionSetType": "Picklist",
"IntroducedVersion": null,
"Options": [
{
"Value": 846040000,
"Label": {
"LocalizedLabels": [
{
"Label": "NA",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "9379bf80-e287-eb11-aac2-00224800be9c",
"HasChanged": null
}
],
"UserLocalizedLabel": {
"Label": "NA",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "9379bf80-e287-eb11-aac2-00224800be9c",
"HasChanged": null
}
},
"Description": {
"LocalizedLabels": [
{
"Label": "",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "9579bf80-e287-eb11-aac2-00224800be9c",
"HasChanged": null
}
],
"UserLocalizedLabel": {
"Label": "",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "9579bf80-e287-eb11-aac2-00224800be9c",
"HasChanged": null
}
},
"Color": "#0000ff",
"IsManaged": false,
"MetadataId": null,
"HasChanged": null
},
{
"Value": 846040001,
"Label": {
@@ -17287,49 +17287,6 @@
"OptionSetType": "Picklist",
"IntroducedVersion": null,
"Options": [
{
"Value": 846040000,
"Label": {
"LocalizedLabels": [
{
"Label": "NA",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "9379bf80-e287-eb11-aac2-00224800be9c",
"HasChanged": null
}
],
"UserLocalizedLabel": {
"Label": "NA",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "9379bf80-e287-eb11-aac2-00224800be9c",
"HasChanged": null
}
},
"Description": {
"LocalizedLabels": [
{
"Label": "",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "9579bf80-e287-eb11-aac2-00224800be9c",
"HasChanged": null
}
],
"UserLocalizedLabel": {
"Label": "",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "9579bf80-e287-eb11-aac2-00224800be9c",
"HasChanged": null
}
},
"Color": "#0000ff",
"IsManaged": false,
"MetadataId": null,
"HasChanged": null
},
{
"Value": 846040001,
"Label": {
@@ -12201,49 +12201,6 @@
"OptionSetType": "Picklist",
"IntroducedVersion": null,
"Options": [
{
"Value": 846040000,
"Label": {
"LocalizedLabels": [
{
"Label": "NA",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "9379bf80-e287-eb11-aac2-00224800be9c",
"HasChanged": null
}
],
"UserLocalizedLabel": {
"Label": "NA",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "9379bf80-e287-eb11-aac2-00224800be9c",
"HasChanged": null
}
},
"Description": {
"LocalizedLabels": [
{
"Label": "",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "9579bf80-e287-eb11-aac2-00224800be9c",
"HasChanged": null
}
],
"UserLocalizedLabel": {
"Label": "",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "9579bf80-e287-eb11-aac2-00224800be9c",
"HasChanged": null
}
},
"Color": "#0000ff",
"IsManaged": false,
"MetadataId": null,
"HasChanged": null
},
{
"Value": 846040001,
"Label": {
@@ -12014,221 +12014,6 @@
"MetadataId": null,
"HasChanged": null
},
{
"Value": 846040003,
"Label": {
"LocalizedLabels": [
{
"Label": "Granted approval of the matters reserved under the outline planning permission subject to conditions which you object",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "9d52d2aa-4283-eb11-aac0-00224800be9c",
"HasChanged": null
}
],
"UserLocalizedLabel": {
"Label": "Granted approval of the matters reserved under the outline planning permission subject to conditions which you object",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "9d52d2aa-4283-eb11-aac0-00224800be9c",
"HasChanged": null
}
},
"Description": {
"LocalizedLabels": [
{
"Label": "",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "9f52d2aa-4283-eb11-aac0-00224800be9c",
"HasChanged": null
}
],
"UserLocalizedLabel": {
"Label": "",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "9f52d2aa-4283-eb11-aac0-00224800be9c",
"HasChanged": null
}
},
"Color": "#0000ff",
"IsManaged": false,
"MetadataId": null,
"HasChanged": null
},
{
"Value": 846040001,
"Label": {
"LocalizedLabels": [
{
"Label": "Granted planning permission for the development subject to the conditions which you object",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "9752d2aa-4283-eb11-aac0-00224800be9c",
"HasChanged": null
}
],
"UserLocalizedLabel": {
"Label": "Granted planning permission for the development subject to the conditions which you object",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "9752d2aa-4283-eb11-aac0-00224800be9c",
"HasChanged": null
}
},
"Description": {
"LocalizedLabels": [
{
"Label": "",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "9952d2aa-4283-eb11-aac0-00224800be9c",
"HasChanged": null
}
],
"UserLocalizedLabel": {
"Label": "",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "9952d2aa-4283-eb11-aac0-00224800be9c",
"HasChanged": null
}
},
"Color": "#0000ff",
"IsManaged": false,
"MetadataId": null,
"HasChanged": null
},
{
"Value": 846040006,
"Label": {
"LocalizedLabels": [
{
"Label": "Refuse listed building consent/conservation area consent for the development as described",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "1a414e46-8505-ec11-aac8-00224800be9c",
"HasChanged": null
}
],
"UserLocalizedLabel": {
"Label": "Refuse listed building consent/conservation area consent for the development as described",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "1a414e46-8505-ec11-aac8-00224800be9c",
"HasChanged": null
}
},
"Description": {
"LocalizedLabels": [
{
"Label": "",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "1c414e46-8505-ec11-aac8-00224800be9c",
"HasChanged": null
}
],
"UserLocalizedLabel": {
"Label": "",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "1c414e46-8505-ec11-aac8-00224800be9c",
"HasChanged": null
}
},
"Color": "#0000ff",
"IsManaged": false,
"MetadataId": null,
"HasChanged": null
},
{
"Value": 846040002,
"Label": {
"LocalizedLabels": [
{
"Label": "Refused approval of the matters reserved under an outline planning permission",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "9a52d2aa-4283-eb11-aac0-00224800be9c",
"HasChanged": null
}
],
"UserLocalizedLabel": {
"Label": "Refused approval of the matters reserved under an outline planning permission",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "9a52d2aa-4283-eb11-aac0-00224800be9c",
"HasChanged": null
}
},
"Description": {
"LocalizedLabels": [
{
"Label": "",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "9c52d2aa-4283-eb11-aac0-00224800be9c",
"HasChanged": null
}
],
"UserLocalizedLabel": {
"Label": "",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "9c52d2aa-4283-eb11-aac0-00224800be9c",
"HasChanged": null
}
},
"Color": "#0000ff",
"IsManaged": false,
"MetadataId": null,
"HasChanged": null
},
{
"Value": 846040007,
"Label": {
"LocalizedLabels": [
{
"Label": "Refused permission to vary or remove a condition(s)",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "20414e46-8505-ec11-aac8-00224800be9c",
"HasChanged": null
}
],
"UserLocalizedLabel": {
"Label": "Refused permission to vary or remove a condition(s)",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "20414e46-8505-ec11-aac8-00224800be9c",
"HasChanged": null
}
},
"Description": {
"LocalizedLabels": [
{
"Label": "",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "22414e46-8505-ec11-aac8-00224800be9c",
"HasChanged": null
}
],
"UserLocalizedLabel": {
"Label": "",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "22414e46-8505-ec11-aac8-00224800be9c",
"HasChanged": null
}
},
"Color": "#0000ff",
"IsManaged": false,
"MetadataId": null,
"HasChanged": null
},
{
"Value": 846040000,
"Label": {
@@ -12271,49 +12056,6 @@
"IsManaged": false,
"MetadataId": null,
"HasChanged": null
},
{
"Value": 846040004,
"Label": {
"LocalizedLabels": [
{
"Label": "Refused to approve any matters requiered by a condition on a previous planning permission (other than those above)",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "a052d2aa-4283-eb11-aac0-00224800be9c",
"HasChanged": null
}
],
"UserLocalizedLabel": {
"Label": "Refused to approve any matters requiered by a condition on a previous planning permission (other than those above)",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "a052d2aa-4283-eb11-aac0-00224800be9c",
"HasChanged": null
}
},
"Description": {
"LocalizedLabels": [
{
"Label": "",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "a252d2aa-4283-eb11-aac0-00224800be9c",
"HasChanged": null
}
],
"UserLocalizedLabel": {
"Label": "",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "a252d2aa-4283-eb11-aac0-00224800be9c",
"HasChanged": null
}
},
"Color": "#0000ff",
"IsManaged": false,
"MetadataId": null,
"HasChanged": null
}
]
}
@@ -18248,49 +17990,6 @@
"OptionSetType": "Picklist",
"IntroducedVersion": null,
"Options": [
{
"Value": 846040000,
"Label": {
"LocalizedLabels": [
{
"Label": "NA",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "9379bf80-e287-eb11-aac2-00224800be9c",
"HasChanged": null
}
],
"UserLocalizedLabel": {
"Label": "NA",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "9379bf80-e287-eb11-aac2-00224800be9c",
"HasChanged": null
}
},
"Description": {
"LocalizedLabels": [
{
"Label": "",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "9579bf80-e287-eb11-aac2-00224800be9c",
"HasChanged": null
}
],
"UserLocalizedLabel": {
"Label": "",
"LanguageCode": 1033,
"IsManaged": false,
"MetadataId": "9579bf80-e287-eb11-aac2-00224800be9c",
"HasChanged": null
}
},
"Color": "#0000ff",
"IsManaged": false,
"MetadataId": null,
"HasChanged": null
},
{
"Value": 846040001,
"Label": {
+10 -1
View File
@@ -52,6 +52,7 @@
"new-appeal-progress-nav-label": "Cynnydd",
"new-appeal-documentlist-nav": "Angen dogfen",
"new-appeal-introduction-paragraph": "Intro text to explain process. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer ornare lobortis sollicitudin. Pellentesque ac libero auctor, efficitur urna faucibus, fringilla nisi. Fusce viverra pharetra tristique. In diam est, interdum sagittis tempus non, ultricies at ante. Nullam porta dolor sit amet.",
"new-appeal-development-description-hint": "Nodwch fanylion y datblygiad arfaethedig. Dylid cymryd hwn fel arfer or ffurflen gais cynllunio, ond os cafodd y cais ei adolygu trar oedd gydar ACLl iw ystyried, gallwch nodi disgrifiad or cynllun diwygiedig. Amgaewch gopi o gytundeb yr ACLl ir newid.",
"new-appeal-ownership-hint": "Mae angen i ni wybod pwy sy'n berchen ar safle'r apźl. Os nad ydych yn berchen ar safle'r apźl neu os mai dim ond rhan ohono rydych yn berchen arno, mae angen i ni wybod enw(au) y perchennog(perchnogion) neu'r rhan-berchennog/perchnogion. Mae angen i ni hefyd fod yn siŵr bod y perchennog/perchnogion eraill yn gwybod eich bod wedi gwneud apêl. Cyfeiriwch at y nodiadau canllaw ar lenwi'r adran hon.",
"new-appeal-ownership-option-NA": "Amherthnasol",
"new-appeal-ownership-option-A": "Tystysgrif A - (Os mai chi yw unig berchennog safle cyfan yr apźl, mae tystysgrif A yn gymwys). Tystiaf, ar y diwrnod 21 diwrnod cyn dyddiad yr apêl hon, nad oedd neb ac eithrior apelydd, yn berchennog (gweler y daflen arweiniad am ddiffiniad) unrhyw ran or tir y maer apêl yn ymwneud ag ef",
@@ -66,5 +67,13 @@
"new-appeal-procedure-option-hybrid": "Hybrid",
"new-appeal-fileupload-drop-label": "Llusgwch a gollwng eich ffeiliau yma.",
"new-appeal-fileupload-file-list-label": "Dim ond ffeiliau .pdf, .doc, .docx, .tif, .tiff, .jpeg, .jpg neu .zip a dderbynnir",
"s78-appeals-only-label": "Dim ond drwy'r Porth Gwaith Achos y gallwch gyflwyno apêl yn erbyn Gwrthod Caniatâd Cynllunio neu Fethiant i Benderfynu o fewn yr amser ar gyfer Apeliadau Cynllunio a78 drwy'r Porth Gwaith Achos. Rhaid cyflwyno pob apêl arall drwy'r post neu e-bost."
"s78-appeals-only-label": "Dim ond drwy'r Porth Gwaith Achos y gallwch gyflwyno apêl yn erbyn Gwrthod Caniatâd Cynllunio neu Fethiant i Benderfynu o fewn yr amser ar gyfer Apeliadau Cynllunio a78 drwy'r Porth Gwaith Achos. Rhaid cyflwyno pob apêl arall drwy'r post neu e-bost.",
"new-appeal-inspector-onsite-paragraph": "NODYN: Bydd yr arolygydd yn ymweld â'r safle ar ei ben ei hun gan y naill barti na'r llall oni bai na ellir gweld y rhan berthnasol o'r safle o ffordd neu dir cyhoeddus arall, neu a yw'n hanfodol i'r Arolygydd fynd i mewn i'r safle i wirio mesuriadau neu ffeithiau perthnasol.",
"new-appeal-submission-of-case-hint": "Dyma'ch unig gyfle i gyflwyno'ch achos mewn cysylltiad â'r rheswm dros yr apêl. Felly darparwch eich datganiad achos LLAWN. I wneud hyn, mae angen i chi fynd trwy'r rhesymau dros y penderfyniad (os ydynt wedi'u darparu), ac esbonio pam rydych chi'n anghytuno. Dim ond y rhesymau ym mhenderfyniad yr ACLl a'r rhesymau a gyflwynwyd gennych chi ar y cam ymgeisio y dylid eu cynnwys yn eich Datganiad Achos. Ni ddylech gyflwyno unrhyw resymau newydd dros yr apêl. Cyfeiriwch at ein Canllaw Gweithdrefnol am ragor o wybodaeth.",
"new-appeal-what-procedure-hint": "Gellir ystyried apelau yr ymdrinnir â hwy o dan Ran 4 o Reoliadau Cynllunio Gwlad a Thref (Ceisiadau a Atgyfeiriwyd a Gweithdrefn Apelau) (Cymru) 2017 ar sail sylwadau ysgrifenedig, gwrandawiad, ymchwiliad neu achosion cyfun. Yn unol â Gorchymyn Cynllunio Gwlad a Thref (Penderfynu ar Weithdrefn) (Cymru) 2017, bydd Penderfyniadau Cynllunio ac Amgylchedd Cymru yn gwneud penderfyniad ynghylch y weithdrefn fwyaf priodol ac yn ei hadolygu drwy gydol y broses.",
"new-appeal-cost-application-hint": "Mae'n rhaid i chi gyflwyno datganiad isod sy'n esbonio'n glir pam eich bod yn meddwl bod ymddygiad afresymol wedi digwydd a sut mae hyn wedi achosi costau diangen neu wastraffus.",
"new-appeal-check-confirm-label": "Cadarnhaf fod pob adran wedii chwblhaun llawn hyd eithaf fy ngwybodaeth.",
"new-appeal-check-confirm-paragraph-one": "Rwyn deall y gallwch ddefnyddior wybodaeth a roddais at ddibenion swyddogol mewn cysylltiad â Deddf Cynllunio Gwlad a Thref 1990 a gall manylion gan gynnwys fy enw, disgrifiad or safle a fy natganiad achos ymddangos ar-lein. Trwy gyflwyno'r ffurflen hon rwy'n cytuno i'r wybodaeth a roddaf gael ei defnyddio yn y modd hwn.",
"new-appeal-check-confirm-paragraph-two": "Mae casglu a phrosesu dilynol y data personol a ddarparwyd gennych chi ar y ffurflen hon, yn unol â thelerau ein cofrestriad o dan Ddeddf Diogelu Data 1998. Mae rhagor o wybodaeth am y Polisi Diogelu Data ar gael yn ",
"new-appeal-check-confirm-paragraph-two-link": "https://www.llyw.cymru/hysbysiad-preifatrwydd-llywodraeth-cymru"
}
+10 -1
View File
@@ -52,6 +52,7 @@
"new-appeal-progress-nav-label": "Progress",
"new-appeal-documentlist-nav": "Documents needed",
"new-appeal-introduction-paragraph": "Intro text to explain process. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer ornare lobortis sollicitudin. Pellentesque ac libero auctor, efficitur urna faucibus, fringilla nisi. Fusce viverra pharetra tristique. In diam est, interdum sagittis tempus non, ultricies at ante. Nullam porta dolor sit amet.",
"new-appeal-development-description-hint": "Please enter details of the proposed development. This should normally be taken from the planning application form, but if the application was revised while it was with the LPA for consideration, you may enter a description of the revised scheme. Please enclose a copy of the LPAs agreement to the change.",
"new-appeal-ownership-hint": "We need to know who owns the appeal site. If you do not own the appeal site or if you own only part of it, we need to know the name(s) of the owner(s) or part owner(s). We also need to be sure that the other owner(s) know that you have made an appeal. Please refer to the guidance notes on completing this section.",
"new-appeal-ownership-option-NA": "Not applicable",
"new-appeal-ownership-option-A": "Certificate A - (If you are the sole owner of the whole appeal site, certificate A applies). I certify that, on the day 21 days before the date of this appeal, nobody except the appellant, was the owner (see the guidance leaflet for a definition) of any part of the land to which the appeal relates",
@@ -66,5 +67,13 @@
"new-appeal-procedure-option-hybrid": "Hybrid",
"new-appeal-fileupload-drop-label": "Drag and drop your files here.",
"new-appeal-fileupload-file-list-label": "Only .pdf, .doc, .docx, .tif, .tiff, .jpeg, .jpg or .zip files will be accepted",
"s78-appeals-only-label": "You can only submit an appeal against a Refusal of Planning Permission or Failure to Determine within time for Planning Appeals s78 via the Casework Portal. All other appeals must be submitted by by post or email."
"s78-appeals-only-label": "You can only submit an appeal against a Refusal of Planning Permission or Failure to Determine within time for Planning Appeals s78 via the Casework Portal. All other appeals must be submitted by by post or email.",
"new-appeal-inspector-onsite-paragraph": "NOTE: The inspector will visit the site unaccompanied by either party unless the relevant part of the site cannot be seen from a road or other public land, or is it essential for the Inspector to enter the site to check measurements or relevant facts.",
"new-appeal-submission-of-case-hint": "This is your only opportunity to make your case in connection with the reason for the appeal. Therefore please provide your FULL statement of case. To do this, you need to go through the reasons for the decision (if provided), and explain why you disagree. Only the reasons within the LPA's decision and the reasons put forward by you at application stage should be included in your Statement of Case. You should not introduce any new reasons for the appeal. Please refer to our Procedural Guide for further information.",
"new-appeal-what-procedure-hint": "Appeals dealt with under Part 4 of The Town and Country Planning (Referred Applications and Appeals Procedure) (Wales) Regulations 2017 can be considered on the basis of written representation, a hearing, an inquiry or combined proceedings. In accordance with the Town and Country Planning (Determination of Procedure) (Wales) Order 2017, the Planning and Environment Decisions Wales will make a determination as to the most appropriate procedure and will review it throughout the process.",
"new-appeal-cost-application-hint": "You must submit a statement below that clearly explains why you think unreasonable behaviour has occurred and how this has caused unnecessary or wasted expense.",
"new-appeal-check-confirm-label": "I confirm that all sections have been fully completed to the best of my knowledge.",
"new-appeal-check-confirm-paragraph-one": "I understand that you may use the information I have given for official purposes in connection with the Town and Country Planning Act 1990 and details including my name, the site description and my statement of case may appear online. By submitting this form I am agreeing to the use of the information I provide in this way.",
"new-appeal-check-confirm-paragraph-two": "The gathering and subsequent processing of the personal data supplied by you in this form, is in accordance with the terms of our registration under the Data Protection Act 1998. Further information about Data Protection Policy can be found at",
"new-appeal-check-confirm-paragraph-two-link": "https://gov.wales/welsh-government-privacy-notice"
}
+1 -1
View File
@@ -57,7 +57,7 @@ const securityHeaders = [
const buildId = Date.now().toString();
module.exports = {
//output: "standalone",
output: "standalone",
env: {
BUILD_ID_ENV: buildId,
},