From 873a7730f19f44d59c46b1ad613a82c6076b2704 Mon Sep 17 00:00:00 2001 From: rdbsolutions Date: Thu, 7 Oct 2021 07:30:46 +0100 Subject: [PATCH] added translation lookups for appeal forms --- components/breadcrumbs.js | 6 +- components/elements/index.js | 74 +- components/myportal/makenewappeal.js | 6 +- components/myportal/topthree.js | 2 +- components/newappeal/buildcheckrow.js | 26 +- components/newappeal/buildchecksection.js | 2 +- components/newappeal/createCase.js | 3 +- data/crmfieldlookuptranslations.json | 2645 +++++++++++++++++++++ data/lookups.txt | 290 +++ data/picklistLookups.json | 1168 +++++++++ i18n.json | 7 +- locales/cy/common.json | 1 + locales/cy/newappeal.json | 5 +- locales/en/common.json | 1 + locales/en/newappeal.json | 5 +- next.config.js | 8 +- pages/newappeal/[appealtypes].js | 2 +- pages/newappeal/index.js | 2 +- 18 files changed, 4219 insertions(+), 34 deletions(-) create mode 100644 data/crmfieldlookuptranslations.json create mode 100644 data/lookups.txt create mode 100644 data/picklistLookups.json diff --git a/components/breadcrumbs.js b/components/breadcrumbs.js index 947a5ea6..a1142b28 100644 --- a/components/breadcrumbs.js +++ b/components/breadcrumbs.js @@ -551,13 +551,13 @@ const Breadcrumbs = (props) => {
  • - New Appeal + {t("common:breadcrumb-new-appeal")}
  • diff --git a/components/elements/index.js b/components/elements/index.js index e3824ff1..8fcdca58 100644 --- a/components/elements/index.js +++ b/components/elements/index.js @@ -1,11 +1,14 @@ import useSWR from "swr"; import { Field, reduxForm } from "redux-form"; -import router from "next/router"; +import { useRouter } from "next/router"; import DatePicker from "react-datepicker"; import React, { useState } from "react"; import "react-datepicker/dist/react-datepicker.css"; import moment from "moment"; import jsonpath from "jsonpath"; +import fieldLookup from "../../data/crmfieldlookuptranslations.json"; +import pickListLookup from "../../data/picklistLookups.json"; +import useTranslation from "next-translate/useTranslation"; const RenderTextfield = ({ id, @@ -29,7 +32,7 @@ const RenderTextfield = ({ } > {touched && error && ( @@ -103,7 +106,7 @@ export function MultiLinefield(props) {

    - {label} + {fieldsTranslations(label)} {touched && error && ( @@ -209,14 +212,14 @@ export function DateField(props) {
    -
    +
    {touched && error && ( @@ -354,8 +357,10 @@ const RenderYesNo = ({ }; export function YesNofield(props) { + const router = useRouter(); + const { name, label } = props; - const yesNo = ["Yes", "No"]; + const yesNo = router.locale == "cy" ? ["Ydw", "Na"] : ["Yes", "No"]; const required = (value) => (value ? undefined : "Required"); return ( @@ -381,6 +386,8 @@ const RenderPickList = ({ input, meta: { touched, errorStr }, }) => { + let { t } = useTranslation(); + var dropdownObj = jsonpath.query( picklistData, "$..value[?(@.LogicalName=='" + datafieldname + "')]..Options" @@ -389,11 +396,13 @@ const RenderPickList = ({ return (
    ); } + +const fieldsTranslations = (label) => { + let { t } = useTranslation(); + const router = useRouter(); + const { locale } = router; + const { appealtypes } = router.query; + + let formObj = jsonpath.query(fieldLookup, "$['" + appealtypes + "']"); + + let labelTrans = + router.locale == "cy" + ? jsonpath.query( + formObj, + "$..[?(@.value=='" + label + "')].value_cy" + ) + : label; + return labelTrans; +}; + +const pickListTranslations = (optionValue) => { + let { t } = useTranslation(); + const router = useRouter(); + const { locale } = router; + const { appealtypes } = router.query; + //console.log(optionValue); + let optionTrans = + router.locale == "cy" + ? jsonpath.query( + pickListLookup, + '$..[?(@.value=="' + optionValue + '")].value_cy' + ) + : optionValue; + //console.log(optionTrans, optionValue); + return optionTrans; +}; diff --git a/components/myportal/makenewappeal.js b/components/myportal/makenewappeal.js index aa0af61f..94bae422 100644 --- a/components/myportal/makenewappeal.js +++ b/components/myportal/makenewappeal.js @@ -20,7 +20,11 @@ export default function MakeNewAppeal() { {t("myportal:makenewappeal-card-paragraph-two")}

    - + {t("myportal:makenewappeal-card-button-label")} diff --git a/components/myportal/topthree.js b/components/myportal/topthree.js index b8664347..c2c52db9 100644 --- a/components/myportal/topthree.js +++ b/components/myportal/topthree.js @@ -88,7 +88,7 @@ const TopThree = (props) => { : "/myportal/representation" : router.locale == "cy" ? "/fymhorth/achos" - : "/myportal//case" + : "/myportal/case" } > { return dateString; } + const fieldsTranslations = (label) => { + let { t } = useTranslation(); + const router = useRouter(); + const { locale } = router; + const { appealtypes } = router.query; + + let formObj = jsonpath.query(fieldLookup, "$['" + appealtypes + "']"); + + let labelTrans = + router.locale == "cy" + ? jsonpath.query( + formObj, + "$..[?(@.value=='" + label + "')].value_cy" + ) + : label; + return labelTrans; + }; + return ( <> {Object.keys(rowXML).map((key, index) => { @@ -75,7 +95,7 @@ let BuildCheckRow = (props) => { return (
    - {rows[0].value} + {fieldsTranslations(rows[0].value)}
    {fieldtype[0].value == @@ -98,10 +118,10 @@ let BuildCheckRow = (props) => { updateCurrentSection(whichSection); }} > - Change + {t("newappeal:change-link-label")} {" "} - name + {fieldsTranslations(rows[0].value)}
    diff --git a/components/newappeal/buildchecksection.js b/components/newappeal/buildchecksection.js index 6f53e25f..fbac81a8 100644 --- a/components/newappeal/buildchecksection.js +++ b/components/newappeal/buildchecksection.js @@ -88,7 +88,7 @@ let BuildCheckSection = (props) => { data-module="govuk-button" onClick={() => setCurrentSection(9999)} > - Submit appeal + {t("newappeal:submit-appeal-button")}
    diff --git a/components/newappeal/createCase.js b/components/newappeal/createCase.js index 6272b555..c864a6f6 100644 --- a/components/newappeal/createCase.js +++ b/components/newappeal/createCase.js @@ -245,7 +245,8 @@ let CreateCase = (props) => { ); router.replace( - "/newappeal/" + + (router.locale = "cy" ? "/apelnewydd" : "/newappeal") + + "/" + appTypeCollection + "?lpa=" + values.lpaTypes + diff --git a/data/crmfieldlookuptranslations.json b/data/crmfieldlookuptranslations.json new file mode 100644 index 00000000..2a1f558e --- /dev/null +++ b/data/crmfieldlookuptranslations.json @@ -0,0 +1,2645 @@ +{ + "appealTypes": [ + { + "value": "Planning Appeal - S78", + "value_cy": "Apêl Gynllunio - A78", + "stringmapid": "cb4aa9f2-e275-eb11-aabd-00224800be9c", + "attributevalue": 846040000 + }, + { + "value": "Planning Conditions - S73 + S79", + "value_cy": "Amodau Cynllunio - A73 + A79", + "stringmapid": "cc4aa9f2-e275-eb11-aabd-00224800be9c", + "attributevalue": 846040001 + }, + { + "value": "Planning Obligation Appeal - S106", + "value_cy": "Apêl Rhwymedigaeth Gynllunio - A106", + "stringmapid": "ce4aa9f2-e275-eb11-aabd-00224800be9c", + "attributevalue": 846040003 + }, + { + "value": "Householder Appeal (HAS)", + "value_cy": "Apêl Deiliaid Tai (HAS)", + "stringmapid": "cf4aa9f2-e275-eb11-aabd-00224800be9c", + "attributevalue": 846040004 + }, + { + "value": "Enforcement Notice Appeal - S174", + "value_cy": "Apêl Hysbysiad Gorfodi - A174", + "stringmapid": "b656f05c-7f90-eb11-aac2-00224800be9c", + "attributevalue": 846040005 + }, + { + "value": "Enforcement Listed Building and Conservation Appeal - S39", + "value_cy": "Apêl Gorfodi Adeilad Rhestredig ac Ardal Gadwraeth - A39", + "stringmapid": "b756f05c-7f90-eb11-aac2-00224800be9c", + "attributevalue": 846040006 + }, + { + "value": "Maintenance of Land - S217", + "value_cy": "Cynnal a Chadw Tir - A217", + "stringmapid": "b856f05c-7f90-eb11-aac2-00224800be9c", + "attributevalue": 846040007 + }, + { + "value": "Lawful Development Certificate Appeal - S194 + 195", + "value_cy": "Apêl Tystysgrif Datblygiad Cyfreithlon - A194 + 195", + "stringmapid": "b956f05c-7f90-eb11-aac2-00224800be9c", + "attributevalue": 846040008 + }, + { + "value": "Community Infrastructure Levy - S117, 118, & 119", + "value_cy": "Ardoll Seilwaith Cymunedol - A117 , 118 & 119", + "stringmapid": "ba56f05c-7f90-eb11-aac2-00224800be9c", + "attributevalue": 846040009 + }, + { + "value": "Call-Ins - S77", + "value_cy": "Galwadau i Mewn - A77", + "stringmapid": "bb56f05c-7f90-eb11-aac2-00224800be9c", + "attributevalue": 846040010 + }, + { + "value": "DNS", + "value_cy": "Datblygiadau o Arwyddocâd Cenedlaethol", + "stringmapid": "bc56f05c-7f90-eb11-aac2-00224800be9c", + "attributevalue": 846040011 + }, + { + "value": "Electricity Act", + "value_cy": "Deddf Trydan", + "stringmapid": "bd56f05c-7f90-eb11-aac2-00224800be9c", + "attributevalue": 846040012 + }, + { + "value": "Transport and Works Act", + "value_cy": "Deddf Trafnidiaeth a Gweithfeydd", + "stringmapid": "be56f05c-7f90-eb11-aac2-00224800be9c", + "attributevalue": 846040013 + }, + { + "value": "Harbour Revision Order", + "value_cy": "Gorchymyn Diwygio Harbwr", + "stringmapid": "bf56f05c-7f90-eb11-aac2-00224800be9c", + "attributevalue": 846040014 + }, + { + "value": "ROW", + "value_cy": "Hawliau Tramwy", + "stringmapid": "c056f05c-7f90-eb11-aac2-00224800be9c", + "attributevalue": 846040015 + }, + { + "value": "Common Land", + "value_cy": "Tir Comin", + "stringmapid": "c156f05c-7f90-eb11-aac2-00224800be9c", + "attributevalue": 846040016 + }, + { + "value": "High Hedges, Tree Preservation orders, Hedgerows, Tree Replacement Notice.", + "value_cy": "Gwrychoedd neu Berthi Uchel, Gorchmynion Cadw Coed, Perthi/Gwrychoedd, Hysbysiadau Ailblannu Coed", + "stringmapid": "c256f05c-7f90-eb11-aac2-00224800be9c", + "attributevalue": 846040017 + }, + { + "value": "Adverts", + "value_cy": "Hysbysebion", + "stringmapid": "c356f05c-7f90-eb11-aac2-00224800be9c", + "attributevalue": 846040018 + }, + { + "value": "Compulsory Purchase Orders", + "value_cy": "Gorchmynion Prynu Gorfodol", + "stringmapid": "c456f05c-7f90-eb11-aac2-00224800be9c", + "attributevalue": 846040019 + }, + { + "value": "Environmental Permitting", + "value_cy": "Trwyddedu Amgylcheddol", + "stringmapid": "c556f05c-7f90-eb11-aac2-00224800be9c", + "attributevalue": 846040020 + }, + { + "value": "Wayleave", + "value_cy": "Fforddfreintiau", + "stringmapid": "c656f05c-7f90-eb11-aac2-00224800be9c", + "attributevalue": 846040021 + }, + { + "value": "Misc Casework", + "value_cy": "Gwaith Achos Amrywiol", + "stringmapid": "c756f05c-7f90-eb11-aac2-00224800be9c", + "attributevalue": 846040022 + }, + { + "value": "LDP", + "value_cy": "Cynlluniau Datblygu Lleol", + "stringmapid": "c856f05c-7f90-eb11-aac2-00224800be9c", + "attributevalue": 846040023 + }, + { + "value": "Non-Validation", + "value_cy": "Barnu’n Annilys", + "stringmapid": "c956f05c-7f90-eb11-aac2-00224800be9c", + "attributevalue": 846040024 + }, + { + "value": "Listed Building and Conservation Area Consent S73 + S79", + "value_cy": "Caniatâd Adeilad Rhestredig ac Ardal Gadwraeth - A20", + "stringmapid": "977522df-8aef-eb11-aac7-00224800be9c", + "attributevalue": 846040025 + } + ], + "adverts": [ + { + "formName": "AdvertsForm", + "fields": [ + { + "value": "Name", + "value_cy": "Enw" + }, + { + "value": "Agricultural Holding", + "value_cy": "Daliad Amaethyddol" + }, + { + "value": "Area Of Site in Hectares", + "value_cy": "Ardal y Safle mewn Hectarau" + }, + { + "value": "Development affect setting of a listed building", + "value_cy": "Mae datblygiad yn effeithio ar osodiad adeilad rhestredig" + }, + { + "value": "Floor Space in Square Meters", + "value_cy": "Lle Llawr mewn Mesuryddion Sgwâr" + }, + { + "value": "In CA/relates to CA", + "value_cy": "Yn CA / yn ymwneud ag CA." + }, + { + "value": "Is flooding and Issue", + "value_cy": "A yw llifogydd a Mater" + }, + { + "value": "Is the site within an AONB", + "value_cy": "A yw'r safle o fewn AHNE" + }, + { + "value": "Land Use", + "value_cy": "Defnydd Tir" + }, + { + "value": "Land Use Catagory", + "value_cy": "Catagory Defnydd Tir" + }, + { + "value": "Listed Building Grade", + "value_cy": "Gradd Adeilad Rhestredig" + }, + { + "value": "Name of Common Or Village Green", + "value_cy": "Enw'r Lawnt Gyffredin neu'r Pentref" + }, + { + "value": "Ownership Certificate", + "value_cy": "Tystysgrif Perchnogaeth" + }, + { + "value": "Site Address County", + "value_cy": "Cyfeiriad Safle Sir" + }, + { + "value": "Site Address Line 1", + "value_cy": "Llinell Cyfeiriad Safle 1" + }, + { + "value": "Site Address Line 2", + "value_cy": "Llinell Cyfeiriad Safle 2" + }, + { + "value": "Site Address Postcode", + "value_cy": "Cod Post Cyfeiriad y Safle" + }, + { + "value": "Site Address Town", + "value_cy": "Cyfeiriad y Dref Tref" + }, + { + "value": "Site Viewable from Road", + "value_cy": "Gellir gweld y safle o'r ffordd" + }, + { + "value": "Site Within a Green Belt", + "value_cy": "Safle O fewn Llain Las" + }, + { + "value": "Site Within SSSI", + "value_cy": "Safle gydag yn SoDdGA" + }, + { + "value": "Date of Application", + "value_cy": "Dyddiad y Cais" + }, + { + "value": "Date of LPA Decision", + "value_cy": "Dyddiad Penderfyniad yr ACLl" + }, + { + "value": "Development Description", + "value_cy": "Disgrifiad o'r Datblygiad" + }, + { + "value": "LPA Application Reference", + "value_cy": "Cyfeirnod Cais yr ACLl" + }, + { + "value": "Retrospective Application", + "value_cy": "Cais Ôl-weithredol" + }, + { + "value": "Type of Planning Application", + "value_cy": "Math o Gais Cynllunio" + } + ] + } + ], + "callinss77": [ + { + "formName": "Callinss77Form", + "fields": [ + { + "value": "Name", + "value_cy": "Enw" + }, + { + "value": "Agricultural Holding", + "value_cy": "Daliad Amaethyddol" + }, + { + "value": "Area Of Site in Hectares", + "value_cy": "Ardal y Safle mewn Hectarau" + }, + { + "value": "Development affect setting of a listed building", + "value_cy": "Mae datblygiad yn effeithio ar osodiad adeilad rhestredig" + }, + { + "value": "Floor Space in Square Meters", + "value_cy": "Lle Llawr mewn Mesuryddion Sgwâr" + }, + { + "value": "In CA/relates to CA", + "value_cy": "Yn CA / yn ymwneud ag CA." + }, + { + "value": "Is Flooding an issue", + "value_cy": "A yw llifogydd yn broblem" + }, + { + "value": "Is the site within an AONB", + "value_cy": "A yw'r safle o fewn AHNE" + }, + { + "value": "Land Use", + "value_cy": "Defnydd Tir" + }, + { + "value": "Land Use Category", + "value_cy": "Categori Defnydd Tir" + }, + { + "value": "Listed Building Grade", + "value_cy": "Gradd Adeilad Rhestredig" + }, + { + "value": "Common Name Or Village Green", + "value_cy": "Enw Cyffredin Neu Lawnt y Pentref" + }, + { + "value": "Ownership Certificate", + "value_cy": "Tystysgrif Perchnogaeth" + }, + { + "value": "Site Address County", + "value_cy": "Cyfeiriad Safle Sir" + }, + { + "value": "Site Address Line 1", + "value_cy": "Llinell Cyfeiriad Safle 1" + }, + { + "value": "Site Address Line 2", + "value_cy": "Llinell Cyfeiriad Safle 2" + }, + { + "value": "Site Address Postcode", + "value_cy": "Cod Post Cyfeiriad y Safle" + }, + { + "value": "Site Address Town", + "value_cy": "Cyfeiriad y Dref Tref" + }, + { + "value": "Site Viewable from Road", + "value_cy": "Gellir gweld y safle o'r ffordd" + }, + { + "value": "Site Within Green Belt", + "value_cy": "Safle O fewn y Llain Las" + }, + { + "value": "Site Within SSSI", + "value_cy": "Safle gydag yn SoDdGA" + }, + { + "value": "Date of Application", + "value_cy": "Dyddiad y Cais" + }, + { + "value": "Date of LPA Decision", + "value_cy": "Dyddiad Penderfyniad yr ACLl" + }, + { + "value": "Development Description", + "value_cy": "Disgrifiad o'r Datblygiad" + }, + { + "value": "LPA Application Reference", + "value_cy": "Cyfeirnod Cais yr ACLl" + }, + { + "value": "Retrospective Applications", + "value_cy": "Ceisiadau Ôl-weithredol" + }, + { + "value": "Type of Planning Application", + "value_cy": "Math o Gais Cynllunio" + } + ] + } + ], + "commonland": [ + { + "formName": "CommonLandForm", + "fields": [ + { + "value": "Name", + "value_cy": "Enw" + }, + { + "value": "Agricultural Holding", + "value_cy": "Daliad Amaethyddol" + }, + { + "value": "Area Of Site in Hectares", + "value_cy": "Ardal y Safle mewn Hectarau" + }, + { + "value": "Development affect setting of a listed building", + "value_cy": "Mae datblygiad yn effeithio ar osodiad adeilad rhestredig" + }, + { + "value": "Floor Space in Square Meters", + "value_cy": "Lle Llawr mewn Mesuryddion Sgwâr" + }, + { + "value": "In CA/relates to CA", + "value_cy": "Yn CA / yn ymwneud ag CA." + }, + { + "value": "Is flooding and Issue", + "value_cy": "A yw llifogydd a Mater" + }, + { + "value": "Is the site within an AONB", + "value_cy": "A yw'r safle o fewn AHNE" + }, + { + "value": "Land Use", + "value_cy": "Defnydd Tir" + }, + { + "value": "Land Use Category", + "value_cy": "Categori Defnydd Tir" + }, + { + "value": "Listed Building Grade", + "value_cy": "Gradd Adeilad Rhestredig" + }, + { + "value": "Name of Common Or Village Green", + "value_cy": "Enw'r Lawnt Gyffredin neu'r Pentref" + }, + { + "value": "Ownership of Certificate", + "value_cy": "Perchnogaeth Tystysgrif" + }, + { + "value": "Site Address County", + "value_cy": "Cyfeiriad Safle Sir" + }, + { + "value": "Site Address Line 1", + "value_cy": "Llinell Cyfeiriad Safle 1" + }, + { + "value": "Site Address Line 2", + "value_cy": "Llinell Cyfeiriad Safle 2" + }, + { + "value": "Site Address Postcode", + "value_cy": "Cod Post Cyfeiriad y Safle" + }, + { + "value": "Site Address Town", + "value_cy": "Cyfeiriad y Dref Tref" + }, + { + "value": "Site Viewable from Road", + "value_cy": "Gellir gweld y safle o'r ffordd" + }, + { + "value": "Site Within Green Belt", + "value_cy": "Safle O fewn y Llain Las" + }, + { + "value": "Site Within SSSI", + "value_cy": "Safle gydag yn SoDdGA" + }, + { + "value": "Case Description", + "value_cy": "Disgrifiad o'r Achos" + }, + { + "value": "Determined by LPA", + "value_cy": "Penderfynir gan yr ACLl" + } + ] + } + ], + "communityinfrastructurelevys117118119": [ + { + "formName": "CommunityInfrastructureLevys117118119Form", + "fields": [ + { + "value": "Name", + "value_cy": "Enw" + }, + { + "value": "Agricultural Holding", + "value_cy": "Daliad Amaethyddol" + }, + { + "value": "Area Of Site in Hectares", + "value_cy": "Ardal y Safle mewn Hectarau" + }, + { + "value": "Development affect setting of a listed building", + "value_cy": "Mae datblygiad yn effeithio ar osodiad adeilad rhestredig" + }, + { + "value": "Floor Space in Square Meters", + "value_cy": "Lle Llawr mewn Mesuryddion Sgwâr" + }, + { + "value": "In CA/relates to CA", + "value_cy": "Yn CA / yn ymwneud ag CA." + }, + { + "value": "Is flooding and Issue", + "value_cy": "A yw llifogydd a Mater" + }, + { + "value": "Is the site within an AONB", + "value_cy": "A yw'r safle o fewn AHNE" + }, + { + "value": "Land Use", + "value_cy": "Defnydd Tir" + }, + { + "value": "Land Use Category", + "value_cy": "Categori Defnydd Tir" + }, + { + "value": "Listed Building Grade", + "value_cy": "Gradd Adeilad Rhestredig" + }, + { + "value": "Name of Common Or Village Green", + "value_cy": "Enw'r Lawnt Gyffredin neu'r Pentref" + }, + { + "value": "Ownership Certificate", + "value_cy": "Tystysgrif Perchnogaeth" + }, + { + "value": "Site Address County", + "value_cy": "Cyfeiriad Safle Sir" + }, + { + "value": "Site Address Line 1", + "value_cy": "Llinell Cyfeiriad Safle 1" + }, + { + "value": "Site Address Line 2", + "value_cy": "Llinell Cyfeiriad Safle 2" + }, + { + "value": "Site Address Postcode", + "value_cy": "Cod Post Cyfeiriad y Safle" + }, + { + "value": "Site Address Town", + "value_cy": "Cyfeiriad y Dref Tref" + }, + { + "value": "Site Viewable from Road", + "value_cy": "Gellir gweld y safle o'r ffordd" + }, + { + "value": "Site Within Green Belt", + "value_cy": "Safle O fewn y Llain Las" + }, + { + "value": "Site Within SSSI", + "value_cy": "Safle gydag yn SoDdGA" + }, + { + "value": "CIL Stop Notice", + "value_cy": "Rhybudd Stopio CIL" + }, + { + "value": "Collection Authority Reference Number", + "value_cy": "Cyfeirnod yr Awdurdod Casglu" + }, + { + "value": "Date of Relevant Application Decision", + "value_cy": "Dyddiad y Penderfyniad Cais Perthnasol" + }, + { + "value": "Demand Notice Date", + "value_cy": "Dyddiad Rhybudd Galw" + }, + { + "value": "Reference of Relevant Application", + "value_cy": "Cyfeirio Cais Perthnasol" + }, + { + "value": "Regulation", + "value_cy": "Rheoliad" + } + ] + } + ], + "compulsorypurchaseorders": [ + { + "formName": "CompulsoryPurchaseOrdersForm ", + "fields": [ + { + "value": "Name", + "value_cy": "Enw" + }, + { + "value": "Agricultural Holding", + "value_cy": "Daliad Amaethyddol" + }, + { + "value": "Area Of Site in Hectares", + "value_cy": "Ardal y Safle mewn Hectarau" + }, + { + "value": "Development affect setting of a listed building", + "value_cy": "Mae datblygiad yn effeithio ar osodiad adeilad rhestredig" + }, + { + "value": "Floor Space in Square Meters", + "value_cy": "Lle Llawr mewn Mesuryddion Sgwâr" + }, + { + "value": "In CA/relates to CA", + "value_cy": "Yn CA / yn ymwneud ag CA." + }, + { + "value": "Is flooding and Issue", + "value_cy": "A yw llifogydd a Mater" + }, + { + "value": "Is the site within an AONB", + "value_cy": "A yw'r safle o fewn AHNE" + }, + { + "value": "Land Use", + "value_cy": "Defnydd Tir" + }, + { + "value": "Land Use Category", + "value_cy": "Categori Defnydd Tir" + }, + { + "value": "Listed Building Grade", + "value_cy": "Gradd Adeilad Rhestredig" + }, + { + "value": "Name of Common Or Village Green", + "value_cy": "Enw'r Lawnt Gyffredin neu'r Pentref" + }, + { + "value": "Ownership Certificate", + "value_cy": "Tystysgrif Perchnogaeth" + }, + { + "value": "Site Address County", + "value_cy": "Cyfeiriad Safle Sir" + }, + { + "value": "Site Address Line 1", + "value_cy": "Llinell Cyfeiriad Safle 1" + }, + { + "value": "Site Address Line 2", + "value_cy": "Llinell Cyfeiriad Safle 2" + }, + { + "value": "Site Address Postcode", + "value_cy": "Cod Post Cyfeiriad y Safle" + }, + { + "value": "Site Address Town", + "value_cy": "Cyfeiriad y Dref Tref" + }, + { + "value": "Site Viewable from Road", + "value_cy": "Gellir gweld y safle o'r ffordd" + }, + { + "value": "Site Within SSSI", + "value_cy": "Safle gydag yn SoDdGA" + }, + { + "value": "Site Within Green Belt", + "value_cy": "Safle O fewn y Llain Las" + }, + { + "value": "Case Description", + "value_cy": "Disgrifiad o'r Achos" + }, + { + "value": "Determined by LPA?", + "value_cy": "Wedi'i bennu gan yr ACLl?" + } + ] + } + ], + "dns": [ + { + "formName": "DNSForm", + "fields": [ + { + "value": "Name", + "value_cy": "Enw" + } + ] + } + ], + "electricityact": [ + { + "formName": "ElectricityActForm", + "fields": [ + { + "value": "Name", + "value_cy": "Enw" + }, + { + "value": "Anticipated Grid Reference Northing", + "value_cy": "Cyfeirnod Grid Rhagweld Gogleddol" + }, + { + "value": "Anticipated Grid Reference Easting", + "value_cy": "Cyfeirio Grid Rhagwelir Dwyrain" + }, + { + "value": "Project Name", + "value_cy": "Enw'r Prosiect" + }, + { + "value": "Project Discription", + "value_cy": "Disgrifiad o'r Prosiect" + }, + { + "value": "Project Description", + "value_cy": "Disgrifiad o'r Prosiect" + }, + { + "value": "Project Location", + "value_cy": "Lleoliad y Prosiect" + }, + { + "value": "Address County", + "value_cy": "Cyfeiriad Sir" + }, + { + "value": "Address Line 1", + "value_cy": "Llinell Cyfeiriad 1" + }, + { + "value": "Address Line 2", + "value_cy": "Llinell Cyfeiriad 2" + }, + { + "value": "Address Town", + "value_cy": "Cyfeiriad Town" + }, + { + "value": "Post Code", + "value_cy": "Cod post" + }, + { + "value": "Agent Contact Name", + "value_cy": "Enw Cyswllt Asiant" + }, + { + "value": "Email Address", + "value_cy": "Cyfeiriad ebost" + }, + { + "value": "Salutation", + "value_cy": "Cyfarchiad" + }, + { + "value": "First Name", + "value_cy": "Enw cyntaf" + }, + { + "value": "Last Name", + "value_cy": "Enw olaf" + }, + { + "value": "Organisation", + "value_cy": "Sefydliad" + }, + { + "value": "Role", + "value_cy": "Rôl" + }, + { + "value": "Telephone Number", + "value_cy": "Rhif Ffon" + }, + { + "value": "Web Address", + "value_cy": "Cyfeiriad Gwe" + } + ] + } + ], + "enforcementlistedbuildingconservationap": [ + { + "formName": "EnforcementListedBuildingConservationapForm", + "fields": [ + { + "value": "Name", + "value_cy": "Enw" + }, + { + "value": "Agricultural Holding", + "value_cy": "Daliad Amaethyddol" + }, + { + "value": "Area Of Site in Hectares", + "value_cy": "Ardal y Safle mewn Hectarau" + }, + { + "value": "Development affect setting of a listed building", + "value_cy": "Mae datblygiad yn effeithio ar osodiad adeilad rhestredig" + }, + { + "value": "Floor Space in Meters", + "value_cy": "Gofod Llawr mewn Mesuryddion" + }, + { + "value": "In CA/relates to CA", + "value_cy": "Yn CA / yn ymwneud ag CA." + }, + { + "value": "Is flooding and Issue", + "value_cy": "A yw llifogydd a Mater" + }, + { + "value": "Is the site within an AONB", + "value_cy": "A yw'r safle o fewn AHNE" + }, + { + "value": "Land Use", + "value_cy": "Defnydd Tir" + }, + { + "value": "Land Use Category", + "value_cy": "Categori Defnydd Tir" + }, + { + "value": "Listed Building Grade", + "value_cy": "Gradd Adeilad Rhestredig" + }, + { + "value": "Name of Common Or Village Green", + "value_cy": "Enw'r Lawnt Gyffredin neu'r Pentref" + }, + { + "value": "Ownership Certificate", + "value_cy": "Tystysgrif Perchnogaeth" + }, + { + "value": "Site Address County", + "value_cy": "Cyfeiriad Safle Sir" + }, + { + "value": "Site Address Line 1", + "value_cy": "Llinell Cyfeiriad Safle 1" + }, + { + "value": "Site Address Line 2", + "value_cy": "Llinell Cyfeiriad Safle 2" + }, + { + "value": "Site Address Postcode", + "value_cy": "Cod Post Cyfeiriad y Safle" + }, + { + "value": "Site Address Town", + "value_cy": "Cyfeiriad y Dref Tref" + }, + { + "value": "Site Viewable from Road", + "value_cy": "Gellir gweld y safle o'r ffordd" + }, + { + "value": "Site Within Green Belt", + "value_cy": "Safle O fewn y Llain Las" + }, + { + "value": "Site Within SSSI", + "value_cy": "Safle gydag yn SoDdGA" + }, + { + "value": "Date Noticed Issued", + "value_cy": "Dyddiad Sylwyd Cyhoeddi" + }, + { + "value": "Effective Date", + "value_cy": "Dyddiad effeithiol" + }, + { + "value": "Notice Reference", + "value_cy": "Cyfeirnod Rhybudd" + }, + { + "value": "Ground for Appeal", + "value_cy": "Sail dros Apelio" + }, + { + "value": "Ground Letter", + "value_cy": "Llythyr Gwaelod" + } + ] + } + ], + "enforcementnoticeappeals174": [ + { + "formName": "EnforcementNoticeAppeals174Form", + "fields": [ + { + "value": "Name", + "value_cy": "Enw" + }, + { + "value": "Agricultural Holding", + "value_cy": "Daliad Amaethyddol" + }, + { + "value": "Area Of Site in Hectares", + "value_cy": "Ardal y Safle mewn Hectarau" + }, + { + "value": "Development affecting setting of a listed building", + "value_cy": "Datblygiad sy'n effeithio ar osodiad adeilad rhestredig" + }, + { + "value": "Floor Space in Square Meters", + "value_cy": "Lle Llawr mewn Mesuryddion Sgwâr" + }, + { + "value": "Is Flooding an issue", + "value_cy": "A yw llifogydd yn broblem" + }, + { + "value": "In CA/relates to CA", + "value_cy": "Yn CA / yn ymwneud ag CA." + }, + { + "value": "Is the site within an AONB", + "value_cy": "A yw'r safle o fewn AHNE" + }, + { + "value": "Land Use", + "value_cy": "Defnydd Tir" + }, + { + "value": "Land Use Category", + "value_cy": "Categori Defnydd Tir" + }, + { + "value": "Listed Building Grade", + "value_cy": "Gradd Adeilad Rhestredig" + }, + { + "value": "Name of Common Or Village Green", + "value_cy": "Enw'r Lawnt Gyffredin neu'r Pentref" + }, + { + "value": "Ownership Certificate", + "value_cy": "Tystysgrif Perchnogaeth" + }, + { + "value": "Site Address County", + "value_cy": "Cyfeiriad Safle Sir" + }, + { + "value": "Site Address Line 1", + "value_cy": "Llinell Cyfeiriad Safle 1" + }, + { + "value": "Site Address Line 2", + "value_cy": "Llinell Cyfeiriad Safle 2" + }, + { + "value": "Site Address Postcode", + "value_cy": "Cod Post Cyfeiriad y Safle" + }, + { + "value": "Site Address Town", + "value_cy": "Cyfeiriad y Dref Tref" + }, + { + "value": "Site Viewable from Road", + "value_cy": "Gellir gweld y safle o'r ffordd" + }, + { + "value": "Site Within Green Belt", + "value_cy": "Safle O fewn y Llain Las" + }, + { + "value": "Site Within SSSI", + "value_cy": "Safle gydag yn SoDdGA" + }, + { + "value": "Date Noticed Issued", + "value_cy": "Dyddiad Sylwyd Cyhoeddi" + }, + { + "value": "Date Noticed Issued", + "value_cy": "Dyddiad Sylwyd Cyhoeddi" + }, + { + "value": "Effective Date", + "value_cy": "Dyddiad effeithiol" + }, + { + "value": "Notice Reference", + "value_cy": "Cyfeirnod Rhybudd" + }, + { + "value": "Ground for Appeal", + "value_cy": "Sail dros Apelio" + }, + { + "value": "Ground Letter", + "value_cy": "Llythyr Gwaelod" + } + ] + } + ], + "environmentalpermitting": [ + { + "formName": "EnvironmentalPermittingForm", + "fields": [ + { + "value": "Name", + "value_cy": "Enw" + }, + { + "value": "Associated (LPA)", + "value_cy": "Cysylltiedig (ACLl)" + }, + { + "value": "Agricultural Holding", + "value_cy": "Daliad Amaethyddol" + }, + { + "value": "Area Of Site in Hectares", + "value_cy": "Ardal y Safle mewn Hectarau" + }, + { + "value": "Development affect setting of a listed building", + "value_cy": "Mae datblygiad yn effeithio ar osodiad adeilad rhestredig" + }, + { + "value": "Floor Space in Square Meters", + "value_cy": "Lle Llawr mewn Mesuryddion Sgwâr" + }, + { + "value": "In CA/related to CA", + "value_cy": "Yn CA / yn gysylltiedig ag CA." + }, + { + "value": "Is flooding and Issue", + "value_cy": "A yw llifogydd a Mater" + }, + { + "value": "Is the site within and AONB", + "value_cy": "A yw'r safle oddi mewn ac AHNE" + }, + { + "value": "Land Use", + "value_cy": "Defnydd Tir" + }, + { + "value": "Land Use Category", + "value_cy": "Categori Defnydd Tir" + }, + { + "value": "Listed Building Grade", + "value_cy": "Gradd Adeilad Rhestredig" + }, + { + "value": "Name of Common Or Village Green", + "value_cy": "Enw'r Lawnt Gyffredin neu'r Pentref" + }, + { + "value": "Ownership Certification", + "value_cy": "Ardystiad Perchnogaeth" + }, + { + "value": "Site Address County", + "value_cy": "Cyfeiriad Safle Sir" + }, + { + "value": "Site Address Line 1", + "value_cy": "Llinell Cyfeiriad Safle 1" + }, + { + "value": "Site Address Line 2", + "value_cy": "Llinell Cyfeiriad Safle 2" + }, + { + "value": "Site Address Postcode", + "value_cy": "Cod Post Cyfeiriad y Safle" + }, + { + "value": "Site Address Town", + "value_cy": "Cyfeiriad y Dref Tref" + }, + { + "value": "Site Viewable from Road", + "value_cy": "Gellir gweld y safle o'r ffordd" + }, + { + "value": "Site Within a Green Belt", + "value_cy": "Safle O fewn Llain Las" + }, + { + "value": "Site Within SSSI", + "value_cy": "Safle gydag yn SoDdGA" + }, + { + "value": "Case Discription", + "value_cy": "Disgyblaeth Achos" + }, + { + "value": "Determined by LPA?", + "value_cy": "Wedi'i bennu gan yr ACLl?" + } + ] + } + ], + "harbourrevisionorder": [ + { + "formName": "HarbourRevisionOrderForm", + "fields": [ + { + "value": "Name", + "value_cy": "Enw" + }, + { + "value": "Anticipated Grid Reference Northing", + "value_cy": "Cyfeirnod Grid Rhagweld Gogleddol" + }, + { + "value": "Anticipated Grid Reference Easting", + "value_cy": "Cyfeirio Grid Rhagwelir Dwyrain" + }, + { + "value": "Project Name", + "value_cy": "Enw'r Prosiect" + }, + { + "value": "Project Discription", + "value_cy": "Disgrifiad o'r Prosiect" + }, + { + "value": "Project Description", + "value_cy": "Disgrifiad o'r Prosiect" + }, + { + "value": "Project Location", + "value_cy": "Lleoliad y Prosiect" + }, + { + "value": "Address County", + "value_cy": "Cyfeiriad Sir" + }, + { + "value": "Address Line 1", + "value_cy": "Llinell Cyfeiriad 1" + }, + { + "value": "Address Line 2", + "value_cy": "Llinell Cyfeiriad 2" + }, + { + "value": "Address Town", + "value_cy": "Cyfeiriad Town" + }, + { + "value": "Post Code", + "value_cy": "Cod post" + }, + { + "value": "Agent Contact Name", + "value_cy": "Enw Cyswllt Asiant" + }, + { + "value": "Email Address", + "value_cy": "Cyfeiriad ebost" + }, + { + "value": "Salutation", + "value_cy": "Cyfarchiad" + }, + { + "value": "First Name", + "value_cy": "Enw cyntaf" + }, + { + "value": "Last Name", + "value_cy": "Enw olaf" + }, + { + "value": "Organisation", + "value_cy": "Sefydliad" + }, + { + "value": "Role", + "value_cy": "Rôl" + }, + { + "value": "Telephone Number", + "value_cy": "Rhif Ffon" + }, + { + "value": "Web Address", + "value_cy": "Cyfeiriad Gwe" + } + ] + } + ], + "hedgeshedgerowstreepreservationreplacem": [ + { + "formName": "HedgesHedgerowsTreePreservationReplacemForm", + "fields": [ + { + "value": "Name", + "value_cy": "Enw" + }, + { + "value": "Agricultural Holding", + "value_cy": "Daliad Amaethyddol" + }, + { + "value": "Area Of Site in Hectares", + "value_cy": "Ardal y Safle mewn Hectarau" + }, + { + "value": "Development affect setting of a listed building", + "value_cy": "Mae datblygiad yn effeithio ar osodiad adeilad rhestredig" + }, + { + "value": "Floor Space in Square Meters", + "value_cy": "Lle Llawr mewn Mesuryddion Sgwâr" + }, + { + "value": "In CA/relates to CA", + "value_cy": "Yn CA / yn ymwneud ag CA." + }, + { + "value": "Is Flooding an issue", + "value_cy": "A yw llifogydd yn broblem" + }, + { + "value": "Is the site within an AOBN", + "value_cy": "A yw'r safle o fewn AOBN" + }, + { + "value": "Land Use", + "value_cy": "Defnydd Tir" + }, + { + "value": "Land Use Category", + "value_cy": "Categori Defnydd Tir" + }, + { + "value": "Listed Building Grade", + "value_cy": "Gradd Adeilad Rhestredig" + }, + { + "value": "Name of Common Or Village Green", + "value_cy": "Enw'r Lawnt Gyffredin neu'r Pentref" + }, + { + "value": "Ownership Certificate", + "value_cy": "Tystysgrif Perchnogaeth" + }, + { + "value": "Site Address County", + "value_cy": "Cyfeiriad Safle Sir" + }, + { + "value": "Site Address Line 1", + "value_cy": "Llinell Cyfeiriad Safle 1" + }, + { + "value": "Site Address Line 2", + "value_cy": "Llinell Cyfeiriad Safle 2" + }, + { + "value": "Site Address Postcode", + "value_cy": "Cod Post Cyfeiriad y Safle" + }, + { + "value": "Site Address Town", + "value_cy": "Cyfeiriad y Dref Tref" + }, + { + "value": "Site Viewable from Road", + "value_cy": "Gellir gweld y safle o'r ffordd" + }, + { + "value": "Site Within Green Belt", + "value_cy": "Safle O fewn y Llain Las" + }, + { + "value": "Site Within SSSI", + "value_cy": "Safle gydag yn SoDdGA" + }, + { + "value": "Case Description", + "value_cy": "Disgrifiad o'r Achos" + }, + { + "value": "Determined by LPA?", + "value_cy": "Wedi'i bennu gan yr ACLl?" + } + ] + } + ], + "householderappealhas": [ + { + "formName": "HouseholderAppealHasForm", + "fields": [ + { + "value": "Name", + "value_cy": "Enw" + }, + { + "value": "Agricultural Holding", + "value_cy": "Daliad Amaethyddol" + }, + { + "value": "Area Of Site in Hectares", + "value_cy": "Ardal y Safle mewn Hectarau" + }, + { + "value": "Development affect setting if a listed building", + "value_cy": "Mae datblygiad yn effeithio ar osodiad os yw'n adeilad rhestredig" + }, + { + "value": "Floor Space in Square Meters", + "value_cy": "Lle Llawr mewn Mesuryddion Sgwâr" + }, + { + "value": "In CA/Relates to CA", + "value_cy": "Yn CA / yn ymwneud ag CA." + }, + { + "value": "In CA/relates to CA", + "value_cy": "Yn CA / yn ymwneud ag CA." + }, + { + "value": "Is Flooding an issue", + "value_cy": "A yw llifogydd yn broblem" + }, + { + "value": "Is flooding an issue", + "value_cy": "A yw llifogydd yn broblem" + }, + { + "value": "Is the site within an AONB", + "value_cy": "A yw'r safle o fewn AHNE" + }, + { + "value": "Land Use", + "value_cy": "Defnydd Tir" + }, + { + "value": "Land Use Category", + "value_cy": "Categori Defnydd Tir" + }, + { + "value": "Listed Building Grade", + "value_cy": "Gradd Adeilad Rhestredig" + }, + { + "value": "Name of Common Or Village Green", + "value_cy": "Enw'r Lawnt Gyffredin neu'r Pentref" + }, + { + "value": "Ownership Certificate", + "value_cy": "Tystysgrif Perchnogaeth" + }, + { + "value": "Site Address County", + "value_cy": "Cyfeiriad Safle Sir" + }, + { + "value": "Site Address Line 1", + "value_cy": "Llinell Cyfeiriad Safle 1" + }, + { + "value": "Site Address Line 2", + "value_cy": "Llinell Cyfeiriad Safle 2" + }, + { + "value": "Site Address Postcode", + "value_cy": "Cod Post Cyfeiriad y Safle" + }, + { + "value": "Site Address Town", + "value_cy": "Cyfeiriad y Dref Tref" + }, + { + "value": "Site Viewable from Road", + "value_cy": "Gellir gweld y safle o'r ffordd" + }, + { + "value": "Site Within a Green Belt", + "value_cy": "Safle O fewn Llain Las" + }, + { + "value": "Site Within SSSI", + "value_cy": "Safle gydag yn SoDdGA" + }, + { + "value": "Date of Application", + "value_cy": "Dyddiad y Cais" + }, + { + "value": "Date Of Application", + "value_cy": "Dyddiad y Cais" + }, + { + "value": "Date of LPA Decision", + "value_cy": "Dyddiad Penderfyniad yr ACLl" + }, + { + "value": "Development Description", + "value_cy": "Disgrifiad o'r Datblygiad" + }, + { + "value": "LPA Application Reference", + "value_cy": "Cyfeirnod Cais yr ACLl" + }, + { + "value": "Retrospective Applications", + "value_cy": "Ceisiadau Ôl-weithredol" + }, + { + "value": "Type of Planning Application", + "value_cy": "Math o Gais Cynllunio" + } + ] + } + ], + "lawfuldevelopmentcertificate": [ + { + "formName": "LawfulDevelopmentCertificateForm", + "fields": [ + { + "value": "Name", + "value_cy": "Enw" + }, + { + "value": "Agricultural Holding", + "value_cy": "Daliad Amaethyddol" + }, + { + "value": "Area Of Site in Hectares", + "value_cy": "Ardal y Safle mewn Hectarau" + }, + { + "value": "Development affect setting of a listed building", + "value_cy": "Mae datblygiad yn effeithio ar osodiad adeilad rhestredig" + }, + { + "value": "Floor in Square Meters", + "value_cy": "Llawr mewn Mesuryddion Sgwâr" + }, + { + "value": "In CA/relates to CA", + "value_cy": "Yn CA / yn ymwneud ag CA." + }, + { + "value": "In CA/Relates to CA", + "value_cy": "Yn CA / yn ymwneud ag CA." + }, + { + "value": "Is Flooding an issue", + "value_cy": "A yw llifogydd yn broblem" + }, + { + "value": "Is the site within an AONB", + "value_cy": "A yw'r safle o fewn AHNE" + }, + { + "value": "Land Use", + "value_cy": "Defnydd Tir" + }, + { + "value": "Land Use Category", + "value_cy": "Categori Defnydd Tir" + }, + { + "value": "Listed Building Grade", + "value_cy": "Gradd Adeilad Rhestredig" + }, + { + "value": "Name of Common Or Village Green", + "value_cy": "Enw'r Lawnt Gyffredin neu'r Pentref" + }, + { + "value": "Ownership Certificate", + "value_cy": "Tystysgrif Perchnogaeth" + }, + { + "value": "Site Address County", + "value_cy": "Cyfeiriad Safle Sir" + }, + { + "value": "Site Address Line 1", + "value_cy": "Llinell Cyfeiriad Safle 1" + }, + { + "value": "Site Address Line 2", + "value_cy": "Llinell Cyfeiriad Safle 2" + }, + { + "value": "Site Address Postcode", + "value_cy": "Cod Post Cyfeiriad y Safle" + }, + { + "value": "Site Address Town", + "value_cy": "Cyfeiriad y Dref Tref" + }, + { + "value": "Site Viewable from Road", + "value_cy": "Gellir gweld y safle o'r ffordd" + }, + { + "value": "Site Within a Green Belt", + "value_cy": "Safle O fewn Llain Las" + }, + { + "value": "Site Within SSSI", + "value_cy": "Safle gydag yn SoDdGA" + }, + { + "value": "Date of Application", + "value_cy": "Dyddiad y Cais" + }, + { + "value": "Date of LPA Decision", + "value_cy": "Dyddiad Penderfyniad yr ACLl" + }, + { + "value": "Development Description", + "value_cy": "Disgrifiad o'r Datblygiad" + }, + { + "value": "LPA Application Reference", + "value_cy": "Cyfeirnod Cais yr ACLl" + }, + { + "value": "Retrospective Applications", + "value_cy": "Ceisiadau Ôl-weithredol" + }, + { + "value": "Type of Planning Application", + "value_cy": "Math o Gais Cynllunio" + } + ] + } + ], + "ldp": [ + { + "formName": "LdpForm", + "fields": [ + { + "value": "Name", + "value_cy": "Enw" + } + ] + } + ], + "listedbuildingandconservationareaconsen": [ + { + "formName": "ListedBuildingAndConservationAreaConsenForm", + "fields": [ + { + "value": "Name", + "value_cy": "Enw" + }, + { + "value": "Agricultural Holdings", + "value_cy": "Daliadau Amaethyddol" + }, + { + "value": "Area Of Site in Hectares", + "value_cy": "Ardal y Safle mewn Hectarau" + }, + { + "value": "Development affect setting of a listed building", + "value_cy": "Mae datblygiad yn effeithio ar osodiad adeilad rhestredig" + }, + { + "value": "Floor Space in Square Meters", + "value_cy": "Lle Llawr mewn Mesuryddion Sgwâr" + }, + { + "value": "In CA/relates to CA", + "value_cy": "Yn CA / yn ymwneud ag CA." + }, + { + "value": "Is Flooding an issue", + "value_cy": "A yw llifogydd yn broblem" + }, + { + "value": "Is the site within an AONB", + "value_cy": "A yw'r safle o fewn AHNE" + }, + { + "value": "Land Use", + "value_cy": "Defnydd Tir" + }, + { + "value": "Land Use Category", + "value_cy": "Categori Defnydd Tir" + }, + { + "value": "Listed Building Grade", + "value_cy": "Gradd Adeilad Rhestredig" + }, + { + "value": "Name of Common Or Village Green", + "value_cy": "Enw'r Lawnt Gyffredin neu'r Pentref" + }, + { + "value": "Ownership Certificate", + "value_cy": "Tystysgrif Perchnogaeth" + }, + { + "value": "Site Address County", + "value_cy": "Cyfeiriad Safle Sir" + }, + { + "value": "Site Address Line 1", + "value_cy": "Llinell Cyfeiriad Safle 1" + }, + { + "value": "Site Address Line 2", + "value_cy": "Llinell Cyfeiriad Safle 2" + }, + { + "value": "Site PostCode", + "value_cy": "Cod post y safle" + }, + { + "value": "Site Address Town", + "value_cy": "Cyfeiriad y Dref Tref" + }, + { + "value": "Site Viewable from Road", + "value_cy": "Gellir gweld y safle o'r ffordd" + }, + { + "value": "Site Within a Green Belt", + "value_cy": "Safle O fewn Llain Las" + }, + { + "value": "Site Within SSSI", + "value_cy": "Safle gydag yn SoDdGA" + }, + { + "value": "Date of Application", + "value_cy": "Dyddiad y Cais" + }, + { + "value": "Date of LPA Decision", + "value_cy": "Dyddiad Penderfyniad yr ACLl" + }, + { + "value": "Development Description", + "value_cy": "Disgrifiad o'r Datblygiad" + }, + { + "value": "LPA Application Reference", + "value_cy": "Cyfeirnod Cais yr ACLl" + }, + { + "value": "Retrospective Applications", + "value_cy": "Ceisiadau Ôl-weithredol" + }, + { + "value": "Type of Planning Application", + "value_cy": "Math o Gais Cynllunio" + } + ] + } + ], + "maintenanceoflands217": [ + { + "formName": "MaintenanceOfLands217Form", + "fields": [ + { + "value": "Name", + "value_cy": "Enw" + }, + { + "value": "Agricultural Holding", + "value_cy": "Daliad Amaethyddol" + }, + { + "value": "Area Of Site in Hectares", + "value_cy": "Ardal y Safle mewn Hectarau" + }, + { + "value": "Development affect setting of a listed building", + "value_cy": "Mae datblygiad yn effeithio ar osodiad adeilad rhestredig" + }, + { + "value": "Floor Space in Square Meters", + "value_cy": "Lle Llawr mewn Mesuryddion Sgwâr" + }, + { + "value": "In CA/relates to CA", + "value_cy": "Yn CA / yn ymwneud ag CA." + }, + { + "value": "Is flooding and Issue", + "value_cy": "A yw llifogydd a Mater" + }, + { + "value": "Is the site within an AONB", + "value_cy": "A yw'r safle o fewn AHNE" + }, + { + "value": "Land Use", + "value_cy": "Defnydd Tir" + }, + { + "value": "Land Use Category", + "value_cy": "Categori Defnydd Tir" + }, + { + "value": "Listed Building Grade", + "value_cy": "Gradd Adeilad Rhestredig" + }, + { + "value": "Name of Common Or Village Green", + "value_cy": "Enw'r Lawnt Gyffredin neu'r Pentref" + }, + { + "value": "Ownership Certificate", + "value_cy": "Tystysgrif Perchnogaeth" + }, + { + "value": "Site Address County", + "value_cy": "Cyfeiriad Safle Sir" + }, + { + "value": "Site Address Line 1", + "value_cy": "Llinell Cyfeiriad Safle 1" + }, + { + "value": "Site Address Line 2", + "value_cy": "Llinell Cyfeiriad Safle 2" + }, + { + "value": "Site Address Postcode", + "value_cy": "Cod Post Cyfeiriad y Safle" + }, + { + "value": "Site Address Town", + "value_cy": "Cyfeiriad y Dref Tref" + }, + { + "value": "Site Viewable from Road", + "value_cy": "Gellir gweld y safle o'r ffordd" + }, + { + "value": "Site Within a Green Belt", + "value_cy": "Safle O fewn Llain Las" + }, + { + "value": "Site Within SSSI", + "value_cy": "Safle gydag yn SoDdGA" + }, + { + "value": "Ground for Appeal", + "value_cy": "Sail dros Apelio" + }, + { + "value": "Ground Letter", + "value_cy": "Llythyr Gwaelod" + } + ] + } + ], + "miscellaneouscasework": [ + { + "formName": "MiscellaneousCaseworkForm", + "fields": [ + { + "value": "Name", + "value_cy": "Enw" + }, + { + "value": "Agricultural Holding", + "value_cy": "Daliad Amaethyddol" + }, + { + "value": "Area Of Site in Hectares", + "value_cy": "Ardal y Safle mewn Hectarau" + }, + { + "value": "Development affect setting of a listed building", + "value_cy": "Mae datblygiad yn effeithio ar osodiad adeilad rhestredig" + }, + { + "value": "Floor Space in Square Meters", + "value_cy": "Lle Llawr mewn Mesuryddion Sgwâr" + }, + { + "value": "In CA/related to CA", + "value_cy": "Yn CA / yn gysylltiedig ag CA." + }, + { + "value": "Is flooding and Issue", + "value_cy": "A yw llifogydd a Mater" + }, + { + "value": "Is the site within and AONB", + "value_cy": "A yw'r safle oddi mewn ac AHNE" + }, + { + "value": "Land Use", + "value_cy": "Defnydd Tir" + }, + { + "value": "Land Use Category", + "value_cy": "Categori Defnydd Tir" + }, + { + "value": "Listed Building Grade", + "value_cy": "Gradd Adeilad Rhestredig" + }, + { + "value": "Name of Common Or Village Green", + "value_cy": "Enw'r Lawnt Gyffredin neu'r Pentref" + }, + { + "value": "Ownership Certification", + "value_cy": "Ardystiad Perchnogaeth" + }, + { + "value": "Site Address County", + "value_cy": "Cyfeiriad Safle Sir" + }, + { + "value": "Site Address Line 1", + "value_cy": "Llinell Cyfeiriad Safle 1" + }, + { + "value": "Site Address Line 2", + "value_cy": "Llinell Cyfeiriad Safle 2" + }, + { + "value": "Site Address Postcode", + "value_cy": "Cod Post Cyfeiriad y Safle" + }, + { + "value": "Site Address Town", + "value_cy": "Cyfeiriad y Dref Tref" + }, + { + "value": "Site Viewable from Road", + "value_cy": "Gellir gweld y safle o'r ffordd" + }, + { + "value": "Site Within a Green Belt", + "value_cy": "Safle O fewn Llain Las" + }, + { + "value": "Site Within SSSI", + "value_cy": "Safle gydag yn SoDdGA" + }, + { + "value": "Case Discription", + "value_cy": "Disgyblaeth Achos" + }, + { + "value": "Determined by LPA?", + "value_cy": "Wedi'i bennu gan yr ACLl?" + } + ] + } + ], + "nonvalidation": [ + { + "formName": "NonValidationForm", + "fields": [ + { + "value": "Name", + "value_cy": "Enw" + }, + { + "value": "Agriculture Holding", + "value_cy": "Daliad Amaethyddol" + }, + { + "value": "Area Of Site in Hectares", + "value_cy": "Ardal y Safle mewn Hectarau" + }, + { + "value": "Development affect setting of a listed building", + "value_cy": "Mae datblygiad yn effeithio ar osodiad adeilad rhestredig" + }, + { + "value": "Floor Space in Square Meters", + "value_cy": "Lle Llawr mewn Mesuryddion Sgwâr" + }, + { + "value": "In CA/relates to CA", + "value_cy": "Yn CA / yn ymwneud ag CA." + }, + { + "value": "Is flooding and Issue", + "value_cy": "A yw llifogydd a Mater" + }, + { + "value": "Is the site within an AONB", + "value_cy": "A yw'r safle o fewn AHNE" + }, + { + "value": "Land Use", + "value_cy": "Defnydd Tir" + }, + { + "value": "Land Use Category", + "value_cy": "Categori Defnydd Tir" + }, + { + "value": "Listed Building Grade", + "value_cy": "Gradd Adeilad Rhestredig" + }, + { + "value": "Name of Common Or Village Green", + "value_cy": "Enw'r Lawnt Gyffredin neu'r Pentref" + }, + { + "value": "Ownership Certificate", + "value_cy": "Tystysgrif Perchnogaeth" + }, + { + "value": "Site Address County", + "value_cy": "Cyfeiriad Safle Sir" + }, + { + "value": "Site Address Line 1", + "value_cy": "Llinell Cyfeiriad Safle 1" + }, + { + "value": "Site Address Line 2", + "value_cy": "Llinell Cyfeiriad Safle 2" + }, + { + "value": "Site Address Postcode", + "value_cy": "Cod Post Cyfeiriad y Safle" + }, + { + "value": "Site Address Town", + "value_cy": "Cyfeiriad y Dref Tref" + }, + { + "value": "Site Viewable from Road", + "value_cy": "Gellir gweld y safle o'r ffordd" + }, + { + "value": "Site Within Green Belt", + "value_cy": "Safle O fewn y Llain Las" + }, + { + "value": "Site Within SSSI", + "value_cy": "Safle gydag yn SoDdGA" + }, + { + "value": "Date Notice Issued", + "value_cy": "Cyhoeddwyd Rhybudd Dyddiad" + }, + { + "value": "Effective Date", + "value_cy": "Dyddiad effeithiol" + }, + { + "value": "Notice Reference", + "value_cy": "Cyfeirnod Rhybudd" + }, + { + "value": "Date of Application", + "value_cy": "Dyddiad y Cais" + }, + { + "value": "Date of LPA Decision", + "value_cy": "Dyddiad Penderfyniad yr ACLl" + }, + { + "value": "Development Description", + "value_cy": "Disgrifiad o'r Datblygiad" + }, + { + "value": "LPA Application Reference", + "value_cy": "Cyfeirnod Cais yr ACLl" + }, + { + "value": "Retrospective Applications", + "value_cy": "Ceisiadau Ôl-weithredol" + }, + { + "value": "Type of Planning Application", + "value_cy": "Math o Gais Cynllunio" + } + ] + } + ], + "planningappeals78": [ + { + "formName": "PlanningAppeals78Form", + "fields": [ + { + "value": "Name", + "value_cy": "Enw" + }, + { + "value": "Agricultural Holding", + "value_cy": "Daliad Amaethyddol" + }, + { + "value": "Area Of Site in Hectares", + "value_cy": "Ardal y Safle mewn Hectarau" + }, + { + "value": "Development affect setting of a listed building", + "value_cy": "Mae datblygiad yn effeithio ar osodiad adeilad rhestredig" + }, + { + "value": "Floor Space in Square Meters", + "value_cy": "Lle Llawr mewn Mesuryddion Sgwâr" + }, + { + "value": "In CA/relates to CA", + "value_cy": "Yn CA / yn ymwneud ag CA." + }, + { + "value": "Is flooding and Issue", + "value_cy": "A yw llifogydd a Mater" + }, + { + "value": "Is the site within an AONB", + "value_cy": "A yw'r safle o fewn AHNE" + }, + { + "value": "Land Use", + "value_cy": "Defnydd Tir" + }, + { + "value": "Land Use Category", + "value_cy": "Categori Defnydd Tir" + }, + { + "value": "Listed Building Grade", + "value_cy": "Gradd Adeilad Rhestredig" + }, + { + "value": "Name of Common Or Village Green", + "value_cy": "Enw'r Lawnt Gyffredin neu'r Pentref" + }, + { + "value": "Ownership Certificate", + "value_cy": "Tystysgrif Perchnogaeth" + }, + { + "value": "Site Address County", + "value_cy": "Cyfeiriad Safle Sir" + }, + { + "value": "Site Address Line 1", + "value_cy": "Llinell Cyfeiriad Safle 1" + }, + { + "value": "Site Address Line 2", + "value_cy": "Llinell Cyfeiriad Safle 2" + }, + { + "value": "Site Address Postcode", + "value_cy": "Cod Post Cyfeiriad y Safle" + }, + { + "value": "Site Address Town", + "value_cy": "Cyfeiriad y Dref Tref" + }, + { + "value": "Site Viewable from Road", + "value_cy": "Gellir gweld y safle o'r ffordd" + }, + { + "value": "Site Within Green Belt", + "value_cy": "Safle O fewn y Llain Las" + }, + { + "value": "Site Within SSSI", + "value_cy": "Safle gydag yn SoDdGA" + }, + { + "value": "Date of Application", + "value_cy": "Dyddiad y Cais" + }, + { + "value": "Date of LPA Decision", + "value_cy": "Dyddiad Penderfyniad yr ACLl" + }, + { + "value": "Development Description", + "value_cy": "Disgrifiad o'r Datblygiad" + }, + { + "value": "LPA Application Reference", + "value_cy": "Cyfeirnod Cais yr ACLl" + }, + { + "value": "Retrospective Applications", + "value_cy": "Ceisiadau Ôl-weithredol" + }, + { + "value": "Type of Planning Application", + "value_cy": "Math o Gais Cynllunio" + } + ] + } + ], + "planningconditionss73s79": [ + { + "formName": "PlanningConditionss73s79Form", + "fields": [ + { + "value": "Name", + "value_cy": "Enw" + }, + { + "value": "Agricultural Holding", + "value_cy": "Daliad Amaethyddol" + }, + { + "value": "Area Of Site in Hectares", + "value_cy": "Ardal y Safle mewn Hectarau" + }, + { + "value": "Development affect setting of a listed building", + "value_cy": "Mae datblygiad yn effeithio ar osodiad adeilad rhestredig" + }, + { + "value": "Floor Space in Square Meaters", + "value_cy": "Lle Llawr mewn Cigyddion Sgwâr" + }, + { + "value": "In CA/relates to CA", + "value_cy": "Yn CA / yn ymwneud ag CA." + }, + { + "value": "Is flooding and Issue", + "value_cy": "A yw llifogydd a Mater" + }, + { + "value": "Is the site within an AONB", + "value_cy": "A yw'r safle o fewn AHNE" + }, + { + "value": "Land Use", + "value_cy": "Defnydd Tir" + }, + { + "value": "Land Use Category", + "value_cy": "Categori Defnydd Tir" + }, + { + "value": "Listed Building Grade", + "value_cy": "Gradd Adeilad Rhestredig" + }, + { + "value": "Name of Common Or Village Green", + "value_cy": "Enw'r Lawnt Gyffredin neu'r Pentref" + }, + { + "value": "Ownership Certificate", + "value_cy": "Tystysgrif Perchnogaeth" + }, + { + "value": "Site Address County", + "value_cy": "Cyfeiriad Safle Sir" + }, + { + "value": "Site Address Line 1", + "value_cy": "Llinell Cyfeiriad Safle 1" + }, + { + "value": "Site Address Line 2", + "value_cy": "Llinell Cyfeiriad Safle 2" + }, + { + "value": "Site Address Postcode", + "value_cy": "Cod Post Cyfeiriad y Safle" + }, + { + "value": "Site Address Town", + "value_cy": "Cyfeiriad y Dref Tref" + }, + { + "value": "Site Viewable from Road", + "value_cy": "Gellir gweld y safle o'r ffordd" + }, + { + "value": "Site Within a Green Belt", + "value_cy": "Safle O fewn Llain Las" + }, + { + "value": "Site Within SSSI", + "value_cy": "Safle gydag yn SoDdGA" + }, + { + "value": "Date of Application", + "value_cy": "Dyddiad y Cais" + }, + { + "value": "Date of LPA Decision", + "value_cy": "Dyddiad Penderfyniad yr ACLl" + }, + { + "value": "Development Description", + "value_cy": "Disgrifiad o'r Datblygiad" + }, + { + "value": "LPA Application Reference", + "value_cy": "Cyfeirnod Cais yr ACLl" + }, + { + "value": "Retrospective Applications", + "value_cy": "Ceisiadau Ôl-weithredol" + }, + { + "value": "Type of Planning Application", + "value_cy": "Math o Gais Cynllunio" + } + ] + } + ], + "planningobligationappeals106": [ + { + "formName": "PlanningObligationAppeals106Form", + "fields": [ + { + "value": "Name", + "value_cy": "Enw" + }, + { + "value": "Agricultural Holding", + "value_cy": "Daliad Amaethyddol" + }, + { + "value": "Area Of Site in Hectares", + "value_cy": "Ardal y Safle mewn Hectarau" + }, + { + "value": "Development affect setting of a listed building", + "value_cy": "Mae datblygiad yn effeithio ar osodiad adeilad rhestredig" + }, + { + "value": "Floor Space in Square Meters", + "value_cy": "Lle Llawr mewn Mesuryddion Sgwâr" + }, + { + "value": "In CA/relates to CA", + "value_cy": "Yn CA / yn ymwneud ag CA." + }, + { + "value": "Is flooding and Issue", + "value_cy": "A yw llifogydd a Mater" + }, + { + "value": "Is the site within an AONB", + "value_cy": "A yw'r safle o fewn AHNE" + }, + { + "value": "Land Use", + "value_cy": "Defnydd Tir" + }, + { + "value": "Land Use Category", + "value_cy": "Categori Defnydd Tir" + }, + { + "value": "Listed Building Grade", + "value_cy": "Gradd Adeilad Rhestredig" + }, + { + "value": "Name of Common Or Village Green", + "value_cy": "Enw'r Lawnt Gyffredin neu'r Pentref" + }, + { + "value": "Ownership Certificate", + "value_cy": "Tystysgrif Perchnogaeth" + }, + { + "value": "Site Address County", + "value_cy": "Cyfeiriad Safle Sir" + }, + { + "value": "Site Address Line 1", + "value_cy": "Llinell Cyfeiriad Safle 1" + }, + { + "value": "Site Address Line 2", + "value_cy": "Llinell Cyfeiriad Safle 2" + }, + { + "value": "Site Address Postcode", + "value_cy": "Cod Post Cyfeiriad y Safle" + }, + { + "value": "Site Address Town", + "value_cy": "Cyfeiriad y Dref Tref" + }, + { + "value": "Site Viewable from Road", + "value_cy": "Gellir gweld y safle o'r ffordd" + }, + { + "value": "Site Within Green Belt", + "value_cy": "Safle O fewn y Llain Las" + }, + { + "value": "Site Within SSSI", + "value_cy": "Safle gydag yn SoDdGA" + }, + { + "value": "Date Deed of obligation was signed", + "value_cy": "Dyddiad llofnodwyd y weithred rwymedigaeth" + }, + { + "value": "Date of Application to Modify/Discharge", + "value_cy": "Dyddiad y Cais i Addasu / Rhyddhau" + }, + { + "value": "Date of LPA Decision", + "value_cy": "Dyddiad Penderfyniad yr ACLl" + }, + { + "value": "LPA Obligation Application Reference", + "value_cy": "Cyfeirnod Cais Rhwymedigaeth yr ACLl" + }, + { + "value": "Obligation Description", + "value_cy": "Disgrifiad Rhwymedigaeth" + } + ] + } + ], + "row": [ + { + "formName": "RowForm", + "fields": [ + { + "value": "Name", + "value_cy": "Enw" + }, + { + "value": "Agricultural Holding", + "value_cy": "Daliad Amaethyddol" + }, + { + "value": "Area Of Site in Hectares", + "value_cy": "Ardal y Safle mewn Hectarau" + }, + { + "value": "Development affect setting of a listed building", + "value_cy": "Mae datblygiad yn effeithio ar osodiad adeilad rhestredig" + }, + { + "value": "Floor Space in Square Meters", + "value_cy": "Lle Llawr mewn Mesuryddion Sgwâr" + }, + { + "value": "In CA/relates to CA", + "value_cy": "Yn CA / yn ymwneud ag CA." + }, + { + "value": "Is flooding and Issue", + "value_cy": "A yw llifogydd a Mater" + }, + { + "value": "Is the site within an AONB", + "value_cy": "A yw'r safle o fewn AHNE" + }, + { + "value": "Land Use", + "value_cy": "Defnydd Tir" + }, + { + "value": "Land Use Category", + "value_cy": "Categori Defnydd Tir" + }, + { + "value": "Listed Building Grade", + "value_cy": "Gradd Adeilad Rhestredig" + }, + { + "value": "Name of Common Or Village Green", + "value_cy": "Enw'r Lawnt Gyffredin neu'r Pentref" + }, + { + "value": "Ownership Certification", + "value_cy": "Ardystiad Perchnogaeth" + }, + { + "value": "Site Address Line 1", + "value_cy": "Llinell Cyfeiriad Safle 1" + }, + { + "value": "Site Address Line 2", + "value_cy": "Llinell Cyfeiriad Safle 2" + }, + { + "value": "Site Address Postcode", + "value_cy": "Cod Post Cyfeiriad y Safle" + }, + { + "value": "Site Address Town", + "value_cy": "Cyfeiriad y Dref Tref" + }, + { + "value": "Site County", + "value_cy": "Sir y Safle" + }, + { + "value": "Site Viewable from Road", + "value_cy": "Gellir gweld y safle o'r ffordd" + }, + { + "value": "Site Within Green Belt", + "value_cy": "Safle O fewn y Llain Las" + }, + { + "value": "Site Within SSSI", + "value_cy": "Safle gydag yn SoDdGA" + }, + { + "value": "Determined by LPA?", + "value_cy": "Wedi'i bennu gan yr ACLl?" + }, + { + "value": "Case Description", + "value_cy": "Disgrifiad o'r Achos" + } + ] + } + ], + "transportandworkact": [ + { + "formName": "TransportAndWorkActForm", + "fields": [ + { + "value": "Name", + "value_cy": "Enw" + }, + { + "value": "Anticipated Grid Reference Northing", + "value_cy": "Cyfeirnod Grid Rhagweld Gogleddol" + }, + { + "value": "Anticipated Grid Reference Easting", + "value_cy": "Cyfeirio Grid Rhagwelir Dwyrain" + }, + { + "value": "Project Name", + "value_cy": "Enw'r Prosiect" + }, + { + "value": "Project Discription", + "value_cy": "Disgrifiad o'r Prosiect" + }, + { + "value": "Project Description", + "value_cy": "Disgrifiad o'r Prosiect" + }, + { + "value": "Project Location", + "value_cy": "Lleoliad y Prosiect" + }, + { + "value": "Address County", + "value_cy": "Cyfeiriad Sir" + }, + { + "value": "Address Line 1", + "value_cy": "Llinell Cyfeiriad 1" + }, + { + "value": "Address Line 2", + "value_cy": "Llinell Cyfeiriad 2" + }, + { + "value": "Address Town", + "value_cy": "Cyfeiriad Town" + }, + { + "value": "Post Code", + "value_cy": "Cod post" + }, + { + "value": "Agent Contact Name", + "value_cy": "Enw Cyswllt Asiant" + }, + { + "value": "Email Address", + "value_cy": "Cyfeiriad ebost" + }, + { + "value": "Salutation", + "value_cy": "Cyfarchiad" + }, + { + "value": "First Name", + "value_cy": "Enw cyntaf" + }, + { + "value": "Last Name", + "value_cy": "Enw olaf" + }, + { + "value": "Organisation", + "value_cy": "Sefydliad" + }, + { + "value": "Role", + "value_cy": "Rôl" + }, + { + "value": "Telephone Number", + "value_cy": "Rhif Ffon" + }, + { + "value": "Web Address", + "value_cy": "Cyfeiriad Gwe" + } + ] + } + ], + "wayleave": [ + { + "formName": "WayleaveForm", + "fields": [ + { + "value": "Name", + "value_cy": "Enw" + }, + { + "value": "Agricultural Holding", + "value_cy": "Daliad Amaethyddol" + }, + { + "value": "Area Of Site in Hectares", + "value_cy": "Ardal y Safle mewn Hectarau" + }, + { + "value": "Development affect setting of a listed building", + "value_cy": "Mae datblygiad yn effeithio ar osodiad adeilad rhestredig" + }, + { + "value": "Floor Space in Square Meters", + "value_cy": "Lle Llawr mewn Mesuryddion Sgwâr" + }, + { + "value": "In CA/related to CA", + "value_cy": "Yn CA / yn gysylltiedig ag CA." + }, + { + "value": "Is flooding and Issue", + "value_cy": "A yw llifogydd a Mater" + }, + { + "value": "Is the site within and AONB", + "value_cy": "A yw'r safle oddi mewn ac AHNE" + }, + { + "value": "Land Use", + "value_cy": "Defnydd Tir" + }, + { + "value": "Land Use Category", + "value_cy": "Categori Defnydd Tir" + }, + { + "value": "Listed Building Grade", + "value_cy": "Gradd Adeilad Rhestredig" + }, + { + "value": "Name of Common Or Village Green", + "value_cy": "Enw'r Lawnt Gyffredin neu'r Pentref" + }, + { + "value": "Ownership Certification", + "value_cy": "Ardystiad Perchnogaeth" + }, + { + "value": "Site Address County", + "value_cy": "Cyfeiriad Safle Sir" + }, + { + "value": "Site Address Line 1", + "value_cy": "Llinell Cyfeiriad Safle 1" + }, + { + "value": "Site Address Line 2", + "value_cy": "Llinell Cyfeiriad Safle 2" + }, + { + "value": "Site Address Postcode", + "value_cy": "Cod Post Cyfeiriad y Safle" + }, + { + "value": "Site Address Town", + "value_cy": "Cyfeiriad y Dref Tref" + }, + { + "value": "Site Viewable from Road", + "value_cy": "Gellir gweld y safle o'r ffordd" + }, + { + "value": "Site Within a Green Belt", + "value_cy": "Safle O fewn Llain Las" + }, + { + "value": "Site Within SSSI", + "value_cy": "Safle gydag yn SoDdGA" + }, + { + "value": "Case Discription", + "value_cy": "Disgyblaeth Achos" + }, + { + "value": "Determined by LPA?", + "value_cy": "Wedi'i bennu gan yr ACLl?" + } + ] + } + ] +} \ No newline at end of file diff --git a/data/lookups.txt b/data/lookups.txt new file mode 100644 index 00000000..1445a2d1 --- /dev/null +++ b/data/lookups.txt @@ -0,0 +1,290 @@ +(a) That planning permission should be granted for what is alleged in the notice. +(A00) Agriculture, Fisheries and Forestry – Miscellaneous Agriculture, Fisheries and Forestry Uses +(A10) Agriculture, Fisheries and Forestry – Farming Activity (Inc Crop Production, Keeping Livestock For Food, Wool, Skin, Fur or Farming) +(A11) Agriculture, Fisheries and Forestry – Intensive Livestock Unit +(A12) Agriculture, Fisheries and Forestry – Keeping/Stabling Of Farm Animals (Cattle Shed etc) +(A13) Agriculture, Fisheries and Forestry – Crop Storage, Barn, Granary, Oasthouse +(A14) Agriculture, Fisheries and Forestry – Silo +(A15) Agriculture, Fisheries and Forestry – Other Agricultural Storage +(A16) Agriculture, Fisheries and Forestry – Glasshouse, Market Garden, Nursery (Inc Polythene Tunnels). +(A17) Agriculture, Fisheries and Forestry – Dairy, Milk Cooler +(A20) Agriculture, Fisheries and Forestry – Keeping of Non-Farm Livestock (eg Pets, Those Kept For Show, Recreation, Conservation) +(A21) Agriculture, Fisheries and Forestry – Stabling/Keeping Of Non-Farm Horses +(A22) Agriculture, Fisheries and Forestry – Kennel, Cattery, Quarantine Centre +(A23) Agriculture, Fisheries and Forestry – Zoo, Safari Park, Aquaria +(A24) Agriculture, Fisheries and Forestry – Veterinary Surgery +(A30) Agriculture, Fisheries and Forestry – Fish Farming +(A40) Agriculture, Fisheries and Forestry – Slaughterhouse, Abattoir +(A50) Agriculture, Fisheries and Forestry – Reclamation Of Land To Agriculture +(A60) Agriculture, Fisheries and Forestry – Woodland, Forestry, Tree Preservation +(A70) Agriculture, Fisheries and Forestry – Allotment Garden +(A80) Agriculture, Fisheries and Forestry – Nature Reserve/Sanctuary +(A82) Agriculture, Fisheries and Forestry – Site Of Special Scientific Interest +(A83) Agriculture, Fisheries and Forestry – Apiary/Bee-Keeping, Aviary +(b) That the breach of control alleged in the enforcement notice has not occurred as a matter of fact. +(c) That there has not been a breach of planning control (for example because permission has already been granted or it is “permitted development”). +(C00) Community, Education and Defence services – Miscellaneous Community, Education And Defence Uses +(C10) Community, Education and Defence services – Health Care Facility +(C11) Community, Education and Defence services – Hospital, Diagnosis/Treatment Centre, Mental Institution +(C12) Community, Education and Defence services – Surgery (Doctor, Dentist, Chiropodist) +(C13) Community, Education and Defence services – Opticians Premises +(C14) Community, Education and Defence services – Nursing Home +(C20) Community, Education and Defence services – Non-Medical Residential Institution +(C21) Community, Education and Defence services – Children's Home +(C22) Community, Education and Defence services – Old People’s Home +(C23) Community, Education and Defence services – Home For People With Disabilities +(C24) Community, Education and Defence services – Prison, Place Of Detention +(C30) Community, Education and Defence services – School, College, Research Institution +(C31) Community, Education and Defence services – Playgroup, Creche, Childrens Nursery +(C40) Community, Education and Defence services – Place Of Worship +(C50) Community, Education and Defence services – Place Of Assembly, Hall, Community Centre, Scout Hut +(C60) Community, Education and Defence services – Courts +(C70) Community, Education and Defence services – Military And Civil Defence And Protection +(C71) Community, Education and Defence services – Military Defence Establishment (RAF, RN, Army), Barrack, Fortification +(C72) Community, Education and Defence services – Civil Defence Facility, Fall-Out Shelter +(C73) Community, Education and Defence services – Fire, Coastguard, Police, Ambulance Station +(C74) Community, Education and Defence services – Sea And River Defence Works +(d) That, at the time the enforcement notice was issued, it was too late to take enforcement action against the matters stated in the notice. +(e) The notice was not properly served on everyone with an interest in the land. +(f) The steps required to comply with the requirements of the notice are excessive, and lesser steps would overcome the objections. +(F00) Offices, Studios – Miscellaneous Office Uses +(F10) Offices, Studios – Specified Local Service +(F11) Offices, Studios – Building Society Branch/Bank, Cash Dispenser +(F12) Offices, Studios – Central And Local Government Office +(F13) Offices, Studios – Employment Agency +(F14) Offices, Studios – Estate Agent +(F15) Offices, Studios – Insurance Office +(F16) Offices, Studios – Lawyer/Solicitors Office +(F17) Offices, Studios – Taxi Control Office +(F20) Offices, Studios – Studio +(F21) Offices, Studios – Artists Studio (inc Tattoo Artist) +(F22) Offices, Studios – Photographic Studio +(F23) Offices, Studios – Television Studio +(F24) Offices, Studios – Sound Recording Studio +(F30) Offices, Studios – Business Centre/Park +(F31) Offices, Studios – Conference Centre +(g) The time given to comply with the notice is too short. +(H00) Housing and Residential development – Miscellaneous Residential Uses +(H10) Housing and Residential development – Permanent Dwellings +(H11) Housing and Residential development – Small Homes (1 Bed, Small 2 Bed, Studio Homes etc) +(H12) Housing and Residential development – Agricultural Workers Dwelling +(H13) Housing and Residential development – Flat, Maisonette, Multi-Occupation +(H14) Housing and Residential development – Permanent Residential Caravan/Mobile Home +(H15) Housing and Residential development – Houseboat +(H16) Housing and Residential development – Conversion of Agricultural Buildings Into Dwellings +(H17) Housing and Residential development – Dependant Relative Annex/Flat +(H20) Housing and Residential development – Householder Development (Alteration/Conversion Within Curtilage ie Wall, Garage, Swimming Pool) +(H21) Housing and Residential development – Residential Extensions (Number of Rooms Or Size Increased) +(H30) Housing and Residential development – Communal Accommodation +(H31) Housing and Residential development – Hotel, Boarding House, Guesthouse +(H32) Housing and Residential development – Hostel, Halls of Residence, Bail Hostel +(H33) Housing and Residential development – Warden Assisted Sheltered Accommodation +(H40) Housing and Residential development – Temporary Dwellings +(H41) Housing and Residential development – Gypsy/Travellers Encampment +(H42) Housing and Residential development – Holiday Chalet/Flat +(H43) Housing and Residential development – Travelling Showman's Winter Quarters +(H44) Housing and Residential development – Temporary Residential Caravans And Mobile Homes +(L00) Leisure and Recreation – Miscellaneous Leisure Uses +(L10) Leisure and Recreation – Indoor Sports Facility (Sports/Leisure Centre) +(L11) Leisure and Recreation – Squash Court, Badminton Court, Indoor Tennis Court +(L12) Leisure and Recreation – Sports Hall, Gymnasium +(L14 ) Leisure and Recreation – Covered Swimming Pool +(L15) Leisure and Recreation – Billiard And Snooker Centre +(L20) Leisure and Recreation – Museum, Library, Gallery +(L30) Leisure and Recreation – Amusements And Entertainment +(L31) Leisure and Recreation – Amusement Arcade/Centre +(L32) Leisure and Recreation – Betting Office +(L33) Leisure and Recreation – Bingo Hall +(L34) Leisure and Recreation – Casino, Dance Hall, Nightclub, Sports/Social Club +(L35) Leisure and Recreation – Cinema, Theatre, Concert/Exhibition Hall, Visitors Centre +(L36) Leisure and Recreation – Funfair +(L37) Leisure and Recreation – Sex Industry (exc Sex Shops) +(L38) Leisure and Recreation – Dance School, School Of Performing Arts +(L40) Leisure and Recreation – Outdoor Sports Facilities +(L41) Leisure and Recreation – Buildings Associated With Outdoor Recreation +(L42) Leisure and Recreation – Golf Course, Driving Range +(L43) Leisure and Recreation – Motor Sport (inc Powered Models) +(L44) Leisure and Recreation – Riding School +(L45) Leisure and Recreation – Rifle Range, Clay Pigeon Shoot +(L46) Leisure and Recreation – Sports ground, Playing Field, Race Track +(L47) Leisure and Recreation – Sports Stadium, Arena +(L48) Leisure and Recreation – Open Air Swimming Pool +(L49) Leisure and Recreation – Outdoor Tennis Court +(L50) Leisure and Recreation – Other Recreational Land Uses +(L51) Leisure and Recreation – Botanical Garden, Park, Picnic Site +(L52) Leisure and Recreation – Leisure Plot (Land Used For Leisure But Not A Domestic Garden Or Allotment) +(L53) Leisure and Recreation – National Heritage Site (inc Ancient Monument, Stately Home, Memorial) +(L54) Leisure and Recreation – Children's Play Area +(L60) Leisure and Recreation – Water Sport +(L61) Leisure and Recreation – Marina, Boat mooring, Boathouse +(L62) Leisure and Recreation – Angling And Fishing Activities +(L70) Leisure and Recreation – Caravans And Camping +(L71) Leisure and Recreation – Touring Caravan Site +(L72) Leisure and Recreation – Seasonal Holiday Caravan Site +(L73) Leisure and Recreation – Camp Site (Tents) +(M00) Mineral extraction/exploration (Inc Geological exploration) - Miscellaneous Mineral Development +(M10) Mineral extraction/exploration (Inc Geological exploration) - Surface Mineral Extraction +(M11) Mineral extraction/exploration (Inc Geological exploration) - Sand And Gravel Extraction +(M12) Mineral extraction/exploration (Inc Geological exploration) - Open Cast Coal, Peat +(M13) Mineral extraction/exploration (Inc Geological exploration) - Clays (Brick, Brick Earth, China, Ball) +(M14) Mineral extraction/exploration (Inc Geological exploration) - Fullers Earth +(M15) Mineral extraction/exploration (Inc Geological exploration) - Sedimentary Rock (Limestone etc) +(M16) Mineral extraction/exploration (Inc Geological exploration) - Igneous/Metamorphic Rock +(M17) Mineral extraction/exploration (Inc Geological exploration) - Celestite +(M18) Mineral extraction/exploration (Inc Geological exploration) - Metalliferous Minerals +(M19) Mineral extraction/exploration (Inc Geological exploration) - Other Veined Surface Mined Minerals (Fluorspar, Barytes) +(M20) Mineral extraction/exploration (Inc Geological exploration) - Underground Mineral Extraction +(M21) Mineral extraction/exploration (Inc Geological exploration) - Coal (Mined Underground) +(M22) Mineral extraction/exploration (Inc Geological exploration) - Potash +(M23) Mineral extraction/exploration (Inc Geological exploration) - Anhydrite +(M24) Mineral extraction/exploration (Inc Geological exploration) - Gypsum +(M25) Mineral extraction/exploration (Inc Geological exploration) - Limestone +(M26) Mineral extraction/exploration (Inc Geological exploration) - Metalliferous Minerals (Tungsten, Tin etc) +(M27) Mineral extraction/exploration (Inc Geological exploration) - Other Veined Underground Mined Minerals (Fluorspar, Barytes) +(M28) Mineral extraction/exploration (Inc Geological exploration) - Oil, Gas +(M30) Mineral extraction/exploration (Inc Geological exploration) - Disposal Of Spoil From Mineral Working +(M40) Mineral extraction/exploration (Inc Geological exploration) - Mineral Handling And Processing Installation +(M50) Mineral extraction/exploration (Inc Geological exploration) - Winning And Working Of Minerals For Agriculture (GDO Class VI) +(M60) Mineral extraction/exploration (Inc Geological exploration) - Filling And Restoration Of Mineral Working +(M61) Mineral extraction/exploration (Inc Geological exploration) - Landfill +(M70) Mineral extraction/exploration (Inc Geological exploration) - Geological Exploration +(M71) Mineral extraction/exploration (Inc Geological exploration) - Exploration For Oil, Gas +(N00) Industry – Miscellaneous Industrial Uses +(N10) Industry – Light Industry (exc Science Labs) +(N20) Industry – General Industry (exc Science Parks) +(N21) Industry – Vehicle Repairs +(N30) Industry – Science Park (Science, Technology, Research) +(N31) Industry – Laboratory +(N40) Industry – Special Industry (As Defined In Use Classes Order) +(N41) Industry – Alkali Processing +(N42) Industry – Metal Processing (Smelting, Galvanising etc) +(N43) Industry – Brick/Cement Production +(N44) Industry – Chemical Processing (Cellulose, Rubber etc) +(N45) Industry – Animal Based Processing (Glue, Soap, Tripe etc) +(N50) Industry – Disposal Of Industrial Waste +(N51) Industry – Scrapyard +(N60) Industry – Industrial Archaeology +(N61) Industry – Windmill, Watermill +(S00) Shop, Retail and Associated uses – Miscellaneous Shops And Associated Uses +(S01) Shop, Retail and Associated uses – Retail Store/Warehouse (Where Neither Floor Space Nor Site Area Is Provided) +(S10) Shop, Retail and Associated uses – Retail Store/Warehouse (Under 5,000 sq m Floor Space Or Less Than 1 Hectare Site Area) +(S11) Shop, Retail and Associated uses – Pet Shop, Cats Meat Shop, Tripe Shop +(S12) Shop, Retail and Associated uses – Hot Food, Takeaway Food, Fish And Chip Shop +(S13) Shop, Retail and Associated uses – Sex Shop +(S14) Shop, Retail and Associated uses – Sale/Rental Of Pre-Recorded Video Tapes +(S15) Shop, Retail and Associated uses – Sale Of Motor Vehicles +(S16) Shop, Retail and Associated uses –DIY Shop +(S19) Shop, Retail and Associated uses – Superstore / Hypermarket +(S22) Shop, Retail and Associated uses – Retail Store/Warehouse (Between 5 & 10,000 sq m Floor Space Or Up To 1.5 Hectares Or Less Site Area) +(S23) Shop, Retail and Associated uses - Retail Store/Warehouse (Between 10 & 20,000 sq m Floor Space Or 1.5 & 3 Hectares Site Area) +(S24) Shop, Retail and Associated uses – Retail Store/Warehouse (Greater than 20,000 sq m Floor Space Or Greater Than 4 Hectares Site Area) +(S25) Shop, Retail and Associated uses – Warehouse Club +(S28) Shop, Retail and Associated uses – Shopping Centre +(S30) Shop, Retail and Associated uses – Other Retail Use +(S31) Shop, Retail and Associated uses – Farm Shop +(S32) Shop, Retail and Associated uses – Garden Centre +(S33) Shop, Retail and Associated uses – Open Air Market (inc Car Boot Sales) +(S34) Shop, Retail and Associated uses – Covered Market +(S40) Shop, Retail and Associated uses – Catering General +(S41) Shop, Retail and Associated uses – Restaurant, Canteen, Café +(S42) Shop, Retail and Associated uses – Public House, Wine Bar +(S43) Shop, Retail and Associated uses – Snack Bar, Ice Cream Outlet +(S44) Shop, Retail and Associated uses – Hot Dog Stall, Mobile Café +(S50) Shop, Retail and Associated uses – Other Services +(S51) Shop, Retail and Associated uses – Hairdresser, Beauty Salon, Massage Parlour/Sauna +(S52) Shop, Retail and Associated uses – Launderette +(S53) Shop, Retail and Associated uses – Post Office +(S54) Shop, Retail and Associated uses – Travel Agent, Ticket Agency, Hotel Agency +(S55) Shop, Retail and Associated uses –Undertaker, Funeral Director +(S60) Shop, Retail and Associated uses – Petrol Filling Station +(S61) Shop, Retail and Associated uses – Car Wash, Car Valeting Service +(S62) Shop, Retail and Associated uses – Vehicle Hire +(S63) Shop, Retail and Associated uses – Motorway/Major Road Service Area +(S70) Shop, Retail and Associated uses – Shop Front (inc Blinds, Canopies, Luminous Signs, Security Shutters) +(T00) Transport, Utilities and Miscellaneous uses – Transport Utilities And Miscellaneous Uses +(T10) Transport, Utilities and Miscellaneous uses – Public Transport Facility +(T11) Transport, Utilities and Miscellaneous uses – Airport, Heliport, Hoverport, Air Terminal +(T12) Transport, Utilities and Miscellaneous uses – Bus/Coach Stations/Depot +(T13) Transport, Utilities and Miscellaneous uses – Railway Station/Installation +(T14) Transport, Utilities and Miscellaneous uses – Dock/Quay +(T15) Transport, Utilities and Miscellaneous uses – Canal +(T16) Transport, Utilities and Miscellaneous uses – Road +(T17) Transport, Utilities and Miscellaneous uses – Footpath, Bridleway, Byway Open To All Traffic +(T18) Transport, Utilities and Miscellaneous uses – Cycleway +(T20) Transport, Utilities and Miscellaneous uses – Parking (Land) +(T21) Transport, Utilities and Miscellaneous uses – Car Park +(T22) Transport, Utilities and Miscellaneous uses – Lorry Park +(T23) Transport, Utilities and Miscellaneous uses – Cycle Park +(T24) Transport, Utilities and Miscellaneous uses – Lock-Up Garage +(T30) Transport, Utilities and Miscellaneous uses – Utilities +(T31) Transport, Utilities and Miscellaneous uses – Gas Production/Supply, Gas Pipeline +(T32) Transport, Utilities and Miscellaneous uses – Electricity Production And Supply +(T33) Transport, Utilities and Miscellaneous uses – Water Catchment/Supply (inc Plant, Bore Hole) +(T34) Transport, Utilities and Miscellaneous uses – Oil Installation/Pipeline +(T35) Transport, Utilities and Miscellaneous uses – Sewage Treatment And Disposal, Sea Fall-Out +(T36) Transport, Utilities and Miscellaneous uses – Domestic Refuse Disposal, Waste Disposal +(T37) Transport, Utilities and Miscellaneous uses – Cemetery And Crematorium, Mortuary, Pet Cemetery +(T38) Transport, Utilities and Miscellaneous uses – Public Convenience, Toilet Facility +(T39) Transport, Utilities and Miscellaneous uses – Wind Turbine, Wind Farm +(T40) Transport, Utilities and Miscellaneous uses – Communications General +(T41) Transport, Utilities and Miscellaneous uses – Post Office Depot +(T42) Transport, Utilities and Miscellaneous uses – Telecommunications (inc Radio/Tv - Mast/Ariel/DishAntenna) +(T50) Transport, Utilities and Miscellaneous uses – Miscellaneous +(T51) Transport, Utilities and Miscellaneous uses –Flood Lights +(T52) Transport, Utilities and Miscellaneous uses – Non-Residential Fence, Wall, Gate. Enclosure +(T53) Transport, Utilities and Miscellaneous uses – Advertisement Hoarding, Advertisement Structure +(T54) Transport, Utilities and Miscellaneous uses – Fire Escape +(T60) Transport, Utilities and Miscellaneous uses – Unused Land +(T61) Transport, Utilities and Miscellaneous uses – Derelict Land +(T62) Transport, Utilities and Miscellaneous uses – Cleared Site +(W00) Storage, Depots, Yards, Warehousing and Wholesaling – Miscellaneous Storage +(W10) Storage, Depots, Yards, Warehousing and Wholesaling – Wholesale Warehouse Or Repository +(W11) Storage, Depots, Yards, Warehousing and Wholesaling – Cold Store, Refrigerated Storage +(W20) Storage, Depots, Yards, Warehousing and Wholesaling – Deport +(W21) Storage, Depots, Yards, Warehousing and Wholesaling – Builders Yard, Timber Yard, Stonemasons Yard +(W22) Storage, Depots, Yards, Warehousing and Wholesaling – Coal yard +(W23) Storage, Depots, Yards, Warehousing and Wholesaling – Council Deport +(W24) Storage, Depots, Yards, Warehousing and Wholesaling – Freight, Haulage, Railway, Container +(W25) Storage, Depots, Yards, Warehousing and Wholesaling – Plant Hire, Skip hire +(W30) Storage, Depots, Yards, Warehousing and Wholesaling – Open Storage (inc Storage Of Cars etc) +Agriculture, Fisheries and Forestry +Application for approval of reserved matters +Application for full planning permission +Application for outline planning permission +Application for variation or removal of a condition on a permission +Certificate A +Certificate B +Certificate C&D +Community, Education and Defence services +ELB - ( b )that the matters alleged to constitute a contravention of section 9(1) or (2) have not occurred. +ELB - (a)that the building is not of special architectural or historic interest. +ELB - (c)that those matters (if they occurred) do not constitute such a contravention. +ELB - (d)that works to the building were urgently necessary in the interests of safety or health or for the preservation of the building, that it was not practicable to secure safety or health or, as the case may be, the preservation of the building by +ELB - (e)that listed building consent ought to be granted for the works, or that any relevant condition of such consent which has been granted ought to be discharged, or different conditions substituted. +ELB - (f)that copies of the notice were not served as required by section 38(4) +ELB - (g)except in relation to such a requirement as is mentioned in section 38(2)(b) or (c), that the requirements of the notice exceed what is necessary for restoring the building to its condition before the works were carried out +ELB - (h)that the period specified in the notice as the period within which any step required by the notice is to be taken falls short of what should reasonably be allowed. +ELB - (i)that the steps required by the notice for the purpose of restoring the character of the building to its former state would not serve that purpose. +ELB - (j)that steps required to be taken by virtue of section 38(2)(b) exceed what is necessary to alleviate the effect of the works executed to the building. +ELB - (k)that steps required to be taken by virtue of section 38(2)(c) exceed what is necessary to bring the building to the state in which it would have been if the terms and conditions of the listed building consent had been complied with. +Housing and Residential development +I +II +II* +Industry +Item +Leisure and Recreation +Mineral extraction/exploration (Inc Geological exploration) +MOL - (a)that the condition of the land to which the notice relates does not adversely affect the amenity of any part of the area of the local planning authority who served the notice, or of any adjoining area. +MOL - (b)that the condition of the land to which the notice relates is attributable to, and such as results in the ordinary course of events from, the carrying on of operations or a use of land which is not in contravention of Part III. +MOL - (c)that the requirements of the notice exceed what is necessary for preventing the condition of the land from adversely affecting the amenity of any part of the area of the local planning authority who served the notice, or of any adjoining area. +NA +No +Offices, Studios +S117 +S118 +S119 +Shop, Retail and Associated uses +Storage, Depots, Yards, Warehousing and Wholesaling +Transport, Utilities and Miscellaneous uses +Yes \ No newline at end of file diff --git a/data/picklistLookups.json b/data/picklistLookups.json new file mode 100644 index 00000000..ed173383 --- /dev/null +++ b/data/picklistLookups.json @@ -0,0 +1,1168 @@ +{ + "picklists": [ + { + "options": [ + { + "value": "(a) That planning permission should be granted for what is alleged in the notice.", + "value_cy": "(a) Y dylid rhoi caniatâd cynllunio ar gyfer yr hyn a honnir yn yr hysbysiad." + }, + { + "value": "(A00) Agriculture, Fisheries and Forestry – Miscellaneous Agriculture, Fisheries and Forestry Uses", + "value_cy": "(A00) Amaethyddiaeth, Pysgodfeydd a Choedwigaeth - Amaethyddiaeth Amrywiol, Pysgodfeydd a Defnyddiau Coedwigaeth" + }, + { + "value": "(A10) Agriculture, Fisheries and Forestry – Farming Activity (Inc Crop Production, Keeping Livestock For Food, Wool, Skin, Fur or Farming)", + "value_cy": "(A10) Amaethyddiaeth, Pysgodfeydd a Choedwigaeth - Gweithgaredd Ffermio (Cynhyrchu Cnydau, Cadw Da Byw ar gyfer Bwyd, Gwlân, Croen, Ffwr neu Ffermio)" + }, + { + "value": "(A11) Agriculture, Fisheries and Forestry – Intensive Livestock Unit", + "value_cy": "(A11) Amaethyddiaeth, Pysgodfeydd a Choedwigaeth - Uned Da Byw Dwys" + }, + { + "value": "(A12) Agriculture, Fisheries and Forestry – Keeping/Stabling Of Farm Animals (Cattle Shed etc)", + "value_cy": "(A12) Amaethyddiaeth, Pysgodfeydd a Choedwigaeth - Cadw / Stablio Anifeiliaid Fferm (Sied Wartheg ac ati)" + }, + { + "value": "(A13) Agriculture, Fisheries and Forestry – Crop Storage, Barn, Granary, Oasthouse", + "value_cy": "(A13) Amaethyddiaeth, Pysgodfeydd a Choedwigaeth - Storio Cnydau, Ysgubor, Granar, Oasthouse" + }, + { + "value": "(A14) Agriculture, Fisheries and Forestry – Silo", + "value_cy": "(A14) Amaethyddiaeth, Pysgodfeydd a Choedwigaeth - Silo" + }, + { + "value": "(A15) Agriculture, Fisheries and Forestry – Other Agricultural Storage", + "value_cy": "(A15) Amaethyddiaeth, Pysgodfeydd a Choedwigaeth - Storio Amaethyddol Eraill" + }, + { + "value": "(A16) Agriculture, Fisheries and Forestry – Glasshouse, Market Garden, Nursery (Inc Polythene Tunnels).", + "value_cy": "(A16) Amaethyddiaeth, Pysgodfeydd a Choedwigaeth - Tŷ Gwydr, Gardd y Farchnad, Meithrinfa (Inc Twneli Polythen)." + }, + { + "value": "(A17) Agriculture, Fisheries and Forestry – Dairy, Milk Cooler", + "value_cy": "(A17) Amaethyddiaeth, Pysgodfeydd a Choedwigaeth - Llaeth, Oerach Llaeth" + }, + { + "value": "(A20) Agriculture, Fisheries and Forestry – Keeping of Non-Farm Livestock (eg Pets, Those Kept For Show, Recreation, Conservation)", + "value_cy": "(A20) Amaethyddiaeth, Pysgodfeydd a Choedwigaeth - Cadw Da Byw heblaw Fferm (ee Anifeiliaid Anwes, Y Rhai Sy'n Cael Eu Dangos, Hamdden, Cadwraeth)" + }, + { + "value": "(A21) Agriculture, Fisheries and Forestry – Stabling/Keeping Of Non-Farm Horses", + "value_cy": "(A21) Amaethyddiaeth, Pysgodfeydd a Choedwigaeth - Stablio / Cadw Ceffylau heblaw Fferm" + }, + { + "value": "(A22) Agriculture, Fisheries and Forestry – Kennel, Cattery, Quarantine Centre", + "value_cy": "(A22) Amaethyddiaeth, Pysgodfeydd a Choedwigaeth - Kennel, Cattery, Canolfan Cwarantîn" + }, + { + "value": "(A23) Agriculture, Fisheries and Forestry – Zoo, Safari Park, Aquaria", + "value_cy": "(A23) Amaethyddiaeth, Pysgodfeydd a Choedwigaeth - Sw, Parc Safari, Aquaria" + }, + { + "value": "(A24) Agriculture, Fisheries and Forestry – Veterinary Surgery", + "value_cy": "(A24) Amaethyddiaeth, Pysgodfeydd a Choedwigaeth - Llawfeddygaeth Filfeddygol" + }, + { + "value": "(A30) Agriculture, Fisheries and Forestry – Fish Farming", + "value_cy": "(A30) Amaethyddiaeth, Pysgodfeydd a Choedwigaeth - Ffermio Pysgod" + }, + { + "value": "(A40) Agriculture, Fisheries and Forestry – Slaughterhouse, Abattoir", + "value_cy": "(A40) Amaethyddiaeth, Pysgodfeydd a Choedwigaeth - Lladd-dy, Lladd-dy" + }, + { + "value": "(A50) Agriculture, Fisheries and Forestry – Reclamation Of Land To Agriculture", + "value_cy": "(A50) Amaethyddiaeth, Pysgodfeydd a Choedwigaeth - Adfer Tir i Amaethyddiaeth" + }, + { + "value": "(A60) Agriculture, Fisheries and Forestry – Woodland, Forestry, Tree Preservation", + "value_cy": "(A60) Amaethyddiaeth, Pysgodfeydd a Choedwigaeth - Coetir, Coedwigaeth, Cadw Coed" + }, + { + "value": "(A70) Agriculture, Fisheries and Forestry – Allotment Garden", + "value_cy": "(A70) Amaethyddiaeth, Pysgodfeydd a Choedwigaeth - Gardd Rhandiroedd" + }, + { + "value": "(A80) Agriculture, Fisheries and Forestry – Nature Reserve/Sanctuary", + "value_cy": "(A80) Amaethyddiaeth, Pysgodfeydd a Choedwigaeth - Gwarchodfa Natur / Noddfa" + }, + { + "value": "(A82) Agriculture, Fisheries and Forestry – Site Of Special Scientific Interest", + "value_cy": "(A82) Amaethyddiaeth, Pysgodfeydd a Choedwigaeth - Safle o Ddiddordeb Gwyddonol Arbennig" + }, + { + "value": "(A83) Agriculture, Fisheries and Forestry – Apiary/Bee-Keeping, Aviary", + "value_cy": "(A83) Amaethyddiaeth, Pysgodfeydd a Choedwigaeth - Cadwraeth / Cadw Gwenyn, Adardy" + }, + { + "value": "(b) That the breach of control alleged in the enforcement notice has not occurred as a matter of fact.", + "value_cy": "(b) Nad yw'r torri rheolaeth a honnir yn yr hysbysiad gorfodi wedi digwydd fel mater o ffaith." + }, + { + "value": "(c) That there has not been a breach of planning control (for example because permission has already been granted or it is “permitted development”).", + "value_cy": "(c) Na thorrwyd rheolaeth cynllunio (er enghraifft oherwydd bod caniatâd eisoes wedi'i roi neu ei fod yn “ddatblygiad a ganiateir”)." + }, + { + "value": "(C00) Community, Education and Defence services – Miscellaneous Community, Education And Defence Uses", + "value_cy": "(C00) Gwasanaethau Cymunedol, Addysg ac Amddiffyn - Defnyddiau Cymunedol, Addysg ac Amddiffyn Amrywiol" + }, + { + "value": "(C10) Community, Education and Defence services – Health Care Facility", + "value_cy": "(C10) Gwasanaethau Cymunedol, Addysg ac Amddiffyn - Cyfleuster Gofal Iechyd" + }, + { + "value": "(C11) Community, Education and Defence services – Hospital, Diagnosis/Treatment Centre, Mental Institution", + "value_cy": "(C11) Gwasanaethau Cymunedol, Addysg ac Amddiffyn - Ysbyty, Canolfan Diagnosis / Triniaeth, Sefydliad Meddwl" + }, + { + "value": "(C12) Community, Education and Defence services – Surgery (Doctor, Dentist, Chiropodist)", + "value_cy": "(C12) Gwasanaethau Cymunedol, Addysg ac Amddiffyn - Llawfeddygaeth (Meddyg, Deintydd, Ceiropodydd)" + }, + { + "value": "(C13) Community, Education and Defence services – Opticians Premises", + "value_cy": "(C13) Gwasanaethau Cymunedol, Addysg ac Amddiffyn - Adeiladau Optegwyr" + }, + { + "value": "(C14) Community, Education and Defence services – Nursing Home", + "value_cy": "(C14) Gwasanaethau Cymunedol, Addysg ac Amddiffyn - Cartref Nyrsio" + }, + { + "value": "(C20) Community, Education and Defence services – Non-Medical Residential Institution", + "value_cy": "(C20) Gwasanaethau Cymunedol, Addysg ac Amddiffyn - Sefydliad Preswyl Anfeddygol" + }, + { + "value": "(C21) Community, Education and Defence services – Children\\'s Home", + "value_cy": "(C21) Gwasanaethau Cymunedol, Addysg ac Amddiffyn - Cartref Plant" + }, + { + "value": "(C22) Community, Education and Defence services – Old People’s Home", + "value_cy": "(C22) Gwasanaethau Cymunedol, Addysg ac Amddiffyn - Cartref yr Hen Bobl" + }, + { + "value": "(C23) Community, Education and Defence services – Home For People With Disabilities", + "value_cy": "(C23) Gwasanaethau Cymunedol, Addysg ac Amddiffyn - Cartref i Bobl ag Anableddau" + }, + { + "value": "(C24) Community, Education and Defence services – Prison, Place Of Detention", + "value_cy": "(C24) Gwasanaethau Cymunedol, Addysg ac Amddiffyn - Carchar, Man Cadw" + }, + { + "value": "(C30) Community, Education and Defence services – School, College, Research Institution", + "value_cy": "(C30) Gwasanaethau Cymunedol, Addysg ac Amddiffyn - Ysgol, Coleg, Sefydliad Ymchwil" + }, + { + "value": "(C31) Community, Education and Defence services – Playgroup, Creche, Childrens Nursery", + "value_cy": "(C31) Gwasanaethau Cymunedol, Addysg ac Amddiffyn - Cylch Chwarae, Creche, Meithrinfa Plant" + }, + { + "value": "(C40) Community, Education and Defence services – Place Of Worship", + "value_cy": "(C40) Gwasanaethau Cymunedol, Addysg ac Amddiffyn - Man Addoli" + }, + { + "value": "(C50) Community, Education and Defence services – Place Of Assembly, Hall, Community Centre, Scout Hut", + "value_cy": "(C50) Gwasanaethau Cymunedol, Addysg ac Amddiffyn - Man Cynulliad, Neuadd, Canolfan Gymunedol, Cwt Sgowtiaid" + }, + { + "value": "(C60) Community, Education and Defence services – Courts", + "value_cy": "(C60) Gwasanaethau Cymunedol, Addysg ac Amddiffyn - Llysoedd" + }, + { + "value": "(C70) Community, Education and Defence services – Military And Civil Defence And Protection", + "value_cy": "(C70) Gwasanaethau Cymunedol, Addysg ac Amddiffyn - Amddiffyn ac Amddiffyn Milwrol a Sifil" + }, + { + "value": "(C71) Community, Education and Defence services – Military Defence Establishment (RAF, RN, Army), Barrack, Fortification", + "value_cy": "(C71) Gwasanaethau Cymunedol, Addysg ac Amddiffyn - Sefydliad Amddiffyn Milwrol (RAF, RN, Byddin), Barrack, Fortification" + }, + { + "value": "(C72) Community, Education and Defence services – Civil Defence Facility, Fall-Out Shelter", + "value_cy": "(C72) Gwasanaethau Cymunedol, Addysg ac Amddiffyn - Cyfleuster Amddiffyn Sifil, Lloches Cwympo Allan" + }, + { + "value": "(C73) Community, Education and Defence services – Fire, Coastguard, Police, Ambulance Station", + "value_cy": "(C73) Gwasanaethau Cymunedol, Addysg ac Amddiffyn - Tân, Gwylwyr y Glannau, yr Heddlu, yr Orsaf Ambiwlans" + }, + { + "value": "(C74) Community, Education and Defence services – Sea And River Defence Works", + "value_cy": "(C74) Gwasanaethau Cymunedol, Addysg ac Amddiffyn - Gwaith Amddiffyn Môr ac Afon" + }, + { + "value": "(d) That, at the time the enforcement notice was issued, it was too late to take enforcement action against the matters stated in the notice.", + "value_cy": "(ch) Ei bod yn rhy hwyr, ar yr adeg y cyhoeddwyd yr hysbysiad gorfodi, i gymryd camau gorfodi yn erbyn y materion a nodwyd yn yr hysbysiad." + }, + { + "value": "(e) The notice was not properly served on everyone with an interest in the land.", + "value_cy": "(e) Ni chyflwynwyd yr hysbysiad yn iawn i bawb sydd â buddiant yn y tir." + }, + { + "value": "(f) The steps required to comply with the requirements of the notice are excessive, and lesser steps would overcome the objections.", + "value_cy": "(dd) Mae'r camau sy'n ofynnol i gydymffurfio â gofynion yr hysbysiad yn ormodol, a byddai camau llai yn goresgyn y gwrthwynebiadau." + }, + { + "value": "(F00) Offices, Studios – Miscellaneous Office Uses", + "value_cy": "(F00) Swyddfeydd, Stiwdios - Defnyddiau Amrywiol Swyddfa" + }, + { + "value": "(F10) Offices, Studios – Specified Local Service", + "value_cy": "(F10) Swyddfeydd, Stiwdios - Gwasanaeth Lleol Penodedig" + }, + { + "value": "(F11) Offices, Studios – Building Society Branch/Bank, Cash Dispenser", + "value_cy": "(F11) Swyddfeydd, Stiwdios - Cangen / Banc y Gymdeithas Adeiladu, Dosbarthwr Arian Parod" + }, + { + "value": "(F12) Offices, Studios – Central And Local Government Office", + "value_cy": "(F12) Swyddfeydd, Stiwdios - Swyddfa Llywodraeth Ganolog A Lleol" + }, + { + "value": "(F13) Offices, Studios – Employment Agency", + "value_cy": "(F13) Swyddfeydd, Stiwdios - Asiantaeth Cyflogaeth" + }, + { + "value": "(F14) Offices, Studios – Estate Agent", + "value_cy": "(F14) Swyddfeydd, Stiwdios - Gwerthwr Tai" + }, + { + "value": "(F15) Offices, Studios – Insurance Office", + "value_cy": "(F15) Swyddfeydd, Stiwdios - Swyddfa Yswiriant" + }, + { + "value": "(F16) Offices, Studios – Lawyer/Solicitors Office", + "value_cy": "(F16) Swyddfeydd, Stiwdios - Swyddfa Cyfreithiwr / Cyfreithiwr" + }, + { + "value": "(F17) Offices, Studios – Taxi Control Office", + "value_cy": "(F17) Swyddfeydd, Stiwdios - Swyddfa Rheoli Tacsi" + }, + { + "value": "(F20) Offices, Studios – Studio", + "value_cy": "(F20) Swyddfeydd, Stiwdios - Stiwdio" + }, + { + "value": "(F21) Offices, Studios – Artists Studio (inc Tattoo Artist)", + "value_cy": "(F21) Swyddfeydd, Stiwdios - Stiwdio Artistiaid (gan gynnwys Artist Tatŵ)" + }, + { + "value": "(F22) Offices, Studios – Photographic Studio", + "value_cy": "(F22) Swyddfeydd, Stiwdios - Stiwdio Ffotograffig" + }, + { + "value": "(F23) Offices, Studios – Television Studio", + "value_cy": "(F23) Swyddfeydd, Stiwdios - Stiwdio Deledu" + }, + { + "value": "(F24) Offices, Studios – Sound Recording Studio", + "value_cy": "(F24) Swyddfeydd, Stiwdios - Stiwdio Recordio Sain" + }, + { + "value": "(F30) Offices, Studios – Business Centre/Park", + "value_cy": "(F30) Swyddfeydd, Stiwdios - Canolfan Fusnes / Parc" + }, + { + "value": "(F31) Offices, Studios – Conference Centre", + "value_cy": "(F31) Swyddfeydd, Stiwdios - Canolfan Gynadledda" + }, + { + "value": "(g) The time given to comply with the notice is too short.", + "value_cy": "(g) Mae'r amser a roddir i gydymffurfio â'r hysbysiad yn rhy fyr." + }, + { + "value": "(H00) Housing and Residential development – Miscellaneous Residential Uses", + "value_cy": "(H00) Tai a Datblygiad Preswyl - Defnyddiau Preswyl Amrywiol" + }, + { + "value": "(H10) Housing and Residential development – Permanent Dwellings", + "value_cy": "(H10) Datblygu Tai a Phreswyl - Anheddau Parhaol" + }, + { + "value": "(H11) Housing and Residential development – Small Homes (1 Bed, Small 2 Bed, Studio Homes etc)", + "value_cy": "(H11) Tai a Datblygiad Preswyl - Cartrefi Bach (1 Gwely, Gwely Bach 2, Cartrefi Stiwdio ac ati)" + }, + { + "value": "(H12) Housing and Residential development – Agricultural Workers Dwelling", + "value_cy": "(H12) Tai a Datblygu Preswyl - Annedd Gweithwyr Amaethyddol" + }, + { + "value": "(H13) Housing and Residential development – Flat, Maisonette, Multi-Occupation", + "value_cy": "(H13) Datblygu Tai a Phreswyl - Fflat, Maisonette, Aml-alwedigaeth" + }, + { + "value": "(H14) Housing and Residential development – Permanent Residential Caravan/Mobile Home", + "value_cy": "(H14) Datblygu Tai a Phreswyl - Cartref Carafanau / Symudol Preswyl Parhaol" + }, + { + "value": "(H15) Housing and Residential development – Houseboat", + "value_cy": "(H15) Datblygu Tai a Phreswyl - Cychod Tŷ" + }, + { + "value": "(H16) Housing and Residential development – Conversion of Agricultural Buildings Into Dwellings", + "value_cy": "(H16) Tai a Datblygiad Preswyl - Trosi Adeiladau Amaethyddol yn Anheddau" + }, + { + "value": "(H17) Housing and Residential development – Dependant Relative Annex/Flat", + "value_cy": "(H17) Tai a Datblygiad Preswyl - Atodiad / Fflat Perthynas Dibynnol" + }, + { + "value": "(H20) Housing and Residential development – Householder Development (Alteration/Conversion Within Curtilage ie Wall, Garage, Swimming Pool)", + "value_cy": "(H20) Datblygu Tai a Phreswyl - Datblygu Deiliaid Tai (Newid / Trosi o fewn Cwrti hy Wal, Garej, Pwll Nofio)" + }, + { + "value": "(H21) Housing and Residential development – Residential Extensions (Number of Rooms Or Size Increased)", + "value_cy": "(H21) Tai a Datblygiad Preswyl - Estyniadau Preswyl (Nifer yr Ystafelloedd neu'r Maint a Gynyddwyd)" + }, + { + "value": "(H30) Housing and Residential development – Communal Accommodation", + "value_cy": "(H30) Tai a Datblygiad Preswyl - Llety Cymunedol" + }, + { + "value": "(H31) Housing and Residential development – Hotel, Boarding House, Guesthouse", + "value_cy": "(H31) Datblygu Tai a Phreswyl - Gwesty, Tŷ Llety, Gwesty" + }, + { + "value": "(H32) Housing and Residential development – Hostel, Halls of Residence, Bail Hostel", + "value_cy": "(H32) Tai a Datblygu Preswyl - Hostel, Neuaddau Preswyl, Hostel Mechnïaeth" + }, + { + "value": "(H33) Housing and Residential development – Warden Assisted Sheltered Accommodation", + "value_cy": "(H33) Tai a Datblygiad Preswyl - Llety Lloches â Chymorth Warden" + }, + { + "value": "(H40) Housing and Residential development – Temporary Dwellings", + "value_cy": "(H40) Tai a Datblygiad Preswyl - Anheddau Dros Dro" + }, + { + "value": "(H41) Housing and Residential development – Gypsy/Travellers Encampment", + "value_cy": "(H41) Tai a Datblygiad Preswyl - Gwersyll Sipsiwn / Teithwyr" + }, + { + "value": "(H42) Housing and Residential development – Holiday Chalet/Flat", + "value_cy": "(H42) Datblygu Tai a Phreswyl - Chalet Gwyliau / Fflat" + }, + { + "value": "(H43) Housing and Residential development – Travelling Showman\\'s Winter Quarters", + "value_cy": "(H43) Datblygu Tai a Phreswyl - Chwarteri Gaeaf Travelman Showman" + }, + { + "value": "(H44) Housing and Residential development – Temporary Residential Caravans And Mobile Homes", + "value_cy": "(H44) Tai a Datblygiad Preswyl - Carafanau Preswyl Dros Dro a Chartrefi Symudol" + }, + { + "value": "(L00) Leisure and Recreation – Miscellaneous Leisure Uses", + "value_cy": "(L00) Hamdden a Hamdden - Defnyddiau Hamdden Amrywiol" + }, + { + "value": "(L10) Leisure and Recreation – Indoor Sports Facility (Sports/Leisure Centre)", + "value_cy": "(L10) Hamdden a Hamdden - Cyfleuster Chwaraeon Dan Do (Canolfan Chwaraeon / Hamdden)" + }, + { + "value": "(L11) Leisure and Recreation – Squash Court, Badminton Court, Indoor Tennis Court", + "value_cy": "(L11) Hamdden a Hamdden - Llys Sboncen, Llys Badminton, Llys Tenis Dan Do." + }, + { + "value": "(L12) Leisure and Recreation – Sports Hall, Gymnasium", + "value_cy": "(L12) Hamdden a Hamdden - Neuadd Chwaraeon, Gymnasiwm" + }, + { + "value": "(L14 ) Leisure and Recreation – Covered Swimming Pool", + "value_cy": "(L14) Hamdden a Hamdden - Pwll Nofio dan Orchudd" + }, + { + "value": "(L15) Leisure and Recreation – Billiard And Snooker Centre", + "value_cy": "(L15) Hamdden a Hamdden - Canolfan Billiard A Snwcer" + }, + { + "value": "(L20) Leisure and Recreation – Museum, Library, Gallery", + "value_cy": "(L20) Hamdden a Hamdden - Amgueddfa, Llyfrgell, Oriel" + }, + { + "value": "(L30) Leisure and Recreation – Amusements And Entertainment", + "value_cy": "(L30) Hamdden a Hamdden - Difyrion ac Adloniant" + }, + { + "value": "(L31) Leisure and Recreation – Amusement Arcade/Centre", + "value_cy": "(L31) Hamdden a Hamdden - Arcêd / Canolfan Difyrion" + }, + { + "value": "(L32) Leisure and Recreation – Betting Office", + "value_cy": "(L32) Hamdden a Hamdden - Swyddfa Betio" + }, + { + "value": "(L33) Leisure and Recreation – Bingo Hall", + "value_cy": "(L33) Hamdden a Hamdden - Neuadd Bingo" + }, + { + "value": "(L34) Leisure and Recreation – Casino, Dance Hall, Nightclub, Sports/Social Club", + "value_cy": "(L34) Hamdden a Hamdden - Casino, Neuadd Ddawns, Clwb Nos, Clwb Chwaraeon / Cymdeithasol" + }, + { + "value": "(L35) Leisure and Recreation – Cinema, Theatre, Concert/Exhibition Hall, Visitors Centre", + "value_cy": "(L35) Hamdden a Hamdden - Sinema, Theatr, Cyngerdd / Neuadd Arddangos, Canolfan Ymwelwyr" + }, + { + "value": "(L36) Leisure and Recreation – Funfair", + "value_cy": "(L36) Hamdden a Hamdden - Ffair Hwyl" + }, + { + "value": "(L37) Leisure and Recreation – Sex Industry (exc Sex Shops)", + "value_cy": "(L37) Hamdden a Hamdden - Diwydiant Rhyw (ac eithrio Siopau Rhyw)" + }, + { + "value": "(L38) Leisure and Recreation – Dance School, School Of Performing Arts", + "value_cy": "(L38) Hamdden a Hamdden - Ysgol Ddawns, Ysgol y Celfyddydau Perfformio" + }, + { + "value": "(L40) Leisure and Recreation – Outdoor Sports Facilities", + "value_cy": "(L40) Hamdden a Hamdden - Cyfleusterau Chwaraeon Awyr Agored" + }, + { + "value": "(L41) Leisure and Recreation – Buildings Associated With Outdoor Recreation", + "value_cy": "(L41) Hamdden a Hamdden - Adeiladau sy'n Gysylltiedig â Hamdden Awyr Agored" + }, + { + "value": "(L42) Leisure and Recreation – Golf Course, Driving Range", + "value_cy": "(L42) Hamdden a Hamdden - Cwrs Golff, Maes Gyrru" + }, + { + "value": "(L43) Leisure and Recreation – Motor Sport (inc Powered Models)", + "value_cy": "(L43) Hamdden a Hamdden - Chwaraeon Modur (gan gynnwys Modelau Pwerus)" + }, + { + "value": "(L44) Leisure and Recreation – Riding School", + "value_cy": "(L44) Hamdden a Hamdden - Ysgol Farchogaeth" + }, + { + "value": "(L45) Leisure and Recreation – Rifle Range, Clay Pigeon Shoot", + "value_cy": "(L45) Hamdden a Hamdden - Ystod Reiffl, Saethu Colomennod Clai" + }, + { + "value": "(L46) Leisure and Recreation – Sports ground, Playing Field, Race Track", + "value_cy": "(L46) Hamdden a Hamdden - Maes chwaraeon, Cae Chwarae, Trac Rasio" + }, + { + "value": "(L47) Leisure and Recreation – Sports Stadium, Arena", + "value_cy": "(L47) Hamdden a Hamdden - Stadiwm Chwaraeon, Arena" + }, + { + "value": "(L48) Leisure and Recreation – Open Air Swimming Pool", + "value_cy": "(L48) Hamdden a Hamdden - Pwll Nofio Awyr Agored" + }, + { + "value": "(L49) Leisure and Recreation – Outdoor Tennis Court", + "value_cy": "(L49) Hamdden a Hamdden - Llys Tenis Awyr Agored" + }, + { + "value": "(L50) Leisure and Recreation – Other Recreational Land Uses", + "value_cy": "(L50) Hamdden a Hamdden - Defnyddiau Tir Hamdden Eraill" + }, + { + "value": "(L51) Leisure and Recreation – Botanical Garden, Park, Picnic Site", + "value_cy": "(L51) Hamdden a Hamdden - Gardd Fotaneg, Parc, Safle Picnic" + }, + { + "value": "(L52) Leisure and Recreation – Leisure Plot (Land Used For Leisure But Not A Domestic Garden Or Allotment)", + "value_cy": "(L52) Hamdden a Hamdden - Llain Hamdden (Tir a Ddefnyddir ar gyfer Hamdden ond Nid Gardd Ddomestig na Rhandir)" + }, + { + "value": "(L53) Leisure and Recreation – National Heritage Site (inc Ancient Monument, Stately Home, Memorial)", + "value_cy": "(L53) Hamdden a Hamdden - Safle Treftadaeth Genedlaethol (gan gynnwys Heneb, Cartref y Wladwriaeth, Cofeb)" + }, + { + "value": "(L54) Leisure and Recreation – Children\\'s Play Area", + "value_cy": "(L54) Hamdden a Hamdden - Man Chwarae i Blant" + }, + { + "value": "(L60) Leisure and Recreation – Water Sport", + "value_cy": "(L60) Hamdden a Hamdden - Chwaraeon Dŵr" + }, + { + "value": "(L61) Leisure and Recreation – Marina, Boat mooring, Boathouse", + "value_cy": "(L61) Hamdden a Hamdden - Marina, Angori cychod, Boathouse" + }, + { + "value": "(L62) Leisure and Recreation – Angling And Fishing Activities", + "value_cy": "(L62) Hamdden a Hamdden - Gweithgareddau Pysgota a Physgota" + }, + { + "value": "(L70) Leisure and Recreation – Caravans And Camping", + "value_cy": "(L70) Hamdden a Hamdden - Carafanau a Gwersylla" + }, + { + "value": "(L71) Leisure and Recreation – Touring Caravan Site", + "value_cy": "(L71) Hamdden a Hamdden - Safle Carafanau Teithiol" + }, + { + "value": "(L72) Leisure and Recreation – Seasonal Holiday Caravan Site", + "value_cy": "(L72) Hamdden a Hamdden - Safle Carafannau Gwyliau Tymhorol" + }, + { + "value": "(L73) Leisure and Recreation – Camp Site (Tents)", + "value_cy": "(L73) Hamdden a Hamdden - Safle Gwersyll (Pebyll)" + }, + { + "value": "(M00) Mineral extraction/exploration (Inc Geological exploration) - Miscellaneous Mineral Development", + "value_cy": "(M00) Echdynnu / archwilio mwynau (Inc Archwilio daearegol) - Datblygiad Mwynau Amrywiol" + }, + { + "value": "(M10) Mineral extraction/exploration (Inc Geological exploration) - Surface Mineral Extraction", + "value_cy": "(M10) Echdynnu / archwilio mwynau (Inc Archwilio daearegol) - Echdynnu Mwynau Arwyneb" + }, + { + "value": "(M11) Mineral extraction/exploration (Inc Geological exploration) - Sand And Gravel Extraction", + "value_cy": "(M11) Echdynnu / archwilio mwynau (Inc Archwilio daearegol) - Echdynnu Tywod a Graean" + }, + { + "value": "(M12) Mineral extraction/exploration (Inc Geological exploration) - Open Cast Coal, Peat", + "value_cy": "(M12) Echdynnu / archwilio mwynau (Inc Archwilio daearegol) - Glo Cast Agored, mawn" + }, + { + "value": "(M13) Mineral extraction/exploration (Inc Geological exploration) - Clays (Brick, Brick Earth, China, Ball)", + "value_cy": "(M13) Echdynnu / archwilio mwynau (Inc Archwilio daearegol) - Clai (Brick, Brick Earth, China, Ball)" + }, + { + "value": "(M14) Mineral extraction/exploration (Inc Geological exploration) - Fullers Earth", + "value_cy": "(M14) Echdynnu / archwilio mwynau (Inc Archwilio daearegol) - Fullers Earth" + }, + { + "value": "(M15) Mineral extraction/exploration (Inc Geological exploration) - Sedimentary Rock (Limestone etc)", + "value_cy": "(M15) Echdynnu / archwilio mwynau (Inc Archwilio daearegol) - Craig Waddodol (Calchfaen ac ati)" + }, + { + "value": "(M16) Mineral extraction/exploration (Inc Geological exploration) - Igneous/Metamorphic Rock", + "value_cy": "(M16) Echdynnu / archwilio mwynau (Inc Archwilio daearegol) - Creig igneaidd / Metamorffig" + }, + { + "value": "(M17) Mineral extraction/exploration (Inc Geological exploration) - Celestite", + "value_cy": "(M17) Echdynnu / archwilio mwynau (Inc Archwilio daearegol) - Celestite" + }, + { + "value": "(M18) Mineral extraction/exploration (Inc Geological exploration) - Metalliferous Minerals", + "value_cy": "(M18) Echdynnu / archwilio mwynau (Inc Archwilio daearegol) - Mwynau Metelaidd" + }, + { + "value": "(M19) Mineral extraction/exploration (Inc Geological exploration) - Other Veined Surface Mined Minerals (Fluorspar, Barytes)", + "value_cy": "(M19) Echdynnu / archwilio mwynau (Inc Archwilio daearegol) - Mwynau Cloddio Arwyneb Gwythiennau Eraill (Fluorspar, Barytes)" + }, + { + "value": "(M20) Mineral extraction/exploration (Inc Geological exploration) - Underground Mineral Extraction", + "value_cy": "(M20) Echdynnu / archwilio mwynau (Inc Archwilio daearegol) - Echdynnu Mwynau Tanddaearol" + }, + { + "value": "(M21) Mineral extraction/exploration (Inc Geological exploration) - Coal (Mined Underground)", + "value_cy": "(M21) Echdynnu / archwilio mwynau (Inc Archwilio daearegol) - Glo (Mined Underground)" + }, + { + "value": "(M22) Mineral extraction/exploration (Inc Geological exploration) - Potash", + "value_cy": "(M22) Echdynnu / archwilio mwynau (Inc Archwilio daearegol) - Potash" + }, + { + "value": "(M23) Mineral extraction/exploration (Inc Geological exploration) - Anhydrite", + "value_cy": "(M23) Echdynnu / archwilio mwynau (Inc Archwilio daearegol) - Anhydrite" + }, + { + "value": "(M24) Mineral extraction/exploration (Inc Geological exploration) - Gypsum", + "value_cy": "(M24) Echdynnu / archwilio mwynau (Inc Archwilio daearegol) - Gypswm" + }, + { + "value": "(M25) Mineral extraction/exploration (Inc Geological exploration) - Limestone", + "value_cy": "(M25) Echdynnu / archwilio mwynau (Inc Archwilio daearegol) - Calchfaen" + }, + { + "value": "(M26) Mineral extraction/exploration (Inc Geological exploration) - Metalliferous Minerals (Tungsten, Tin etc)", + "value_cy": "(M26) Echdynnu / archwilio mwynau (Inc Archwilio daearegol) - Mwynau Metelaidd (Twngsten, Tin ac ati)" + }, + { + "value": "(M27) Mineral extraction/exploration (Inc Geological exploration) - Other Veined Underground Mined Minerals (Fluorspar, Barytes)", + "value_cy": "(M27) Echdynnu / archwilio mwynau (Inc Archwilio daearegol) - Mwynau Mwyngloddiau Tanddaearol Eraill (Fluorspar, Barytes)" + }, + { + "value": "(M28) Mineral extraction/exploration (Inc Geological exploration) - Oil, Gas", + "value_cy": "(M28) Echdynnu / archwilio mwynau (Inc Archwilio daearegol) - Olew, Nwy" + }, + { + "value": "(M30) Mineral extraction/exploration (Inc Geological exploration) - Disposal Of Spoil From Mineral Working", + "value_cy": "(M30) Echdynnu / archwilio mwynau (Inc Archwilio daearegol) - Gwaredu Ysbail o Weithio Mwynau" + }, + { + "value": "(M40) Mineral extraction/exploration (Inc Geological exploration) - Mineral Handling And Processing Installation", + "value_cy": "(M40) Echdynnu / archwilio mwynau (Inc Archwilio daearegol) - Gosod Trin a Phrosesu Mwynau" + }, + { + "value": "(M50) Mineral extraction/exploration (Inc Geological exploration) - Winning And Working Of Minerals For Agriculture (GDO Class VI)", + "value_cy": "(M50) Echdynnu / archwilio mwynau (Inc Archwilio daearegol) - Ennill a Gweithio Mwynau Er Amaethyddiaeth (Dosbarth VI GDO)" + }, + { + "value": "(M60) Mineral extraction/exploration (Inc Geological exploration) - Filling And Restoration Of Mineral Working", + "value_cy": "(M60) Echdynnu / archwilio mwynau (Inc Archwilio daearegol) - Llenwi ac Adfer Gwaith Mwynau" + }, + { + "value": "(M61) Mineral extraction/exploration (Inc Geological exploration) - Landfill", + "value_cy": "(M61) Echdynnu / archwilio mwynau (Inc Archwilio daearegol) - Tirlenwi" + }, + { + "value": "(M70) Mineral extraction/exploration (Inc Geological exploration) - Geological Exploration", + "value_cy": "(M70) Echdynnu / archwilio mwynau (Inc Archwilio daearegol) - Archwilio Daearegol" + }, + { + "value": "(M71) Mineral extraction/exploration (Inc Geological exploration) - Exploration For Oil, Gas", + "value_cy": "(M71) Echdynnu / archwilio mwynau (Inc Archwilio daearegol) - Archwilio ar gyfer Olew, Nwy" + }, + { + "value": "(N00) Industry – Miscellaneous Industrial Uses", + "value_cy": "(N00) Diwydiant - Defnyddiau Diwydiannol Amrywiol" + }, + { + "value": "(N10) Industry – Light Industry (exc Science Labs)", + "value_cy": "(N10) Diwydiant - Diwydiant Ysgafn (ac eithrio Labs Gwyddoniaeth)" + }, + { + "value": "(N20) Industry – General Industry (exc Science Parks)", + "value_cy": "(N20) Diwydiant - Diwydiant Cyffredinol (ac eithrio Parciau Gwyddoniaeth)" + }, + { + "value": "(N21) Industry – Vehicle Repairs", + "value_cy": "(N21) Diwydiant - Atgyweirio Cerbydau" + }, + { + "value": "(N30) Industry – Science Park (Science, Technology, Research)", + "value_cy": "(N30) Diwydiant - Parc Gwyddoniaeth (Gwyddoniaeth, Technoleg, Ymchwil)" + }, + { + "value": "(N31) Industry – Laboratory", + "value_cy": "(N31) Diwydiant - Labordy" + }, + { + "value": "(N40) Industry – Special Industry (As Defined In Use Classes Order)", + "value_cy": "(N40) Diwydiant - Diwydiant Arbennig (Fel Gorchymyn Dosbarthiadau Defnydd Diffiniedig)" + }, + { + "value": "(N41) Industry – Alkali Processing", + "value_cy": "(N41) Diwydiant - Prosesu Alcali" + }, + { + "value": "(N42) Industry – Metal Processing (Smelting, Galvanising etc)", + "value_cy": "(N42) Diwydiant - Prosesu Metel (Toddi, Galfaneiddio ac ati)" + }, + { + "value": "(N43) Industry – Brick/Cement Production", + "value_cy": "(N43) Diwydiant - Cynhyrchu Brics / Sment" + }, + { + "value": "(N44) Industry – Chemical Processing (Cellulose, Rubber etc)", + "value_cy": "(N44) Diwydiant - Prosesu Cemegol (Cellwlos, Rwber ac ati)" + }, + { + "value": "(N45) Industry – Animal Based Processing (Glue, Soap, Tripe etc)", + "value_cy": "(N45) Diwydiant - Prosesu Seiliedig ar Anifeiliaid (Glud, Sebon, Tripe ac ati)" + }, + { + "value": "(N50) Industry – Disposal Of Industrial Waste", + "value_cy": "(N50) Diwydiant - Gwaredu Gwastraff Diwydiannol" + }, + { + "value": "(N51) Industry – Scrapyard", + "value_cy": "(N51) Diwydiant - Scrapyard" + }, + { + "value": "(N60) Industry – Industrial Archaeology", + "value_cy": "(N60) Diwydiant - Archeoleg Ddiwydiannol" + }, + { + "value": "(N61) Industry – Windmill, Watermill", + "value_cy": "(N61) Diwydiant - melin wynt, melin ddŵr" + }, + { + "value": "(S00) Shop, Retail and Associated uses – Miscellaneous Shops And Associated Uses", + "value_cy": "(S00) Siopau, Manwerthu a Defnyddiau Cysylltiedig - Siopau Amrywiol a Defnyddiau Cysylltiedig" + }, + { + "value": "(S01) Shop, Retail and Associated uses – Retail Store/Warehouse (Where Neither Floor Space Nor Site Area Is Provided)", + "value_cy": "(S01) Siopau, Manwerthu a Defnyddiau Cysylltiedig - Siop Adwerthu / Warws (Lle na Darperir Gofod Llawr nac Ardal Safle)" + }, + { + "value": "(S10) Shop, Retail and Associated uses – Retail Store/Warehouse (Under 5,000 sq m Floor Space Or Less Than 1 Hectare Site Area)", + "value_cy": "(S10) Siopau, Manwerthu a Defnyddiau Cysylltiedig - Siop Adwerthu / Warws (Lle Llawr O dan 5,000 metr sgwâr neu lai nag arwynebedd safle 1 hectar)" + }, + { + "value": "(S11) Shop, Retail and Associated uses – Pet Shop, Cats Meat Shop, Tripe Shop", + "value_cy": "(S11) Siop, Manwerthu a Defnyddiau Cysylltiedig - Siop Anifeiliaid Anwes, Siop Cig Cathod, Siop Tripe" + }, + { + "value": "(S12) Shop, Retail and Associated uses – Hot Food, Takeaway Food, Fish And Chip Shop", + "value_cy": "(S12) Siop, Manwerthu a Defnyddiau Cysylltiedig - Bwyd Poeth, Bwyd Cludfwyd, Siop Pysgod a Sglodion" + }, + { + "value": "(S13) Shop, Retail and Associated uses – Sex Shop", + "value_cy": "(S13) Siop, Manwerthu a Defnyddiau Cysylltiedig - Siop Rhyw" + }, + { + "value": "(S14) Shop, Retail and Associated uses – Sale/Rental Of Pre-Recorded Video Tapes", + "value_cy": "(S14) Defnyddiau Siop, Manwerthu a Chysylltiedig - Gwerthu / Rhentu Tapiau Fideo a Recordiwyd ymlaen llaw" + }, + { + "value": "(S15) Shop, Retail and Associated uses – Sale Of Motor Vehicles", + "value_cy": "(S15) Siopau, Manwerthu a Defnyddiau Cysylltiedig - Gwerthu Cerbydau Modur" + }, + { + "value": "(S16) Shop, Retail and Associated uses –DIY Shop", + "value_cy": "(S16) Siop, Manwerthu a Defnyddiau Cysylltiedig - Siop INDIA" + }, + { + "value": "(S19) Shop, Retail and Associated uses – Superstore / Hypermarket", + "value_cy": "(S19) Siopau, Manwerthu a Defnyddiau Cysylltiedig - Uwchfarchnad / Hypermarket" + }, + { + "value": "(S22) Shop, Retail and Associated uses – Retail Store/Warehouse (Between 5 & 10,000 sq m Floor Space Or Up To 1.5 Hectares Or Less Site Area)", + "value_cy": "(S22) Siopau, Manwerthu a Defnyddiau Cysylltiedig - Siop Adwerthu / Warws (Rhwng 5 a 10,000 metr sgwâr o Lawr neu Hyd at 1.5 Hectar neu Llai o Ardal Safle)" + }, + { + "value": "(S23) Shop, Retail and Associated uses - Retail Store/Warehouse (Between 10 & 20,000 sq m Floor Space Or 1.5 & 3 Hectares Site Area)", + "value_cy": "(S23) Siop, Manwerthu a Defnyddiau Cysylltiedig - Siop Adwerthu / Warws (Rhwng Gofod Llawr 10 ac 20,000 metr sgwâr Neu Ardal Safle 1.5 a 3 Hectar)" + }, + { + "value": "(S24) Shop, Retail and Associated uses – Retail Store/Warehouse (Greater than 20,000 sq m Floor Space Or Greater Than 4 Hectares Site Area)", + "value_cy": "(S24) Siop, Manwerthu a Defnyddiau Cysylltiedig - Siop Adwerthu / Warws (Mwy na Gofod Llawr 20,000 metr sgwâr neu'n fwy na 4 hectar arwynebedd safle)" + }, + { + "value": "(S25) Shop, Retail and Associated uses – Warehouse Club", + "value_cy": "(S25) Siop, Manwerthu a Defnyddiau Cysylltiedig - Clwb Warws" + }, + { + "value": "(S28) Shop, Retail and Associated uses – Shopping Centre", + "value_cy": "(S28) Siopau, Manwerthu a Defnyddiau Cysylltiedig - Canolfan Siopa" + }, + { + "value": "(S30) Shop, Retail and Associated uses – Other Retail Use", + "value_cy": "(S30) Siopau, Manwerthu a Defnyddiau Cysylltiedig - Defnydd Manwerthu Eraill" + }, + { + "value": "(S31) Shop, Retail and Associated uses – Farm Shop", + "value_cy": "(S31) Siop, Manwerthu a Defnyddiau Cysylltiedig - Siop Fferm" + }, + { + "value": "(S32) Shop, Retail and Associated uses – Garden Centre", + "value_cy": "(S32) Siopau, Manwerthu a Defnyddiau Cysylltiedig - Canolfan Arddio" + }, + { + "value": "(S33) Shop, Retail and Associated uses – Open Air Market (inc Car Boot Sales)", + "value_cy": "(S33) Defnyddiau Siop, Manwerthu a Chysylltiedig - Marchnad Awyr Agored (gan gynnwys Gwerthu Cist Car)" + }, + { + "value": "(S34) Shop, Retail and Associated uses – Covered Market", + "value_cy": "(S34) Siopau, Manwerthu a Defnyddiau Cysylltiedig - Marchnad wedi'i Gorchuddio" + }, + { + "value": "(S40) Shop, Retail and Associated uses – Catering General", + "value_cy": "(A40) Siopau, Manwerthu a Defnyddiau Cysylltiedig - Arlwyo Cyffredinol" + }, + { + "value": "(S41) Shop, Retail and Associated uses – Restaurant, Canteen, Café", + "value_cy": "(S41) Siop, Manwerthu a Defnyddiau Cysylltiedig - Bwyty, Ffreutur, Caffi" + }, + { + "value": "(S42) Shop, Retail and Associated uses – Public House, Wine Bar", + "value_cy": "(S42) Siop, Manwerthu a Defnyddiau Cysylltiedig - Tafarn, Bar Gwin" + }, + { + "value": "(S43) Shop, Retail and Associated uses – Snack Bar, Ice Cream Outlet", + "value_cy": "(S43) Siop, Manwerthu a Defnyddiau Cysylltiedig - Bar Byrbrydau, Allfa Hufen Iâ" + }, + { + "value": "(S44) Shop, Retail and Associated uses – Hot Dog Stall, Mobile Café", + "value_cy": "(S44) Siop, Manwerthu a Defnyddiau Cysylltiedig - Stondin Cŵn Poeth, Caffi Symudol" + }, + { + "value": "(S50) Shop, Retail and Associated uses – Other Services", + "value_cy": "(S50) Siopau, Manwerthu a Defnyddiau Cysylltiedig - Gwasanaethau Eraill" + }, + { + "value": "(S51) Shop, Retail and Associated uses – Hairdresser, Beauty Salon, Massage Parlour/Sauna", + "value_cy": "(S51) Siop, Manwerthu a Defnyddiau Cysylltiedig - Trin Gwallt, Salon Harddwch, Parlwr Tylino / Sawna" + }, + { + "value": "(S52) Shop, Retail and Associated uses – Launderette", + "value_cy": "(S52) Siopau, Manwerthu a Defnyddiau Cysylltiedig - Launderette" + }, + { + "value": "(S53) Shop, Retail and Associated uses – Post Office", + "value_cy": "(S53) Siopau, Manwerthu a Defnyddiau Cysylltiedig - Swyddfa'r Post" + }, + { + "value": "(S54) Shop, Retail and Associated uses – Travel Agent, Ticket Agency, Hotel Agency", + "value_cy": "(S54) Siopau, Manwerthu a Defnyddiau Cysylltiedig - Asiant Teithio, Asiantaeth Tocynnau, Asiantaeth Gwestai" + }, + { + "value": "(S55) Shop, Retail and Associated uses –Undertaker, Funeral Director", + "value_cy": "(S55) Siopau, Manwerthu a Defnyddiau Cysylltiedig - Gwneuthurwr, Cyfarwyddwr Angladdau" + }, + { + "value": "(S60) Shop, Retail and Associated uses – Petrol Filling Station", + "value_cy": "(S60) Siop, Manwerthu a Defnyddiau Cysylltiedig - Gorsaf Llenwi Petrol" + }, + { + "value": "(S61) Shop, Retail and Associated uses – Car Wash, Car Valeting Service", + "value_cy": "(S61) Siopau, Manwerthu a Defnyddiau Cysylltiedig - Golchi Ceir, Gwasanaeth Gwerthoedd Ceir" + }, + { + "value": "(S62) Shop, Retail and Associated uses – Vehicle Hire", + "value_cy": "(S62) Siopau, Manwerthu a Defnyddiau Cysylltiedig - Llogi Cerbydau" + }, + { + "value": "(S63) Shop, Retail and Associated uses – Motorway/Major Road Service Area", + "value_cy": "(S63) Siopau, Manwerthu a Defnyddiau Cysylltiedig - Ardal Gwasanaeth Traffordd / Ffordd Fawr" + }, + { + "value": "(S70) Shop, Retail and Associated uses – Shop Front (inc Blinds, Canopies, Luminous Signs, Security Shutters)", + "value_cy": "(S70) Siopau, Manwerthu a Defnyddiau Cysylltiedig - Blaen Siop (gan gynnwys Blinds, Canopïau, Arwyddion Goleuol, Caeadau Diogelwch)" + }, + { + "value": "(T00) Transport, Utilities and Miscellaneous uses – Transport Utilities And Miscellaneous Uses", + "value_cy": "(T00) Trafnidiaeth, Cyfleustodau a Defnyddiau Amrywiol - Cyfleustodau Trafnidiaeth a Defnyddiau Amrywiol" + }, + { + "value": "(T10) Transport, Utilities and Miscellaneous uses – Public Transport Facility", + "value_cy": "(T10) Trafnidiaeth, Cyfleustodau a Defnyddiau Amrywiol - Cyfleuster Trafnidiaeth Gyhoeddus" + }, + { + "value": "(T11) Transport, Utilities and Miscellaneous uses – Airport, Heliport, Hoverport, Air Terminal", + "value_cy": "(T11) Trafnidiaeth, Cyfleustodau a Defnyddiau Amrywiol - Maes Awyr, Heliport, Hoverport, Terfynell Awyr" + }, + { + "value": "(T12) Transport, Utilities and Miscellaneous uses – Bus/Coach Stations/Depot", + "value_cy": "(T12) Trafnidiaeth, Cyfleustodau a Defnyddiau Amrywiol - Gorsafoedd / Depo Bysiau / Coetsys" + }, + { + "value": "(T13) Transport, Utilities and Miscellaneous uses – Railway Station/Installation", + "value_cy": "(T13) Trafnidiaeth, Cyfleustodau a Defnyddiau Amrywiol - Gorsaf Reilffordd / Gosod" + }, + { + "value": "(T14) Transport, Utilities and Miscellaneous uses – Dock/Quay", + "value_cy": "(T14) Trafnidiaeth, Cyfleustodau a Defnyddiau Amrywiol - Doc / Cei" + }, + { + "value": "(T15) Transport, Utilities and Miscellaneous uses – Canal", + "value_cy": "(T15) Trafnidiaeth, Cyfleustodau a Defnyddiau Amrywiol - Camlas" + }, + { + "value": "(T16) Transport, Utilities and Miscellaneous uses – Road", + "value_cy": "(T16) Trafnidiaeth, Cyfleustodau a Defnyddiau Amrywiol - Ffordd" + }, + { + "value": "(T17) Transport, Utilities and Miscellaneous uses – Footpath, Bridleway, Byway Open To All Traffic", + "value_cy": "(T17) Trafnidiaeth, Cyfleustodau a Defnyddiau Amrywiol - Llwybr Troed, Ffordd Ceffylau, Cilffordd sy'n Agored i Bob Traffig" + }, + { + "value": "(T18) Transport, Utilities and Miscellaneous uses – Cycleway", + "value_cy": "(T18) Trafnidiaeth, Cyfleustodau a Defnyddiau Amrywiol - Beicioffordd" + }, + { + "value": "(T20) Transport, Utilities and Miscellaneous uses – Parking (Land)", + "value_cy": "(T20) Trafnidiaeth, Cyfleustodau a Defnyddiau Amrywiol - Parcio (Tir)" + }, + { + "value": "(T21) Transport, Utilities and Miscellaneous uses – Car Park", + "value_cy": "(T21) Trafnidiaeth, Cyfleustodau a Defnyddiau Amrywiol - Maes Parcio" + }, + { + "value": "(T22) Transport, Utilities and Miscellaneous uses – Lorry Park", + "value_cy": "(T22) Trafnidiaeth, Cyfleustodau a Defnyddiau Amrywiol - Parc Lorïau" + }, + { + "value": "(T23) Transport, Utilities and Miscellaneous uses – Cycle Park", + "value_cy": "(T23) Trafnidiaeth, Cyfleustodau a Defnyddiau Amrywiol - Parc Beicio" + }, + { + "value": "(T24) Transport, Utilities and Miscellaneous uses – Lock-Up Garage", + "value_cy": "(T24) Trafnidiaeth, Cyfleustodau a Defnyddiau Amrywiol - Garej Cloi" + }, + { + "value": "(T30) Transport, Utilities and Miscellaneous uses – Utilities", + "value_cy": "(T30) Trafnidiaeth, Cyfleustodau a Defnyddiau Amrywiol - Cyfleustodau" + }, + { + "value": "(T31) Transport, Utilities and Miscellaneous uses – Gas Production/Supply, Gas Pipeline", + "value_cy": "(T31) Trafnidiaeth, Cyfleustodau a Defnyddiau Amrywiol - Cynhyrchu / Cyflenwi Nwy, Piblinell Nwy" + }, + { + "value": "(T32) Transport, Utilities and Miscellaneous uses – Electricity Production And Supply", + "value_cy": "(T32) Trafnidiaeth, Cyfleustodau a Defnyddiau Amrywiol - Cynhyrchu a Chyflenwi Trydan" + }, + { + "value": "(T33) Transport, Utilities and Miscellaneous uses – Water Catchment/Supply (inc Plant, Bore Hole)", + "value_cy": "(T33) Trafnidiaeth, Cyfleustodau a Defnyddiau Amrywiol - Dalgylch / Cyflenwad Dŵr (gan gynnwys Planhigyn, Twll Bore)" + }, + { + "value": "(T34) Transport, Utilities and Miscellaneous uses – Oil Installation/Pipeline", + "value_cy": "(T34) Trafnidiaeth, Cyfleustodau a Defnyddiau Amrywiol - Gosod Olew / Piblinell" + }, + { + "value": "(T35) Transport, Utilities and Miscellaneous uses – Sewage Treatment And Disposal, Sea Fall-Out", + "value_cy": "(T35) Trafnidiaeth, Cyfleustodau a Defnyddiau Amrywiol - Trin Carthffosiaeth a Gwaredu, Cwympo'r Môr" + }, + { + "value": "(T36) Transport, Utilities and Miscellaneous uses – Domestic Refuse Disposal, Waste Disposal", + "value_cy": "(T36) Trafnidiaeth, Cyfleustodau a Defnyddiau Amrywiol - Gwaredu Sbwriel Domestig, Gwaredu Gwastraff" + }, + { + "value": "(T37) Transport, Utilities and Miscellaneous uses – Cemetery And Crematorium, Mortuary, Pet Cemetery", + "value_cy": "(T37) Trafnidiaeth, Cyfleustodau a Defnyddiau Amrywiol - Mynwent ac Amlosgfa, Marwdy, Mynwent Anifeiliaid Anwes" + }, + { + "value": "(T38) Transport, Utilities and Miscellaneous uses – Public Convenience, Toilet Facility", + "value_cy": "(T38) Trafnidiaeth, Cyfleustodau a Defnyddiau Amrywiol - Cyfleustra Cyhoeddus, Cyfleuster Toiledau" + }, + { + "value": "(T39) Transport, Utilities and Miscellaneous uses – Wind Turbine, Wind Farm", + "value_cy": "(T39) Trafnidiaeth, Cyfleustodau a Defnyddiau Amrywiol - Tyrbin Gwynt, Fferm Wynt" + }, + { + "value": "(T40) Transport, Utilities and Miscellaneous uses – Communications General", + "value_cy": "(T40) Trafnidiaeth, Cyfleustodau a Defnyddiau Amrywiol - Cyfathrebu Cyffredinol" + }, + { + "value": "(T41) Transport, Utilities and Miscellaneous uses – Post Office Depot", + "value_cy": "(T41) Trafnidiaeth, Cyfleustodau a Defnyddiau Amrywiol - Depo Swyddfa'r Post" + }, + { + "value": "(T42) Transport, Utilities and Miscellaneous uses – Telecommunications (inc Radio/Tv - Mast/Ariel/DishAntenna)", + "value_cy": "(T42) Trafnidiaeth, Cyfleustodau a Defnyddiau Amrywiol - Telathrebu (gan gynnwys Radio / Teledu - Mast / Ariel / DishAntenna)" + }, + { + "value": "(T50) Transport, Utilities and Miscellaneous uses – Miscellaneous", + "value_cy": "(T50) Trafnidiaeth, Cyfleustodau a Defnyddiau Amrywiol - Amrywiol" + }, + { + "value": "(T51) Transport, Utilities and Miscellaneous uses –Flood Lights", + "value_cy": "(T51) Trafnidiaeth, Cyfleustodau a Defnyddiau Amrywiol - Goleuadau Llifogydd" + }, + { + "value": "(T52) Transport, Utilities and Miscellaneous uses – Non-Residential Fence, Wall, Gate. Enclosure", + "value_cy": "(T52) Trafnidiaeth, Cyfleustodau a Defnyddiau Amrywiol - Ffens Ddibreswyl, Wal, Giât. Amgaead" + }, + { + "value": "(T53) Transport, Utilities and Miscellaneous uses – Advertisement Hoarding, Advertisement Structure", + "value_cy": "(T53) Trafnidiaeth, Cyfleustodau a Defnyddiau Amrywiol - Celcio Hysbysebu, Strwythur Hysbysebu" + }, + { + "value": "(T54) Transport, Utilities and Miscellaneous uses – Fire Escape", + "value_cy": "(T54) Trafnidiaeth, Cyfleustodau a Defnyddiau Amrywiol - Dianc Tân" + }, + { + "value": "(T60) Transport, Utilities and Miscellaneous uses – Unused Land", + "value_cy": "(T60) Trafnidiaeth, Cyfleustodau a Defnyddiau Amrywiol - Tir nas Defnyddiwyd" + }, + { + "value": "(T61) Transport, Utilities and Miscellaneous uses – Derelict Land", + "value_cy": "(T61) Trafnidiaeth, Cyfleustodau a Defnyddiau Amrywiol - Tir diffaith" + }, + { + "value": "(T62) Transport, Utilities and Miscellaneous uses – Cleared Site", + "value_cy": "(T62) Trafnidiaeth, Cyfleustodau a Defnyddiau Amrywiol - Safle wedi'i Glirio" + }, + { + "value": "(W00) Storage, Depots, Yards, Warehousing and Wholesaling – Miscellaneous Storage", + "value_cy": "(W00) Storio, Depo, Iardiau, Warysau a Chyfanwerthu - Storio Amrywiol" + }, + { + "value": "(W10) Storage, Depots, Yards, Warehousing and Wholesaling – Wholesale Warehouse Or Repository", + "value_cy": "(W10) Storio, Depo, Iardiau, Warysau a Chyfanwerthu - Warws cyfanwerthol neu ystorfa" + }, + { + "value": "(W11) Storage, Depots, Yards, Warehousing and Wholesaling – Cold Store, Refrigerated Storage", + "value_cy": "(W11) Storio, Depo, Iardiau, Warysau a Chyfanwerthu - Storfa Oer, Storio Rheweiddiedig" + }, + { + "value": "(W20) Storage, Depots, Yards, Warehousing and Wholesaling – Deport", + "value_cy": "(W20) Storio, Depo, Iardiau, Warysau a Chyfanwerthu - Alltudio" + }, + { + "value": "(W21) Storage, Depots, Yards, Warehousing and Wholesaling – Builders Yard, Timber Yard, Stonemasons Yard", + "value_cy": "(W21) Storio, Depoau, Iardiau, Warysau a Chyfanwerthu - Iard Adeiladwyr, Iard Bren, Iard Cerrig Seiri" + }, + { + "value": "(W22) Storage, Depots, Yards, Warehousing and Wholesaling – Coal yard", + "value_cy": "(W22) Storio, Depo, Iardiau, Warysau a Chyfanwerthu - iard lo" + }, + { + "value": "(W23) Storage, Depots, Yards, Warehousing and Wholesaling – Council Deport", + "value_cy": "(W23) Storio, Depo, Iardiau, Warysau a Chyfanwerthu - Alltudio'r Cyngor" + }, + { + "value": "(W24) Storage, Depots, Yards, Warehousing and Wholesaling – Freight, Haulage, Railway, Container", + "value_cy": "(W24) Storio, Depo, Iardiau, Warysau a Chyfanwerthu - Cludo Nwyddau, Haulage, Rheilffordd, Cynhwysydd" + }, + { + "value": "(W25) Storage, Depots, Yards, Warehousing and Wholesaling – Plant Hire, Skip hire", + "value_cy": "(W25) Storio, Depo, Iardiau, Warysau a Chyfanwerthu - Llogi Planhigion, Llogi Sgip" + }, + { + "value": "(W30) Storage, Depots, Yards, Warehousing and Wholesaling – Open Storage (inc Storage Of Cars etc)", + "value_cy": "(W30) Storio, Depo, Iardiau, Warysau a Chyfanwerthu - Storio Agored (gan gynnwys Storio Ceir ac ati)" + }, + { + "value": "Agriculture, Fisheries and Forestry", + "value_cy": "Amaethyddiaeth, Pysgodfeydd a Choedwigaeth" + }, + { + "value": "Application for approval of reserved matters", + "value_cy": "Cais i gymeradwyo materion a gadwyd yn ôl" + }, + { + "value": "Application for full planning permission", + "value_cy": "Cais am ganiatâd cynllunio llawn" + }, + { + "value": "Application for outline planning permission", + "value_cy": "Cais am ganiatâd cynllunio amlinellol" + }, + { + "value": "Application for variation or removal of a condition on a permission", + "value_cy": "Cais i amrywio neu ddileu amod ar ganiatâd" + }, + { + "value": "Certificate A", + "value_cy": "Tystysgrif A." + }, + { + "value": "Certificate B", + "value_cy": "Tystysgrif B." + }, + { + "value": "Certificate C&D", + "value_cy": "Tystysgrif C&D" + }, + { + "value": "Community, Education and Defence services", + "value_cy": "Gwasanaethau Cymunedol, Addysg ac Amddiffyn" + }, + { + "value": "ELB - ( b )that the matters alleged to constitute a contravention of section 9(1) or (2) have not occurred.", + "value_cy": "ELB - (b) nad yw'r materion yr honnir eu bod yn torri adran 9 (1) neu (2) wedi digwydd." + }, + { + "value": "ELB - (a)that the building is not of special architectural or historic interest.", + "value_cy": "ELB - (a) nad yw'r adeilad o ddiddordeb pensaernïol na hanesyddol arbennig." + }, + { + "value": "ELB - (c)that those matters (if they occurred) do not constitute such a contravention.", + "value_cy": "ELB - (c) nad yw'r materion hynny (pe byddent yn digwydd) yn gyfystyr â thramgwydd o'r fath." + }, + { + "value": "ELB - (d)that works to the building were urgently necessary in the interests of safety or health or for the preservation of the building, that it was not practicable to secure safety or health or, as the case may be, the preservation of the building by", + "value_cy": "ELB - (ch) bod angen gweithio ar yr adeilad ar frys er budd diogelwch neu iechyd neu er mwyn gwarchod yr adeilad, nad oedd yn ymarferol sicrhau diogelwch nac iechyd neu, yn ôl fel y digwydd, cadwraeth yr adeiladu gan" + }, + { + "value": "ELB - (e)that listed building consent ought to be granted for the works, or that any relevant condition of such consent which has been granted ought to be discharged, or different conditions substituted.", + "value_cy": "ELB - (d) y dylid rhoi caniatâd adeilad rhestredig ar gyfer y gwaith, neu y dylid cyflawni unrhyw amod perthnasol o gydsyniad o'r fath a roddwyd, neu amnewid amodau gwahanol." + }, + { + "value": "ELB - (f)that copies of the notice were not served as required by section 38(4)", + "value_cy": "ELB - (dd) na chyflwynwyd copïau o'r rhybudd fel sy'n ofynnol gan adran 38 (4)" + }, + { + "value": "ELB - (g)except in relation to such a requirement as is mentioned in section 38(2)(b) or (c), that the requirements of the notice exceed what is necessary for restoring the building to its condition before the works were carried out", + "value_cy": "ELB - (g) ac eithrio mewn perthynas â gofyniad o'r fath a grybwyllir yn adran 38 (2) (b) neu (c), bod gofynion yr hysbysiad yn fwy na'r hyn sy'n angenrheidiol i adfer yr adeilad i'w gyflwr cyn i'r gwaith fod ei gynnal" + }, + { + "value": "ELB - (h)that the period specified in the notice as the period within which any step required by the notice is to be taken falls short of what should reasonably be allowed.", + "value_cy": "ELB - (f) bod y cyfnod a bennir yn yr hysbysiad fel y cyfnod y cymerir unrhyw gam sy'n ofynnol gan yr hysbysiad yn is na'r hyn y dylid yn rhesymol ei ganiatáu." + }, + { + "value": "ELB - (i)that the steps required by the notice for the purpose of restoring the character of the building to its former state would not serve that purpose.", + "value_cy": "ELB - (i) na fyddai'r camau sy'n ofynnol gan yr hysbysiad at ddibenion adfer cymeriad yr adeilad i'w gyflwr blaenorol yn ateb y diben hwnnw." + }, + { + "value": "ELB - (j)that steps required to be taken by virtue of section 38(2)(b) exceed what is necessary to alleviate the effect of the works executed to the building.", + "value_cy": "ELB - (g) bod y camau y mae'n ofynnol eu cymryd yn rhinwedd adran 38 (2) (b) yn fwy na'r hyn sy'n angenrheidiol i liniaru effaith y gwaith a gyflawnir ar yr adeilad." + }, + { + "value": "ELB - (k)that steps required to be taken by virtue of section 38(2)(c) exceed what is necessary to bring the building to the state in which it would have been if the terms and conditions of the listed building consent had been complied with.", + "value_cy": "ELB - (ng) bod y camau y mae'n ofynnol eu cymryd yn rhinwedd adran 38 (2) (c) yn fwy na'r hyn sy'n angenrheidiol i ddod â'r adeilad i'r wladwriaeth y byddai wedi bod pe bai telerau ac amodau'r caniatâd adeilad rhestredig wedi bod cydymffurfio â." + }, + { + "value": "Housing and Residential development", + "value_cy": "Datblygu Tai a Phreswyl" + }, + { + "value": "I", + "value_cy": "I." + }, + { + "value": "II", + "value_cy": "II" + }, + { + "value": "II*", + "value_cy": "II *" + }, + { + "value": "Industry", + "value_cy": "Diwydiant" + }, + { + "value": "Item", + "value_cy": "Eitem" + }, + { + "value": "Leisure and Recreation", + "value_cy": "Hamdden a Hamdden" + }, + { + "value": "Mineral extraction/exploration (Inc Geological exploration)", + "value_cy": "Echdynnu / archwilio mwynau (Inc Archwilio daearegol)" + }, + { + "value": "MOL - (a)that the condition of the land to which the notice relates does not adversely affect the amenity of any part of the area of the local planning authority who served the notice, or of any adjoining area.", + "value_cy": "MOL - (a) nad yw cyflwr y tir y mae'r rhybudd yn ymwneud ag ef yn effeithio'n andwyol ar amwynder unrhyw ran o ardal yr awdurdod cynllunio lleol a gyflwynodd yr hysbysiad, nac unrhyw ardal gyfagos." + }, + { + "value": "MOL - (b)that the condition of the land to which the notice relates is attributable to, and such as results in the ordinary course of events from, the carrying on of operations or a use of land which is not in contravention of Part III.", + "value_cy": "MOL - (b) bod cyflwr y tir y mae'r rhybudd yn ymwneud ag ef i'w briodoli i, ac yn arwain at gwrs arferol digwyddiadau o gynnal gweithrediadau neu ddefnydd o dir nad yw'n mynd yn groes i Ran III ." + }, + { + "value": "MOL - (c)that the requirements of the notice exceed what is necessary for preventing the condition of the land from adversely affecting the amenity of any part of the area of the local planning authority who served the notice, or of any adjoining area.", + "value_cy": "MOL - (c) bod gofynion yr hysbysiad yn fwy na'r hyn sy'n angenrheidiol i atal cyflwr y tir rhag effeithio'n andwyol ar amwynder unrhyw ran o ardal yr awdurdod cynllunio lleol a gyflwynodd yr hysbysiad, neu unrhyw ardal gyfagos." + }, + { + "value": "NA", + "value_cy": "NA" + }, + { + "value": "No", + "value_cy": "Na" + }, + { + "value": "Offices, Studios", + "value_cy": "Swyddfeydd, Stiwdios" + }, + { + "value": "S117", + "value_cy": "S117" + }, + { + "value": "S118", + "value_cy": "S118" + }, + { + "value": "S119", + "value_cy": "S119" + }, + { + "value": "Shop, Retail and Associated uses", + "value_cy": "Siopau, Manwerthu a Defnyddiau Cysylltiedig" + }, + { + "value": "Storage, Depots, Yards, Warehousing and Wholesaling", + "value_cy": "Storio, Depo, Iardiau, Warysau a Chyfanwerthu" + }, + { + "value": "Transport, Utilities and Miscellaneous uses", + "value_cy": "Trafnidiaeth, Cyfleustodau a Defnyddiau Amrywiol" + }, + { + "value": "Yes", + "value_cy": "Ydw" + } + ] + } + ] +} \ No newline at end of file diff --git a/i18n.json b/i18n.json index 54e315be..18e1e4a0 100644 --- a/i18n.json +++ b/i18n.json @@ -12,7 +12,8 @@ ], "pages": { "*": [ - "common" + "common", + "newappeal" ], "/": [ "common", @@ -54,10 +55,10 @@ "/newappeal": [ "newappeal" ], - "/newappeal/selectappeal": [ + "/newappeal/*": [ "newappeal" ], - "/newappeal/*": [ + "/newappeal/selectappeal": [ "newappeal" ], "/dns/*": [ diff --git a/locales/cy/common.json b/locales/cy/common.json index 981afc5e..8687e92c 100644 --- a/locales/cy/common.json +++ b/locales/cy/common.json @@ -26,6 +26,7 @@ "breadcrumb-advanced-search": "Chwilio uwch", "breadcrumb-advanced-search-results": "Canlyniadau chwilio uwch", "breadcrumb-my-portal": "Fy mhorth", + "breadcrumb-new-appeal": "Apêl newydd", "breadcrumb-case-reference": "Cyfeirnod Achos", "spinner-loading": "Llwytho...", "spinner-searching": "Chwilio...", diff --git a/locales/cy/newappeal.json b/locales/cy/newappeal.json index 8cf41621..ef8951a9 100644 --- a/locales/cy/newappeal.json +++ b/locales/cy/newappeal.json @@ -5,5 +5,8 @@ "select-lpa-label": "Dewiswch eich awdurdod cynllunio lleol", "select-lpa-label-error-msg": "Mae angen awdurdod lleol", "select-appeal-type-label": "Dewiswch fath o apêl", - "select-appeal-type-label-error-msg": "Mae angen math o apêl" + "select-appeal-type-label-error-msg": "Mae angen math o apêl", + "select-default": "Dewiswch...", + "change-link-label": "Newid", + "submit-appeal-button": "Cyflwyno apêl" } \ No newline at end of file diff --git a/locales/en/common.json b/locales/en/common.json index 1f980afa..7311f4ee 100644 --- a/locales/en/common.json +++ b/locales/en/common.json @@ -26,6 +26,7 @@ "breadcrumb-advanced-search": "Advanced search", "breadcrumb-advanced-search-results": "Advanced search results", "breadcrumb-my-portal": "My portal", + "breadcrumb-new-appeal": "New appeal", "breadcrumb-case-reference": "Case Reference", "spinner-loading": "Loading...", "spinner-searching": "Searching...", diff --git a/locales/en/newappeal.json b/locales/en/newappeal.json index c0b6e084..8651fab5 100644 --- a/locales/en/newappeal.json +++ b/locales/en/newappeal.json @@ -5,5 +5,8 @@ "select-lpa-label": "Select your local planning authority", "select-lpa-label-error-msg": "Local authority is required", "select-appeal-type-label": "Select an appeal type", - "select-appeal-type-label-error-msg": "Appeal type is required" + "select-appeal-type-label-error-msg": "Appeal type is required", + "select-default": "Select...", + "change-link-label": "Change", + "submit-appeal-button": "Submit appeal" } \ No newline at end of file diff --git a/next.config.js b/next.config.js index ef49d11b..d9a76642 100644 --- a/next.config.js +++ b/next.config.js @@ -66,8 +66,12 @@ module.exports = { destination: "/logout", }, { - source: "/newappeal", - destination: "/apêlnewydd", + source: "/apelnewydd", + destination: "/newappeal", + }, + { + source: "/apelnewydd/:path*", + destination: "/newappeal/:path*", }, // { diff --git a/pages/newappeal/[appealtypes].js b/pages/newappeal/[appealtypes].js index 0bfc5c5c..d2824d64 100644 --- a/pages/newappeal/[appealtypes].js +++ b/pages/newappeal/[appealtypes].js @@ -204,7 +204,7 @@ let Home = (props) => {
    - {t("search:page-title")} - {t("common:service-name")} + {t("newappeal:page-title")} - {t("common:service-name")}
    diff --git a/pages/newappeal/index.js b/pages/newappeal/index.js index e3643dab..86211972 100644 --- a/pages/newappeal/index.js +++ b/pages/newappeal/index.js @@ -49,7 +49,7 @@ const Home = (props) => {
    - {t("search:page-title")} - {t("common:service-name")} + {t("newappeal:page-title")} - {t("common:service-name")}