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 b2e1ff771..518ebf4b0 100644
--- a/config/locales/ar.yml
+++ b/config/locales/ar.yml
@@ -643,47 +643,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 5e82f708f..b572867a1 100644
--- a/config/locales/az.yml
+++ b/config/locales/az.yml
@@ -339,47 +339,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 d2a510b26..9845ef69e 100644
--- a/config/locales/be.yml
+++ b/config/locales/be.yml
@@ -491,47 +491,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 afd95938d..bcf5581e1 100644
--- a/config/locales/bg.yml
+++ b/config/locales/bg.yml
@@ -339,47 +339,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 db8664a78..58541680a 100644
--- a/config/locales/bn.yml
+++ b/config/locales/bn.yml
@@ -339,47 +339,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 263ff1339..2766e1f8f 100644
--- a/config/locales/cs.yml
+++ b/config/locales/cs.yml
@@ -415,47 +415,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 2cf82b2bd..681acc24a 100644
--- a/config/locales/cy.yml
+++ b/config/locales/cy.yml
@@ -643,47 +643,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 40734a10d..770a57222 100644
--- a/config/locales/da.yml
+++ b/config/locales/da.yml
@@ -351,47 +351,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 f005b42a1..fd08c865c 100644
--- a/config/locales/de.yml
+++ b/config/locales/de.yml
@@ -339,47 +339,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 df485020e..e04e6ef7a 100644
--- a/config/locales/dr.yml
+++ b/config/locales/dr.yml
@@ -339,47 +339,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 89f8783fa..47a714b78 100644
--- a/config/locales/el.yml
+++ b/config/locales/el.yml
@@ -339,47 +339,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 e494482d4..5bb6c6e5f 100644
--- a/config/locales/en.yml
+++ b/config/locales/en.yml
@@ -339,47 +339,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.
diff --git a/config/locales/es-419.yml b/config/locales/es-419.yml
index 4fea9e1e6..146662fc1 100644
--- a/config/locales/es-419.yml
+++ b/config/locales/es-419.yml
@@ -339,47 +339,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 d20cbfc8d..e43be304e 100644
--- a/config/locales/es.yml
+++ b/config/locales/es.yml
@@ -339,47 +339,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 401b4bb05..4d7e01852 100644
--- a/config/locales/et.yml
+++ b/config/locales/et.yml
@@ -339,47 +339,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 00a517d52..2e949c2c2 100644
--- a/config/locales/fa.yml
+++ b/config/locales/fa.yml
@@ -339,47 +339,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 50f7c953a..e8337c40a 100644
--- a/config/locales/fi.yml
+++ b/config/locales/fi.yml
@@ -339,47 +339,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 163a24bcd..d4a41147c 100644
--- a/config/locales/fr.yml
+++ b/config/locales/fr.yml
@@ -339,47 +339,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 371332ef4..7a811da5c 100644
--- a/config/locales/gd.yml
+++ b/config/locales/gd.yml
@@ -491,47 +491,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 33511b671..217219d9e 100644
--- a/config/locales/gu.yml
+++ b/config/locales/gu.yml
@@ -339,47 +339,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 58d997bd1..6020f9cad 100644
--- a/config/locales/he.yml
+++ b/config/locales/he.yml
@@ -339,47 +339,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 4932baf2d..89c6049f6 100644
--- a/config/locales/hi.yml
+++ b/config/locales/hi.yml
@@ -339,47 +339,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 e64e5781f..388e88fee 100644
--- a/config/locales/hr.yml
+++ b/config/locales/hr.yml
@@ -415,47 +415,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 08f95933e..6b41784bc 100644
--- a/config/locales/hu.yml
+++ b/config/locales/hu.yml
@@ -339,47 +339,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 3e1583f3c..9564039e0 100644
--- a/config/locales/hy.yml
+++ b/config/locales/hy.yml
@@ -339,47 +339,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 44f1c6cda..f72ce1a5a 100644
--- a/config/locales/id.yml
+++ b/config/locales/id.yml
@@ -263,47 +263,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 c6e9a96bf..82dd30b10 100644
--- a/config/locales/is.yml
+++ b/config/locales/is.yml
@@ -339,47 +339,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 b50f16d12..5c75b7e96 100644
--- a/config/locales/it.yml
+++ b/config/locales/it.yml
@@ -339,47 +339,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 8b28b3063..3728a016f 100644
--- a/config/locales/ja.yml
+++ b/config/locales/ja.yml
@@ -263,47 +263,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 a599492a2..de660284a 100644
--- a/config/locales/ka.yml
+++ b/config/locales/ka.yml
@@ -339,47 +339,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 3b2a4af7e..1b819c705 100644
--- a/config/locales/kk.yml
+++ b/config/locales/kk.yml
@@ -339,47 +339,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 b948940b4..1c953c12c 100644
--- a/config/locales/ko.yml
+++ b/config/locales/ko.yml
@@ -263,47 +263,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 3fcdca773..e45d746bd 100644
--- a/config/locales/lt.yml
+++ b/config/locales/lt.yml
@@ -415,47 +415,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 20b673265..cd37a8c6f 100644
--- a/config/locales/lv.yml
+++ b/config/locales/lv.yml
@@ -339,47 +339,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 4db7bbf35..0636c911a 100644
--- a/config/locales/ms.yml
+++ b/config/locales/ms.yml
@@ -263,47 +263,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 a389d3d4e..2931f8e18 100644
--- a/config/locales/mt.yml
+++ b/config/locales/mt.yml
@@ -491,47 +491,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 0160f1a05..4584067a5 100644
--- a/config/locales/ne.yml
+++ b/config/locales/ne.yml
@@ -339,47 +339,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 f7f3d6fe9..6ef67ce01 100644
--- a/config/locales/nl.yml
+++ b/config/locales/nl.yml
@@ -339,47 +339,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 db423d3b8..b21b1fb43 100644
--- a/config/locales/no.yml
+++ b/config/locales/no.yml
@@ -339,47 +339,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 d8cc98a12..7f064a840 100644
--- a/config/locales/pa-pk.yml
+++ b/config/locales/pa-pk.yml
@@ -339,47 +339,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 23a683249..9c56ca221 100644
--- a/config/locales/pa.yml
+++ b/config/locales/pa.yml
@@ -339,47 +339,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 78b39dcf4..0f784d3e9 100644
--- a/config/locales/pl.yml
+++ b/config/locales/pl.yml
@@ -491,47 +491,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 94254d0ce..aea46807a 100644
--- a/config/locales/ps.yml
+++ b/config/locales/ps.yml
@@ -339,47 +339,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 92895e8e8..802434f19 100644
--- a/config/locales/pt.yml
+++ b/config/locales/pt.yml
@@ -339,47 +339,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 9516862e6..7996b24c2 100644
--- a/config/locales/ro.yml
+++ b/config/locales/ro.yml
@@ -415,47 +415,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 9954b7494..7395ef381 100644
--- a/config/locales/ru.yml
+++ b/config/locales/ru.yml
@@ -491,47 +491,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 4b3063a18..42aca4f29 100644
--- a/config/locales/si.yml
+++ b/config/locales/si.yml
@@ -339,47 +339,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 4901a4103..e80c9bc94 100644
--- a/config/locales/sk.yml
+++ b/config/locales/sk.yml
@@ -415,47 +415,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 dfdca20b0..1cd105ad1 100644
--- a/config/locales/sl.yml
+++ b/config/locales/sl.yml
@@ -491,47 +491,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 496f2ee5c..8b8cd441b 100644
--- a/config/locales/so.yml
+++ b/config/locales/so.yml
@@ -339,47 +339,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 65bb4a777..0cc998fec 100644
--- a/config/locales/sq.yml
+++ b/config/locales/sq.yml
@@ -339,47 +339,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 24c666877..be0e8f082 100644
--- a/config/locales/sr.yml
+++ b/config/locales/sr.yml
@@ -415,47 +415,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 97972a41c..ac9e9b3fa 100644
--- a/config/locales/sv.yml
+++ b/config/locales/sv.yml
@@ -339,47 +339,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 464c5baff..9efa13a08 100644
--- a/config/locales/sw.yml
+++ b/config/locales/sw.yml
@@ -339,47 +339,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 c1d3acf49..fb7c0b6e2 100644
--- a/config/locales/ta.yml
+++ b/config/locales/ta.yml
@@ -339,47 +339,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 016118a22..347acdc43 100644
--- a/config/locales/th.yml
+++ b/config/locales/th.yml
@@ -263,47 +263,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 4a7ea0d4b..a65b860e4 100644
--- a/config/locales/tk.yml
+++ b/config/locales/tk.yml
@@ -339,47 +339,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 fc47d1037..c8c447d18 100644
--- a/config/locales/tr.yml
+++ b/config/locales/tr.yml
@@ -339,47 +339,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 14fcfd06d..f032a827a 100644
--- a/config/locales/uk.yml
+++ b/config/locales/uk.yml
@@ -491,47 +491,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 b057f7295..4dec4914f 100644
--- a/config/locales/ur.yml
+++ b/config/locales/ur.yml
@@ -339,47 +339,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 d41bad131..cf0e065a6 100644
--- a/config/locales/uz.yml
+++ b/config/locales/uz.yml
@@ -339,47 +339,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 f8fdb08c4..7da75c09b 100644
--- a/config/locales/vi.yml
+++ b/config/locales/vi.yml
@@ -263,47 +263,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 7b20b69d9..caf58e230 100644
--- a/config/locales/yi.yml
+++ b/config/locales/yi.yml
@@ -339,47 +339,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 0a40b30bb..a13653d64 100644
--- a/config/locales/zh-hk.yml
+++ b/config/locales/zh-hk.yml
@@ -263,47 +263,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 c913968c0..52671f254 100644
--- a/config/locales/zh-tw.yml
+++ b/config/locales/zh-tw.yml
@@ -263,47 +263,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 b5254ff90..a5c3fec15 100644
--- a/config/locales/zh.yml
+++ b/config/locales/zh.yml
@@ -263,47 +263,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