Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CORRECTIONS - Implement new content for licence selection page #2120

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion packages/gafl-webapp-service/src/locales/cy.json
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,8 @@
"licence_type_12m": "12 mis",
"licence_type_1d": "1 diwrnod",
"licence_type_8d": "8 niwrnod",
"licence_type_attended_rods_note": "Dim ond deiliad y drwydded all ddefnyddio’r wialen ac mae’n rhaid cadw golwg ar y wialen drwy’r amser. Mae’n rhaid i ddeiliaid y drwydded ddilyn yr ",
"licence_type_attended_rods_note": "Dim ond deiliad y drwydded all ddefnyddio’r wialen ac mae’n rhaid cadw golwg ar y wialen drwy’r amser. Mae’n rhaid i chi ddilyn yr ",
"licence_type_attended_rods_note_BOBO": "Dim ond deiliad y drwydded all ddefnyddio’r wialen ac mae’n rhaid cadw golwg ar y wialen drwy’r amser. Mae’n rhaid i ddeiliaid y drwydded ddilyn yr ",
"licence_type_byelaws": "is-ddeddfau pysgota â gwialen (yn agor mewn tab newydd)",
"licence_type_error_choose": "Dewiswch un o’r mathau o drwyddedau pysgota",
"licence_type_na": "Nid oes cyfnodau byrrach ar gael ar gyfer y math hwn o drwydded.",
Expand Down
1 change: 1 addition & 0 deletions packages/gafl-webapp-service/src/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -479,6 +479,7 @@
"licence_type_1d": "1 day",
"licence_type_8d": "8 days",
"licence_type_attended_rods_note": "Rods must only be used by the licence holder and must be attended at all times. You must follow the ",
"licence_type_attended_rods_note_BOBO": "Rods must only be used by the licence holder and must be attended at all times. Licence holders must follow the ",
"licence_type_byelaws": "rod fishing byelaws (opens in new tab)",
"licence_type_error_choose": "Choose one of the fishing licence types",
"licence_type_na": "Shorter lengths are not available for this licence type",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,14 @@
%}

{% block pageContent %}
<p class="govuk-body-m">{{ mssgs.licence_type_attended_rods_note }}<a class="govuk-link" rel="noreferrer noopener" target="_blank" href="{{ data.uri.freshWaterFishingRules }}">{{ mssgs.licence_type_byelaws }}</a>{{ mssgs.full_stop }}
<p class="govuk-body-m">
{% if data.isLicenceForYou %}
{{ mssgs.licence_type_attended_rods_note }}
{% else %}
{{ mssgs.licence_type_attended_rods_note_BOBO }}
{% endif %}
<a class="govuk-link" rel="noreferrer noopener" target="_blank" href="{{ data.uri.freshWaterFishingRules }}">{{ mssgs.licence_type_byelaws }}</a>
{{ mssgs.full_stop }}
</p>
{{ govukRadios({
idPrefix: "licence-type",
Expand Down
Loading