diff --git a/app.json b/app.json
index eca807df3..0505a7ffd 100644
--- a/app.json
+++ b/app.json
@@ -14,9 +14,6 @@
"PLEK_SERVICE_CONTENT_STORE_URI": {
"value": "https://www.gov.uk/api"
},
- "PLEK_SERVICE_SEARCH_API_URI": {
- "value": "https://www.gov.uk/api"
- },
"PLEK_SERVICE_STATIC_URI": {
"value": "https://assets.publishing.service.gov.uk"
},
diff --git a/app/lib/services.rb b/app/lib/services.rb
index cfeae95fb..8e1dc2ce4 100644
--- a/app/lib/services.rb
+++ b/app/lib/services.rb
@@ -18,10 +18,4 @@ def self.publishing_api
bearer_token: ENV.fetch("PUBLISHING_API_BEARER_TOKEN", "example"),
)
end
-
- def self.search_api
- @search_api = GdsApi::Search.new(
- Plek.find("search-api"),
- )
- end
end
diff --git a/app/presenters/get_involved_presenter.rb b/app/presenters/get_involved_presenter.rb
deleted file mode 100644
index b7445c626..000000000
--- a/app/presenters/get_involved_presenter.rb
+++ /dev/null
@@ -1,111 +0,0 @@
-class GetInvolvedPresenter < ContentItemPresenter
- def open_consultation_count
- Services.search_api.search({ filter_content_store_document_type: "open_consultation", count: 0 })["total"]
- end
-
- def closed_consultation_count
- query = {
- filter_content_store_document_type: "closed_consultation",
- filter_end_date: "from: #{1.year.ago}",
- count: 0,
- }
-
- Services.search_api.search(query)["total"]
- end
-
- def next_closing_consultation
- query = {
- filter_content_store_document_type: "open_consultation",
- filter_end_date: "from: #{Time.zone.now.to_date}",
- fields: "end_date,title,link",
- order: "end_date",
- count: 1,
- }
-
- Services.search_api.search(query)["results"].first
- end
-
- def take_part_pages
- content_item.dig("links", "take_part_pages")
- end
-
- def recently_opened
- filtered_links(recently_opened_consultations, I18n.t("get_involved.closes"))
- end
-
- def recent_outcomes
- filtered_links(recent_consultation_outcomes, I18n.t("get_involved.closed"))
- end
-
- def time_until_closure(consultation)
- days_left = (consultation["end_date"].to_date - Time.zone.now.to_date).to_i
- case days_left
- when :negative?.to_proc
- I18n.t("get_involved.closed")
- when :zero?.to_proc
- I18n.t("get_involved.closing_today")
- when 1
- I18n.t("get_involved.closing_tomorrow")
- else
- I18n.t("get_involved.days_left", number_of_days: days_left)
- end
- end
-
- def consultations_link
- filters = %w[open_consultations closed_consultations]
- "/search/policy-papers-and-consultations?#{filters.to_query('content_store_document_type')}"
- end
-
-private
-
- def recently_opened_consultations
- query = {
- filter_content_store_document_type: "open_consultation",
- fields: "end_date,title,link,organisations",
- order: "-start_date",
- count: 3,
- }
-
- Services.search_api.search(query)["results"]
- end
-
- def recent_consultation_outcomes
- query = {
- filter_content_store_document_type: "consultation_outcome",
- filter_end_date: "to: #{Time.zone.now.to_date}",
- fields: "end_date,title,link,organisations",
- order: "-end_date",
- count: 3,
- }
-
- Services.search_api.search(query)["results"]
- end
-
- def filtered_links(array, close_status)
- array.map do |item|
- {
- link: {
- text: item["title"],
- path: item["link"],
- description: "#{close_status} #{item['end_date'].to_date.strftime('%d %B %Y')}",
- },
- metadata: {
- public_updated_at: Time.zone.parse(org_time(item)),
- document_type: org_acronym(item),
- },
- }
- end
- end
-
- def org_time(item)
- item["organisations"].map { |org|
- org["public_timestamp"]
- }.join(", ")
- end
-
- def org_acronym(item)
- item["organisations"].map { |org|
- org["acronym"]
- }.join(", ")
- end
-end
diff --git a/app/views/content_items/get_involved.html.erb b/app/views/content_items/get_involved.html.erb
deleted file mode 100644
index 4700e4c2a..000000000
--- a/app/views/content_items/get_involved.html.erb
+++ /dev/null
@@ -1,211 +0,0 @@
-
-
- <%= render "govuk_publishing_components/components/title", {
- context: "Government activity",
- title: t('get_involved.page_heading'),
- } %>
-
- <%= render "govuk_publishing_components/components/lead_paragraph", {
- text: t('get_involved.intro_paragraph.body_html',
- engage_with_government: link_to(t('get_involved.intro_paragraph.engage_with_government'), "#engage-with-government",
- class: "govuk-link"),
- take_part: link_to(t('get_involved.intro_paragraph.take_part'), "#take-part",
- class: "govuk-link")),
- margin_bottom: 9
- } %>
-
-
-
- <%# Engage with government section %>
-
- <%= render "govuk_publishing_components/components/heading", {
- text: t('get_involved.engage_with_gov'),
- heading_level: 2,
- border_top: 2,
- padding: true,
- id: "engage-with-government"
- } %>
-
- <%= t('get_involved.your_views') %>
-
- <%# Respond to consultations %>
- <%= render "govuk_publishing_components/components/heading", {
- text: t('get_involved.respond_to_consultations'),
- heading_level: 2,
- font_size: "s"
- } %>
-
- <%# Big numbers %>
-
-
- <%= render "govuk_publishing_components/components/big_number", {
- number: @content_item.open_consultation_count,
- label: t('get_involved.open_consultations'),
- href: "/search/policy-papers-and-consultations?content_store_document_type=open_consultations"
- } %>
-
-
- <%= render "govuk_publishing_components/components/big_number", {
- number: @content_item.closed_consultation_count,
- label: t('get_involved.closed_consultations'),
- href: "/search/policy-papers-and-consultations?content_store_document_type=closed_consultations"
- } %>
-
-
-
- <% if @content_item.next_closing_consultation %>
- <%# Attention to closing consultation %>
- <%= render "govuk_publishing_components/components/inset_text", {
- } do %>
- <%= render "govuk_publishing_components/components/heading", {
- text: @content_item.time_until_closure(@content_item.next_closing_consultation),
- heading_level: 3
- } %>
-
- <%= @content_item.next_closing_consultation['title'] %>
-
- <%= link_to t('get_involved.read_respond'), @content_item.next_closing_consultation['link'], class: "govuk-link" %>
- <% end %>
- <% end %>
-
-
-
-<%# Recently opened section %>
-
-
- <%= render "govuk_publishing_components/components/heading", {
- text: t('get_involved.recently_opened'),
- padding: true,
- border_top: 2,
- font_size: "s",
- margin_bottom: 4
- } %>
- <%= render "govuk_publishing_components/components/document_list", {
- items: @content_item.recently_opened
- } %>
- <%= link_to(t('get_involved.search_all'), @content_item.consultations_link, class: "govuk-link" ) %>
-
-
-
-<%# Recent outcomes section %>
-
-
- <%= render "govuk_publishing_components/components/heading", {
- text: t('get_involved.recent_outcomes'),
- padding: true,
- border_top: 2,
- font_size: "s",
- margin_bottom: 4
- } %>
-
- <%= render "govuk_publishing_components/components/document_list", {
- items: @content_item.recent_outcomes
- } %>
-
- <%= link_to(t('get_involved.search_all'), @content_item.consultations_link, class: "govuk-link" ) %>
-
-
-
-<%# Start a petition section %>
-
-
- <%= render "govuk_publishing_components/components/heading", {
- text: t('get_involved.start_a_petition'),
- padding: true,
- border_top: 2,
- } %>
-
- <%= t('get_involved.petition_paragraph.body_html', create_a_petition: link_to(t('get_involved.petition_paragraph.create_a_petition'), "https://petition.parliament.uk/", class: "govuk-link", rel: "external")) %>
-
-
-
-
-<%# Follow a blog.. section %>
-
-
- <%= render "govuk_publishing_components/components/heading", {
- text: t('get_involved.follow'),
- padding: true,
- border_top: 2,
- } %>
-
<%= t('get_involved.follow_paragraph') %>
-
-
- <%= t('get_involved.see_all_dept') %>
-
-
- <%= render "govuk_publishing_components/components/heading", {
- text: t('get_involved.follow_links'),
- heading_level: 3,
- font_size: "s",
- padding: true,
- border_top: 2,
- } %>
- <%= render "govuk_publishing_components/components/list", {
- items: [
- sanitize("
#{t('get_involved.gov_past')}"),
- sanitize("
#{ t('get_involved.civil_service_quarterly')}"),
- sanitize("
#{t('get_involved.fcdo_bloggers')}"),
- sanitize("
#{t('get_involved.gds_blog')}"),
- sanitize("
#{t('get_involved.civil_service')}"),
- ]
- } %>
-
-
-
-<%# Take part image grid %>
-
-
- <%= render "govuk_publishing_components/components/heading", {
- text: t('get_involved.take_part'),
- padding: true,
- border_top: 2,
- margin_bottom: 4,
- font_size: "l",
- id: "take-part"
- } %>
-
- <% @content_item.take_part_pages.each_with_index do |take_part_page, index| %>
- <% if index % 3 == 0 && index != 0 %>
<% end %>
- <% if index % 3 == 0 %>
-
- <% end %>
-
- <%= render "govuk_publishing_components/components/image_card", {
- href: take_part_page['base_path'],
- image_src: take_part_page['details']['image']['url'],
- image_alt: take_part_page['details']['image']['alt_text'],
- heading_text: take_part_page['title'],
- description: take_part_page['description'],
- heading_level: 3,
- image_loading: "lazy",
- } %>
-
- <% if index == @content_item.take_part_pages.size-1 %>
-
- <% end %>
- <% end %>
-
-
-
-<%# More ways to take part section %>
-
diff --git a/app/views/development/index.html.erb b/app/views/development/index.html.erb
index 24a0efd6f..fbf72c25f 100644
--- a/app/views/development/index.html.erb
+++ b/app/views/development/index.html.erb
@@ -36,10 +36,6 @@
Static |
<%= link_to remove_secrets(Plek.find('static')), remove_secrets(Plek.find('static')) %> |
-
- Search |
- <%= link_to remove_secrets(Plek.find('search-api')), remove_secrets(Plek.find('search-api')) %> |
-
Examples from GOV.UK
diff --git a/config/locales/ar.yml b/config/locales/ar.yml
index 0cdc37f71..c8c8c77a2 100644
--- a/config/locales/ar.yml
+++ b/config/locales/ar.yml
@@ -650,47 +650,6 @@ ar:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: لم تعد متاحة
published_in_error: تمت إزالة المعلومات الموجودة في هذه الصفحة لأنها قد نُشِرت عن طريق الخطأ.
diff --git a/config/locales/az.yml b/config/locales/az.yml
index b4a80c958..1e378a69c 100644
--- a/config/locales/az.yml
+++ b/config/locales/az.yml
@@ -342,47 +342,6 @@ az:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: Artıq mövcud deyildir
published_in_error: Bu səhifədəki məlumat səhvən dərc edilmiş olduğuna görə silinmişdir.
diff --git a/config/locales/be.yml b/config/locales/be.yml
index e59154d84..224902ac8 100644
--- a/config/locales/be.yml
+++ b/config/locales/be.yml
@@ -496,47 +496,6 @@ be:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: Больш няма ў наяўнасці
published_in_error: Інфармацыя на гэтай старонцы была выдалена, бо была апублікавана з памылкай.
diff --git a/config/locales/bg.yml b/config/locales/bg.yml
index 8bbe884b4..e7ed62514 100644
--- a/config/locales/bg.yml
+++ b/config/locales/bg.yml
@@ -342,47 +342,6 @@ bg:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: Вече не е налична
published_in_error: Информацията е премахната от тази страница, тъй като е била погрешно публикувана.
diff --git a/config/locales/bn.yml b/config/locales/bn.yml
index e7904523f..c40071374 100644
--- a/config/locales/bn.yml
+++ b/config/locales/bn.yml
@@ -342,47 +342,6 @@ bn:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: আর উপলভ্য নেই
published_in_error: এই পেজের তথ্য সরিয়ে নেওয়া হয়েছে, কারণ এটি ভুলক্রমে প্রকাশিত হয়েছিল।
diff --git a/config/locales/cs.yml b/config/locales/cs.yml
index 0b2c0ac62..716b4eccd 100644
--- a/config/locales/cs.yml
+++ b/config/locales/cs.yml
@@ -419,47 +419,6 @@ cs:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: Již není k dispozici
published_in_error: Informace na této stránce byly odstraněny, protože byly zveřejněny omylem.
diff --git a/config/locales/cy.yml b/config/locales/cy.yml
index 48e39d2ea..fda0cf448 100644
--- a/config/locales/cy.yml
+++ b/config/locales/cy.yml
@@ -650,47 +650,6 @@ cy:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: Ddim ar gael mwyach
published_in_error: Mae'r wybodaeth ar y dudalen hon wedi'i thynnu am ei bod wedi'i chyhoeddi ar gam.
diff --git a/config/locales/da.yml b/config/locales/da.yml
index f50af379d..c86e8c11d 100644
--- a/config/locales/da.yml
+++ b/config/locales/da.yml
@@ -354,47 +354,6 @@ da:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: Ikke længere tilgængelig
published_in_error: Oplysningerne på denne side er blevet fjernet, fordi de er udgivet ved en fejl.
diff --git a/config/locales/de.yml b/config/locales/de.yml
index 5232ac74b..a5afb9c1a 100644
--- a/config/locales/de.yml
+++ b/config/locales/de.yml
@@ -342,47 +342,6 @@ de:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: Nicht mehr verfügbar
published_in_error: Die Informationen auf dieser Seite wurden entfernt, da sie fälschlich veröffentlicht wurden.
diff --git a/config/locales/dr.yml b/config/locales/dr.yml
index c395e0a55..0b43d4008 100644
--- a/config/locales/dr.yml
+++ b/config/locales/dr.yml
@@ -342,47 +342,6 @@ dr:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: دیگر در دسترس نیست
published_in_error: اطلاعات این صفحه حذف شده است چونکه اشتباهاً منتشر شده بود.
diff --git a/config/locales/el.yml b/config/locales/el.yml
index 41f00f6d7..aa6ebed5c 100644
--- a/config/locales/el.yml
+++ b/config/locales/el.yml
@@ -342,47 +342,6 @@ el:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: Δεν είναι πλέον διαθέσιμο
published_in_error: Οι πληροφορίες σε αυτήν τη σελίδα έχουν καταργηθεί επειδή δημοσιεύθηκαν κατά λάθος.
diff --git a/config/locales/en.yml b/config/locales/en.yml
index 143a8e87e..cfd6599a8 100644
--- a/config/locales/en.yml
+++ b/config/locales/en.yml
@@ -17,20 +17,20 @@ en:
is_being: is being
not_open_yet: This call for evidence isn't open yet
'on': 'on'
- 'or': 'or'
opens: This call for evidence opens
+ or: or
original_call_for_evidence: Original call for evidence
ran_from: This call for evidence ran from
- response_form: response form
respond_online: Respond online
+ response_form: response form
summary: Summary
was: was
ways_to_respond: Ways to respond
write_to: 'Write to:'
common:
- visit: 'Visit:'
email_and_print_link: Sign up for emails or print this page
print_link: Print this page
+ visit: 'Visit:'
components:
figure:
image_credit: 'Image credit: %{credit}'
@@ -65,8 +65,8 @@ en:
is_being: is being
not_open_yet: This consultation isn't open yet
'on': 'on'
- 'or': 'or'
opens: This consultation opens
+ or: or
original_consultation: Original consultation
ran_from: This consultation ran from
respond_online: Respond online
@@ -342,47 +342,6 @@ en:
title: Operations in
fields_of_operation:
context: British fatalities
- get_involved:
- civil_service: Civil Service
- civil_service_quarterly: Civil Service Quarterly
- closed: Closed
- closed_consultations: Closed consultations in the past 12 months
- closes: Closes
- closing_today: Closing today
- closing_tomorrow: Closing tomorrow
- days_left: "%{number_of_days} days left"
- engage_with_gov: Engage with government
- fcdo_bloggers: FCDO blogs
- follow: Follow a blog or social media channel
- follow_links: Some active government blogs include
- follow_paragraph: For an instant way to interact with government departments, try their social media streams. These are listed under 'Follow us' on the department's home page. As well as access to blogs, audio, video and more, you can comment, debate and rate.
- gds_blog: Government Digital Service
- gov_past: History of Government
- intro_paragraph:
- body_html: Find out how you can %{engage_with_government} directly, and %{take_part} locally, nationally or internationally.
- engage_with_government: engage with government
- take_part: take part
- join_ics: Join the International Citizen Service (18- to 25-year-olds)
- make_donation: Make a donation to charity
- more_ways: More ways to take part
- neighbourhood_watch: Take part in your local Neighbourhood Watch
- open_consultations: Open consultations
- page_heading: Get Involved
- page_title: Get Involved
- petition_paragraph:
- body_html: You can %{create_a_petition} to influence government and Parliament. If the petition gets at least 100,000 online signatures, it will be considered for debate in the House of Commons.
- create_a_petition: create a petition
- read_respond: Read and respond
- recent_outcomes: Recent outcomes
- recently_opened: Recently opened
- respond_to_consultations: Respond to consultations
- school_overseas: Link up with a school overseas
- search_all: Search all consultations
- see_all_dept: See all government departments
- start_a_petition: Start a petition
- take_part: Take part
- take_part_suggestions: Many people are already volunteering, donating and contributing, both in the UK and abroad. If you'd like to join them, but dont know where to start, here's a list of suggestions
- your_views: You can give your views on new or changing government policies by responding to consultations. Government departments take these responses into consideration before making decisions.
gone:
page_title: No longer available
published_in_error: The information on this page has been removed because it was published in error.
@@ -467,7 +426,6 @@ en:
zh-hk: Cantonese
zh-tw: Traditional Chinese
manuals:
- summary_title: Summary
breadcrumb_contents: Back to contents
contents_list_breadcrumb_contents: Manual homepage
contents_title: Contents
@@ -478,6 +436,7 @@ en:
previous_page: Previous page
search_this_manual: Search this manual
see_all_updates: See all updates
+ summary_title: Summary
title: "%{title}Guidance"
updated: Updated
updates_amendments: published amendments
@@ -489,8 +448,6 @@ en:
previous_page: Previous
print_entire_guide: View a printable version of the whole guide
printable_version: Printable version
- national_statistics:
- logo_alt_text:
national_statistics:
logo_alt_text: Accredited official statistics
publication:
diff --git a/config/locales/es-419.yml b/config/locales/es-419.yml
index db460ae65..1cf0ba7ea 100644
--- a/config/locales/es-419.yml
+++ b/config/locales/es-419.yml
@@ -342,47 +342,6 @@ es-419:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: No disponible
published_in_error: La información de esta página se ha eliminado porque se publicó erróneamente.
diff --git a/config/locales/es.yml b/config/locales/es.yml
index 2e8683753..c0761e831 100644
--- a/config/locales/es.yml
+++ b/config/locales/es.yml
@@ -342,47 +342,6 @@ es:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: Ya no está disponible
published_in_error: La información de esta página se ha eliminado porque se publicó por error.
diff --git a/config/locales/et.yml b/config/locales/et.yml
index d4da72072..7a528bd39 100644
--- a/config/locales/et.yml
+++ b/config/locales/et.yml
@@ -342,47 +342,6 @@ et:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: Ei ole enam saadaval
published_in_error: Sellel lehel olev teave on eemaldatud, kuna see avaldati ekslikult.
diff --git a/config/locales/fa.yml b/config/locales/fa.yml
index 8654060b0..07c376d2e 100644
--- a/config/locales/fa.yml
+++ b/config/locales/fa.yml
@@ -342,47 +342,6 @@ fa:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: دیگر در دسترس نیست
published_in_error: اطلاعات این صفحه حذف شده است زیرا به اشتباه منتشر شده بود.
diff --git a/config/locales/fi.yml b/config/locales/fi.yml
index e2580ac0a..2c1438a63 100644
--- a/config/locales/fi.yml
+++ b/config/locales/fi.yml
@@ -342,47 +342,6 @@ fi:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: Ei ole enää käytettävissä
published_in_error: Tämän sivun tiedot on poistettu, koska ne on julkaistu virheellisesti.
diff --git a/config/locales/fr.yml b/config/locales/fr.yml
index 277be3c73..0030079ee 100644
--- a/config/locales/fr.yml
+++ b/config/locales/fr.yml
@@ -342,47 +342,6 @@ fr:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: N'est plus disponible
published_in_error: Les informations présentées sur cette page ont été supprimées car elles ont été publiées par erreur.
diff --git a/config/locales/gd.yml b/config/locales/gd.yml
index f8069be4f..f18d20f5a 100644
--- a/config/locales/gd.yml
+++ b/config/locales/gd.yml
@@ -496,47 +496,6 @@ gd:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: Níl sé ar fáil
published_in_error: Baineadh an fhaisnéis ar an leathanach seo toisc gur cuireadh trí phost í trí dhearmad.
diff --git a/config/locales/gu.yml b/config/locales/gu.yml
index 61374b9dc..a449d7060 100644
--- a/config/locales/gu.yml
+++ b/config/locales/gu.yml
@@ -342,47 +342,6 @@ gu:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: હવે ઉપલબ્ધ નથી
published_in_error: આ પેજ ઉપરની માહિતી હટાવી દેવામાં આવી છે, કારણ કે તે ભૂલથી પ્રકાશિત કરાઇ હતી.
diff --git a/config/locales/he.yml b/config/locales/he.yml
index 0e1cd2696..d6e4f157d 100644
--- a/config/locales/he.yml
+++ b/config/locales/he.yml
@@ -342,47 +342,6 @@ he:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: כבר לא זמין
published_in_error: המידע בדף זה הוסר מכיוון שהוא פורסם בטעות.
diff --git a/config/locales/hi.yml b/config/locales/hi.yml
index ff9d2c6de..8511e2cf1 100644
--- a/config/locales/hi.yml
+++ b/config/locales/hi.yml
@@ -342,47 +342,6 @@ hi:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: अब उपलब्ध नहीं है
published_in_error: इस पेज की जानकारी गलती से प्रकाशित होने की वज़ह से हटा दी गई है।
diff --git a/config/locales/hr.yml b/config/locales/hr.yml
index 0d48e0009..18da82244 100644
--- a/config/locales/hr.yml
+++ b/config/locales/hr.yml
@@ -419,47 +419,6 @@ hr:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: Nedostupno
published_in_error: Podaci na ovoj stranici uklonjeni su jer su pogrešno objavljeni.
diff --git a/config/locales/hu.yml b/config/locales/hu.yml
index 57fbcebf1..349f59854 100644
--- a/config/locales/hu.yml
+++ b/config/locales/hu.yml
@@ -342,47 +342,6 @@ hu:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: Már nem elérhető
published_in_error: Az ezen az oldalon található információ eltávolításra került, mivel közzététele hiba volt.
diff --git a/config/locales/hy.yml b/config/locales/hy.yml
index 183793791..240671494 100644
--- a/config/locales/hy.yml
+++ b/config/locales/hy.yml
@@ -342,47 +342,6 @@ hy:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: Այլևս հասանելի չէ
published_in_error: 'Այս էջի տեղեկությունը հեռացվել է, քանի որ սխալմամբ էր հրապարակվել:'
diff --git a/config/locales/id.yml b/config/locales/id.yml
index 762c35aee..674c1f4df 100644
--- a/config/locales/id.yml
+++ b/config/locales/id.yml
@@ -265,47 +265,6 @@ id:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: Tidak lagi tersedia
published_in_error: Informasi di halaman ini telah dihapus karena diterbitkan karena kesalahan.
diff --git a/config/locales/is.yml b/config/locales/is.yml
index 97b2183ef..9909c8b08 100644
--- a/config/locales/is.yml
+++ b/config/locales/is.yml
@@ -342,47 +342,6 @@ is:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: Ekki lengur aðgengileg
published_in_error: Upplýsingarnar á þessari síðu hafa verið fjarlægðar vegna þess að þær voru birtar fyrir mistök.
diff --git a/config/locales/it.yml b/config/locales/it.yml
index 33535722e..033720828 100644
--- a/config/locales/it.yml
+++ b/config/locales/it.yml
@@ -342,47 +342,6 @@ it:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: Non più disponibile
published_in_error: Le informazioni in questa pagina sono state rimosse perché pubblicate per errore.
diff --git a/config/locales/ja.yml b/config/locales/ja.yml
index 571547eca..211067ede 100644
--- a/config/locales/ja.yml
+++ b/config/locales/ja.yml
@@ -265,47 +265,6 @@ ja:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: ご利用いただけません
published_in_error: このページの情報は、誤って公開されたため削除されました。
diff --git a/config/locales/ka.yml b/config/locales/ka.yml
index 3ceeba512..78f0898c0 100644
--- a/config/locales/ka.yml
+++ b/config/locales/ka.yml
@@ -342,47 +342,6 @@ ka:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: აღარ არის ხელმისაწვდომი
published_in_error: ამ გვერდზე არსებული ინფორმაცია ამოღებულია, რადგან ის გამოქვეყნდა შეცდომით.
diff --git a/config/locales/kk.yml b/config/locales/kk.yml
index 0e4e94809..903adf1a4 100644
--- a/config/locales/kk.yml
+++ b/config/locales/kk.yml
@@ -342,47 +342,6 @@ kk:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: Енді қолжетімді емес
published_in_error: Осы беттегі ақпарат қате жарияланғандықтан алынып тасталды.
diff --git a/config/locales/ko.yml b/config/locales/ko.yml
index 39672df1d..25d985387 100644
--- a/config/locales/ko.yml
+++ b/config/locales/ko.yml
@@ -265,47 +265,6 @@ ko:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: 더 이상 이용할 수 없음
published_in_error: 이 페이지의 정보는 잘못된 내용이 발행되어서 삭제되었습니다.
diff --git a/config/locales/lt.yml b/config/locales/lt.yml
index f27fc1bfc..887b94334 100644
--- a/config/locales/lt.yml
+++ b/config/locales/lt.yml
@@ -419,47 +419,6 @@ lt:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: Nebepasiekiama
published_in_error: Šio puslapio informacija buvo pašalinta, kadangi ji buvo publikuota per klaidą.
diff --git a/config/locales/lv.yml b/config/locales/lv.yml
index aa89efdb4..b93141fcd 100644
--- a/config/locales/lv.yml
+++ b/config/locales/lv.yml
@@ -342,47 +342,6 @@ lv:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: Vairs nav pieejams
published_in_error: Informācija šajā lapā ir noņemta, jo tā tika publicēta kļūdas dēļ.
diff --git a/config/locales/ms.yml b/config/locales/ms.yml
index fd20da470..4e336c55f 100644
--- a/config/locales/ms.yml
+++ b/config/locales/ms.yml
@@ -265,47 +265,6 @@ ms:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: Sudah tiada
published_in_error: Maklumat dalam laman ini telah dikeluarkan kerana ia telah diterbitkan secara salah.
diff --git a/config/locales/mt.yml b/config/locales/mt.yml
index ac764cb08..bd13ab030 100644
--- a/config/locales/mt.yml
+++ b/config/locales/mt.yml
@@ -496,47 +496,6 @@ mt:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: Mhuwiex iktar disponibbli
published_in_error: L-informazzjoni fuq din il-paġna tneħħiet għax ġiet ippubblikata bi żball.
diff --git a/config/locales/ne.yml b/config/locales/ne.yml
index 93e8493f4..69f5b2f2b 100644
--- a/config/locales/ne.yml
+++ b/config/locales/ne.yml
@@ -342,47 +342,6 @@ ne:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: अब उपलब्ध छैन
published_in_error: यस पृष्ठमा रहेको जानकारी हटाइएको छ किनभने त्यो त्रुटीपूर्ण तरिकाले प्रकाशित भएको थियो।
diff --git a/config/locales/nl.yml b/config/locales/nl.yml
index a1557abef..b6fb553f6 100644
--- a/config/locales/nl.yml
+++ b/config/locales/nl.yml
@@ -342,47 +342,6 @@ nl:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: Niet langer beschikbaar
published_in_error: De informatie op deze pagina is verwijderd omdat deze abusievelijk is gepubliceerd.
diff --git a/config/locales/no.yml b/config/locales/no.yml
index 497cfd84d..561c907db 100644
--- a/config/locales/no.yml
+++ b/config/locales/no.yml
@@ -342,47 +342,6 @@
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: Ikke lenger tilgjengelig
published_in_error: Informasjonen på denne siden er fjernet fordi den ble publisert ved en feil.
diff --git a/config/locales/pa-pk.yml b/config/locales/pa-pk.yml
index 736a3094e..f00903d0b 100644
--- a/config/locales/pa-pk.yml
+++ b/config/locales/pa-pk.yml
@@ -342,47 +342,6 @@ pa-pk:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: ہون دستیاب نئیں
published_in_error: ایس ورقے تے موجود خبراں ہٹا دتیاں گیا نیں کیو جے او غلطی نال چھپ گئے سن۔
diff --git a/config/locales/pa.yml b/config/locales/pa.yml
index 2c6c41cb3..6f201ba7d 100644
--- a/config/locales/pa.yml
+++ b/config/locales/pa.yml
@@ -342,47 +342,6 @@ pa:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: ਹੁਣ ਉਪਲਬਧ ਨਹੀਂ ਹੈ
published_in_error: ਇਸ ਪੰਨੇ 'ਤੇ ਜਾਣਕਾਰੀ ਨੂੰ ਹਟਾ ਦਿੱਤਾ ਗਿਆ ਹੈ ਕਿਉਂਕਿ ਇਹ ਗਲਤੀ ਨਾਲ ਪ੍ਰਕਾਸ਼ਤ ਕੀਤਾ ਗਿਆ ਸੀ।
diff --git a/config/locales/pl.yml b/config/locales/pl.yml
index 76e388cd1..6f312aac4 100644
--- a/config/locales/pl.yml
+++ b/config/locales/pl.yml
@@ -496,47 +496,6 @@ pl:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: Już niedostępne
published_in_error: Informacje na tej stronie zostały usunięte, ponieważ zostały błędnie opublikowane.
diff --git a/config/locales/ps.yml b/config/locales/ps.yml
index 244d3c7dc..f920ef0da 100644
--- a/config/locales/ps.yml
+++ b/config/locales/ps.yml
@@ -342,47 +342,6 @@ ps:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: نور شتون نلري
published_in_error: پدې پاڼه کې معلومات حذف شوي ځکه چې دا په غلطۍ کې خپور شوی.
diff --git a/config/locales/pt.yml b/config/locales/pt.yml
index 88d167ece..46f1fcda7 100644
--- a/config/locales/pt.yml
+++ b/config/locales/pt.yml
@@ -342,47 +342,6 @@ pt:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: Já não está disponível
published_in_error: A informação contida nesta página foi retirada porque foi publicada por engano.
diff --git a/config/locales/ro.yml b/config/locales/ro.yml
index 35efc0325..7cbdd5592 100644
--- a/config/locales/ro.yml
+++ b/config/locales/ro.yml
@@ -419,47 +419,6 @@ ro:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: Nu mai este disponibil
published_in_error: Informațiile de pe această pagină au fost șterse deoarece au fost publicate din greșeală.
diff --git a/config/locales/ru.yml b/config/locales/ru.yml
index c13f5e503..c9cb635c3 100644
--- a/config/locales/ru.yml
+++ b/config/locales/ru.yml
@@ -496,47 +496,6 @@ ru:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: Более не доступен
published_in_error: Информация на данной странице была удалена так как была опубликована по ошибке.
diff --git a/config/locales/si.yml b/config/locales/si.yml
index 6f896f0f5..16aaefe0a 100644
--- a/config/locales/si.yml
+++ b/config/locales/si.yml
@@ -342,47 +342,6 @@ si:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: තව දුරටත් ලද නොහැක
published_in_error: මෙම පිටුවේ ඇති තොරතුරු ඉවත් කර ඇත්තේ එය වැරදීමකින් ප්රකාශයට පත් කර ඇති බැවිනි.
diff --git a/config/locales/sk.yml b/config/locales/sk.yml
index 4a86c644e..323260587 100644
--- a/config/locales/sk.yml
+++ b/config/locales/sk.yml
@@ -419,47 +419,6 @@ sk:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: Už nie je k dispozícii
published_in_error: Informácie na tejto stránke boli odstránené, pretože boli uverejnené omylom.
diff --git a/config/locales/sl.yml b/config/locales/sl.yml
index 47aada8f8..724e16a1f 100644
--- a/config/locales/sl.yml
+++ b/config/locales/sl.yml
@@ -496,47 +496,6 @@ sl:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: Ni več na voljo
published_in_error: Informacije na tej strani so bile odstranjene, ker so bile objavljene po pomoti.
diff --git a/config/locales/so.yml b/config/locales/so.yml
index 6271ef530..a38f42952 100644
--- a/config/locales/so.yml
+++ b/config/locales/so.yml
@@ -342,47 +342,6 @@ so:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: Lama hali karo
published_in_error: Macluumaadka kujiray bogan waa laga saaray waayo waxa loo daabacay si qaldan.
diff --git a/config/locales/sq.yml b/config/locales/sq.yml
index ca06a7313..a465e06c7 100644
--- a/config/locales/sq.yml
+++ b/config/locales/sq.yml
@@ -342,47 +342,6 @@ sq:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: Nuk është më e disponueshme
published_in_error: Informacioni në këtë faqe është hequr sepse është publikuar gabimisht.
diff --git a/config/locales/sr.yml b/config/locales/sr.yml
index cb358c6df..2ab7a1a1b 100644
--- a/config/locales/sr.yml
+++ b/config/locales/sr.yml
@@ -419,47 +419,6 @@ sr:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: Nije više dostupno
published_in_error: Informacije sa ove stranice su uklonjene jer su bile objavljene greškom.
diff --git a/config/locales/sv.yml b/config/locales/sv.yml
index 32428e38d..29f217574 100644
--- a/config/locales/sv.yml
+++ b/config/locales/sv.yml
@@ -342,47 +342,6 @@ sv:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: Inte längre tillgänglig
published_in_error: Informationen på den här sidan har tagits bort eftersom den publicerades felaktigt.
diff --git a/config/locales/sw.yml b/config/locales/sw.yml
index 0e972db71..b8744ce24 100644
--- a/config/locales/sw.yml
+++ b/config/locales/sw.yml
@@ -342,47 +342,6 @@ sw:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: Hayapatikani tena
published_in_error: Maelezo yaliyo kwenye ukurasa huu yameondolewa kwa sababu yalichapishwa kimakosa.
diff --git a/config/locales/ta.yml b/config/locales/ta.yml
index 2163b079e..c6b56b89d 100644
--- a/config/locales/ta.yml
+++ b/config/locales/ta.yml
@@ -342,47 +342,6 @@ ta:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: இனி கிடைக்காது
published_in_error: இந்தப் பக்கத்திலிருந்த தகவல்கள் நீக்கப்பட்டுள்ளன. காரணம் அது பிழையாக வெளியிடப்பட்டது.
diff --git a/config/locales/th.yml b/config/locales/th.yml
index e47331f0c..500e7dd2a 100644
--- a/config/locales/th.yml
+++ b/config/locales/th.yml
@@ -265,47 +265,6 @@ th:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: ไม่มีแล้ว
published_in_error: ข้อมูลในหน้านี้ถูกนำออกเนื่องจากมีการเผยแพร่โดยความผิดพลาด
diff --git a/config/locales/tk.yml b/config/locales/tk.yml
index 304fcfed6..a257c47eb 100644
--- a/config/locales/tk.yml
+++ b/config/locales/tk.yml
@@ -342,47 +342,6 @@ tk:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: Indi elýeter däl
published_in_error: Bu sahypadaky maglumatlar ýalňyş çap edilendigi üçin aýryldy.
diff --git a/config/locales/tr.yml b/config/locales/tr.yml
index c146de6d4..ba6bd05bf 100644
--- a/config/locales/tr.yml
+++ b/config/locales/tr.yml
@@ -342,47 +342,6 @@ tr:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: Artık mevcut değil
published_in_error: Bu sayfadaki bilgiler hatalı yayınlandığından kaldırıldı.
diff --git a/config/locales/uk.yml b/config/locales/uk.yml
index 9773484d8..a3c1f041a 100644
--- a/config/locales/uk.yml
+++ b/config/locales/uk.yml
@@ -496,47 +496,6 @@ uk:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: Більше не доступно
published_in_error: Інформацію на цій сторінці видалено, оскільки вона була опублікована помилково.
diff --git a/config/locales/ur.yml b/config/locales/ur.yml
index 7b18feeea..d182ac70f 100644
--- a/config/locales/ur.yml
+++ b/config/locales/ur.yml
@@ -342,47 +342,6 @@ ur:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: مزید دستیاب نہیں
published_in_error: اس صفحے سے معلومات ہٹا دی گئی ہیں کیونکہ اسے نقص کے ساتھ شائع کیا گیا تھا۔
diff --git a/config/locales/uz.yml b/config/locales/uz.yml
index 36097cb77..737f6e8bc 100644
--- a/config/locales/uz.yml
+++ b/config/locales/uz.yml
@@ -342,47 +342,6 @@ uz:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: Бундан буён йўқ
published_in_error: Ушбу саҳифадаги маълумот ўчириб юборилган, чунки у хато бўлган.
diff --git a/config/locales/vi.yml b/config/locales/vi.yml
index 18e223878..c3dc0c4d2 100644
--- a/config/locales/vi.yml
+++ b/config/locales/vi.yml
@@ -265,47 +265,6 @@ vi:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: Không khả dụng
published_in_error: Thông tin trên trang này đã bị xóa vì đã được xuất bản do nhầm lẫn.
diff --git a/config/locales/yi.yml b/config/locales/yi.yml
index e7109197b..40ab05236 100644
--- a/config/locales/yi.yml
+++ b/config/locales/yi.yml
@@ -342,47 +342,6 @@ yi:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title:
published_in_error:
diff --git a/config/locales/zh-hk.yml b/config/locales/zh-hk.yml
index 9e8ccacf8..369adf97b 100644
--- a/config/locales/zh-hk.yml
+++ b/config/locales/zh-hk.yml
@@ -265,47 +265,6 @@ zh-hk:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: 不再提供
published_in_error: 本頁面之資訊可移除,因其發佈錯誤。
diff --git a/config/locales/zh-tw.yml b/config/locales/zh-tw.yml
index c3380c965..2c118fade 100644
--- a/config/locales/zh-tw.yml
+++ b/config/locales/zh-tw.yml
@@ -265,47 +265,6 @@ zh-tw:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: 不再適用
published_in_error: 此頁面上的資訊已被刪除,因為發佈有誤。
diff --git a/config/locales/zh.yml b/config/locales/zh.yml
index f0e5eb99b..6b6a94f18 100644
--- a/config/locales/zh.yml
+++ b/config/locales/zh.yml
@@ -265,47 +265,6 @@ zh:
title:
fields_of_operation:
context:
- get_involved:
- civil_service:
- civil_service_quarterly:
- closed:
- closed_consultations:
- closes:
- closing_today:
- closing_tomorrow:
- days_left:
- engage_with_gov:
- fcdo_bloggers:
- follow:
- follow_links:
- follow_paragraph:
- gds_blog:
- gov_past:
- intro_paragraph:
- body_html:
- engage_with_government:
- take_part:
- join_ics:
- make_donation:
- more_ways:
- neighbourhood_watch:
- open_consultations:
- page_heading:
- page_title:
- petition_paragraph:
- body_html:
- create_a_petition:
- read_respond:
- recent_outcomes:
- recently_opened:
- respond_to_consultations:
- school_overseas:
- search_all:
- see_all_dept:
- start_a_petition:
- take_part:
- take_part_suggestions:
- your_views:
gone:
page_title: 不再可用
published_in_error: 本页上的信息已被删除,因为它的发布出现了错误。
diff --git a/startup.sh b/startup.sh
index 54ec88e30..432095037 100755
--- a/startup.sh
+++ b/startup.sh
@@ -6,7 +6,6 @@ function set_env() {
export GOVUK_APP_DOMAIN=www.$1
export GOVUK_WEBSITE_ROOT=https://www.$1
export PLEK_SERVICE_CONTENT_STORE_URI=${PLEK_SERVICE_CONTENT_STORE_URI-https://test:bla@www.$1/api}
- export PLEK_SERVICE_SEARCH_API_URI=${PLEK_SERVICE_SEARCH_API_URI-https://www.$1/api}
}
if [[ $1 == "--live" ]] ; then
diff --git a/test/integration/get_involved_test.rb b/test/integration/get_involved_test.rb
deleted file mode 100644
index 73d8167fe..000000000
--- a/test/integration/get_involved_test.rb
+++ /dev/null
@@ -1,60 +0,0 @@
-require "test_helper"
-require "gds_api/test_helpers/search"
-
-class GetInvolvedTest < ActionDispatch::IntegrationTest
- include GdsApi::TestHelpers::Search
-
- setup do
- stub_search_query(query: hash_including(filter_content_store_document_type: "open_consultation"), response: { "results" => [], "total" => 83 })
- stub_search_query(query: hash_including(filter_content_store_document_type: "closed_consultation"), response: { "results" => [], "total" => 110 })
- stub_search_query(query: hash_including(filter_content_store_document_type: "consultation_outcome"), response: { "results" => [consultation_result] })
-
- setup_and_visit_content_item("get_involved")
- end
-
- test "page has correct title" do
- puts page.inspect
- assert page.has_title?("Get involved - GOV.UK")
- end
-
- test "includes the correct number of open consultations" do
- assert page.has_selector?(".gem-c-big-number", text: /83.+Open consultations/m)
- end
-
- test "includes the correct number of closed consultations" do
- assert page.has_selector?(".gem-c-big-number", text: /110.+Closed consultations/m)
- end
-
- test "includes the next closing consultation" do
- assert page.has_text?("Consulting on time zones")
- end
-
- test "shows the take part pages" do
- assert page.has_text?("Volunteer")
- assert page.has_text?("National Citizen Service")
- end
-
-private
-
- def stub_search_query(query:, response:)
- stub_request(:get, /\A#{Plek.new.find('search-api')}\/search.json/)
- .with(query:)
- .to_return(body: response.to_json)
- end
-
- def consultation_result
- {
- "title" => "Consulting on time zones",
- "public_timestamp" => "2022-02-14T00:00:00.000+01:00",
- "end_date" => "2022-02-14T00:00:00.000+01:00",
- "link" => "/consultation/link",
- "organisations" => [{
- "slug" => "ministry-of-justice",
- "link" => "/government/organisations/ministry-of-justice",
- "title" => "Ministry of Justice",
- "acronym" => "MoJ",
- "organisation_state" => "live",
- }],
- }
- end
-end