From 6b1b34f5d874d875284acc46c5ae73c1adaa550f Mon Sep 17 00:00:00 2001 From: ramya vidapanakal Date: Thu, 14 Nov 2024 12:21:23 +0000 Subject: [PATCH 01/15] Update README.md and govuk_examples.yml --- README.md | 1 + config/govuk_examples.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/README.md b/README.md index 972a27045f..f01b169dc0 100644 --- a/README.md +++ b/README.md @@ -31,6 +31,7 @@ some hard-coded routes. |Roadmap |hardcoded|https://www.gov.uk/roadmap |Simple smart answer |[simple_smart_answer](https://docs.publishing.service.gov.uk/content-schemas/simple_smart_answer.html)|https://www.gov.uk/sold-bought-vehicle| | ||https://www.gov.uk/contact-the-dvla| +|Speech |[speech](https://docs.publishing.service.gov.uk/content-schemas/speech.html)|https://www.gov.uk/government/speeches/motorcycle-testing| |Take part |[take_part](https://docs.publishing.service.gov.uk/content-schemas/take_part.html)|https://www.gov.uk/government/get-involved/take-part/improve-your-social-housing| |Transaction start page |[transaction](https://docs.publishing.service.gov.uk/content-schemas/transaction.html)|https://www.gov.uk/register-to-vote| | ||https://www.gov.uk/vehicle-tax| diff --git a/config/govuk_examples.yml b/config/govuk_examples.yml index 1f78519a43..98350c7733 100644 --- a/config/govuk_examples.yml +++ b/config/govuk_examples.yml @@ -13,6 +13,7 @@ homepage: / place: /find-regional-passport-office simple_smart_answer: /sold-bought-vehicle special-route: /find-local-council +speeches: /government/speeches/motorcycle-testing take_part: /government/get-involved/take-part/improve-your-social-housing transaction: /sign-in-universal-credit travel_advice_index: /foreign-travel-advice From 6234b2c0d9f4d42be1527f432e8533545a65b5f5 Mon Sep 17 00:00:00 2001 From: ramya vidapanakal Date: Thu, 14 Nov 2024 12:37:51 +0000 Subject: [PATCH 02/15] Add Speech route and controller --- app/controllers/speech_controller.rb | 4 ++++ app/views/speech/show.html.erb | 1 + config/routes.rb | 1 + 3 files changed, 6 insertions(+) create mode 100644 app/controllers/speech_controller.rb create mode 100644 app/views/speech/show.html.erb diff --git a/app/controllers/speech_controller.rb b/app/controllers/speech_controller.rb new file mode 100644 index 0000000000..76bc35b5be --- /dev/null +++ b/app/controllers/speech_controller.rb @@ -0,0 +1,4 @@ +class SpeechController < ContentItemsController + def show + end +end diff --git a/app/views/speech/show.html.erb b/app/views/speech/show.html.erb new file mode 100644 index 0000000000..7f135f8aec --- /dev/null +++ b/app/views/speech/show.html.erb @@ -0,0 +1 @@ +Placeholder for the speech details page. \ No newline at end of file diff --git a/config/routes.rb b/config/routes.rb index 730282ffec..1e6b4a437f 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -76,6 +76,7 @@ scope "/government" do # Placeholder for attachments being virus-scanned get "/placeholder", to: "placeholder#show" + get "/speeches/:slug", to: "speech#show" get "/case-studies/:slug(.:locale)", to: "case_study#show", as: :case_study From 85dfdd6cc68db2ee453aa8fd819d039b16dc714d Mon Sep 17 00:00:00 2001 From: ramya vidapanakal Date: Mon, 17 Feb 2025 15:40:07 +0000 Subject: [PATCH 03/15] Add Speech model and presenter - Added Speech model that includes the related concerns for Speech along with the tests - Modified Speech model to include the methods to retrieve the important-metadata information that were copied over from Speech Presenter in government-frontend - Added Speech Presenter and tests to handle the delivery_type of the speech Commit audit trail - https://github.com/alphagov/government-frontend/blob/122ae292fa540059ee165a94f8129d873c5205d5/app/presenters/speech_presenter.rb Audit trail for presenter tests - https://github.com/alphagov/government-frontend/blob/122ae292fa540059ee165a94f8129d873c5205d5/test/presenters/speech_presenter_test.rb --- app/controllers/speech_controller.rb | 5 +-- app/models/speech.rb | 29 ++++++++++++++++ app/presenters/speech_presenter.rb | 7 ++++ spec/models/speech_spec.rb | 46 +++++++++++++++++++++++++ spec/presenter/speech_presenter_spec.rb | 21 +++++++++++ 5 files changed, 106 insertions(+), 2 deletions(-) create mode 100644 app/models/speech.rb create mode 100644 app/presenters/speech_presenter.rb create mode 100644 spec/models/speech_spec.rb create mode 100644 spec/presenter/speech_presenter_spec.rb diff --git a/app/controllers/speech_controller.rb b/app/controllers/speech_controller.rb index 76bc35b5be..685dc5ff3b 100644 --- a/app/controllers/speech_controller.rb +++ b/app/controllers/speech_controller.rb @@ -1,4 +1,5 @@ class SpeechController < ContentItemsController - def show - end + def show + @presenter = SpeechPresenter.new(@content_item) + end end diff --git a/app/models/speech.rb b/app/models/speech.rb new file mode 100644 index 0000000000..08986c3ad9 --- /dev/null +++ b/app/models/speech.rb @@ -0,0 +1,29 @@ +class Speech < ContentItem + include Organisations + include Updatable + + def contributors + (organisations + [speaker].flatten + [speaker_without_profile].flatten).compact + end + + def speaker + content_store_hash.dig("links", "speaker") + end + + def speaker_without_profile + content_store_hash.dig("details", "speaker_without_profile") + end + + def location + content_store_hash.dig("details", "location") + end + + def delivered_on_date + content_store_hash.dig("details", "delivered_on") + end + + def speech_type_explanation + explanation = content_store_hash.dig("details", "speech_type_explanation") + " (#{explanation})" if explanation + end +end diff --git a/app/presenters/speech_presenter.rb b/app/presenters/speech_presenter.rb new file mode 100644 index 0000000000..269f2cf5f6 --- /dev/null +++ b/app/presenters/speech_presenter.rb @@ -0,0 +1,7 @@ +class SpeechPresenter < ContentItemPresenter + def delivery_type + return I18n.t("formats.speech.written_on") if content_item.document_type == "authored_article" + + I18n.t("formats.speech.delivered_on") + end +end diff --git a/spec/models/speech_spec.rb b/spec/models/speech_spec.rb new file mode 100644 index 0000000000..019fd41fc3 --- /dev/null +++ b/spec/models/speech_spec.rb @@ -0,0 +1,46 @@ +RSpec.describe Speech do + let(:content_store_response) { GovukSchemas::Example.find("speech", example_name: "speech") } + + it_behaves_like "it has updates", "speech", "speech-with-updates" + it_behaves_like "it has no updates", "speech", "speech" + it_behaves_like "it can be withdrawn", "speech", "withdrawn-speech" + + describe "#contributors" do + it "returns the organisations as well as speaker" do + organisations = content_store_response["links"]["organisations"] + expect(described_class.new(content_store_response).speaker).to eq(content_store_response["links"]["speaker"]) + expected_contributors = + { "title" => organisations[0]["title"], "base_path" => organisations[0]["base_path"], "content_id" => organisations[0]["content_id"] } + + expect(described_class.new(content_store_response).contributors).to include(expected_contributors) + end + + it "returns speaker without profile" do + content_store_response = GovukSchemas::Example.find("speech", example_name: "speech-speaker-without-profile") + expect(described_class.new(content_store_response).contributors).to include(content_store_response["details"]["speaker_without_profile"]) + end + end + + describe "#location" do + it "returns location for important-metadata" do + expect(described_class.new(content_store_response).location).to eq(content_store_response["details"]["location"]) + end + end + + describe "#delivered_on_date" do + it "returns delivered on date for important-metadata" do + expect(described_class.new(content_store_response).delivered_on_date).to eq(content_store_response["details"]["delivered_on"]) + end + end + + describe "#speech_type_explanation" do + it "returns speech type explanation for important-metadata" do + expect(described_class.new(content_store_response).speech_type_explanation).to eq(" (#{content_store_response['details']['speech_type_explanation']})") + end + + it "returns nil when explanation does not exist" do + content_store_response = GovukSchemas::Example.find("speech", example_name: "speech-written-statement-parliament") + expect(described_class.new(content_store_response).speech_type_explanation).to be_nil + end + end +end diff --git a/spec/presenter/speech_presenter_spec.rb b/spec/presenter/speech_presenter_spec.rb new file mode 100644 index 0000000000..475a451d5c --- /dev/null +++ b/spec/presenter/speech_presenter_spec.rb @@ -0,0 +1,21 @@ +RSpec.describe SpeechPresenter do + subject(:presenter) { described_class.new(content_item) } + + let(:content_item) { Speech.new(content_store_response) } + + context "when presented speech is Written Statement" do + let(:content_store_response) { GovukSchemas::Example.find("speech", example_name: "speech-written-statement-parliament") } + + it "presents the speech as being delivered" do + expect(presenter.delivery_type).to eq("Delivered on") + end + end + + context "when presented speech is an authored article" do + let(:content_store_response) { GovukSchemas::Example.find("speech", example_name: "speech-authored-article") } + + it "presents the speech as being written" do + expect(presenter.delivery_type).to eq("Written on") + end + end +end From 7732f790a2ee3b7669f1453a16778ec8e85c33ab Mon Sep 17 00:00:00 2001 From: ramya vidapanakal Date: Thu, 16 Jan 2025 16:30:37 +0000 Subject: [PATCH 04/15] Add News image concern and tests - Commit audit trail: https://github.com/alphagov/government-frontend/blob/122ae292fa540059ee165a94f8129d873c5205d5/app/presenters/content_item/news_image.rb - Commit audit trail for tests: https://github.com/alphagov/government-frontend/blob/90cf5386b165b3a342689744feece7c83449b153/test/presenters/content_item/news_image_test.rb --- app/models/concerns/news_image.rb | 21 +++++++++++++ app/models/speech.rb | 5 ++-- spec/models/speech_spec.rb | 1 + spec/support/concerns/news_image.rb | 46 +++++++++++++++++++++++++++++ 4 files changed, 71 insertions(+), 2 deletions(-) create mode 100644 app/models/concerns/news_image.rb create mode 100644 spec/support/concerns/news_image.rb diff --git a/app/models/concerns/news_image.rb b/app/models/concerns/news_image.rb new file mode 100644 index 0000000000..8406d36efc --- /dev/null +++ b/app/models/concerns/news_image.rb @@ -0,0 +1,21 @@ +module NewsImage + extend ActiveSupport::Concern + + def image + content_store_hash.dig("details", "image") || default_news_image || placeholder_image + end + +private + + def default_news_image + organisation = content_store_hash.dig("links", "primary_publishing_organisation") + organisation[0].dig("details", "default_news_image") if organisation.present? + end + + def placeholder_image + # this image has been uploaded to asset-manager + return { "url" => "https://assets.publishing.service.gov.uk/media/5e985599d3bf7f3fc943bbd8/UK_government_logo.jpg" } if content_store_hash["document_type"] == "world_news_story" + + { "url" => "https://assets.publishing.service.gov.uk/media/5e59279b86650c53b2cefbfe/placeholder.jpg" } + end +end diff --git a/app/models/speech.rb b/app/models/speech.rb index 08986c3ad9..cd571fcc23 100644 --- a/app/models/speech.rb +++ b/app/models/speech.rb @@ -1,5 +1,6 @@ -class Speech < ContentItem - include Organisations +class Speech < ContentItem + include NewsImage + include Organisations include Updatable def contributors diff --git a/spec/models/speech_spec.rb b/spec/models/speech_spec.rb index 019fd41fc3..fb7d07f5bf 100644 --- a/spec/models/speech_spec.rb +++ b/spec/models/speech_spec.rb @@ -1,6 +1,7 @@ RSpec.describe Speech do let(:content_store_response) { GovukSchemas::Example.find("speech", example_name: "speech") } + it_behaves_like "it has news image", "speech" it_behaves_like "it has updates", "speech", "speech-with-updates" it_behaves_like "it has no updates", "speech", "speech" it_behaves_like "it can be withdrawn", "speech", "withdrawn-speech" diff --git a/spec/support/concerns/news_image.rb b/spec/support/concerns/news_image.rb new file mode 100644 index 0000000000..74cd82ac91 --- /dev/null +++ b/spec/support/concerns/news_image.rb @@ -0,0 +1,46 @@ +RSpec.shared_examples "it has news image" do |schema| + let(:content_store_response) { GovukSchemas::Example.find(schema, example_name: schema) } + + before do + content_store_response["details"]["image"] = nil + end + + it "presents the document's image if present" do + image = { "url" => "http://www.test.dev.gov.uk/lead_image.jpg" } + content_store_response["details"]["image"] = image + + expect(described_class.new(content_store_response).image).to eq(image) + end + + it "presents the document's organisation's default_news_image if document's image is not present" do + default_news_image = { "url" => "http://www.test.dev.gov.uk/default_news_image.jpg" } + content_store_response = { + "links" => { + "primary_publishing_organisation" => [ + { "details" => { "default_news_image" => default_news_image } }, + ], + }, + } + + expect(described_class.new(content_store_response).image).to eq(default_news_image) + end + + it "presents a placeholder image if document has no image or default news image" do + placeholder_image = { "url" => "https://assets.publishing.service.gov.uk/media/5e59279b86650c53b2cefbfe/placeholder.jpg" } + content_store_response = { + "links" => { + "primary_publishing_organisation" => [], + }, + } + expect(described_class.new(content_store_response).image).to eq(placeholder_image) + end + + it "presents a placeholder image if world location news has no image or default news image" do + content_store_response = { + "document_type" => "world_news_story", + } + placeholder_image = { "url" => "https://assets.publishing.service.gov.uk/media/5e985599d3bf7f3fc943bbd8/UK_government_logo.jpg" } + + expect(described_class.new(content_store_response).image).to eq(placeholder_image) + end +end From 1e2c12de03ec5174ceee934d4969e547cf9b22ad Mon Sep 17 00:00:00 2001 From: ramya vidapanakal Date: Thu, 16 Jan 2025 16:32:12 +0000 Subject: [PATCH 05/15] Add political concern and tests - Commit audit trail: https://github.com/alphagov/government-frontend/blob/e7b9db33536f487991ba907502080e0625a066cc/app/presenters/content_item/political.rb - Added political tests and included the possibility of having political being false even though it is not likely to be. Reference doc: https://github.com/alphagov/whitehall/blob/13763a5b148ba06cb0e5be4139040dae311fa781/docs/history_mode.md#L11 --- app/models/concerns/political.rb | 32 ++++++++++++++++++++++++++++++ app/models/speech.rb | 1 + spec/models/speech_spec.rb | 1 + spec/support/concerns/political.rb | 28 ++++++++++++++++++++++++++ 4 files changed, 62 insertions(+) create mode 100644 app/models/concerns/political.rb create mode 100644 spec/support/concerns/political.rb diff --git a/app/models/concerns/political.rb b/app/models/concerns/political.rb new file mode 100644 index 0000000000..59b911ae80 --- /dev/null +++ b/app/models/concerns/political.rb @@ -0,0 +1,32 @@ +module Political + extend ActiveSupport::Concern + + included do + def historically_political? + political? && historical? + end + + def publishing_government + content_store_hash.dig( + "links", "government", 0, "title" + ) + end + end + +private + + def political? + content_store_hash.dig("details", "political") + end + + def historical? + government_current = content_store_hash.dig( + "links", "government", 0, "details", "current" + ) + + # Treat no government as not historical + return false if government_current.nil? + + !government_current + end +end diff --git a/app/models/speech.rb b/app/models/speech.rb index cd571fcc23..4547041b98 100644 --- a/app/models/speech.rb +++ b/app/models/speech.rb @@ -1,6 +1,7 @@ class Speech < ContentItem include NewsImage include Organisations + include Political include Updatable def contributors diff --git a/spec/models/speech_spec.rb b/spec/models/speech_spec.rb index fb7d07f5bf..6ddf53c3af 100644 --- a/spec/models/speech_spec.rb +++ b/spec/models/speech_spec.rb @@ -2,6 +2,7 @@ let(:content_store_response) { GovukSchemas::Example.find("speech", example_name: "speech") } it_behaves_like "it has news image", "speech" + it_behaves_like "it has historical government information", "speech", "speech" it_behaves_like "it has updates", "speech", "speech-with-updates" it_behaves_like "it has no updates", "speech", "speech" it_behaves_like "it can be withdrawn", "speech", "withdrawn-speech" diff --git a/spec/support/concerns/political.rb b/spec/support/concerns/political.rb new file mode 100644 index 0000000000..a0a925e02e --- /dev/null +++ b/spec/support/concerns/political.rb @@ -0,0 +1,28 @@ +RSpec.shared_examples "it has historical government information" do |document_type, example_name| + let(:content_store_response) { GovukSchemas::Example.find(document_type, example_name:) } + + it "knows it is part of historical government if it is not the current government" do + content_store_response["links"]["government"][0]["details"]["current"] = false + expect(described_class.new(content_store_response).historically_political?).to be(true) + end + + it "knows it is not part of historical government if it is the current government" do + content_store_response["links"]["government"][0]["details"]["current"] = true + expect(described_class.new(content_store_response).historically_political?).to be(false) + end + + it "knows it would be part of historical government if there is no government" do + content_store_response["links"]["government"][0]["details"]["current"] = nil + expect(described_class.new(content_store_response).historically_political?).to be(false) + end + + it "knows it is not political" do + content_store_response["details"]["political"] = false + expect(described_class.new(content_store_response).historically_political?).to be(false) + end + + it "knows it is publishing government" do + expected_publishing_government = content_store_response.dig("links", "government", 0, "title") + expect(described_class.new(content_store_response).publishing_government).to eq(expected_publishing_government) + end +end From f222a47851884e89f96b4ae42277fb50bc050325 Mon Sep 17 00:00:00 2001 From: ramya vidapanakal Date: Thu, 30 Jan 2025 14:04:17 +0000 Subject: [PATCH 06/15] Modify method in updatable concern - Modified any_updates? method with guard clause - Added a missing test in Updatable concern Add missing test for updatable concern --- app/models/concerns/updatable.rb | 8 +++----- spec/support/concerns/updatable.rb | 10 ++++++++++ 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/app/models/concerns/updatable.rb b/app/models/concerns/updatable.rb index bb654ae691..a7cb306089 100644 --- a/app/models/concerns/updatable.rb +++ b/app/models/concerns/updatable.rb @@ -20,11 +20,9 @@ def initial_publication_date private def any_updates? - if public_updated_at && initial_publication_date - Time.zone.parse(public_updated_at) != Time.zone.parse(initial_publication_date) - else - false - end + return false unless public_updated_at && initial_publication_date + + Time.zone.parse(public_updated_at) != Time.zone.parse(initial_publication_date) end def reverse_chronological_change_history diff --git a/spec/support/concerns/updatable.rb b/spec/support/concerns/updatable.rb index 75a835466a..43610c8db4 100644 --- a/spec/support/concerns/updatable.rb +++ b/spec/support/concerns/updatable.rb @@ -33,4 +33,14 @@ expect(described_class.new(content_store_response).history).to eq([]) end end + + context "when public_updated_at value is empty" do + before do + content_store_response["public_updated_at"] = nil + end + + it "returns nil for updated" do + expect(described_class.new(content_store_response).updated).to be_nil + end + end end From 7d63c39bce506f93e55f9b8aa9c9b518e186c3ab Mon Sep 17 00:00:00 2001 From: ramya vidapanakal Date: Thu, 16 Jan 2025 16:38:10 +0000 Subject: [PATCH 07/15] Add history_notice partial Commit audit trail - https://github.com/alphagov/government-frontend/blob/a7e99cf556dbc5d8b8fab5a317157136cadeb8a0/app/views/shared/_history_notice.html.erb --- app/views/shared/_history_notice.html.erb | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 app/views/shared/_history_notice.html.erb diff --git a/app/views/shared/_history_notice.html.erb b/app/views/shared/_history_notice.html.erb new file mode 100644 index 0000000000..91becded08 --- /dev/null +++ b/app/views/shared/_history_notice.html.erb @@ -0,0 +1,8 @@ +<% if content_item.historically_political? %> + <%= render "govuk_publishing_components/components/notice", { + title: sanitize( + t("shared.historically_political", government: "#{content_item.publishing_government}"), + attributes: %w(lang dir), + ), + } %> +<% end %> From 35428fc9fff9488ff518084b404ff4ebff337f72 Mon Sep 17 00:00:00 2001 From: ramya vidapanakal Date: Wed, 8 Jan 2025 16:21:25 +0000 Subject: [PATCH 08/15] Add locales for shared.historically_political - To handle the translations in history_notice partial - Audit trail: https://github.com/alphagov/government-frontend/tree/90cf5386b165b3a342689744feece7c83449b153/config/locales --- config/locales/ar.yml | 2 ++ config/locales/az.yml | 2 ++ config/locales/be.yml | 2 ++ config/locales/bg.yml | 2 ++ config/locales/bn.yml | 2 ++ config/locales/cs.yml | 2 ++ config/locales/cy.yml | 2 ++ config/locales/da.yml | 2 ++ config/locales/de.yml | 2 ++ config/locales/dr.yml | 2 ++ config/locales/el.yml | 2 ++ config/locales/en.yml | 2 ++ config/locales/es-419.yml | 2 ++ config/locales/es.yml | 2 ++ config/locales/et.yml | 2 ++ config/locales/fa.yml | 2 ++ config/locales/fi.yml | 2 ++ config/locales/fr.yml | 2 ++ config/locales/gd.yml | 2 ++ config/locales/gu.yml | 2 ++ config/locales/he.yml | 2 ++ config/locales/hi.yml | 2 ++ config/locales/hr.yml | 2 ++ config/locales/hu.yml | 2 ++ config/locales/hy.yml | 2 ++ config/locales/id.yml | 2 ++ config/locales/is.yml | 2 ++ config/locales/it.yml | 2 ++ config/locales/ja.yml | 2 ++ config/locales/ka.yml | 2 ++ config/locales/kk.yml | 2 ++ config/locales/ko.yml | 2 ++ config/locales/lt.yml | 2 ++ config/locales/lv.yml | 2 ++ config/locales/ms.yml | 2 ++ config/locales/mt.yml | 2 ++ config/locales/ne.yml | 2 ++ config/locales/nl.yml | 2 ++ config/locales/no.yml | 2 ++ config/locales/pa-pk.yml | 2 ++ config/locales/pa.yml | 2 ++ config/locales/pl.yml | 2 ++ config/locales/ps.yml | 2 ++ config/locales/pt.yml | 2 ++ config/locales/ro.yml | 2 ++ config/locales/ru.yml | 2 ++ config/locales/si.yml | 2 ++ config/locales/sk.yml | 2 ++ config/locales/sl.yml | 2 ++ config/locales/so.yml | 2 ++ config/locales/sq.yml | 2 ++ config/locales/sr.yml | 2 ++ config/locales/sv.yml | 2 ++ config/locales/sw.yml | 2 ++ config/locales/ta.yml | 2 ++ config/locales/th.yml | 2 ++ config/locales/tk.yml | 2 ++ config/locales/tr.yml | 2 ++ config/locales/uk.yml | 2 ++ config/locales/ur.yml | 2 ++ config/locales/uz.yml | 2 ++ config/locales/vi.yml | 2 ++ config/locales/yi.yml | 2 ++ config/locales/zh-hk.yml | 2 ++ config/locales/zh-tw.yml | 2 ++ config/locales/zh.yml | 2 ++ 66 files changed, 132 insertions(+) diff --git a/config/locales/ar.yml b/config/locales/ar.yml index 732fcec01a..8041a36333 100644 --- a/config/locales/ar.yml +++ b/config/locales/ar.yml @@ -1004,6 +1004,8 @@ ar: heading: invalid: title: + shared: + historically_political: تم نشره بموجب %{government} sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/az.yml b/config/locales/az.yml index 935d0c0782..8655a8eeba 100644 --- a/config/locales/az.yml +++ b/config/locales/az.yml @@ -704,6 +704,8 @@ az: heading: invalid: title: + shared: + historically_political: Bu %{government} əsasən dərc edilmişdir sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/be.yml b/config/locales/be.yml index cbc6b86c8c..6b9c709c70 100644 --- a/config/locales/be.yml +++ b/config/locales/be.yml @@ -854,6 +854,8 @@ be: heading: invalid: title: + shared: + historically_political: Гэта было апублікавана пад%{government} sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/bg.yml b/config/locales/bg.yml index 2e87f44dac..43d92f0def 100644 --- a/config/locales/bg.yml +++ b/config/locales/bg.yml @@ -704,6 +704,8 @@ bg: heading: invalid: title: + shared: + historically_political: Това е публикувано под %{government} sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/bn.yml b/config/locales/bn.yml index 6914e421b4..37fdb90f39 100644 --- a/config/locales/bn.yml +++ b/config/locales/bn.yml @@ -704,6 +704,8 @@ bn: heading: invalid: title: + shared: + historically_political: এটি %{government}-এর অধীনে প্রকাশিত হয়েছে sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/cs.yml b/config/locales/cs.yml index 7e03c2cf93..40a68a0302 100644 --- a/config/locales/cs.yml +++ b/config/locales/cs.yml @@ -779,6 +779,8 @@ cs: heading: invalid: title: + shared: + historically_political: Tento dokument byl zveřejněn pod hlavičkou %{government} sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/cy.yml b/config/locales/cy.yml index 9332f89733..e0b1e14f30 100644 --- a/config/locales/cy.yml +++ b/config/locales/cy.yml @@ -1018,6 +1018,8 @@ cy: heading: invalid: title: + shared: + historically_political: Cyhoeddwyd hwn o dan y %{government} sign_up: Cofrestru website: Gwefan when_do_the_clocks_change: diff --git a/config/locales/da.yml b/config/locales/da.yml index 199ea429cd..c42df46d9d 100644 --- a/config/locales/da.yml +++ b/config/locales/da.yml @@ -704,6 +704,8 @@ da: heading: invalid: title: + shared: + historically_political: Dette blev udgivet under %{government} sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/de.yml b/config/locales/de.yml index ccd7853af4..2f8ae07470 100644 --- a/config/locales/de.yml +++ b/config/locales/de.yml @@ -704,6 +704,8 @@ de: heading: invalid: title: + shared: + historically_political: Veröffentlicht wurde dies unter der %{government} sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/dr.yml b/config/locales/dr.yml index 718d3ad34d..a8d73e8708 100644 --- a/config/locales/dr.yml +++ b/config/locales/dr.yml @@ -704,6 +704,8 @@ dr: heading: invalid: title: + shared: + historically_political: این تحت%{government}منتشر شده است sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/el.yml b/config/locales/el.yml index e6d6093220..43c1554be2 100644 --- a/config/locales/el.yml +++ b/config/locales/el.yml @@ -704,6 +704,8 @@ el: heading: invalid: title: + shared: + historically_political: Αυτό δημοσιεύτηκε στο %{government} sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/en.yml b/config/locales/en.yml index b17afc0778..74bb0fc160 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -942,6 +942,8 @@ en: heading: Feedback about your GOV.UK account invalid: There was a problem title: Control how we use information about you + shared: + historically_political: This was published under the %{government} sign_up: Sign up website: Website when_do_the_clocks_change: diff --git a/config/locales/es-419.yml b/config/locales/es-419.yml index 11ec9b9dc3..f44d0a41e9 100644 --- a/config/locales/es-419.yml +++ b/config/locales/es-419.yml @@ -704,6 +704,8 @@ es-419: heading: invalid: title: + shared: + historically_political: Esto fue publicado bajo el %{government} sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/es.yml b/config/locales/es.yml index d6586d1241..900e56f4ee 100644 --- a/config/locales/es.yml +++ b/config/locales/es.yml @@ -704,6 +704,8 @@ es: heading: invalid: title: + shared: + historically_political: Esto se publicó en %{government} sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/et.yml b/config/locales/et.yml index bae8e5ff0c..5caa1f7c8d 100644 --- a/config/locales/et.yml +++ b/config/locales/et.yml @@ -704,6 +704,8 @@ et: heading: invalid: title: + shared: + historically_political: See avaldati %{government} all sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/fa.yml b/config/locales/fa.yml index 4228d5adb6..472cf9b4bc 100644 --- a/config/locales/fa.yml +++ b/config/locales/fa.yml @@ -704,6 +704,8 @@ fa: heading: invalid: title: + shared: + historically_political: این مورد تحت %{government} منتشر شده است sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/fi.yml b/config/locales/fi.yml index 1c20c6329d..7827c92775 100644 --- a/config/locales/fi.yml +++ b/config/locales/fi.yml @@ -704,6 +704,8 @@ fi: heading: invalid: title: + shared: + historically_political: Tämä julkaistiin osoitteessa %{government} sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/fr.yml b/config/locales/fr.yml index b03a8a9e38..040d67bd90 100644 --- a/config/locales/fr.yml +++ b/config/locales/fr.yml @@ -704,6 +704,8 @@ fr: heading: invalid: title: + shared: + historically_political: Cela a été publié dans le cadre du %{government} sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/gd.yml b/config/locales/gd.yml index e08b16b165..0d857b4ed8 100644 --- a/config/locales/gd.yml +++ b/config/locales/gd.yml @@ -854,6 +854,8 @@ gd: heading: invalid: title: + shared: + historically_political: Foilsíodh an doiciméad seo go deimhin faoi chuimsiú an %{government} sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/gu.yml b/config/locales/gu.yml index ce3ee87bba..661e201669 100644 --- a/config/locales/gu.yml +++ b/config/locales/gu.yml @@ -704,6 +704,8 @@ gu: heading: invalid: title: + shared: + historically_political: આ %{government} હેઠળ પ્રકાશિત કરવામાં આવ્યું હતું. sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/he.yml b/config/locales/he.yml index 98575624ba..b513633158 100644 --- a/config/locales/he.yml +++ b/config/locales/he.yml @@ -704,6 +704,8 @@ he: heading: invalid: title: + shared: + historically_political: זה פורסם תחת %{government} sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/hi.yml b/config/locales/hi.yml index 4481bbdbac..b6f5373dba 100644 --- a/config/locales/hi.yml +++ b/config/locales/hi.yml @@ -704,6 +704,8 @@ hi: heading: invalid: title: + shared: + historically_political: यह %{government} के तहत प्रकाशित किया गया था sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/hr.yml b/config/locales/hr.yml index de632f631b..f7e6efab17 100644 --- a/config/locales/hr.yml +++ b/config/locales/hr.yml @@ -779,6 +779,8 @@ hr: heading: invalid: title: + shared: + historically_political: Ovo je objavljeno pod %{government} sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/hu.yml b/config/locales/hu.yml index 3481ba708e..601d2f26ea 100644 --- a/config/locales/hu.yml +++ b/config/locales/hu.yml @@ -704,6 +704,8 @@ hu: heading: invalid: title: + shared: + historically_political: A jelen kiadvány a(z) %{government} alatt került kiadásra sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/hy.yml b/config/locales/hy.yml index 6bd8db3dd1..d1c8f53302 100644 --- a/config/locales/hy.yml +++ b/config/locales/hy.yml @@ -704,6 +704,8 @@ hy: heading: invalid: title: + shared: + historically_political: Սույնը հրապարակվել է %{government} բաժնում sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/id.yml b/config/locales/id.yml index 4968ecd76c..473e211570 100644 --- a/config/locales/id.yml +++ b/config/locales/id.yml @@ -629,6 +629,8 @@ id: heading: invalid: title: + shared: + historically_political: Ini diterbitkan di bawah %{government} sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/is.yml b/config/locales/is.yml index 200fee2065..14d9db909e 100644 --- a/config/locales/is.yml +++ b/config/locales/is.yml @@ -704,6 +704,8 @@ is: heading: invalid: title: + shared: + historically_political: Þetta var gefið út undir %{government} sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/it.yml b/config/locales/it.yml index bcf72a035b..b6816a2fb9 100644 --- a/config/locales/it.yml +++ b/config/locales/it.yml @@ -704,6 +704,8 @@ it: heading: invalid: title: + shared: + historically_political: Questo è stato pubblicato sotto %{government} sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/ja.yml b/config/locales/ja.yml index 458e65e008..b1e7a5f0cd 100644 --- a/config/locales/ja.yml +++ b/config/locales/ja.yml @@ -629,6 +629,8 @@ ja: heading: invalid: title: + shared: + historically_political: 本件は、%{government}で公開されました sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/ka.yml b/config/locales/ka.yml index 0049550656..18d957d287 100644 --- a/config/locales/ka.yml +++ b/config/locales/ka.yml @@ -704,6 +704,8 @@ ka: heading: invalid: title: + shared: + historically_political: ეს გამოქვეყნდა %{government} sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/kk.yml b/config/locales/kk.yml index 112129df53..4c119bb4cc 100644 --- a/config/locales/kk.yml +++ b/config/locales/kk.yml @@ -704,6 +704,8 @@ kk: heading: invalid: title: + shared: + historically_political: Бұл %{government} кезінде жарияланды sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/ko.yml b/config/locales/ko.yml index a5dd854f7b..c6ce1e5255 100644 --- a/config/locales/ko.yml +++ b/config/locales/ko.yml @@ -629,6 +629,8 @@ ko: heading: invalid: title: + shared: + historically_political: 이 문서는 %{government} 산하에 출판되었습니다 sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/lt.yml b/config/locales/lt.yml index dfe47fba8f..79adc3bd67 100644 --- a/config/locales/lt.yml +++ b/config/locales/lt.yml @@ -779,6 +779,8 @@ lt: heading: invalid: title: + shared: + historically_political: Tai buvo publikuota pagal %{government} sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/lv.yml b/config/locales/lv.yml index 5692dc2370..823a23b235 100644 --- a/config/locales/lv.yml +++ b/config/locales/lv.yml @@ -704,6 +704,8 @@ lv: heading: invalid: title: + shared: + historically_political: Šis tika publicēts saskaņā ar %{government} sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/ms.yml b/config/locales/ms.yml index 549f384453..34ad499d50 100644 --- a/config/locales/ms.yml +++ b/config/locales/ms.yml @@ -629,6 +629,8 @@ ms: heading: invalid: title: + shared: + historically_political: Ini telah diterbitkan di bawah %{government} sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/mt.yml b/config/locales/mt.yml index fec5346da3..6b5bb2f063 100644 --- a/config/locales/mt.yml +++ b/config/locales/mt.yml @@ -854,6 +854,8 @@ mt: heading: invalid: title: + shared: + historically_political: Din ma ġietx ippubblikata taħt il- %{government} sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/ne.yml b/config/locales/ne.yml index 9642522d89..3d89864672 100644 --- a/config/locales/ne.yml +++ b/config/locales/ne.yml @@ -704,6 +704,8 @@ ne: heading: invalid: title: + shared: + historically_political: यो %{government} अन्तर्गत प्रकाशित भएको थियो sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/nl.yml b/config/locales/nl.yml index 575609009a..745d71cb5e 100644 --- a/config/locales/nl.yml +++ b/config/locales/nl.yml @@ -704,6 +704,8 @@ nl: heading: invalid: title: + shared: + historically_political: Dit werd gepubliceerd onder de %{government} sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/no.yml b/config/locales/no.yml index a5ef1e4f4f..68fc1232aa 100644 --- a/config/locales/no.yml +++ b/config/locales/no.yml @@ -704,6 +704,8 @@ heading: invalid: title: + shared: + historically_political: Dette ble publisert under %{government} sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/pa-pk.yml b/config/locales/pa-pk.yml index 5d20adb2bc..d0fac1b2a1 100644 --- a/config/locales/pa-pk.yml +++ b/config/locales/pa-pk.yml @@ -704,6 +704,8 @@ pa-pk: heading: invalid: title: + shared: + historically_political: اینوں ایس دے تحت شائع کیتا گیا %{government} sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/pa.yml b/config/locales/pa.yml index b85ae153dd..0a2dcf0a73 100644 --- a/config/locales/pa.yml +++ b/config/locales/pa.yml @@ -704,6 +704,8 @@ pa: heading: invalid: title: + shared: + historically_political: ਇਹ %{government} ਦੇ ਅਧੀਨ ਪ੍ਰਕਾਸ਼ਿਤ ਕੀਤਾ ਗਿਆ ਸੀ sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/pl.yml b/config/locales/pl.yml index 39168176a8..5340e917e8 100644 --- a/config/locales/pl.yml +++ b/config/locales/pl.yml @@ -854,6 +854,8 @@ pl: heading: invalid: title: + shared: + historically_political: Zostało to opublikowane w ramach %{government} sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/ps.yml b/config/locales/ps.yml index 77bbc79d02..b391ae5a21 100644 --- a/config/locales/ps.yml +++ b/config/locales/ps.yml @@ -704,6 +704,8 @@ ps: heading: invalid: title: + shared: + historically_political: دا د%{government} لاندې خپور شوی sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/pt.yml b/config/locales/pt.yml index b30b25248d..07c61a2eb8 100644 --- a/config/locales/pt.yml +++ b/config/locales/pt.yml @@ -704,6 +704,8 @@ pt: heading: invalid: title: + shared: + historically_political: Isto foi publicado no âmbito do %{government} sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/ro.yml b/config/locales/ro.yml index e35526ae68..ca2dcba707 100644 --- a/config/locales/ro.yml +++ b/config/locales/ro.yml @@ -779,6 +779,8 @@ ro: heading: invalid: title: + shared: + historically_political: Acesta a fost publicat sub %{government} sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/ru.yml b/config/locales/ru.yml index 743056addc..a1d34dd058 100644 --- a/config/locales/ru.yml +++ b/config/locales/ru.yml @@ -854,6 +854,8 @@ ru: heading: invalid: title: + shared: + historically_political: Данный документ был опубликован в соответствии %{government} sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/si.yml b/config/locales/si.yml index 741a0e97df..057de09346 100644 --- a/config/locales/si.yml +++ b/config/locales/si.yml @@ -704,6 +704,8 @@ si: heading: invalid: title: + shared: + historically_political: මෙය %{government} යටතේ ප්‍රකාශණය කරණ ලදී sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/sk.yml b/config/locales/sk.yml index e500089272..cfba06c42b 100644 --- a/config/locales/sk.yml +++ b/config/locales/sk.yml @@ -779,6 +779,8 @@ sk: heading: invalid: title: + shared: + historically_political: Táto správa bola uverejnená pod hlavičkou %{government} sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/sl.yml b/config/locales/sl.yml index 90a1c5780f..6cfd1dcf85 100644 --- a/config/locales/sl.yml +++ b/config/locales/sl.yml @@ -854,6 +854,8 @@ sl: heading: invalid: title: + shared: + historically_political: To je bilo objavljeno pod %{government} sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/so.yml b/config/locales/so.yml index bfe928c366..e00067786f 100644 --- a/config/locales/so.yml +++ b/config/locales/so.yml @@ -704,6 +704,8 @@ so: heading: invalid: title: + shared: + historically_political: Tani waxa la daabacayaa iyadoo kujirta %{government} sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/sq.yml b/config/locales/sq.yml index 9c111c8881..9fca4ab8b5 100644 --- a/config/locales/sq.yml +++ b/config/locales/sq.yml @@ -704,6 +704,8 @@ sq: heading: invalid: title: + shared: + historically_political: Kjo u botua nën %{government} sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/sr.yml b/config/locales/sr.yml index b803a7dd32..234310e5da 100644 --- a/config/locales/sr.yml +++ b/config/locales/sr.yml @@ -779,6 +779,8 @@ sr: heading: invalid: title: + shared: + historically_political: Ovo je objavljeno u okviru %{government} sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/sv.yml b/config/locales/sv.yml index f2aef07324..6286db0e29 100644 --- a/config/locales/sv.yml +++ b/config/locales/sv.yml @@ -704,6 +704,8 @@ sv: heading: invalid: title: + shared: + historically_political: Det här publicerades under %{government} sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/sw.yml b/config/locales/sw.yml index 8e7dfb964b..e90866e2ec 100644 --- a/config/locales/sw.yml +++ b/config/locales/sw.yml @@ -704,6 +704,8 @@ sw: heading: invalid: title: + shared: + historically_political: Hii ilichapishwa chini ya %{government} sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/ta.yml b/config/locales/ta.yml index f5263ff71c..c04f3d9f73 100644 --- a/config/locales/ta.yml +++ b/config/locales/ta.yml @@ -704,6 +704,8 @@ ta: heading: invalid: title: + shared: + historically_political: "%{government}-ன்கீழ் இது வெளியிடப்பட்டது" sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/th.yml b/config/locales/th.yml index 59e84da635..b190a434e4 100644 --- a/config/locales/th.yml +++ b/config/locales/th.yml @@ -629,6 +629,8 @@ th: heading: invalid: title: + shared: + historically_political: เผยแพร่ภายใต้ %{government} sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/tk.yml b/config/locales/tk.yml index e36ea5382f..e8d72b977e 100644 --- a/config/locales/tk.yml +++ b/config/locales/tk.yml @@ -704,6 +704,8 @@ tk: heading: invalid: title: + shared: + historically_political: Bu %{government} garamagynda neşir edildi sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/tr.yml b/config/locales/tr.yml index 030a853abf..999a293b30 100644 --- a/config/locales/tr.yml +++ b/config/locales/tr.yml @@ -704,6 +704,8 @@ tr: heading: invalid: title: + shared: + historically_political: "%{government} kapsamında yayınlandı" sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/uk.yml b/config/locales/uk.yml index d39e5e621c..c6cefed263 100644 --- a/config/locales/uk.yml +++ b/config/locales/uk.yml @@ -854,6 +854,8 @@ uk: heading: invalid: title: + shared: + historically_political: Це було опубліковано при %{government} sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/ur.yml b/config/locales/ur.yml index 9aa208b769..5cb7b160d9 100644 --- a/config/locales/ur.yml +++ b/config/locales/ur.yml @@ -704,6 +704,8 @@ ur: heading: invalid: title: + shared: + historically_political: اسے %{government} کے تحت شائع کیا گیا تھا sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/uz.yml b/config/locales/uz.yml index cbbb6768d8..daa6a739c2 100644 --- a/config/locales/uz.yml +++ b/config/locales/uz.yml @@ -704,6 +704,8 @@ uz: heading: invalid: title: + shared: + historically_political: Бу %{government} номидан бўлган sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/vi.yml b/config/locales/vi.yml index 80c7abd509..88aba8d7c9 100644 --- a/config/locales/vi.yml +++ b/config/locales/vi.yml @@ -629,6 +629,8 @@ vi: heading: invalid: title: + shared: + historically_political: Điều này đã được xuất bản trong %{government} sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/yi.yml b/config/locales/yi.yml index 56d1c0e9bf..e97635c75c 100644 --- a/config/locales/yi.yml +++ b/config/locales/yi.yml @@ -704,6 +704,8 @@ yi: heading: invalid: title: + shared: + historically_political: sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/zh-hk.yml b/config/locales/zh-hk.yml index 0242d67143..a5f73d651d 100644 --- a/config/locales/zh-hk.yml +++ b/config/locales/zh-hk.yml @@ -629,6 +629,8 @@ zh-hk: heading: invalid: title: + shared: + historically_political: 此項乃依據 %{government} 發佈 sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/zh-tw.yml b/config/locales/zh-tw.yml index d5016b0c67..789e0474dc 100644 --- a/config/locales/zh-tw.yml +++ b/config/locales/zh-tw.yml @@ -629,6 +629,8 @@ zh-tw: heading: invalid: title: + shared: + historically_political: 此由 %{government} 發佈 sign_up: website: when_do_the_clocks_change: diff --git a/config/locales/zh.yml b/config/locales/zh.yml index 2d5b7a21b1..78d817838d 100644 --- a/config/locales/zh.yml +++ b/config/locales/zh.yml @@ -629,6 +629,8 @@ zh: heading: invalid: title: + shared: + historically_political: 这是由 %{government} 发布的。 sign_up: website: when_do_the_clocks_change: From 121e066c375d6e9fa8afb811b115319b986d6f14 Mon Sep 17 00:00:00 2001 From: ramya vidapanakal Date: Tue, 19 Nov 2024 15:54:16 +0000 Subject: [PATCH 09/15] Add Views for Speeches Copied over the View from government-frontend and made appropriate changes Commit audit trail - https://github.com/alphagov/government-frontend/blob/3c8d12788047ec9ebd5c7f044f4e3f3fce0480ca/app/views/content_items/speech.html.erb - Updated the context and context_locale to reflect the correct translations - Modified code to render publisher_metadata - Modified withdrawn notice code in view - Modified code to render important-metadata - Audit trail for important-metadata change: https://github.com/alphagov/government-frontend/commit/b1da1974729332a7abcea81a34c39400c574ebfb - Updated the component with /heading appropriate parameters instead of title component - Removed the check for important_metadata - Modified code to have important-metadata directly in View instead of in the presenter --- app/views/speech/show.html.erb | 85 +++++++++++++++++++++++++++++++++- 1 file changed, 84 insertions(+), 1 deletion(-) diff --git a/app/views/speech/show.html.erb b/app/views/speech/show.html.erb index 7f135f8aec..dcf0fe951e 100644 --- a/app/views/speech/show.html.erb +++ b/app/views/speech/show.html.erb @@ -1 +1,84 @@ -Placeholder for the speech details page. \ No newline at end of file +<% content_for :title do %> + <%= content_item.title %> - GOV.UK +<% end %> + +<% content_for :extra_headers do %> + <%= render "govuk_publishing_components/components/machine_readable_metadata", { content_item: content_item.to_h, schema: :news_article } %> + +<% end %> + +
+
+ <%= render "govuk_publishing_components/components/heading", { + text: content_item.title, + context: I18n.t("formats.#{content_item.document_type}", count: 1), + context_locale: t_locale_fallback("formats.#{content_item.document_type}", count: 1), + average_title_length: "long", + heading_level: 1, + font_size: "l", + margin_bottom: 8, + } %> +
+ <%= render "shared/translations" %> +
+ <%= render "govuk_publishing_components/components/lead_paragraph", text: content_item.description %> +
+
+ + <%= render "shared/publisher_metadata", locals: { + from: govuk_styled_links_list(content_item.contributors), + first_published: display_date(content_item.initial_publication_date), + last_updated: display_date(content_item.updated), + see_updates_link: true, + } %> + <%= render "shared/history_notice", content_item: content_item %> + <% if content_item.withdrawn? %> + <% withdrawn_time_tag = tag.time(display_date(content_item.withdrawn_at), datetime: content_item.withdrawn_at) %> + + <%= render "govuk_publishing_components/components/notice", { + title: I18n.t("withdrawn_notice.title", schema_name: I18n.t("formats.#{content_item.schema_name}", count: 1, locale: :en).downcase, withdrawn_time: withdrawn_time_tag).html_safe, + description_govspeak: content_item.withdrawn_explanation&.html_safe, + time: withdrawn_time_tag, + lang: "en", + } %> + <% end %> + +
+
+
+
+ <%= content_tag :div, class: "important-metadata inverse-background responsive-bottom-margin" do %> + <% delivered_on = tag.time(display_date(content_item.delivered_on_date), datetime: content_item.delivered_on_date) %> + <% speech_type_explanation = content_item.speech_type_explanation %> + <%= render "govuk_publishing_components/components/metadata", { + inverse: true, + other: { I18n.t("formats.speech.location") => content_item.location , @presenter.delivery_type => "#{delivered_on}#{speech_type_explanation}" }, + margin_bottom: 0, + } %> + <% end %> + + <%= render "components/figure", + src: content_item.image["url"], + alt: content_item.image["alt_text"], + credit: content_item.image["credit"], + caption: content_item.image["caption"] if content_item.image %> + + <%= render "govuk_publishing_components/components/govspeak", { + direction: page_text_direction, + } do %> + <%= raw(content_item.body) %> + <% end %> +
+ + <%= render "components/published_dates", { + published: display_date(content_item.initial_publication_date), + last_updated: display_date(content_item.updated), + history: content_item.history, + } %> +
+
+ + <%= render "shared/sidebar_navigation" %> +
+ +<%= render "shared/footer_navigation" %> From 01b312a614905f19451daca0652ee101389e6faf Mon Sep 17 00:00:00 2001 From: ramya vidapanakal Date: Tue, 19 Nov 2024 15:54:42 +0000 Subject: [PATCH 10/15] Update locales for Speech - All the locale keys for Speech are copied over from government-frontend - Ran the command : rake "consolidation:copy_translation[speech,formats.speech]" Audit trail: https://github.com/alphagov/government-frontend/blob/ed44dc0a2dc1cc14174f99bdf6f1ed57f2bfc77a/config/locales --- config/locales/ar.yml | 4 ++++ config/locales/az.yml | 4 ++++ config/locales/be.yml | 4 ++++ config/locales/bg.yml | 4 ++++ config/locales/bn.yml | 4 ++++ config/locales/cs.yml | 4 ++++ config/locales/cy.yml | 4 ++++ config/locales/da.yml | 4 ++++ config/locales/de.yml | 4 ++++ config/locales/dr.yml | 4 ++++ config/locales/el.yml | 4 ++++ config/locales/en.yml | 4 ++++ config/locales/es-419.yml | 4 ++++ config/locales/es.yml | 4 ++++ config/locales/et.yml | 4 ++++ config/locales/fa.yml | 4 ++++ config/locales/fi.yml | 4 ++++ config/locales/fr.yml | 4 ++++ config/locales/gd.yml | 4 ++++ config/locales/gu.yml | 4 ++++ config/locales/he.yml | 4 ++++ config/locales/hi.yml | 4 ++++ config/locales/hr.yml | 4 ++++ config/locales/hu.yml | 4 ++++ config/locales/hy.yml | 4 ++++ config/locales/id.yml | 4 ++++ config/locales/is.yml | 4 ++++ config/locales/it.yml | 4 ++++ config/locales/ja.yml | 4 ++++ config/locales/ka.yml | 4 ++++ config/locales/kk.yml | 4 ++++ config/locales/ko.yml | 4 ++++ config/locales/lt.yml | 4 ++++ config/locales/lv.yml | 4 ++++ config/locales/ms.yml | 4 ++++ config/locales/mt.yml | 4 ++++ config/locales/ne.yml | 4 ++++ config/locales/nl.yml | 4 ++++ config/locales/no.yml | 4 ++++ config/locales/pa-pk.yml | 4 ++++ config/locales/pa.yml | 4 ++++ config/locales/pl.yml | 4 ++++ config/locales/ps.yml | 4 ++++ config/locales/pt.yml | 4 ++++ config/locales/ro.yml | 4 ++++ config/locales/ru.yml | 4 ++++ config/locales/si.yml | 4 ++++ config/locales/sk.yml | 4 ++++ config/locales/sl.yml | 4 ++++ config/locales/so.yml | 4 ++++ config/locales/sq.yml | 4 ++++ config/locales/sr.yml | 4 ++++ config/locales/sv.yml | 4 ++++ config/locales/sw.yml | 4 ++++ config/locales/ta.yml | 4 ++++ config/locales/th.yml | 4 ++++ config/locales/tk.yml | 4 ++++ config/locales/tr.yml | 4 ++++ config/locales/uk.yml | 4 ++++ config/locales/ur.yml | 4 ++++ config/locales/uz.yml | 4 ++++ config/locales/vi.yml | 4 ++++ config/locales/yi.yml | 4 ++++ config/locales/zh-hk.yml | 4 ++++ config/locales/zh-tw.yml | 4 ++++ config/locales/zh.yml | 4 ++++ 66 files changed, 264 insertions(+) diff --git a/config/locales/ar.yml b/config/locales/ar.yml index 8041a36333..5f4efad39e 100644 --- a/config/locales/ar.yml +++ b/config/locales/ar.yml @@ -793,6 +793,10 @@ ar: please_answer: start_again: your_answers: + speech: + delivered_on: تاريخ التسليم + location: الموقع + written_on: تاريخ الكتابة start_now: take_part: few: diff --git a/config/locales/az.yml b/config/locales/az.yml index 8655a8eeba..7ab7aa79ba 100644 --- a/config/locales/az.yml +++ b/config/locales/az.yml @@ -497,6 +497,10 @@ az: please_answer: start_again: your_answers: + speech: + delivered_on: Çatdırılıb + location: Yer + written_on: Yazılma tarixi start_now: take_part: one: İştirak edin diff --git a/config/locales/be.yml b/config/locales/be.yml index 6b9c709c70..8afed26389 100644 --- a/config/locales/be.yml +++ b/config/locales/be.yml @@ -645,6 +645,10 @@ be: please_answer: start_again: your_answers: + speech: + delivered_on: Дастаўлена + location: Месцазнаходжанне + written_on: Напісана start_now: take_part: few: diff --git a/config/locales/bg.yml b/config/locales/bg.yml index 43d92f0def..181386932a 100644 --- a/config/locales/bg.yml +++ b/config/locales/bg.yml @@ -497,6 +497,10 @@ bg: please_answer: start_again: your_answers: + speech: + delivered_on: Доставено на + location: Местоположение + written_on: Написано на start_now: take_part: one: Вземете участие diff --git a/config/locales/bn.yml b/config/locales/bn.yml index 37fdb90f39..4139a04af8 100644 --- a/config/locales/bn.yml +++ b/config/locales/bn.yml @@ -497,6 +497,10 @@ bn: please_answer: start_again: your_answers: + speech: + delivered_on: পাঠানো হয়েছে + location: অবস্থান + written_on: যখন লেখা হয়েছে start_now: take_part: one: অংশ নিন diff --git a/config/locales/cs.yml b/config/locales/cs.yml index 40a68a0302..83ee3cb186 100644 --- a/config/locales/cs.yml +++ b/config/locales/cs.yml @@ -571,6 +571,10 @@ cs: please_answer: start_again: your_answers: + speech: + delivered_on: Doručeno dne + location: Sídlo + written_on: Odepsané start_now: take_part: few: diff --git a/config/locales/cy.yml b/config/locales/cy.yml index e0b1e14f30..827531f03c 100644 --- a/config/locales/cy.yml +++ b/config/locales/cy.yml @@ -798,6 +798,10 @@ cy: please_answer: Mae angen ateb y cwestiwn hwn start_again: Dechrau eto your_answers: Eich atebion + speech: + delivered_on: Cyflawnwyd ar + location: Lleoliad + written_on: Ysgrifennwyd ar start_now: Dechrau nawr take_part: few: diff --git a/config/locales/da.yml b/config/locales/da.yml index c42df46d9d..8ae78d1d49 100644 --- a/config/locales/da.yml +++ b/config/locales/da.yml @@ -497,6 +497,10 @@ da: please_answer: start_again: your_answers: + speech: + delivered_on: Leveret den + location: Placering + written_on: Skrevet på start_now: take_part: one: Deltage diff --git a/config/locales/de.yml b/config/locales/de.yml index 2f8ae07470..150ef10e1c 100644 --- a/config/locales/de.yml +++ b/config/locales/de.yml @@ -497,6 +497,10 @@ de: please_answer: start_again: your_answers: + speech: + delivered_on: Geliefert am + location: Standort + written_on: Geschrieben am start_now: take_part: one: Teilnehmen diff --git a/config/locales/dr.yml b/config/locales/dr.yml index a8d73e8708..ad774930e6 100644 --- a/config/locales/dr.yml +++ b/config/locales/dr.yml @@ -497,6 +497,10 @@ dr: please_answer: start_again: your_answers: + speech: + delivered_on: تحویل داده شد به + location: موقعیت + written_on: نوشته شده است د start_now: take_part: one: سهم بگیرید diff --git a/config/locales/el.yml b/config/locales/el.yml index 43c1554be2..e14b6ab59a 100644 --- a/config/locales/el.yml +++ b/config/locales/el.yml @@ -497,6 +497,10 @@ el: please_answer: start_again: your_answers: + speech: + delivered_on: Παραδόθηκε στις + location: Τοποθεσία + written_on: Γράφτηκε στις start_now: take_part: one: Συμμετοχή diff --git a/config/locales/en.yml b/config/locales/en.yml index 74bb0fc160..018d826c15 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -502,6 +502,10 @@ en: please_answer: Please answer this question start_again: Start again your_answers: Your answers + speech: + delivered_on: Delivered on + location: Location + written_on: Written on start_now: Start now take_part: one: Take part diff --git a/config/locales/es-419.yml b/config/locales/es-419.yml index f44d0a41e9..24545156da 100644 --- a/config/locales/es-419.yml +++ b/config/locales/es-419.yml @@ -497,6 +497,10 @@ es-419: please_answer: start_again: your_answers: + speech: + delivered_on: Entregado en + location: Ubicación + written_on: Escrito en start_now: take_part: one: Participe diff --git a/config/locales/es.yml b/config/locales/es.yml index 900e56f4ee..1d2cddc2c0 100644 --- a/config/locales/es.yml +++ b/config/locales/es.yml @@ -497,6 +497,10 @@ es: please_answer: start_again: your_answers: + speech: + delivered_on: Entregado el + location: Ubicación + written_on: Escrito en start_now: take_part: one: Participar diff --git a/config/locales/et.yml b/config/locales/et.yml index 5caa1f7c8d..cd888815f8 100644 --- a/config/locales/et.yml +++ b/config/locales/et.yml @@ -497,6 +497,10 @@ et: please_answer: start_again: your_answers: + speech: + delivered_on: Edastati + location: Asukoht + written_on: Kirjutatud start_now: take_part: one: Osa võtma diff --git a/config/locales/fa.yml b/config/locales/fa.yml index 472cf9b4bc..09b0a15a27 100644 --- a/config/locales/fa.yml +++ b/config/locales/fa.yml @@ -497,6 +497,10 @@ fa: please_answer: start_again: your_answers: + speech: + delivered_on: تخویل شده در + location: موقعیت مکانی + written_on: نوشته شده در start_now: take_part: one: مشارکت diff --git a/config/locales/fi.yml b/config/locales/fi.yml index 7827c92775..59bffed337 100644 --- a/config/locales/fi.yml +++ b/config/locales/fi.yml @@ -497,6 +497,10 @@ fi: please_answer: start_again: your_answers: + speech: + delivered_on: Toimitettu + location: Sijainti + written_on: Kirjoitettu start_now: take_part: one: Osallistu diff --git a/config/locales/fr.yml b/config/locales/fr.yml index 040d67bd90..0f79a3dc9b 100644 --- a/config/locales/fr.yml +++ b/config/locales/fr.yml @@ -497,6 +497,10 @@ fr: please_answer: start_again: your_answers: + speech: + delivered_on: Livré le + location: Emplacement + written_on: Rédigé le start_now: take_part: one: Participer diff --git a/config/locales/gd.yml b/config/locales/gd.yml index 0d857b4ed8..c6e94cb21a 100644 --- a/config/locales/gd.yml +++ b/config/locales/gd.yml @@ -645,6 +645,10 @@ gd: please_answer: start_again: your_answers: + speech: + delivered_on: Seachadadh ar + location: Suíomh + written_on: Scríobh an start_now: take_part: few: diff --git a/config/locales/gu.yml b/config/locales/gu.yml index 661e201669..cd0eda8427 100644 --- a/config/locales/gu.yml +++ b/config/locales/gu.yml @@ -497,6 +497,10 @@ gu: please_answer: start_again: your_answers: + speech: + delivered_on: ના રોજ ડિલિવર થયું + location: સ્થાન + written_on: પર લખેલ start_now: take_part: one: ભાગ લો diff --git a/config/locales/he.yml b/config/locales/he.yml index b513633158..d3505f171d 100644 --- a/config/locales/he.yml +++ b/config/locales/he.yml @@ -497,6 +497,10 @@ he: please_answer: start_again: your_answers: + speech: + delivered_on: נמסר ב + location: מיקום + written_on: כתוב על start_now: take_part: one: קח חלק diff --git a/config/locales/hi.yml b/config/locales/hi.yml index b6f5373dba..0291884ef0 100644 --- a/config/locales/hi.yml +++ b/config/locales/hi.yml @@ -497,6 +497,10 @@ hi: please_answer: start_again: your_answers: + speech: + delivered_on: इस पर डिलीवरी किया गया + location: स्थान + written_on: पर लिखा start_now: take_part: one: हिस्सा लें diff --git a/config/locales/hr.yml b/config/locales/hr.yml index f7e6efab17..7936da54a2 100644 --- a/config/locales/hr.yml +++ b/config/locales/hr.yml @@ -571,6 +571,10 @@ hr: please_answer: start_again: your_answers: + speech: + delivered_on: Dostavljeno + location: Mjesto + written_on: Napisano start_now: take_part: few: diff --git a/config/locales/hu.yml b/config/locales/hu.yml index 601d2f26ea..3a59b34944 100644 --- a/config/locales/hu.yml +++ b/config/locales/hu.yml @@ -497,6 +497,10 @@ hu: please_answer: start_again: your_answers: + speech: + delivered_on: 'Kézbesítve ekkor:' + location: Helyszín + written_on: 'Írás időpontja:' start_now: take_part: one: Részvétel diff --git a/config/locales/hy.yml b/config/locales/hy.yml index d1c8f53302..f069578297 100644 --- a/config/locales/hy.yml +++ b/config/locales/hy.yml @@ -497,6 +497,10 @@ hy: please_answer: start_again: your_answers: + speech: + delivered_on: Ուղարկվել է + location: Տեղանք + written_on: Գրվել է start_now: take_part: one: Մասնակցություն diff --git a/config/locales/id.yml b/config/locales/id.yml index 473e211570..2655929473 100644 --- a/config/locales/id.yml +++ b/config/locales/id.yml @@ -423,6 +423,10 @@ id: please_answer: start_again: your_answers: + speech: + delivered_on: Dikirim pada + location: Lokasi + written_on: Ditulis pada start_now: take_part: other: Ikut serta diff --git a/config/locales/is.yml b/config/locales/is.yml index 14d9db909e..3e46f1e3a4 100644 --- a/config/locales/is.yml +++ b/config/locales/is.yml @@ -497,6 +497,10 @@ is: please_answer: start_again: your_answers: + speech: + delivered_on: Afhent þann + location: Staðsetning + written_on: Skrifað þann start_now: take_part: one: Taka þátt diff --git a/config/locales/it.yml b/config/locales/it.yml index b6816a2fb9..cfde1e962d 100644 --- a/config/locales/it.yml +++ b/config/locales/it.yml @@ -497,6 +497,10 @@ it: please_answer: start_again: your_answers: + speech: + delivered_on: Consegnato il + location: Posizione + written_on: Scritto il start_now: take_part: one: Prendere parte diff --git a/config/locales/ja.yml b/config/locales/ja.yml index b1e7a5f0cd..a387cb7e4b 100644 --- a/config/locales/ja.yml +++ b/config/locales/ja.yml @@ -423,6 +423,10 @@ ja: please_answer: start_again: your_answers: + speech: + delivered_on: 配信日: + location: 場所 + written_on: 記述日: start_now: take_part: other: 参加する diff --git a/config/locales/ka.yml b/config/locales/ka.yml index 18d957d287..bf0cb8fba2 100644 --- a/config/locales/ka.yml +++ b/config/locales/ka.yml @@ -497,6 +497,10 @@ ka: please_answer: start_again: your_answers: + speech: + delivered_on: გადაეცა + location: მდებარეობა + written_on: დაწერილი start_now: take_part: one: მონაწილეობის მიღება diff --git a/config/locales/kk.yml b/config/locales/kk.yml index 4c119bb4cc..d6f2972ab5 100644 --- a/config/locales/kk.yml +++ b/config/locales/kk.yml @@ -497,6 +497,10 @@ kk: please_answer: start_again: your_answers: + speech: + delivered_on: Жеткізілген күні + location: Орны + written_on: Жазылған күні start_now: take_part: one: Қатысу diff --git a/config/locales/ko.yml b/config/locales/ko.yml index c6ce1e5255..e8a58e7cce 100644 --- a/config/locales/ko.yml +++ b/config/locales/ko.yml @@ -423,6 +423,10 @@ ko: please_answer: start_again: your_answers: + speech: + delivered_on: 행사 일시 + location: 위치 + written_on: 작성 날짜 start_now: take_part: other: 참여하기 diff --git a/config/locales/lt.yml b/config/locales/lt.yml index 79adc3bd67..d1a247cf9c 100644 --- a/config/locales/lt.yml +++ b/config/locales/lt.yml @@ -571,6 +571,10 @@ lt: please_answer: start_again: your_answers: + speech: + delivered_on: Pateikta + location: Vieta + written_on: Parašymo data start_now: take_part: few: diff --git a/config/locales/lv.yml b/config/locales/lv.yml index 823a23b235..77f16176da 100644 --- a/config/locales/lv.yml +++ b/config/locales/lv.yml @@ -497,6 +497,10 @@ lv: please_answer: start_again: your_answers: + speech: + delivered_on: Piegādāts + location: Atrašanās vieta + written_on: Uzrakstīts uz start_now: take_part: one: Piedalīties diff --git a/config/locales/ms.yml b/config/locales/ms.yml index 34ad499d50..62d4882347 100644 --- a/config/locales/ms.yml +++ b/config/locales/ms.yml @@ -423,6 +423,10 @@ ms: please_answer: start_again: your_answers: + speech: + delivered_on: Dihantar pada + location: Lokasi + written_on: Ditulis pada start_now: take_part: other: Ambil bahagian diff --git a/config/locales/mt.yml b/config/locales/mt.yml index 6b5bb2f063..d0c9efd97c 100644 --- a/config/locales/mt.yml +++ b/config/locales/mt.yml @@ -645,6 +645,10 @@ mt: please_answer: start_again: your_answers: + speech: + delivered_on: Kunsinnat f' + location: Post + written_on: Miktub nhar start_now: take_part: few: diff --git a/config/locales/ne.yml b/config/locales/ne.yml index 3d89864672..7a1507846a 100644 --- a/config/locales/ne.yml +++ b/config/locales/ne.yml @@ -497,6 +497,10 @@ ne: please_answer: start_again: your_answers: + speech: + delivered_on: मा वितरण गरियो + location: स्थान + written_on: मा लेखिएको छ start_now: take_part: one: सहभागी हुनु diff --git a/config/locales/nl.yml b/config/locales/nl.yml index 745d71cb5e..bc99b771dc 100644 --- a/config/locales/nl.yml +++ b/config/locales/nl.yml @@ -497,6 +497,10 @@ nl: please_answer: start_again: your_answers: + speech: + delivered_on: Geleverd op + location: Plaats + written_on: Geschreven op start_now: take_part: one: Neem deel diff --git a/config/locales/no.yml b/config/locales/no.yml index 68fc1232aa..3bd0c1c5b6 100644 --- a/config/locales/no.yml +++ b/config/locales/no.yml @@ -497,6 +497,10 @@ please_answer: start_again: your_answers: + speech: + delivered_on: Levert på + location: Plassering + written_on: Skrevet på start_now: take_part: one: Delta diff --git a/config/locales/pa-pk.yml b/config/locales/pa-pk.yml index d0fac1b2a1..ba138a6929 100644 --- a/config/locales/pa-pk.yml +++ b/config/locales/pa-pk.yml @@ -497,6 +497,10 @@ pa-pk: please_answer: start_again: your_answers: + speech: + delivered_on: حوالے کیتا گیا + location: تھاں + written_on: ایس تے لکھیا گیا start_now: take_part: one: حصہ لوؤ diff --git a/config/locales/pa.yml b/config/locales/pa.yml index 0a2dcf0a73..3885ce833c 100644 --- a/config/locales/pa.yml +++ b/config/locales/pa.yml @@ -497,6 +497,10 @@ pa: please_answer: start_again: your_answers: + speech: + delivered_on: "'ਤੇ ਦਿੱਤਾ ਗਿਆ" + location: ਟਿਕਾਣਾ + written_on: "'ਤੇ ਲਿਖਿਆ ਗਿਆ" start_now: take_part: one: ਹਿੱਸਾ ਲੈਣਾ diff --git a/config/locales/pl.yml b/config/locales/pl.yml index 5340e917e8..81274a90d9 100644 --- a/config/locales/pl.yml +++ b/config/locales/pl.yml @@ -645,6 +645,10 @@ pl: please_answer: start_again: your_answers: + speech: + delivered_on: Dostarczono o + location: Lokalizacja + written_on: Napisano o start_now: take_part: few: diff --git a/config/locales/ps.yml b/config/locales/ps.yml index b391ae5a21..fbc2f272bc 100644 --- a/config/locales/ps.yml +++ b/config/locales/ps.yml @@ -497,6 +497,10 @@ ps: please_answer: start_again: your_answers: + speech: + delivered_on: ته وسپارل شو + location: ځای + written_on: باندې لیکل شوی start_now: take_part: one: برخه واخلئ diff --git a/config/locales/pt.yml b/config/locales/pt.yml index 07c61a2eb8..d6219561a8 100644 --- a/config/locales/pt.yml +++ b/config/locales/pt.yml @@ -497,6 +497,10 @@ pt: please_answer: start_again: your_answers: + speech: + delivered_on: Entregue em + location: Local + written_on: Escrito em start_now: take_part: one: Participar diff --git a/config/locales/ro.yml b/config/locales/ro.yml index ca2dcba707..0d0c6647d1 100644 --- a/config/locales/ro.yml +++ b/config/locales/ro.yml @@ -571,6 +571,10 @@ ro: please_answer: start_again: your_answers: + speech: + delivered_on: Livrat pe + location: Locație + written_on: Scris pe start_now: take_part: few: diff --git a/config/locales/ru.yml b/config/locales/ru.yml index a1d34dd058..4de4f73751 100644 --- a/config/locales/ru.yml +++ b/config/locales/ru.yml @@ -645,6 +645,10 @@ ru: please_answer: start_again: your_answers: + speech: + delivered_on: Доставлено на + location: Место + written_on: Написано на start_now: take_part: few: diff --git a/config/locales/si.yml b/config/locales/si.yml index 057de09346..6c23c244f5 100644 --- a/config/locales/si.yml +++ b/config/locales/si.yml @@ -497,6 +497,10 @@ si: please_answer: start_again: your_answers: + speech: + delivered_on: බෙදාහරින ලද දිනය + location: ස්ථානය + written_on: ලියන ලද දිනය start_now: take_part: one: සහභාගී වන්න diff --git a/config/locales/sk.yml b/config/locales/sk.yml index cfba06c42b..d7f13270ed 100644 --- a/config/locales/sk.yml +++ b/config/locales/sk.yml @@ -571,6 +571,10 @@ sk: please_answer: start_again: your_answers: + speech: + delivered_on: Doručené dňa + location: Umiestnenie + written_on: Napísané dňa start_now: take_part: few: diff --git a/config/locales/sl.yml b/config/locales/sl.yml index 6cfd1dcf85..24c33b49e4 100644 --- a/config/locales/sl.yml +++ b/config/locales/sl.yml @@ -645,6 +645,10 @@ sl: please_answer: start_again: your_answers: + speech: + delivered_on: 'Podano dne:' + location: Lokacija + written_on: Napisano dne start_now: take_part: few: diff --git a/config/locales/so.yml b/config/locales/so.yml index e00067786f..d1bf8a68d5 100644 --- a/config/locales/so.yml +++ b/config/locales/so.yml @@ -497,6 +497,10 @@ so: please_answer: start_again: your_answers: + speech: + delivered_on: Loo diray + location: Goobta + written_on: Lagu qoray start_now: take_part: one: Ka qeybgal diff --git a/config/locales/sq.yml b/config/locales/sq.yml index 9fca4ab8b5..9646081b0a 100644 --- a/config/locales/sq.yml +++ b/config/locales/sq.yml @@ -497,6 +497,10 @@ sq: please_answer: start_again: your_answers: + speech: + delivered_on: Dorëzuar më + location: Vendndodhja + written_on: Shkruar në start_now: take_part: one: Merr pjesë diff --git a/config/locales/sr.yml b/config/locales/sr.yml index 234310e5da..a03f72ab1d 100644 --- a/config/locales/sr.yml +++ b/config/locales/sr.yml @@ -571,6 +571,10 @@ sr: please_answer: start_again: your_answers: + speech: + delivered_on: Isporučeno + location: Lokacija + written_on: Napisano start_now: take_part: few: diff --git a/config/locales/sv.yml b/config/locales/sv.yml index 6286db0e29..314218fcec 100644 --- a/config/locales/sv.yml +++ b/config/locales/sv.yml @@ -497,6 +497,10 @@ sv: please_answer: start_again: your_answers: + speech: + delivered_on: Levererad den + location: Plats + written_on: Skrivet på start_now: take_part: one: Delta diff --git a/config/locales/sw.yml b/config/locales/sw.yml index e90866e2ec..56c07aa7ce 100644 --- a/config/locales/sw.yml +++ b/config/locales/sw.yml @@ -497,6 +497,10 @@ sw: please_answer: start_again: your_answers: + speech: + delivered_on: Iliwasilishwa mnamo + location: Mahali + written_on: Iliandikwa mnamo start_now: take_part: one: Shiriki diff --git a/config/locales/ta.yml b/config/locales/ta.yml index c04f3d9f73..15eef13939 100644 --- a/config/locales/ta.yml +++ b/config/locales/ta.yml @@ -497,6 +497,10 @@ ta: please_answer: start_again: your_answers: + speech: + delivered_on: ஒப்படைத்த தேதி + location: இருப்பிடம் + written_on: எழுதப்பட்ட தேதி start_now: take_part: one: பங்கெடுத்தல் diff --git a/config/locales/th.yml b/config/locales/th.yml index b190a434e4..8b2694122c 100644 --- a/config/locales/th.yml +++ b/config/locales/th.yml @@ -423,6 +423,10 @@ th: please_answer: start_again: your_answers: + speech: + delivered_on: ส่งมอบเมื่อ + location: ตำแหน่งที่ตั้ง + written_on: เขียนเมื่อ start_now: take_part: other: มีส่วนร่วม diff --git a/config/locales/tk.yml b/config/locales/tk.yml index e8d72b977e..55d0256c9d 100644 --- a/config/locales/tk.yml +++ b/config/locales/tk.yml @@ -497,6 +497,10 @@ tk: please_answer: start_again: your_answers: + speech: + delivered_on: 'Gowşuryldy:' + location: Ýerleşýän ýeri + written_on: 'Ýazylan:' start_now: take_part: one: Gatnaşmak diff --git a/config/locales/tr.yml b/config/locales/tr.yml index 999a293b30..89166c6727 100644 --- a/config/locales/tr.yml +++ b/config/locales/tr.yml @@ -497,6 +497,10 @@ tr: please_answer: start_again: your_answers: + speech: + delivered_on: 'Teslim tarihi:' + location: Konum + written_on: 'Yazılma tarihi:' start_now: take_part: one: Katıl diff --git a/config/locales/uk.yml b/config/locales/uk.yml index c6cefed263..481b6e949c 100644 --- a/config/locales/uk.yml +++ b/config/locales/uk.yml @@ -645,6 +645,10 @@ uk: please_answer: start_again: your_answers: + speech: + delivered_on: Доставлено + location: Розташування + written_on: Написано start_now: take_part: few: diff --git a/config/locales/ur.yml b/config/locales/ur.yml index 5cb7b160d9..907e19937a 100644 --- a/config/locales/ur.yml +++ b/config/locales/ur.yml @@ -497,6 +497,10 @@ ur: please_answer: start_again: your_answers: + speech: + delivered_on: ترسیل کردہ بتاریخ + location: مقام + written_on: تحریر کردہ بتاریخ start_now: take_part: one: شرکت کریں diff --git a/config/locales/uz.yml b/config/locales/uz.yml index daa6a739c2..23ff746209 100644 --- a/config/locales/uz.yml +++ b/config/locales/uz.yml @@ -497,6 +497,10 @@ uz: please_answer: start_again: your_answers: + speech: + delivered_on: Етказиб берилди + location: Жойлашиш жойи + written_on: Ёзилган start_now: take_part: one: Иштирок этиш diff --git a/config/locales/vi.yml b/config/locales/vi.yml index 88aba8d7c9..6e75eb2429 100644 --- a/config/locales/vi.yml +++ b/config/locales/vi.yml @@ -423,6 +423,10 @@ vi: please_answer: start_again: your_answers: + speech: + delivered_on: Ngày giao + location: Vị trí + written_on: Ngày viết start_now: take_part: other: Tham gia diff --git a/config/locales/yi.yml b/config/locales/yi.yml index e97635c75c..6cbf2a9220 100644 --- a/config/locales/yi.yml +++ b/config/locales/yi.yml @@ -497,6 +497,10 @@ yi: please_answer: start_again: your_answers: + speech: + delivered_on: + location: + written_on: start_now: take_part: one: diff --git a/config/locales/zh-hk.yml b/config/locales/zh-hk.yml index a5f73d651d..40ee9bd642 100644 --- a/config/locales/zh-hk.yml +++ b/config/locales/zh-hk.yml @@ -423,6 +423,10 @@ zh-hk: please_answer: start_again: your_answers: + speech: + delivered_on: 交付時間 + location: 地點 + written_on: 記載於 start_now: take_part: other: 參加活動 diff --git a/config/locales/zh-tw.yml b/config/locales/zh-tw.yml index 789e0474dc..7097f75824 100644 --- a/config/locales/zh-tw.yml +++ b/config/locales/zh-tw.yml @@ -423,6 +423,10 @@ zh-tw: please_answer: start_again: your_answers: + speech: + delivered_on: 運送 + location: 地點 + written_on: 寫在 start_now: take_part: other: 參與 diff --git a/config/locales/zh.yml b/config/locales/zh.yml index 78d817838d..3e5391ec5b 100644 --- a/config/locales/zh.yml +++ b/config/locales/zh.yml @@ -423,6 +423,10 @@ zh: please_answer: start_again: your_answers: + speech: + delivered_on: 提交日期 + location: 位置 + written_on: 书写日期 start_now: take_part: other: 参加 From 3ecb0cd76cccd7fcd1a73114a5cfde45df9b5bd5 Mon Sep 17 00:00:00 2001 From: ramya vidapanakal Date: Fri, 17 Jan 2025 17:38:19 +0000 Subject: [PATCH 11/15] Add locales for written_statement - Ran the command: consolidation:copy_translation[content_item.schema_name.written_statement,formats.written_statement] Audit trail: https://github.com/alphagov/government-frontend/tree/ed44dc0a2dc1cc14174f99bdf6f1ed57f2bfc77a/config/locales --- config/locales/ar.yml | 7 +++++++ config/locales/az.yml | 3 +++ config/locales/be.yml | 5 +++++ config/locales/bg.yml | 3 +++ config/locales/bn.yml | 3 +++ config/locales/cs.yml | 4 ++++ config/locales/cy.yml | 7 +++++++ config/locales/da.yml | 3 +++ config/locales/de.yml | 3 +++ config/locales/dr.yml | 3 +++ config/locales/el.yml | 3 +++ config/locales/en.yml | 3 +++ config/locales/es-419.yml | 3 +++ config/locales/es.yml | 3 +++ config/locales/et.yml | 3 +++ config/locales/fa.yml | 3 +++ config/locales/fi.yml | 3 +++ config/locales/fr.yml | 3 +++ config/locales/gd.yml | 5 +++++ config/locales/gu.yml | 3 +++ config/locales/he.yml | 3 +++ config/locales/hi.yml | 3 +++ config/locales/hr.yml | 4 ++++ config/locales/hu.yml | 3 +++ config/locales/hy.yml | 3 +++ config/locales/id.yml | 2 ++ config/locales/is.yml | 3 +++ config/locales/it.yml | 3 +++ config/locales/ja.yml | 2 ++ config/locales/ka.yml | 3 +++ config/locales/kk.yml | 3 +++ config/locales/ko.yml | 2 ++ config/locales/lt.yml | 4 ++++ config/locales/lv.yml | 3 +++ config/locales/ms.yml | 2 ++ config/locales/mt.yml | 5 +++++ config/locales/ne.yml | 3 +++ config/locales/nl.yml | 3 +++ config/locales/no.yml | 3 +++ config/locales/pa-pk.yml | 3 +++ config/locales/pa.yml | 3 +++ config/locales/pl.yml | 5 +++++ config/locales/ps.yml | 3 +++ config/locales/pt.yml | 3 +++ config/locales/ro.yml | 4 ++++ config/locales/ru.yml | 5 +++++ config/locales/si.yml | 3 +++ config/locales/sk.yml | 4 ++++ config/locales/sl.yml | 5 +++++ config/locales/so.yml | 3 +++ config/locales/sq.yml | 3 +++ config/locales/sr.yml | 4 ++++ config/locales/sv.yml | 3 +++ config/locales/sw.yml | 3 +++ config/locales/ta.yml | 3 +++ config/locales/th.yml | 2 ++ config/locales/tk.yml | 3 +++ config/locales/tr.yml | 3 +++ config/locales/uk.yml | 5 +++++ config/locales/ur.yml | 3 +++ config/locales/uz.yml | 3 +++ config/locales/vi.yml | 2 ++ config/locales/yi.yml | 3 +++ config/locales/zh-hk.yml | 2 ++ config/locales/zh-tw.yml | 2 ++ config/locales/zh.yml | 2 ++ 66 files changed, 217 insertions(+) diff --git a/config/locales/ar.yml b/config/locales/ar.yml index 5f4efad39e..5d12d1610d 100644 --- a/config/locales/ar.yml +++ b/config/locales/ar.yml @@ -823,6 +823,13 @@ ar: still_current_at: لا يزال ساريًا في summary: ملخص updated: تاريخ التحديث + written_statement: + few: + many: + one: بيان خطي للبرلمان + other: بيانات خطية للبرلمان + two: + zero: help: index: about: diff --git a/config/locales/az.yml b/config/locales/az.yml index 7ab7aa79ba..30ef10820b 100644 --- a/config/locales/az.yml +++ b/config/locales/az.yml @@ -523,6 +523,9 @@ az: still_current_at: Hələ də qüvvədədir summary: İcmal updated: Yenilənib + written_statement: + one: Parlamentə yazılı müraciət + other: Parlamentə yazılı müraciətlər help: index: about: diff --git a/config/locales/be.yml b/config/locales/be.yml index 8afed26389..a47f721832 100644 --- a/config/locales/be.yml +++ b/config/locales/be.yml @@ -673,6 +673,11 @@ be: still_current_at: Усё яшчэ актуальна summary: Рэзюмэ updated: Адноўлена + written_statement: + few: + many: + one: Пісьмовая заява ў парламенце + other: Пісьмовыя заявы ў парламенце help: index: about: diff --git a/config/locales/bg.yml b/config/locales/bg.yml index 181386932a..ed8d4daa2d 100644 --- a/config/locales/bg.yml +++ b/config/locales/bg.yml @@ -523,6 +523,9 @@ bg: still_current_at: Все още актуален в summary: Обобщение updated: Актуализиран + written_statement: + one: Писмено изявление в Парламента + other: Писмени изявления в Парламента help: index: about: diff --git a/config/locales/bn.yml b/config/locales/bn.yml index 4139a04af8..4a4a782d9c 100644 --- a/config/locales/bn.yml +++ b/config/locales/bn.yml @@ -523,6 +523,9 @@ bn: still_current_at: এখানে এখনও চলমান summary: সারসংক্ষেপ updated: হালনাগাদ করা হয়েছে + written_statement: + one: সংসদে লিখিত বিবৃতি + other: সংসদে লিখিত বিবৃতিসমূহ help: index: about: diff --git a/config/locales/cs.yml b/config/locales/cs.yml index 83ee3cb186..31b260fb98 100644 --- a/config/locales/cs.yml +++ b/config/locales/cs.yml @@ -598,6 +598,10 @@ cs: still_current_at: Stále aktuální na summary: Shrnutí updated: Aktualizováno + written_statement: + few: + one: Písemné prohlášení pro Parlament + other: Písemná prohlášení pro Parlament help: index: about: diff --git a/config/locales/cy.yml b/config/locales/cy.yml index 827531f03c..03100ec521 100644 --- a/config/locales/cy.yml +++ b/config/locales/cy.yml @@ -828,6 +828,13 @@ cy: still_current_at: Yn gyfredol o hyd ar summary: Crynodeb updated: Diweddarwyd + written_statement: + few: + many: + one: Datganiad ysgrifenedig i'r Senedd + other: Datganiadau ysgrifenedig i'r Senedd + two: + zero: help: index: about: Ynghylch GOV.UK diff --git a/config/locales/da.yml b/config/locales/da.yml index 8ae78d1d49..c9195c5488 100644 --- a/config/locales/da.yml +++ b/config/locales/da.yml @@ -523,6 +523,9 @@ da: still_current_at: Stadig aktuel på summary: Resumé updated: Opdateret + written_statement: + one: Mundtlig erklæring til Parlamentet + other: Mundtlige erklæring til Parlamentet help: index: about: diff --git a/config/locales/de.yml b/config/locales/de.yml index 150ef10e1c..d25a2a8979 100644 --- a/config/locales/de.yml +++ b/config/locales/de.yml @@ -523,6 +523,9 @@ de: still_current_at: Aktuell noch bei summary: Zusammenfassung updated: Aktualisiert + written_statement: + one: Schriftliche Erklärung vor dem Parlament + other: Schriftliche Erklärungen vor dem Parlament help: index: about: diff --git a/config/locales/dr.yml b/config/locales/dr.yml index ad774930e6..ccad053b1e 100644 --- a/config/locales/dr.yml +++ b/config/locales/dr.yml @@ -523,6 +523,9 @@ dr: still_current_at: هنور هم در summary: خلاصه updated: آپدیت شده + written_statement: + one: بیانیهء کتبی به پارلمان + other: بیانیه هایی کتبی به پارلمان help: index: about: diff --git a/config/locales/el.yml b/config/locales/el.yml index e14b6ab59a..e884e00f46 100644 --- a/config/locales/el.yml +++ b/config/locales/el.yml @@ -523,6 +523,9 @@ el: still_current_at: Ακόμα επίκαιρο στο summary: Περίληψη updated: Ενημερωμένο + written_statement: + one: Γραπτή δήλωση στη Βουλή + other: Γραπτές δηλώσεις στη Βουλή help: index: about: diff --git a/config/locales/en.yml b/config/locales/en.yml index 018d826c15..eb82c4b9b5 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -528,6 +528,9 @@ en: still_current_at: Still current at summary: Summary updated: Updated + written_statement: + one: Written statement to Parliament + other: Written statements to Parliament help: index: about: About GOV.UK diff --git a/config/locales/es-419.yml b/config/locales/es-419.yml index 24545156da..c0cb169e6a 100644 --- a/config/locales/es-419.yml +++ b/config/locales/es-419.yml @@ -523,6 +523,9 @@ es-419: still_current_at: Todavía vigente en summary: Resumen updated: Actualizado + written_statement: + one: Declaración escrita ante el Parlamento + other: Declaraciones escritas ante el Parlamento help: index: about: diff --git a/config/locales/es.yml b/config/locales/es.yml index 1d2cddc2c0..429985484e 100644 --- a/config/locales/es.yml +++ b/config/locales/es.yml @@ -523,6 +523,9 @@ es: still_current_at: Sigue siendo actual en summary: Resumen updated: Actualizado + written_statement: + one: Declaración escrita + other: Declaraciones escritas help: index: about: diff --git a/config/locales/et.yml b/config/locales/et.yml index cd888815f8..f6d996c8c0 100644 --- a/config/locales/et.yml +++ b/config/locales/et.yml @@ -523,6 +523,9 @@ et: still_current_at: Ikka praegune summary: Kokkuvõte updated: Uuendatud + written_statement: + one: Kirjalik avaldus parlamendile + other: Kirjalikud avaldused parlamendile help: index: about: diff --git a/config/locales/fa.yml b/config/locales/fa.yml index 09b0a15a27..444197b324 100644 --- a/config/locales/fa.yml +++ b/config/locales/fa.yml @@ -523,6 +523,9 @@ fa: still_current_at: همچنان جاری است در summary: خلاصه updated: بروز شده + written_statement: + one: بیانیه کتبی به پارلمان + other: بیانیه‌های کتبی به پارلمان help: index: about: diff --git a/config/locales/fi.yml b/config/locales/fi.yml index 59bffed337..3b7ffbb07d 100644 --- a/config/locales/fi.yml +++ b/config/locales/fi.yml @@ -523,6 +523,9 @@ fi: still_current_at: Vielä ajankohtainen klo summary: Yhteenveto updated: Päivitetty + written_statement: + one: Kirjallinen lausuma parlamentille + other: Kirjallinen lausumat parlamentille help: index: about: diff --git a/config/locales/fr.yml b/config/locales/fr.yml index 0f79a3dc9b..0853296fb0 100644 --- a/config/locales/fr.yml +++ b/config/locales/fr.yml @@ -523,6 +523,9 @@ fr: still_current_at: Toujours d'actualité à summary: Sommaire updated: Mis à jour + written_statement: + one: Déclaration écrite au Parlement + other: Déclarations écrites au Parlement help: index: about: diff --git a/config/locales/gd.yml b/config/locales/gd.yml index c6e94cb21a..898ac08a25 100644 --- a/config/locales/gd.yml +++ b/config/locales/gd.yml @@ -673,6 +673,11 @@ gd: still_current_at: Bailí i gcónaí ar summary: Coimriú updated: Athnuachan + written_statement: + few: + one: Dearbhú i scríbhinn don Pharlaimint + other: Ráitis i scríbhinn don Pharlaimint + two: help: index: about: diff --git a/config/locales/gu.yml b/config/locales/gu.yml index cd0eda8427..0e24c0fdf4 100644 --- a/config/locales/gu.yml +++ b/config/locales/gu.yml @@ -523,6 +523,9 @@ gu: still_current_at: પર હજુ પણ ચાલુ summary: સારાંશ updated: અપડેટ કરેલ + written_statement: + one: સંસદમાં લેખિત નિવેદન + other: સંસદમાં લેખિત નિવેદનો help: index: about: diff --git a/config/locales/he.yml b/config/locales/he.yml index d3505f171d..3a0971083a 100644 --- a/config/locales/he.yml +++ b/config/locales/he.yml @@ -523,6 +523,9 @@ he: still_current_at: עדיין עדכני ב summary: סיכום updated: מעודכן + written_statement: + one: הצהרה בכתב לפרלמנט + other: הצהרות בכתב לפרלמנט help: index: about: diff --git a/config/locales/hi.yml b/config/locales/hi.yml index 0291884ef0..e0f5e6c036 100644 --- a/config/locales/hi.yml +++ b/config/locales/hi.yml @@ -523,6 +523,9 @@ hi: still_current_at: अभी भी चालू है summary: सारांश updated: अपडेट किया गया + written_statement: + one: संसद में लिखित बयान + other: संसद में लिखित बयान help: index: about: diff --git a/config/locales/hr.yml b/config/locales/hr.yml index 7936da54a2..7e2cbf9809 100644 --- a/config/locales/hr.yml +++ b/config/locales/hr.yml @@ -598,6 +598,10 @@ hr: still_current_at: Još uvijek aktualno u summary: Sažetak updated: Ažurirano + written_statement: + few: + one: Pismena izjava Parlamentu + other: Pismene izjave Parlamentu help: index: about: diff --git a/config/locales/hu.yml b/config/locales/hu.yml index 3a59b34944..e73da64e67 100644 --- a/config/locales/hu.yml +++ b/config/locales/hu.yml @@ -523,6 +523,9 @@ hu: still_current_at: 'Még érvényben itt:' summary: Összefoglalás updated: Frissítve + written_statement: + one: Írásbeli parlamenti nyilatkozat + other: Írásbeli parlamenti nyilatkozatok help: index: about: diff --git a/config/locales/hy.yml b/config/locales/hy.yml index f069578297..68e7d3f32b 100644 --- a/config/locales/hy.yml +++ b/config/locales/hy.yml @@ -523,6 +523,9 @@ hy: still_current_at: Դեռևս ընթացիկ summary: Ամփոփ updated: Թարմացված + written_statement: + one: Խորհրդարանին ուղղված գրավոր հայտարարություն + other: Խորհրդարանին ուղղված գրավոր հայտարարություններ help: index: about: diff --git a/config/locales/id.yml b/config/locales/id.yml index 2655929473..fb44fc9800 100644 --- a/config/locales/id.yml +++ b/config/locales/id.yml @@ -448,6 +448,8 @@ id: still_current_at: Masih berlaku di summary: Rangkuman updated: Diperbarui + written_statement: + other: Pernyataan tertulis kepada Parlemen help: index: about: diff --git a/config/locales/is.yml b/config/locales/is.yml index 3e46f1e3a4..1426be7291 100644 --- a/config/locales/is.yml +++ b/config/locales/is.yml @@ -523,6 +523,9 @@ is: still_current_at: Enn uppfært þann summary: Samantekt updated: Uppfært + written_statement: + one: Skrifleg yfirlýsing til Þingsins + other: Skriflegar yfirlýsingar til Þingsins help: index: about: diff --git a/config/locales/it.yml b/config/locales/it.yml index cfde1e962d..043114d5f8 100644 --- a/config/locales/it.yml +++ b/config/locales/it.yml @@ -523,6 +523,9 @@ it: still_current_at: Ancora in corso il summary: Riepilogo updated: Aggiornato + written_statement: + one: Dichiarazione scritta al Parlamento + other: Dichiarazioni scritte al Parlamento help: index: about: diff --git a/config/locales/ja.yml b/config/locales/ja.yml index a387cb7e4b..fa252db6c8 100644 --- a/config/locales/ja.yml +++ b/config/locales/ja.yml @@ -448,6 +448,8 @@ ja: still_current_at: 現状: summary: 概要 updated: 更新済み + written_statement: + other: 議会への書面による声明 help: index: about: diff --git a/config/locales/ka.yml b/config/locales/ka.yml index bf0cb8fba2..7392e0be2f 100644 --- a/config/locales/ka.yml +++ b/config/locales/ka.yml @@ -523,6 +523,9 @@ ka: still_current_at: ჯერ კიდევ აქტუალურია summary: შეჯამება updated: განახლებული + written_statement: + one: წერილობითი განცხადება პარლამენტში + other: წერილობითი განცხადებები პარლამენტში help: index: about: diff --git a/config/locales/kk.yml b/config/locales/kk.yml index d6f2972ab5..e838dfb26c 100644 --- a/config/locales/kk.yml +++ b/config/locales/kk.yml @@ -523,6 +523,9 @@ kk: still_current_at: Әлі де ағымдағы summary: Қысқаша мазмұны updated: Жаңартылды + written_statement: + one: Парламентке жазбаша мәлімдеме + other: Парламентке жазбаша мәлімдемелер help: index: about: diff --git a/config/locales/ko.yml b/config/locales/ko.yml index e8a58e7cce..cd58e83e65 100644 --- a/config/locales/ko.yml +++ b/config/locales/ko.yml @@ -448,6 +448,8 @@ ko: still_current_at: 최신 상태 summary: 요약 updated: 업데이트 + written_statement: + other: 의회로 서면 성명 help: index: about: diff --git a/config/locales/lt.yml b/config/locales/lt.yml index d1a247cf9c..e7cddc0a49 100644 --- a/config/locales/lt.yml +++ b/config/locales/lt.yml @@ -598,6 +598,10 @@ lt: still_current_at: Vis dar summary: Santrauka updated: Atnaujinta + written_statement: + few: + one: Rašytinis kreipimasis į parlamentą + other: Rašytiniai kreipimaisi į parlamentą help: index: about: diff --git a/config/locales/lv.yml b/config/locales/lv.yml index 77f16176da..2b2b375120 100644 --- a/config/locales/lv.yml +++ b/config/locales/lv.yml @@ -523,6 +523,9 @@ lv: still_current_at: Joprojām aktuāli summary: Kopsavilkums updated: Atjaunināts + written_statement: + one: Rakstisks ziņojums parlamentam + other: Rakstiski ziņojumi parlamentam help: index: about: diff --git a/config/locales/ms.yml b/config/locales/ms.yml index 62d4882347..c6b98c613d 100644 --- a/config/locales/ms.yml +++ b/config/locales/ms.yml @@ -448,6 +448,8 @@ ms: still_current_at: Masih semasa di summary: Ringkasan updated: Dikemas kini + written_statement: + other: Kenyataan bertulis kepada Parlimen help: index: about: diff --git a/config/locales/mt.yml b/config/locales/mt.yml index d0c9efd97c..dad27d0c35 100644 --- a/config/locales/mt.yml +++ b/config/locales/mt.yml @@ -673,6 +673,11 @@ mt: still_current_at: Għadu jeżisti fuq summary: Sommarju updated: Aġġornat + written_statement: + few: + many: + one: Dikjarazzjoni bil-miktub lill-Parlament + other: Dikjarazzjonijiet bil-miktub lill-Parlament help: index: about: diff --git a/config/locales/ne.yml b/config/locales/ne.yml index 7a1507846a..cf093dae54 100644 --- a/config/locales/ne.yml +++ b/config/locales/ne.yml @@ -523,6 +523,9 @@ ne: still_current_at: अहिले सम्म वर्तमानमा summary: सारांश updated: अद्यावधिक गरियो + written_statement: + one: संसदमा लिखित वक्तव्य + other: संसदमा लिखित वक्तव्यहरू help: index: about: diff --git a/config/locales/nl.yml b/config/locales/nl.yml index bc99b771dc..692c4e8436 100644 --- a/config/locales/nl.yml +++ b/config/locales/nl.yml @@ -523,6 +523,9 @@ nl: still_current_at: Nog steeds actueel op summary: Samenvatting updated: Bijgewerkt op + written_statement: + one: Schriftelijke verklaring aan het Parlement + other: Schriftelijke verklaringen aan het Parlement help: index: about: diff --git a/config/locales/no.yml b/config/locales/no.yml index 3bd0c1c5b6..5426f5f041 100644 --- a/config/locales/no.yml +++ b/config/locales/no.yml @@ -523,6 +523,9 @@ still_current_at: Fortsatt aktuell summary: Sammendrag updated: Oppdatert + written_statement: + one: Skriftlig uttalelse til Stortinget + other: Skriftlige uttalelser til Stortinget help: index: about: diff --git a/config/locales/pa-pk.yml b/config/locales/pa-pk.yml index ba138a6929..419ef40bca 100644 --- a/config/locales/pa-pk.yml +++ b/config/locales/pa-pk.yml @@ -523,6 +523,9 @@ pa-pk: still_current_at: ہون ایس ویلے وی اوتھے ای اے summary: خلاصہ updated: تازہ ترین حال + written_statement: + one: قومی مجلس دے سامنے تحریری بیان + other: قومی مجلس دے سامنے تحریری بیانات help: index: about: diff --git a/config/locales/pa.yml b/config/locales/pa.yml index 3885ce833c..7d7dbeef82 100644 --- a/config/locales/pa.yml +++ b/config/locales/pa.yml @@ -523,6 +523,9 @@ pa: still_current_at: "'ਤੇ ਅਜੇ ਵੀ ਮੌਜੂਦਾ" summary: ਸੰਖੇਪ updated: ਅੱਪਡੇਟ ਕੀਤਾ + written_statement: + one: ਸੰਸਦ ਨੂੰ ਲਿਖਤੀ ਬਿਆਨ + other: ਸੰਸਦ ਨੂੰ ਲਿਖਤੀ ਬਿਆਨ ਦਿੱਤੇ help: index: about: diff --git a/config/locales/pl.yml b/config/locales/pl.yml index 81274a90d9..a877516097 100644 --- a/config/locales/pl.yml +++ b/config/locales/pl.yml @@ -673,6 +673,11 @@ pl: still_current_at: Aktualne na dzień summary: Podsumowanie updated: Zaktualizowano + written_statement: + few: + many: + one: Pisemne oświadczenie przed parlamentem + other: Pisemne oświadczenia przed parlamentem help: index: about: diff --git a/config/locales/ps.yml b/config/locales/ps.yml index fbc2f272bc..bfd373b261 100644 --- a/config/locales/ps.yml +++ b/config/locales/ps.yml @@ -523,6 +523,9 @@ ps: still_current_at: په اوسني وخت کې summary: لنډيز updated: تازه شوی + written_statement: + one: پارلمان ته لیکلې وینا + other: پارلمان ته لیکلي بیانونه help: index: about: diff --git a/config/locales/pt.yml b/config/locales/pt.yml index d6219561a8..5cead89a61 100644 --- a/config/locales/pt.yml +++ b/config/locales/pt.yml @@ -523,6 +523,9 @@ pt: still_current_at: Continua atual às summary: Resumo updated: Atualizado em + written_statement: + one: Declaração escrita ao Parlamento + other: Declarações escritas ao Parlamento help: index: about: diff --git a/config/locales/ro.yml b/config/locales/ro.yml index 0d0c6647d1..2a970e6761 100644 --- a/config/locales/ro.yml +++ b/config/locales/ro.yml @@ -598,6 +598,10 @@ ro: still_current_at: În acest moment la summary: Rezumat updated: Actualizat + written_statement: + few: + one: Declarație scrisă către Parlament + other: Declarații scrise către Parlament help: index: about: diff --git a/config/locales/ru.yml b/config/locales/ru.yml index 4de4f73751..476674aa18 100644 --- a/config/locales/ru.yml +++ b/config/locales/ru.yml @@ -673,6 +673,11 @@ ru: still_current_at: Все еще на summary: Резюме updated: Обновлено + written_statement: + few: + many: + one: Письменное заявление парламенту + other: Письменные заявления парламенту help: index: about: diff --git a/config/locales/si.yml b/config/locales/si.yml index 6c23c244f5..cbf879d212 100644 --- a/config/locales/si.yml +++ b/config/locales/si.yml @@ -523,6 +523,9 @@ si: still_current_at: තවමත් වත්මන් summary: සාරාංශය updated: යාවත්කාලීන කෙරිණි + written_statement: + one: පාර්ලිමේන්තුව වෙත ලිඛිත ප්රකාශය + other: පාර්ලිමේන්තුව වෙත ලිඛිත ප්රකාශ help: index: about: diff --git a/config/locales/sk.yml b/config/locales/sk.yml index d7f13270ed..136c02a452 100644 --- a/config/locales/sk.yml +++ b/config/locales/sk.yml @@ -598,6 +598,10 @@ sk: still_current_at: Stále aktuálne na summary: Zhrnutie updated: Aktualizované + written_statement: + few: + one: Písomné vyhlásenie pre Parlament + other: Písomné vyhlásenia pre Parlament help: index: about: diff --git a/config/locales/sl.yml b/config/locales/sl.yml index 24c33b49e4..b44cf4b292 100644 --- a/config/locales/sl.yml +++ b/config/locales/sl.yml @@ -673,6 +673,11 @@ sl: still_current_at: Še vedno aktualno ob summary: Povzetek updated: Posodobljeno + written_statement: + few: + one: Pisna izjava za parlament + other: Pisne izjave za parlament + two: help: index: about: diff --git a/config/locales/so.yml b/config/locales/so.yml index d1bf8a68d5..ac9bb19ee3 100644 --- a/config/locales/so.yml +++ b/config/locales/so.yml @@ -523,6 +523,9 @@ so: still_current_at: Ilaa hadadan summary: Soo koobitaanka updated: La cusboonaysiiyay + written_statement: + one: Bayaan qoran oo loogu talogalay Baarlamaanka + other: Bayaanada qoran ee loogu talogalay Baarlamaanka help: index: about: diff --git a/config/locales/sq.yml b/config/locales/sq.yml index 9646081b0a..96f6651141 100644 --- a/config/locales/sq.yml +++ b/config/locales/sq.yml @@ -523,6 +523,9 @@ sq: still_current_at: Ende aktuale në summary: Përmbajtja updated: Përditësuar + written_statement: + one: Deklaratë me shkrim në Parlament + other: Deklarata me shkrim në Parlament help: index: about: diff --git a/config/locales/sr.yml b/config/locales/sr.yml index a03f72ab1d..1335231d78 100644 --- a/config/locales/sr.yml +++ b/config/locales/sr.yml @@ -598,6 +598,10 @@ sr: still_current_at: Još važi za summary: Rezime updated: Ažurirano + written_statement: + few: + one: Pismena predstavka Parlamentu + other: Pismene predstavke Parlamentu help: index: about: diff --git a/config/locales/sv.yml b/config/locales/sv.yml index 314218fcec..9a337395e6 100644 --- a/config/locales/sv.yml +++ b/config/locales/sv.yml @@ -523,6 +523,9 @@ sv: still_current_at: Fortfarande aktuell på summary: Sammanfattning updated: Uppdaterad + written_statement: + one: Skriftligt uttalande till parlamentet + other: Skriftliga uttalanden till parlamentet help: index: about: diff --git a/config/locales/sw.yml b/config/locales/sw.yml index 56c07aa7ce..73e36bb6ba 100644 --- a/config/locales/sw.yml +++ b/config/locales/sw.yml @@ -523,6 +523,9 @@ sw: still_current_at: Bado unapatikana katika summary: Muhtasari updated: Ulisasishwa + written_statement: + one: Taarifa ya Maandishi kwa Bunge + other: Taarifa za Maandishi kwa Bunge help: index: about: diff --git a/config/locales/ta.yml b/config/locales/ta.yml index 15eef13939..3f475afbe4 100644 --- a/config/locales/ta.yml +++ b/config/locales/ta.yml @@ -523,6 +523,9 @@ ta: still_current_at: தற்போதும் உள்ளது summary: சுருக்கம் updated: புதுப்பிக்கப்பட்டது + written_statement: + one: பாராளுமன்றத்துக்கு எழுத்துப்பூர்வ அறிவிப்பு + other: பாராளுமன்றத்துக்கு எழுத்துப்பூர்வ அறிவிப்புகள் help: index: about: diff --git a/config/locales/th.yml b/config/locales/th.yml index 8b2694122c..25b91f99cd 100644 --- a/config/locales/th.yml +++ b/config/locales/th.yml @@ -448,6 +448,8 @@ th: still_current_at: ยังคงเป็นปัจจุบันเมื่อ summary: สรุป updated: ปรับปรุงแล้ว + written_statement: + other: แถลงการณ์เป็นลายลักษณ์อักษรต่อรัฐสภา help: index: about: diff --git a/config/locales/tk.yml b/config/locales/tk.yml index 55d0256c9d..ed065bbe57 100644 --- a/config/locales/tk.yml +++ b/config/locales/tk.yml @@ -523,6 +523,9 @@ tk: still_current_at: Häzir hem bar summary: Gysgaça updated: Täzelenen + written_statement: + one: Mejlise ýazmaça beýan + other: Mejlise ýazmaça beýanlar help: index: about: diff --git a/config/locales/tr.yml b/config/locales/tr.yml index 89166c6727..0472f99e80 100644 --- a/config/locales/tr.yml +++ b/config/locales/tr.yml @@ -523,6 +523,9 @@ tr: still_current_at: Halen şurada summary: Özet updated: Güncelleme + written_statement: + one: Parlamentoya yazılı açıklama + other: Parlamentoya yazılı açıklamalar help: index: about: diff --git a/config/locales/uk.yml b/config/locales/uk.yml index 481b6e949c..df5ac728de 100644 --- a/config/locales/uk.yml +++ b/config/locales/uk.yml @@ -673,6 +673,11 @@ uk: still_current_at: Досі актуально на summary: Резюме updated: Оновлено + written_statement: + few: + many: + one: Письмова заява до Парламенту + other: Письмові заяви до Парламенту help: index: about: diff --git a/config/locales/ur.yml b/config/locales/ur.yml index 907e19937a..7cc4eb056d 100644 --- a/config/locales/ur.yml +++ b/config/locales/ur.yml @@ -523,6 +523,9 @@ ur: still_current_at: ابھی تک حالیہ ہے از summary: خلاصہ updated: اپ ڈیٹ کردہ + written_statement: + one: پالیمان کے لیے تحریری بیان + other: پالیمان کے لیے تحریری بیانات help: index: about: diff --git a/config/locales/uz.yml b/config/locales/uz.yml index 23ff746209..98423b4096 100644 --- a/config/locales/uz.yml +++ b/config/locales/uz.yml @@ -523,6 +523,9 @@ uz: still_current_at: Ҳанузгача кучда summary: Жамланма маълумот updated: Янгиланган + written_statement: + one: Парламентга ёзма баёнот + other: Парламентга ёзма баёнотлар help: index: about: diff --git a/config/locales/vi.yml b/config/locales/vi.yml index 6e75eb2429..b67071e819 100644 --- a/config/locales/vi.yml +++ b/config/locales/vi.yml @@ -448,6 +448,8 @@ vi: still_current_at: Vẫn đang ở summary: Tóm tắt updated: Đã cập nhật + written_statement: + other: Tuyên bố bằng văn bản trước Quốc hội help: index: about: diff --git a/config/locales/yi.yml b/config/locales/yi.yml index 6cbf2a9220..bc9cc87271 100644 --- a/config/locales/yi.yml +++ b/config/locales/yi.yml @@ -523,6 +523,9 @@ yi: still_current_at: summary: updated: + written_statement: + one: + other: help: index: about: diff --git a/config/locales/zh-hk.yml b/config/locales/zh-hk.yml index 40ee9bd642..06271604da 100644 --- a/config/locales/zh-hk.yml +++ b/config/locales/zh-hk.yml @@ -448,6 +448,8 @@ zh-hk: still_current_at: 目前仍在 summary: 摘要 updated: 已更新 + written_statement: + other: 提交國會的書面聲明 help: index: about: diff --git a/config/locales/zh-tw.yml b/config/locales/zh-tw.yml index 7097f75824..c385aca108 100644 --- a/config/locales/zh-tw.yml +++ b/config/locales/zh-tw.yml @@ -448,6 +448,8 @@ zh-tw: still_current_at: 目前仍 summary: 概括 updated: 更新 + written_statement: + other: 對議會的書面聲明 help: index: about: diff --git a/config/locales/zh.yml b/config/locales/zh.yml index 3e5391ec5b..7f426af420 100644 --- a/config/locales/zh.yml +++ b/config/locales/zh.yml @@ -448,6 +448,8 @@ zh: still_current_at: 有效范围 summary: 总结 updated: 已更新 + written_statement: + other: 议会口头声明 help: index: about: From 71fa2056d28304e19c6da2ba103d210e2422f896 Mon Sep 17 00:00:00 2001 From: ramya vidapanakal Date: Fri, 20 Dec 2024 14:41:01 +0000 Subject: [PATCH 12/15] Add locales for Speech to handle pluralization - To handle the pluralization for Speech in all the locales Run the command: rake "consolidation:copy_translation[content_item.schema_name.speech,formats.speech]" Commit audit trail: https://github.com/alphagov/government-frontend/tree/122ae292fa540059ee165a94f8129d873c5205d5/config/locales --- config/locales/ar.yml | 6 ++++++ config/locales/az.yml | 2 ++ config/locales/be.yml | 4 ++++ config/locales/bg.yml | 2 ++ config/locales/bn.yml | 2 ++ config/locales/cs.yml | 3 +++ config/locales/cy.yml | 6 ++++++ config/locales/da.yml | 2 ++ config/locales/de.yml | 2 ++ config/locales/dr.yml | 2 ++ config/locales/el.yml | 2 ++ config/locales/en.yml | 2 ++ config/locales/es-419.yml | 2 ++ config/locales/es.yml | 2 ++ config/locales/et.yml | 2 ++ config/locales/fa.yml | 2 ++ config/locales/fi.yml | 2 ++ config/locales/fr.yml | 2 ++ config/locales/gd.yml | 4 ++++ config/locales/gu.yml | 2 ++ config/locales/he.yml | 2 ++ config/locales/hi.yml | 2 ++ config/locales/hr.yml | 3 +++ config/locales/hu.yml | 2 ++ config/locales/hy.yml | 2 ++ config/locales/id.yml | 1 + config/locales/is.yml | 2 ++ config/locales/it.yml | 2 ++ config/locales/ja.yml | 1 + config/locales/ka.yml | 2 ++ config/locales/kk.yml | 2 ++ config/locales/ko.yml | 1 + config/locales/lt.yml | 3 +++ config/locales/lv.yml | 2 ++ config/locales/ms.yml | 1 + config/locales/mt.yml | 4 ++++ config/locales/ne.yml | 2 ++ config/locales/nl.yml | 2 ++ config/locales/no.yml | 2 ++ config/locales/pa-pk.yml | 2 ++ config/locales/pa.yml | 2 ++ config/locales/pl.yml | 4 ++++ config/locales/ps.yml | 2 ++ config/locales/pt.yml | 2 ++ config/locales/ro.yml | 3 +++ config/locales/ru.yml | 4 ++++ config/locales/si.yml | 2 ++ config/locales/sk.yml | 3 +++ config/locales/sl.yml | 4 ++++ config/locales/so.yml | 2 ++ config/locales/sq.yml | 2 ++ config/locales/sr.yml | 3 +++ config/locales/sv.yml | 2 ++ config/locales/sw.yml | 2 ++ config/locales/ta.yml | 2 ++ config/locales/th.yml | 1 + config/locales/tk.yml | 2 ++ config/locales/tr.yml | 2 ++ config/locales/uk.yml | 4 ++++ config/locales/ur.yml | 2 ++ config/locales/uz.yml | 2 ++ config/locales/vi.yml | 1 + config/locales/yi.yml | 2 ++ config/locales/zh-hk.yml | 1 + config/locales/zh-tw.yml | 1 + config/locales/zh.yml | 1 + 66 files changed, 151 insertions(+) diff --git a/config/locales/ar.yml b/config/locales/ar.yml index 5d12d1610d..d94272ca44 100644 --- a/config/locales/ar.yml +++ b/config/locales/ar.yml @@ -795,8 +795,14 @@ ar: your_answers: speech: delivered_on: تاريخ التسليم + few: location: الموقع + many: + one: خطاب + other: خطابات + two: written_on: تاريخ الكتابة + zero: start_now: take_part: few: diff --git a/config/locales/az.yml b/config/locales/az.yml index 30ef10820b..07feb11866 100644 --- a/config/locales/az.yml +++ b/config/locales/az.yml @@ -500,6 +500,8 @@ az: speech: delivered_on: Çatdırılıb location: Yer + one: Nitq + other: Nitqlər written_on: Yazılma tarixi start_now: take_part: diff --git a/config/locales/be.yml b/config/locales/be.yml index a47f721832..d7a0013ca4 100644 --- a/config/locales/be.yml +++ b/config/locales/be.yml @@ -647,7 +647,11 @@ be: your_answers: speech: delivered_on: Дастаўлена + few: location: Месцазнаходжанне + many: + one: Выступ + other: Выступы written_on: Напісана start_now: take_part: diff --git a/config/locales/bg.yml b/config/locales/bg.yml index ed8d4daa2d..3574eb1e33 100644 --- a/config/locales/bg.yml +++ b/config/locales/bg.yml @@ -500,6 +500,8 @@ bg: speech: delivered_on: Доставено на location: Местоположение + one: Реч + other: Речи written_on: Написано на start_now: take_part: diff --git a/config/locales/bn.yml b/config/locales/bn.yml index 4a4a782d9c..597aee47c7 100644 --- a/config/locales/bn.yml +++ b/config/locales/bn.yml @@ -500,6 +500,8 @@ bn: speech: delivered_on: পাঠানো হয়েছে location: অবস্থান + one: বক্তব্য + other: বক্তব্যসমূহ written_on: যখন লেখা হয়েছে start_now: take_part: diff --git a/config/locales/cs.yml b/config/locales/cs.yml index 31b260fb98..e0da1612bc 100644 --- a/config/locales/cs.yml +++ b/config/locales/cs.yml @@ -573,7 +573,10 @@ cs: your_answers: speech: delivered_on: Doručeno dne + few: location: Sídlo + one: Projev + other: Projevy written_on: Odepsané start_now: take_part: diff --git a/config/locales/cy.yml b/config/locales/cy.yml index 03100ec521..64cd882dd5 100644 --- a/config/locales/cy.yml +++ b/config/locales/cy.yml @@ -800,8 +800,14 @@ cy: your_answers: Eich atebion speech: delivered_on: Cyflawnwyd ar + few: location: Lleoliad + many: + one: Anerchiad + other: Anerchiadau + two: written_on: Ysgrifennwyd ar + zero: start_now: Dechrau nawr take_part: few: diff --git a/config/locales/da.yml b/config/locales/da.yml index c9195c5488..288f5c75d3 100644 --- a/config/locales/da.yml +++ b/config/locales/da.yml @@ -500,6 +500,8 @@ da: speech: delivered_on: Leveret den location: Placering + one: tale + other: taler written_on: Skrevet på start_now: take_part: diff --git a/config/locales/de.yml b/config/locales/de.yml index d25a2a8979..62bcb8a918 100644 --- a/config/locales/de.yml +++ b/config/locales/de.yml @@ -500,6 +500,8 @@ de: speech: delivered_on: Geliefert am location: Standort + one: Rede + other: Reden written_on: Geschrieben am start_now: take_part: diff --git a/config/locales/dr.yml b/config/locales/dr.yml index ccad053b1e..715f46fdf8 100644 --- a/config/locales/dr.yml +++ b/config/locales/dr.yml @@ -500,6 +500,8 @@ dr: speech: delivered_on: تحویل داده شد به location: موقعیت + one: سخنرانی + other: سخنرانی ها written_on: نوشته شده است د start_now: take_part: diff --git a/config/locales/el.yml b/config/locales/el.yml index e884e00f46..5168631165 100644 --- a/config/locales/el.yml +++ b/config/locales/el.yml @@ -500,6 +500,8 @@ el: speech: delivered_on: Παραδόθηκε στις location: Τοποθεσία + one: Ομιλία + other: Ομιλίες written_on: Γράφτηκε στις start_now: take_part: diff --git a/config/locales/en.yml b/config/locales/en.yml index eb82c4b9b5..a9b6c062d1 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -505,6 +505,8 @@ en: speech: delivered_on: Delivered on location: Location + one: Speech + other: Speeches written_on: Written on start_now: Start now take_part: diff --git a/config/locales/es-419.yml b/config/locales/es-419.yml index c0cb169e6a..6fe38d4c30 100644 --- a/config/locales/es-419.yml +++ b/config/locales/es-419.yml @@ -500,6 +500,8 @@ es-419: speech: delivered_on: Entregado en location: Ubicación + one: Discurso + other: Discursos written_on: Escrito en start_now: take_part: diff --git a/config/locales/es.yml b/config/locales/es.yml index 429985484e..35c85d6444 100644 --- a/config/locales/es.yml +++ b/config/locales/es.yml @@ -500,6 +500,8 @@ es: speech: delivered_on: Entregado el location: Ubicación + one: Discurso + other: Discursos written_on: Escrito en start_now: take_part: diff --git a/config/locales/et.yml b/config/locales/et.yml index f6d996c8c0..0934166b7d 100644 --- a/config/locales/et.yml +++ b/config/locales/et.yml @@ -500,6 +500,8 @@ et: speech: delivered_on: Edastati location: Asukoht + one: Kõne + other: Kõned written_on: Kirjutatud start_now: take_part: diff --git a/config/locales/fa.yml b/config/locales/fa.yml index 444197b324..9e55e6a78c 100644 --- a/config/locales/fa.yml +++ b/config/locales/fa.yml @@ -500,6 +500,8 @@ fa: speech: delivered_on: تخویل شده در location: موقعیت مکانی + one: سخنرانی + other: سخنرانی‌ها written_on: نوشته شده در start_now: take_part: diff --git a/config/locales/fi.yml b/config/locales/fi.yml index 3b7ffbb07d..f952e14cdf 100644 --- a/config/locales/fi.yml +++ b/config/locales/fi.yml @@ -500,6 +500,8 @@ fi: speech: delivered_on: Toimitettu location: Sijainti + one: Puhe + other: Puheet written_on: Kirjoitettu start_now: take_part: diff --git a/config/locales/fr.yml b/config/locales/fr.yml index 0853296fb0..34b838ff4f 100644 --- a/config/locales/fr.yml +++ b/config/locales/fr.yml @@ -500,6 +500,8 @@ fr: speech: delivered_on: Livré le location: Emplacement + one: Discours + other: Discours written_on: Rédigé le start_now: take_part: diff --git a/config/locales/gd.yml b/config/locales/gd.yml index 898ac08a25..ab70be639b 100644 --- a/config/locales/gd.yml +++ b/config/locales/gd.yml @@ -647,7 +647,11 @@ gd: your_answers: speech: delivered_on: Seachadadh ar + few: location: Suíomh + one: Óráid + other: Óráid + two: written_on: Scríobh an start_now: take_part: diff --git a/config/locales/gu.yml b/config/locales/gu.yml index 0e24c0fdf4..6cd2b6c0c2 100644 --- a/config/locales/gu.yml +++ b/config/locales/gu.yml @@ -500,6 +500,8 @@ gu: speech: delivered_on: ના રોજ ડિલિવર થયું location: સ્થાન + one: ભાષણ + other: ભાષણો written_on: પર લખેલ start_now: take_part: diff --git a/config/locales/he.yml b/config/locales/he.yml index 3a0971083a..f11e67ab80 100644 --- a/config/locales/he.yml +++ b/config/locales/he.yml @@ -500,6 +500,8 @@ he: speech: delivered_on: נמסר ב location: מיקום + one: נאום + other: נאומים written_on: כתוב על start_now: take_part: diff --git a/config/locales/hi.yml b/config/locales/hi.yml index e0f5e6c036..1c49836796 100644 --- a/config/locales/hi.yml +++ b/config/locales/hi.yml @@ -500,6 +500,8 @@ hi: speech: delivered_on: इस पर डिलीवरी किया गया location: स्थान + one: भाषण + other: भाषण written_on: पर लिखा start_now: take_part: diff --git a/config/locales/hr.yml b/config/locales/hr.yml index 7e2cbf9809..351b381b95 100644 --- a/config/locales/hr.yml +++ b/config/locales/hr.yml @@ -573,7 +573,10 @@ hr: your_answers: speech: delivered_on: Dostavljeno + few: location: Mjesto + one: Govor + other: Govori written_on: Napisano start_now: take_part: diff --git a/config/locales/hu.yml b/config/locales/hu.yml index e73da64e67..3bc427d854 100644 --- a/config/locales/hu.yml +++ b/config/locales/hu.yml @@ -500,6 +500,8 @@ hu: speech: delivered_on: 'Kézbesítve ekkor:' location: Helyszín + one: Beszéd + other: Beszédek written_on: 'Írás időpontja:' start_now: take_part: diff --git a/config/locales/hy.yml b/config/locales/hy.yml index 68e7d3f32b..b9ae0de41d 100644 --- a/config/locales/hy.yml +++ b/config/locales/hy.yml @@ -500,6 +500,8 @@ hy: speech: delivered_on: Ուղարկվել է location: Տեղանք + one: Հրապարակային խոսք + other: Հրապարակային խոսքեր written_on: Գրվել է start_now: take_part: diff --git a/config/locales/id.yml b/config/locales/id.yml index fb44fc9800..aea5d91da1 100644 --- a/config/locales/id.yml +++ b/config/locales/id.yml @@ -426,6 +426,7 @@ id: speech: delivered_on: Dikirim pada location: Lokasi + other: Pidato written_on: Ditulis pada start_now: take_part: diff --git a/config/locales/is.yml b/config/locales/is.yml index 1426be7291..87b0d015c7 100644 --- a/config/locales/is.yml +++ b/config/locales/is.yml @@ -500,6 +500,8 @@ is: speech: delivered_on: Afhent þann location: Staðsetning + one: Ræða + other: Ræður written_on: Skrifað þann start_now: take_part: diff --git a/config/locales/it.yml b/config/locales/it.yml index 043114d5f8..35a60ef628 100644 --- a/config/locales/it.yml +++ b/config/locales/it.yml @@ -500,6 +500,8 @@ it: speech: delivered_on: Consegnato il location: Posizione + one: Discorso + other: Discorsi written_on: Scritto il start_now: take_part: diff --git a/config/locales/ja.yml b/config/locales/ja.yml index fa252db6c8..807cb4fd14 100644 --- a/config/locales/ja.yml +++ b/config/locales/ja.yml @@ -426,6 +426,7 @@ ja: speech: delivered_on: 配信日: location: 場所 + other: スピーチ written_on: 記述日: start_now: take_part: diff --git a/config/locales/ka.yml b/config/locales/ka.yml index 7392e0be2f..5c0d6143ce 100644 --- a/config/locales/ka.yml +++ b/config/locales/ka.yml @@ -500,6 +500,8 @@ ka: speech: delivered_on: გადაეცა location: მდებარეობა + one: სიტყვით გამოსვლის შენიშვნა + other: სიტყვით გამოსვლის შენიშვნები written_on: დაწერილი start_now: take_part: diff --git a/config/locales/kk.yml b/config/locales/kk.yml index e838dfb26c..a8a487559a 100644 --- a/config/locales/kk.yml +++ b/config/locales/kk.yml @@ -500,6 +500,8 @@ kk: speech: delivered_on: Жеткізілген күні location: Орны + one: Сөйлеу + other: Сөйлеулер written_on: Жазылған күні start_now: take_part: diff --git a/config/locales/ko.yml b/config/locales/ko.yml index cd58e83e65..9c2b359f0b 100644 --- a/config/locales/ko.yml +++ b/config/locales/ko.yml @@ -426,6 +426,7 @@ ko: speech: delivered_on: 행사 일시 location: 위치 + other: 연설문 written_on: 작성 날짜 start_now: take_part: diff --git a/config/locales/lt.yml b/config/locales/lt.yml index e7cddc0a49..c280c4d556 100644 --- a/config/locales/lt.yml +++ b/config/locales/lt.yml @@ -573,7 +573,10 @@ lt: your_answers: speech: delivered_on: Pateikta + few: location: Vieta + one: Kalba + other: Kalbos written_on: Parašymo data start_now: take_part: diff --git a/config/locales/lv.yml b/config/locales/lv.yml index 2b2b375120..e67e3f77ab 100644 --- a/config/locales/lv.yml +++ b/config/locales/lv.yml @@ -500,6 +500,8 @@ lv: speech: delivered_on: Piegādāts location: Atrašanās vieta + one: Runa + other: Runas written_on: Uzrakstīts uz start_now: take_part: diff --git a/config/locales/ms.yml b/config/locales/ms.yml index c6b98c613d..1384763307 100644 --- a/config/locales/ms.yml +++ b/config/locales/ms.yml @@ -426,6 +426,7 @@ ms: speech: delivered_on: Dihantar pada location: Lokasi + other: Ucapan written_on: Ditulis pada start_now: take_part: diff --git a/config/locales/mt.yml b/config/locales/mt.yml index dad27d0c35..432a7e4751 100644 --- a/config/locales/mt.yml +++ b/config/locales/mt.yml @@ -647,7 +647,11 @@ mt: your_answers: speech: delivered_on: Kunsinnat f' + few: location: Post + many: + one: Diskors + other: Diskorsi written_on: Miktub nhar start_now: take_part: diff --git a/config/locales/ne.yml b/config/locales/ne.yml index cf093dae54..3e1a2ba2a3 100644 --- a/config/locales/ne.yml +++ b/config/locales/ne.yml @@ -500,6 +500,8 @@ ne: speech: delivered_on: मा वितरण गरियो location: स्थान + one: भाषण + other: भाषणहरु written_on: मा लेखिएको छ start_now: take_part: diff --git a/config/locales/nl.yml b/config/locales/nl.yml index 692c4e8436..ec422374fb 100644 --- a/config/locales/nl.yml +++ b/config/locales/nl.yml @@ -500,6 +500,8 @@ nl: speech: delivered_on: Geleverd op location: Plaats + one: Toespraak + other: Toespraken written_on: Geschreven op start_now: take_part: diff --git a/config/locales/no.yml b/config/locales/no.yml index 5426f5f041..9c2fb7458b 100644 --- a/config/locales/no.yml +++ b/config/locales/no.yml @@ -500,6 +500,8 @@ speech: delivered_on: Levert på location: Plassering + one: Tale + other: Taler written_on: Skrevet på start_now: take_part: diff --git a/config/locales/pa-pk.yml b/config/locales/pa-pk.yml index 419ef40bca..e4af155a0f 100644 --- a/config/locales/pa-pk.yml +++ b/config/locales/pa-pk.yml @@ -500,6 +500,8 @@ pa-pk: speech: delivered_on: حوالے کیتا گیا location: تھاں + one: تقریر + other: تقریراں written_on: ایس تے لکھیا گیا start_now: take_part: diff --git a/config/locales/pa.yml b/config/locales/pa.yml index 7d7dbeef82..811da48eda 100644 --- a/config/locales/pa.yml +++ b/config/locales/pa.yml @@ -500,6 +500,8 @@ pa: speech: delivered_on: "'ਤੇ ਦਿੱਤਾ ਗਿਆ" location: ਟਿਕਾਣਾ + one: ਭਾਸ਼ਣ + other: ਭਾਸ਼ਣ written_on: "'ਤੇ ਲਿਖਿਆ ਗਿਆ" start_now: take_part: diff --git a/config/locales/pl.yml b/config/locales/pl.yml index a877516097..d7b5af2014 100644 --- a/config/locales/pl.yml +++ b/config/locales/pl.yml @@ -647,7 +647,11 @@ pl: your_answers: speech: delivered_on: Dostarczono o + few: location: Lokalizacja + many: + one: Przemówienie + other: Przemówienia written_on: Napisano o start_now: take_part: diff --git a/config/locales/ps.yml b/config/locales/ps.yml index bfd373b261..cb76a6d04e 100644 --- a/config/locales/ps.yml +++ b/config/locales/ps.yml @@ -500,6 +500,8 @@ ps: speech: delivered_on: ته وسپارل شو location: ځای + one: وینا + other: ويناوې written_on: باندې لیکل شوی start_now: take_part: diff --git a/config/locales/pt.yml b/config/locales/pt.yml index 5cead89a61..fc7625f2de 100644 --- a/config/locales/pt.yml +++ b/config/locales/pt.yml @@ -500,6 +500,8 @@ pt: speech: delivered_on: Entregue em location: Local + one: Discurso + other: Discursos written_on: Escrito em start_now: take_part: diff --git a/config/locales/ro.yml b/config/locales/ro.yml index 2a970e6761..a068956f50 100644 --- a/config/locales/ro.yml +++ b/config/locales/ro.yml @@ -573,7 +573,10 @@ ro: your_answers: speech: delivered_on: Livrat pe + few: location: Locație + one: Discurs + other: Discursuri written_on: Scris pe start_now: take_part: diff --git a/config/locales/ru.yml b/config/locales/ru.yml index 476674aa18..23573c76a3 100644 --- a/config/locales/ru.yml +++ b/config/locales/ru.yml @@ -647,7 +647,11 @@ ru: your_answers: speech: delivered_on: Доставлено на + few: location: Место + many: + one: Текст выступления + other: Тексты выступлений written_on: Написано на start_now: take_part: diff --git a/config/locales/si.yml b/config/locales/si.yml index cbf879d212..0076cd4006 100644 --- a/config/locales/si.yml +++ b/config/locales/si.yml @@ -500,6 +500,8 @@ si: speech: delivered_on: බෙදාහරින ලද දිනය location: ස්ථානය + one: කථාව + other: කථා written_on: ලියන ලද දිනය start_now: take_part: diff --git a/config/locales/sk.yml b/config/locales/sk.yml index 136c02a452..3b40c3dc53 100644 --- a/config/locales/sk.yml +++ b/config/locales/sk.yml @@ -573,7 +573,10 @@ sk: your_answers: speech: delivered_on: Doručené dňa + few: location: Umiestnenie + one: Prejav + other: Prejay written_on: Napísané dňa start_now: take_part: diff --git a/config/locales/sl.yml b/config/locales/sl.yml index b44cf4b292..fa825b3f99 100644 --- a/config/locales/sl.yml +++ b/config/locales/sl.yml @@ -647,7 +647,11 @@ sl: your_answers: speech: delivered_on: 'Podano dne:' + few: location: Lokacija + one: Govor + other: Govori + two: written_on: Napisano dne start_now: take_part: diff --git a/config/locales/so.yml b/config/locales/so.yml index ac9bb19ee3..72e0e8d83e 100644 --- a/config/locales/so.yml +++ b/config/locales/so.yml @@ -500,6 +500,8 @@ so: speech: delivered_on: Loo diray location: Goobta + one: Khudbad + other: Khudbado written_on: Lagu qoray start_now: take_part: diff --git a/config/locales/sq.yml b/config/locales/sq.yml index 96f6651141..482e493f66 100644 --- a/config/locales/sq.yml +++ b/config/locales/sq.yml @@ -500,6 +500,8 @@ sq: speech: delivered_on: Dorëzuar më location: Vendndodhja + one: Fjalim + other: Fjalime written_on: Shkruar në start_now: take_part: diff --git a/config/locales/sr.yml b/config/locales/sr.yml index 1335231d78..c0a8f0dabe 100644 --- a/config/locales/sr.yml +++ b/config/locales/sr.yml @@ -573,7 +573,10 @@ sr: your_answers: speech: delivered_on: Isporučeno + few: location: Lokacija + one: Govor + other: Govori written_on: Napisano start_now: take_part: diff --git a/config/locales/sv.yml b/config/locales/sv.yml index 9a337395e6..a7f7ec3ef2 100644 --- a/config/locales/sv.yml +++ b/config/locales/sv.yml @@ -500,6 +500,8 @@ sv: speech: delivered_on: Levererad den location: Plats + one: Tal + other: Tal written_on: Skrivet på start_now: take_part: diff --git a/config/locales/sw.yml b/config/locales/sw.yml index 73e36bb6ba..e6cbb336b4 100644 --- a/config/locales/sw.yml +++ b/config/locales/sw.yml @@ -500,6 +500,8 @@ sw: speech: delivered_on: Iliwasilishwa mnamo location: Mahali + one: Hotuba + other: Hotuba written_on: Iliandikwa mnamo start_now: take_part: diff --git a/config/locales/ta.yml b/config/locales/ta.yml index 3f475afbe4..35a4d1ed26 100644 --- a/config/locales/ta.yml +++ b/config/locales/ta.yml @@ -500,6 +500,8 @@ ta: speech: delivered_on: ஒப்படைத்த தேதி location: இருப்பிடம் + one: பேச்சு + other: பேச்சுகள் written_on: எழுதப்பட்ட தேதி start_now: take_part: diff --git a/config/locales/th.yml b/config/locales/th.yml index 25b91f99cd..ee49b57959 100644 --- a/config/locales/th.yml +++ b/config/locales/th.yml @@ -426,6 +426,7 @@ th: speech: delivered_on: ส่งมอบเมื่อ location: ตำแหน่งที่ตั้ง + other: สุนทรพจน์ written_on: เขียนเมื่อ start_now: take_part: diff --git a/config/locales/tk.yml b/config/locales/tk.yml index ed065bbe57..049a4abeb3 100644 --- a/config/locales/tk.yml +++ b/config/locales/tk.yml @@ -500,6 +500,8 @@ tk: speech: delivered_on: 'Gowşuryldy:' location: Ýerleşýän ýeri + one: Çykyş + other: Çykyşlar written_on: 'Ýazylan:' start_now: take_part: diff --git a/config/locales/tr.yml b/config/locales/tr.yml index 0472f99e80..4527ae2c5e 100644 --- a/config/locales/tr.yml +++ b/config/locales/tr.yml @@ -500,6 +500,8 @@ tr: speech: delivered_on: 'Teslim tarihi:' location: Konum + one: Konuşma + other: Konuşmalar written_on: 'Yazılma tarihi:' start_now: take_part: diff --git a/config/locales/uk.yml b/config/locales/uk.yml index df5ac728de..5cf706d549 100644 --- a/config/locales/uk.yml +++ b/config/locales/uk.yml @@ -647,7 +647,11 @@ uk: your_answers: speech: delivered_on: Доставлено + few: location: Розташування + many: + one: Виступ + other: Виступи written_on: Написано start_now: take_part: diff --git a/config/locales/ur.yml b/config/locales/ur.yml index 7cc4eb056d..715e7521eb 100644 --- a/config/locales/ur.yml +++ b/config/locales/ur.yml @@ -500,6 +500,8 @@ ur: speech: delivered_on: ترسیل کردہ بتاریخ location: مقام + one: تقریر + other: تقاریر written_on: تحریر کردہ بتاریخ start_now: take_part: diff --git a/config/locales/uz.yml b/config/locales/uz.yml index 98423b4096..099779c4ab 100644 --- a/config/locales/uz.yml +++ b/config/locales/uz.yml @@ -500,6 +500,8 @@ uz: speech: delivered_on: Етказиб берилди location: Жойлашиш жойи + one: Нутқ + other: Нутқлар written_on: Ёзилган start_now: take_part: diff --git a/config/locales/vi.yml b/config/locales/vi.yml index b67071e819..6c53e6022c 100644 --- a/config/locales/vi.yml +++ b/config/locales/vi.yml @@ -426,6 +426,7 @@ vi: speech: delivered_on: Ngày giao location: Vị trí + other: Bài phát biểu written_on: Ngày viết start_now: take_part: diff --git a/config/locales/yi.yml b/config/locales/yi.yml index bc9cc87271..240d1978b7 100644 --- a/config/locales/yi.yml +++ b/config/locales/yi.yml @@ -500,6 +500,8 @@ yi: speech: delivered_on: location: + one: + other: written_on: start_now: take_part: diff --git a/config/locales/zh-hk.yml b/config/locales/zh-hk.yml index 06271604da..caf1e727d1 100644 --- a/config/locales/zh-hk.yml +++ b/config/locales/zh-hk.yml @@ -426,6 +426,7 @@ zh-hk: speech: delivered_on: 交付時間 location: 地點 + other: 演講 written_on: 記載於 start_now: take_part: diff --git a/config/locales/zh-tw.yml b/config/locales/zh-tw.yml index c385aca108..d59dd26fb0 100644 --- a/config/locales/zh-tw.yml +++ b/config/locales/zh-tw.yml @@ -426,6 +426,7 @@ zh-tw: speech: delivered_on: 運送 location: 地點 + other: 演說 written_on: 寫在 start_now: take_part: diff --git a/config/locales/zh.yml b/config/locales/zh.yml index 7f426af420..8d6479a0bd 100644 --- a/config/locales/zh.yml +++ b/config/locales/zh.yml @@ -426,6 +426,7 @@ zh: speech: delivered_on: 提交日期 location: 位置 + other: 演讲 written_on: 书写日期 start_now: take_part: From 1f08a473888b61023496e03da7aa6b6712e1945c Mon Sep 17 00:00:00 2001 From: ramya vidapanakal Date: Mon, 20 Jan 2025 12:04:49 +0000 Subject: [PATCH 13/15] Add formats.oral_statement translations - Ran the command: rake "consolidation:copy_translation[content_item.schema_name.oral_statement,formats.oral_statement]" Audit trail: https://github.com/alphagov/government-frontend/tree/ed44dc0a2dc1cc14174f99bdf6f1ed57f2bfc77a/config/locales --- config/locales/ar.yml | 7 +++++++ config/locales/az.yml | 3 +++ config/locales/be.yml | 5 +++++ config/locales/bg.yml | 3 +++ config/locales/bn.yml | 3 +++ config/locales/cs.yml | 4 ++++ config/locales/cy.yml | 7 +++++++ config/locales/da.yml | 3 +++ config/locales/de.yml | 3 +++ config/locales/dr.yml | 3 +++ config/locales/el.yml | 3 +++ config/locales/en.yml | 3 +++ config/locales/es-419.yml | 3 +++ config/locales/es.yml | 3 +++ config/locales/et.yml | 3 +++ config/locales/fa.yml | 3 +++ config/locales/fi.yml | 3 +++ config/locales/fr.yml | 3 +++ config/locales/gd.yml | 5 +++++ config/locales/gu.yml | 3 +++ config/locales/he.yml | 3 +++ config/locales/hi.yml | 3 +++ config/locales/hr.yml | 4 ++++ config/locales/hu.yml | 3 +++ config/locales/hy.yml | 3 +++ config/locales/id.yml | 2 ++ config/locales/is.yml | 3 +++ config/locales/it.yml | 3 +++ config/locales/ja.yml | 2 ++ config/locales/ka.yml | 3 +++ config/locales/kk.yml | 3 +++ config/locales/ko.yml | 2 ++ config/locales/lt.yml | 4 ++++ config/locales/lv.yml | 3 +++ config/locales/ms.yml | 2 ++ config/locales/mt.yml | 5 +++++ config/locales/ne.yml | 3 +++ config/locales/nl.yml | 3 +++ config/locales/no.yml | 3 +++ config/locales/pa-pk.yml | 3 +++ config/locales/pa.yml | 3 +++ config/locales/pl.yml | 5 +++++ config/locales/ps.yml | 3 +++ config/locales/pt.yml | 3 +++ config/locales/ro.yml | 4 ++++ config/locales/ru.yml | 5 +++++ config/locales/si.yml | 3 +++ config/locales/sk.yml | 4 ++++ config/locales/sl.yml | 5 +++++ config/locales/so.yml | 3 +++ config/locales/sq.yml | 3 +++ config/locales/sr.yml | 4 ++++ config/locales/sv.yml | 3 +++ config/locales/sw.yml | 3 +++ config/locales/ta.yml | 3 +++ config/locales/th.yml | 2 ++ config/locales/tk.yml | 3 +++ config/locales/tr.yml | 3 +++ config/locales/uk.yml | 5 +++++ config/locales/ur.yml | 3 +++ config/locales/uz.yml | 3 +++ config/locales/vi.yml | 2 ++ config/locales/yi.yml | 3 +++ config/locales/zh-hk.yml | 2 ++ config/locales/zh-tw.yml | 2 ++ config/locales/zh.yml | 2 ++ 66 files changed, 217 insertions(+) diff --git a/config/locales/ar.yml b/config/locales/ar.yml index d94272ca44..9ce121cb2d 100644 --- a/config/locales/ar.yml +++ b/config/locales/ar.yml @@ -782,6 +782,13 @@ ar: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + few: + many: + one: بيان شفوي للبرلمان + other: بيانات شفوية للبرلمان + two: + zero: place: change: find_results: diff --git a/config/locales/az.yml b/config/locales/az.yml index 07feb11866..a84a1c6841 100644 --- a/config/locales/az.yml +++ b/config/locales/az.yml @@ -486,6 +486,9 @@ az: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + one: Parlamentə şifahi müraciət + other: Parlamentə şifahi müraciətlər place: change: find_results: diff --git a/config/locales/be.yml b/config/locales/be.yml index d7a0013ca4..32bad75c51 100644 --- a/config/locales/be.yml +++ b/config/locales/be.yml @@ -634,6 +634,11 @@ be: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + few: + many: + one: Вусная заява ў парламенце + other: Вусныя даклады ў парламенце place: change: find_results: diff --git a/config/locales/bg.yml b/config/locales/bg.yml index 3574eb1e33..d35a553e4d 100644 --- a/config/locales/bg.yml +++ b/config/locales/bg.yml @@ -486,6 +486,9 @@ bg: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + one: Устно изявление в Парламента + other: Устни изявления в Парламента place: change: find_results: diff --git a/config/locales/bn.yml b/config/locales/bn.yml index 597aee47c7..828e16003a 100644 --- a/config/locales/bn.yml +++ b/config/locales/bn.yml @@ -486,6 +486,9 @@ bn: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + one: সংসদে মৌখিক বিবৃতি + other: সংসদে মৌখিক বিবৃতিসমূহ place: change: find_results: diff --git a/config/locales/cs.yml b/config/locales/cs.yml index e0da1612bc..995bea75c6 100644 --- a/config/locales/cs.yml +++ b/config/locales/cs.yml @@ -560,6 +560,10 @@ cs: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + few: + one: Ústní prohlášení pro Parlament + other: Ústní prohlášení pro Parlament place: change: find_results: diff --git a/config/locales/cy.yml b/config/locales/cy.yml index 64cd882dd5..46274c9aed 100644 --- a/config/locales/cy.yml +++ b/config/locales/cy.yml @@ -787,6 +787,13 @@ cy: valid_uprn_no_match_sub_html: Gwiriwch ac ysgrifennu'r cod post eto. website: what_you_need_to_know: Yr hyn y mae angen i chi ei wybod + oral_statement: + few: + many: + one: Datganiad llafar i'r Senedd + other: Datganiadau llafar i'r Senedd + two: + zero: place: change: Newid find_results: Darganfod canlyniadau yn agos i chi diff --git a/config/locales/da.yml b/config/locales/da.yml index 288f5c75d3..3f3436fd3d 100644 --- a/config/locales/da.yml +++ b/config/locales/da.yml @@ -486,6 +486,9 @@ da: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + one: Mundtlig erklæring til Parlamentet + other: Mundtlige erklæring til Parlamentet place: change: find_results: diff --git a/config/locales/de.yml b/config/locales/de.yml index 62bcb8a918..ab86f579b7 100644 --- a/config/locales/de.yml +++ b/config/locales/de.yml @@ -486,6 +486,9 @@ de: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + one: Mündliche Erklärung vor dem Parlament + other: Mündliche Erklärungen vor dem Parlament place: change: find_results: diff --git a/config/locales/dr.yml b/config/locales/dr.yml index 715f46fdf8..0c2ad74538 100644 --- a/config/locales/dr.yml +++ b/config/locales/dr.yml @@ -486,6 +486,9 @@ dr: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + one: بیانیهء شفاهی به پارلمان + other: بیانیه هایی شفاهی به پارلمان place: change: find_results: diff --git a/config/locales/el.yml b/config/locales/el.yml index 5168631165..468d4843ae 100644 --- a/config/locales/el.yml +++ b/config/locales/el.yml @@ -486,6 +486,9 @@ el: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + one: Προφορική δήλωση στη Βουλή + other: Προφορικές δηλώσεις στη Βουλή place: change: find_results: diff --git a/config/locales/en.yml b/config/locales/en.yml index a9b6c062d1..d8a9c36be0 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -491,6 +491,9 @@ en: valid_uprn_no_match_sub_html: Check it and enter the postcode again. website: You can get information on their website. what_you_need_to_know: What you need to know + oral_statement: + one: Oral statement to Parliament + other: Oral statements to Parliament place: change: Change find_results: Find results near you diff --git a/config/locales/es-419.yml b/config/locales/es-419.yml index 6fe38d4c30..75f19cfd54 100644 --- a/config/locales/es-419.yml +++ b/config/locales/es-419.yml @@ -486,6 +486,9 @@ es-419: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + one: Declaracion oral ante el Parlamento + other: Declaraciones orales ante el Parlamento place: change: find_results: diff --git a/config/locales/es.yml b/config/locales/es.yml index 35c85d6444..af20270cf0 100644 --- a/config/locales/es.yml +++ b/config/locales/es.yml @@ -486,6 +486,9 @@ es: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + one: Declaración formulada oralmente + other: Declaraciones formuladas oralmente place: change: find_results: diff --git a/config/locales/et.yml b/config/locales/et.yml index 0934166b7d..da3d01580c 100644 --- a/config/locales/et.yml +++ b/config/locales/et.yml @@ -486,6 +486,9 @@ et: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + one: Suuline avaldus parlamendile + other: Suulised avaldused parlamendile place: change: find_results: diff --git a/config/locales/fa.yml b/config/locales/fa.yml index 9e55e6a78c..78e51a8129 100644 --- a/config/locales/fa.yml +++ b/config/locales/fa.yml @@ -486,6 +486,9 @@ fa: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + one: بیانیه شفاهی به پارلمان + other: بیانیه‌های شفاهی به پارلمان place: change: find_results: diff --git a/config/locales/fi.yml b/config/locales/fi.yml index f952e14cdf..d2ebd26628 100644 --- a/config/locales/fi.yml +++ b/config/locales/fi.yml @@ -486,6 +486,9 @@ fi: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + one: Suullinen lausuma parlamentille + other: Suulliset lausumat parlamentille place: change: find_results: diff --git a/config/locales/fr.yml b/config/locales/fr.yml index 34b838ff4f..d3e4c7f984 100644 --- a/config/locales/fr.yml +++ b/config/locales/fr.yml @@ -486,6 +486,9 @@ fr: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + one: Déclaration orale au Parlement + other: Déclarations orales au Parlement place: change: find_results: diff --git a/config/locales/gd.yml b/config/locales/gd.yml index ab70be639b..eeec37a316 100644 --- a/config/locales/gd.yml +++ b/config/locales/gd.yml @@ -634,6 +634,11 @@ gd: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + few: + one: Ráiteas ó bhéal don Pharlaimint + other: Ráitis ó bhéal sa Pharlaimint + two: place: change: find_results: diff --git a/config/locales/gu.yml b/config/locales/gu.yml index 6cd2b6c0c2..ee9049c01f 100644 --- a/config/locales/gu.yml +++ b/config/locales/gu.yml @@ -486,6 +486,9 @@ gu: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + one: સંસદમાં મૌખિક નિવેદન + other: સંસદમાં મૌખિક નિવેદનો place: change: find_results: diff --git a/config/locales/he.yml b/config/locales/he.yml index f11e67ab80..f4fb4b25fa 100644 --- a/config/locales/he.yml +++ b/config/locales/he.yml @@ -486,6 +486,9 @@ he: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + one: הצהרה בעל פה לפרלמנט + other: הצהרות בעל פה לפרלמנט place: change: find_results: diff --git a/config/locales/hi.yml b/config/locales/hi.yml index 1c49836796..497e792931 100644 --- a/config/locales/hi.yml +++ b/config/locales/hi.yml @@ -486,6 +486,9 @@ hi: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + one: संसद में मौखिक बयान + other: संसद में मौखिक बयान place: change: find_results: diff --git a/config/locales/hr.yml b/config/locales/hr.yml index 351b381b95..85a924d5f4 100644 --- a/config/locales/hr.yml +++ b/config/locales/hr.yml @@ -560,6 +560,10 @@ hr: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + few: + one: Usmena izjava Parlamentu + other: Usmene izjave Parlamentu place: change: find_results: diff --git a/config/locales/hu.yml b/config/locales/hu.yml index 3bc427d854..444bf6fe77 100644 --- a/config/locales/hu.yml +++ b/config/locales/hu.yml @@ -486,6 +486,9 @@ hu: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + one: Parlamenti felszólalás + other: Parlamenti felszólalások place: change: find_results: diff --git a/config/locales/hy.yml b/config/locales/hy.yml index b9ae0de41d..fa31d282fd 100644 --- a/config/locales/hy.yml +++ b/config/locales/hy.yml @@ -486,6 +486,9 @@ hy: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + one: Խորհրդարանին ուղղված բանավոր հայտարարություն + other: Խորհրդարանին ուղղված բանավոր հայտարարություններ place: change: find_results: diff --git a/config/locales/id.yml b/config/locales/id.yml index aea5d91da1..e8edb9d9d2 100644 --- a/config/locales/id.yml +++ b/config/locales/id.yml @@ -412,6 +412,8 @@ id: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + other: Pernyataan lisan kepada Parlemen place: change: find_results: diff --git a/config/locales/is.yml b/config/locales/is.yml index 87b0d015c7..1f80925494 100644 --- a/config/locales/is.yml +++ b/config/locales/is.yml @@ -486,6 +486,9 @@ is: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + one: Munnleg yfirlýsing til Þingsins + other: Munnlegar yfirlýsingar til Þingsins place: change: find_results: diff --git a/config/locales/it.yml b/config/locales/it.yml index 35a60ef628..e8838c43fb 100644 --- a/config/locales/it.yml +++ b/config/locales/it.yml @@ -486,6 +486,9 @@ it: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + one: Dichiarazione orale al Parlamento + other: Dichiarazioni orali al Parlamento place: change: find_results: diff --git a/config/locales/ja.yml b/config/locales/ja.yml index 807cb4fd14..fcd93e640f 100644 --- a/config/locales/ja.yml +++ b/config/locales/ja.yml @@ -412,6 +412,8 @@ ja: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + other: 議会への口頭声明 place: change: find_results: diff --git a/config/locales/ka.yml b/config/locales/ka.yml index 5c0d6143ce..ff25b86477 100644 --- a/config/locales/ka.yml +++ b/config/locales/ka.yml @@ -486,6 +486,9 @@ ka: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + one: ზეპირი განცხადება პარლამენტში + other: ზეპირი განცხადებები პარლამენტში place: change: find_results: diff --git a/config/locales/kk.yml b/config/locales/kk.yml index a8a487559a..b2e561630c 100644 --- a/config/locales/kk.yml +++ b/config/locales/kk.yml @@ -486,6 +486,9 @@ kk: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + one: Парламентке ауызша мәлімдеме + other: Парламентке ауызша мәлімдемелер place: change: find_results: diff --git a/config/locales/ko.yml b/config/locales/ko.yml index 9c2b359f0b..6fef2b47cc 100644 --- a/config/locales/ko.yml +++ b/config/locales/ko.yml @@ -412,6 +412,8 @@ ko: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + other: 의회로 구두 성명 place: change: find_results: diff --git a/config/locales/lt.yml b/config/locales/lt.yml index c280c4d556..bbd19ac785 100644 --- a/config/locales/lt.yml +++ b/config/locales/lt.yml @@ -560,6 +560,10 @@ lt: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + few: + one: Žodinis kreipimasis į parlamentą + other: Žodiniai kreipimaisi į parlamentą place: change: find_results: diff --git a/config/locales/lv.yml b/config/locales/lv.yml index e67e3f77ab..cada2ea852 100644 --- a/config/locales/lv.yml +++ b/config/locales/lv.yml @@ -486,6 +486,9 @@ lv: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + one: Mutisks paziņojums parlamentam + other: Mutiski paziņojumi parlamentam place: change: find_results: diff --git a/config/locales/ms.yml b/config/locales/ms.yml index 1384763307..080f9921c1 100644 --- a/config/locales/ms.yml +++ b/config/locales/ms.yml @@ -412,6 +412,8 @@ ms: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + other: Kenyataan lisan kepada Parlimen place: change: find_results: diff --git a/config/locales/mt.yml b/config/locales/mt.yml index 432a7e4751..226eb28f25 100644 --- a/config/locales/mt.yml +++ b/config/locales/mt.yml @@ -634,6 +634,11 @@ mt: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + few: + many: + one: Dikjarazzjoni verbali lill-Parlament + other: Dikjarazzjonijiet verbali lill-Parlament place: change: find_results: diff --git a/config/locales/ne.yml b/config/locales/ne.yml index 3e1a2ba2a3..958e6b7473 100644 --- a/config/locales/ne.yml +++ b/config/locales/ne.yml @@ -486,6 +486,9 @@ ne: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + one: संसदमा मौखिक वक्तव्य + other: 'संसदमा मौखिक वक्तव्यहरू ' place: change: find_results: diff --git a/config/locales/nl.yml b/config/locales/nl.yml index ec422374fb..63799d0439 100644 --- a/config/locales/nl.yml +++ b/config/locales/nl.yml @@ -486,6 +486,9 @@ nl: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + one: Mondelinge verklaring voor het Parlement + other: Mondelinge verklaringen aan het Parlement place: change: find_results: diff --git a/config/locales/no.yml b/config/locales/no.yml index 9c2fb7458b..2b31153b45 100644 --- a/config/locales/no.yml +++ b/config/locales/no.yml @@ -486,6 +486,9 @@ valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + one: Muntlig uttalelse til Stortinget + other: Muntlige uttalelser til Stortinget place: change: find_results: diff --git a/config/locales/pa-pk.yml b/config/locales/pa-pk.yml index e4af155a0f..d64c0c3567 100644 --- a/config/locales/pa-pk.yml +++ b/config/locales/pa-pk.yml @@ -486,6 +486,9 @@ pa-pk: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + one: قومی مجلس دے سامنے زبانی بیان + other: قومی مجلس دے سامنے زبانی بیانات place: change: find_results: diff --git a/config/locales/pa.yml b/config/locales/pa.yml index 811da48eda..1dd9db0d73 100644 --- a/config/locales/pa.yml +++ b/config/locales/pa.yml @@ -486,6 +486,9 @@ pa: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + one: ਸੰਸਦ ਨੂੰ ਜ਼ਬਾਨੀ ਬਿਆਨ + other: ਸੰਸਦ ਨੂੰ ਜ਼ਬਾਨੀ ਬਿਆਨ place: change: find_results: diff --git a/config/locales/pl.yml b/config/locales/pl.yml index d7b5af2014..e134454ce2 100644 --- a/config/locales/pl.yml +++ b/config/locales/pl.yml @@ -634,6 +634,11 @@ pl: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + few: + many: + one: Ustne oświadczenie przed parlamentem + other: Ustne oświadczenia przed parlamentem place: change: find_results: diff --git a/config/locales/ps.yml b/config/locales/ps.yml index cb76a6d04e..5315a14df8 100644 --- a/config/locales/ps.yml +++ b/config/locales/ps.yml @@ -486,6 +486,9 @@ ps: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + one: پارلماني غونډې ته وینا + other: پارلمان ته شفاهي څرګندونې place: change: find_results: diff --git a/config/locales/pt.yml b/config/locales/pt.yml index fc7625f2de..a74a4ca18e 100644 --- a/config/locales/pt.yml +++ b/config/locales/pt.yml @@ -486,6 +486,9 @@ pt: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + one: Declaração oral ao Parlamento + other: Declarações orais ao Parlamento place: change: find_results: diff --git a/config/locales/ro.yml b/config/locales/ro.yml index a068956f50..a905bf7a22 100644 --- a/config/locales/ro.yml +++ b/config/locales/ro.yml @@ -560,6 +560,10 @@ ro: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + few: + one: Expunere orală către Parlament + other: Expuneri orale către Parlament place: change: find_results: diff --git a/config/locales/ru.yml b/config/locales/ru.yml index 23573c76a3..67818cca1b 100644 --- a/config/locales/ru.yml +++ b/config/locales/ru.yml @@ -634,6 +634,11 @@ ru: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + few: + many: + one: Устное заявление парламенту + other: Устные заявления парламенту place: change: find_results: diff --git a/config/locales/si.yml b/config/locales/si.yml index 0076cd4006..8f8a4b363b 100644 --- a/config/locales/si.yml +++ b/config/locales/si.yml @@ -486,6 +486,9 @@ si: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + one: පාර්ලිමේන්තුව වෙත වාචික ප්රකාශයක් + other: පාර්ලිමේන්තුව වෙත වාචික ප්රකාශ place: change: find_results: diff --git a/config/locales/sk.yml b/config/locales/sk.yml index 3b40c3dc53..0972039442 100644 --- a/config/locales/sk.yml +++ b/config/locales/sk.yml @@ -560,6 +560,10 @@ sk: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + few: + one: Ústne vyhlásenie pred Parlamentom + other: Ústne vyhlásenia pred Parlamentom place: change: find_results: diff --git a/config/locales/sl.yml b/config/locales/sl.yml index fa825b3f99..0c182ae3b2 100644 --- a/config/locales/sl.yml +++ b/config/locales/sl.yml @@ -634,6 +634,11 @@ sl: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + few: + one: Ustna izjava za parlament + other: Ustne izjave za parlament + two: place: change: find_results: diff --git a/config/locales/so.yml b/config/locales/so.yml index 72e0e8d83e..e76163339c 100644 --- a/config/locales/so.yml +++ b/config/locales/so.yml @@ -486,6 +486,9 @@ so: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + one: Bayaanka loogu talogalay Baarlamaanka + other: Bayaanada loogu talogalay Baarlamaanka place: change: find_results: diff --git a/config/locales/sq.yml b/config/locales/sq.yml index 482e493f66..875c083b3d 100644 --- a/config/locales/sq.yml +++ b/config/locales/sq.yml @@ -486,6 +486,9 @@ sq: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + one: Deklarata gojore në Parlament + other: Deklarata gojore në Parlament place: change: find_results: diff --git a/config/locales/sr.yml b/config/locales/sr.yml index c0a8f0dabe..c45de7b4ef 100644 --- a/config/locales/sr.yml +++ b/config/locales/sr.yml @@ -560,6 +560,10 @@ sr: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + few: + one: Usmeno obraćanje Parlamentu + other: Usmena obraćanja Parlamentu place: change: find_results: diff --git a/config/locales/sv.yml b/config/locales/sv.yml index a7f7ec3ef2..66243e4e2d 100644 --- a/config/locales/sv.yml +++ b/config/locales/sv.yml @@ -486,6 +486,9 @@ sv: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + one: Muntligt uttalande till parlamentet + other: Muntliga uttalanden till parlamentet place: change: find_results: diff --git a/config/locales/sw.yml b/config/locales/sw.yml index e6cbb336b4..67c730fdbf 100644 --- a/config/locales/sw.yml +++ b/config/locales/sw.yml @@ -486,6 +486,9 @@ sw: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + one: Taarifa ya Matamshi kwa Bunge + other: Taarifa za Matamshi kwa Bunge place: change: find_results: diff --git a/config/locales/ta.yml b/config/locales/ta.yml index 35a4d1ed26..5e6cb46d2b 100644 --- a/config/locales/ta.yml +++ b/config/locales/ta.yml @@ -486,6 +486,9 @@ ta: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + one: பாராளுமன்றத்துக்கு வாய்வழி அறிவிப்பு + other: பாராளுமன்றத்துக்கு வாய்வழி அறிவிப்புகள் place: change: find_results: diff --git a/config/locales/th.yml b/config/locales/th.yml index ee49b57959..b2c5c6981c 100644 --- a/config/locales/th.yml +++ b/config/locales/th.yml @@ -412,6 +412,8 @@ th: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + other: แถลงการณ์ด้วยวาจาต่อรัฐสภา place: change: find_results: diff --git a/config/locales/tk.yml b/config/locales/tk.yml index 049a4abeb3..57fed170e0 100644 --- a/config/locales/tk.yml +++ b/config/locales/tk.yml @@ -486,6 +486,9 @@ tk: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + one: Mejlise dilden beýan + other: Mejlise dilden beýanlar place: change: find_results: diff --git a/config/locales/tr.yml b/config/locales/tr.yml index 4527ae2c5e..69c798e0a7 100644 --- a/config/locales/tr.yml +++ b/config/locales/tr.yml @@ -486,6 +486,9 @@ tr: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + one: Parlamentoya sözlü açıklama + other: Parlamentoya sözlü açıklamalar place: change: find_results: diff --git a/config/locales/uk.yml b/config/locales/uk.yml index 5cf706d549..eca73e5593 100644 --- a/config/locales/uk.yml +++ b/config/locales/uk.yml @@ -634,6 +634,11 @@ uk: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + few: + many: + one: Усна заява до Парламенту + other: Усні заяви до Парламенту place: change: find_results: diff --git a/config/locales/ur.yml b/config/locales/ur.yml index 715e7521eb..c876918ae4 100644 --- a/config/locales/ur.yml +++ b/config/locales/ur.yml @@ -486,6 +486,9 @@ ur: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + one: پارلیمان کے لیے زبانی بیان + other: پارلیمان کے لیے زبانی بیانات place: change: find_results: diff --git a/config/locales/uz.yml b/config/locales/uz.yml index 099779c4ab..af3114fd83 100644 --- a/config/locales/uz.yml +++ b/config/locales/uz.yml @@ -486,6 +486,9 @@ uz: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + one: Парламентга оғзаки баёнот + other: Парламентга оғзаки баёнотлар place: change: find_results: diff --git a/config/locales/vi.yml b/config/locales/vi.yml index 6c53e6022c..cacd6b5774 100644 --- a/config/locales/vi.yml +++ b/config/locales/vi.yml @@ -412,6 +412,8 @@ vi: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + other: Tuyên bố bằng lời trước Quốc hội place: change: find_results: diff --git a/config/locales/yi.yml b/config/locales/yi.yml index 240d1978b7..66a6c03173 100644 --- a/config/locales/yi.yml +++ b/config/locales/yi.yml @@ -486,6 +486,9 @@ yi: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + one: + other: place: change: find_results: diff --git a/config/locales/zh-hk.yml b/config/locales/zh-hk.yml index caf1e727d1..a927ee9e5a 100644 --- a/config/locales/zh-hk.yml +++ b/config/locales/zh-hk.yml @@ -412,6 +412,8 @@ zh-hk: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + other: 提交國會的口頭聲明 place: change: find_results: diff --git a/config/locales/zh-tw.yml b/config/locales/zh-tw.yml index d59dd26fb0..adfdcdbaae 100644 --- a/config/locales/zh-tw.yml +++ b/config/locales/zh-tw.yml @@ -412,6 +412,8 @@ zh-tw: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + other: 對議會的口頭聲明 place: change: find_results: diff --git a/config/locales/zh.yml b/config/locales/zh.yml index 8d6479a0bd..4815139e44 100644 --- a/config/locales/zh.yml +++ b/config/locales/zh.yml @@ -412,6 +412,8 @@ zh: valid_uprn_no_match_sub_html: website: what_you_need_to_know: + oral_statement: + other: 议会口头声明 place: change: find_results: From b4f88899872aa3c624f74a892e455d5151286c3c Mon Sep 17 00:00:00 2001 From: ramya vidapanakal Date: Tue, 21 Jan 2025 15:15:54 +0000 Subject: [PATCH 14/15] Add request and system tests for speeches - Added request tests and modified the system tests to rpsec tests in frontend - Commit audit trail: https://github.com/alphagov/government-frontend/blob/90cf5386b165b3a342689744feece7c83449b153/test/integration/speech_test.rb --- spec/requests/speech_spec.rb | 23 ++++++++++++ spec/system/speech_spec.rb | 70 ++++++++++++++++++++++++++++++++++++ 2 files changed, 93 insertions(+) create mode 100644 spec/requests/speech_spec.rb create mode 100644 spec/system/speech_spec.rb diff --git a/spec/requests/speech_spec.rb b/spec/requests/speech_spec.rb new file mode 100644 index 0000000000..c33fb7b8e8 --- /dev/null +++ b/spec/requests/speech_spec.rb @@ -0,0 +1,23 @@ +RSpec.describe "Speech" do + before do + content_store_has_example_item("/government/speeches/vehicle-regulations", schema: :speech) + end + + describe "GET show" do + context "when visiting a Speech page" do + let(:base_path) { "/government/speeches/vehicle-regulations" } + + it "returns 200" do + get base_path + + expect(response).to have_http_status(:ok) + end + + it "renders the show template" do + get base_path + + expect(response).to render_template("show") + end + end + end +end diff --git a/spec/system/speech_spec.rb b/spec/system/speech_spec.rb new file mode 100644 index 0000000000..f8161cef60 --- /dev/null +++ b/spec/system/speech_spec.rb @@ -0,0 +1,70 @@ +RSpec.describe "Speech" do + it_behaves_like "it has meta tags", "speech", "speech-authored-article" + it_behaves_like "it has meta tags for images", "speech", "speech-authored-article" + + context "when visiting a Speeches page" do + before do + content_store_has_example_item("/government/speeches/speech-authored-article", schema: :speech, example: "speech-authored-article") + content_store_has_example_item("/government/speeches/speech", schema: :speech, example: "speech") + end + + it "displays the speech content" do + visit "/government/speeches/speech-authored-article" + + expect(page).to have_title("Britain's choice: economic security with the EU, or a leap into the dark (Archived)") + + expect(page).to have_css("h1", text: "Britain's choice: economic security with the EU, or a leap into the dark (Archived)") + expect(page).to have_text("Prime Minister David Cameron wrote an article on the UK's economic security within the EU for The Telegraph.") + end + + it "renders metadata and document footer, including speaker" do + visit "/government/speeches/speech" + + within("[class*='metadata-column']") do + expect(page).to have_text("Department of Energy & Climate Change and The Rt Hon Andrea Leadsom MP") + expect(page).to have_link("Department of Energy", href: "/government/organisations/department-of-energy-climate-change") + expect(page).to have_link("The Rt Hon Andrea Leadsom MP", href: "/government/people/andrea-leadsom") + expect(page).to have_text("Published 8 March 2016") + end + + within("[class*='important-metadata']") do + expect(page).to have_text("Delivered on: 2 February 2016 (Original script, may differ from delivered version)") + expect(page).to have_text("Location: Women in Nuclear UK Conference, Church House Conference Centre, Dean's Yard, Westminster, London") + end + expect(page).to have_selector(".app-c-published-dates", text: "Published 8 March 2016") + end + + it "does not display a single page notification button" do + visit "/government/speeches/speech-authored-article" + + expect(page).not_to have_css(".gem-c-single-page-notification-button") + end + end + + context "when visiting a speech translation page" do + before do + content_store_has_example_item("/government/speeches/speech-translated", schema: :speech, example: "speech-translated") + end + + it "displays the translated speech" do + visit "/government/speeches/speech-translated" + + expect(page).to have_title("هذا القرار بداية لنهاية برنامج الأسلحة الكيميائية في ليبيا") + expect(page).to have_css(".gem-c-translation-nav") + expect(page).to have_text("بوريس جونسون: يمنح القرار الترخيص اللازم لمنظمة حظر الأسلحة الكيميائية لإزالة سلائف تلك الأسلحة من ليبيا تمهيدا لإتلافها في بلد ثالث. وبذلك نكون قد خففنا خطر وقوع هذه الأسلحة في أيدي الإرهابيين ") + end + end + + context "when visiting a speech that is withdrawn" do + before do + content_store_has_example_item("/government/speeches/withdrawn-speech", schema: :speech, example: "withdrawn-speech") + end + + it "displays the withdrawn speech notice" do + visit "/government/speeches/withdrawn-speech" + + expect(page).to have_css(".govspeak", text: "This page has been withdrawn because it is out of date.") + expect(page).to have_content("withdrawn on 15 May 2018") + end + end +end From e86cb9d7a7ef38ecf686112fa8b5fd482bb78e9d Mon Sep 17 00:00:00 2001 From: ramya vidapanakal Date: Thu, 13 Feb 2025 16:06:55 +0000 Subject: [PATCH 15/15] Add locales for authored_article Ran the command : govuk-docker-run rake "consolidation:copy_translation[content_item.schema_name.authored_article,formats.authored_article]" Audit trail: https://github.com/alphagov/government-frontend/blob/8799336fd3c96dac7c7e53cce3cd8a522beb17da/config/locales/en.yml#L101-L103 Speech document type comprises of all the below: - speech - authored_article - written_statement - oral_statement Reference document: https://github.com/alphagov/publishing-api/blob/648bddda06ad1afaeeebe2dc5f6f97da214d14ef/content_schemas/dist/formats/speech/frontend/schema.json#L34-L42 --- config/locales/ar.yml | 7 +++++++ config/locales/az.yml | 3 +++ config/locales/be.yml | 5 +++++ config/locales/bg.yml | 3 +++ config/locales/bn.yml | 3 +++ config/locales/cs.yml | 4 ++++ config/locales/cy.yml | 7 +++++++ config/locales/da.yml | 3 +++ config/locales/de.yml | 3 +++ config/locales/dr.yml | 3 +++ config/locales/el.yml | 3 +++ config/locales/en.yml | 3 +++ config/locales/es-419.yml | 3 +++ config/locales/es.yml | 3 +++ config/locales/et.yml | 3 +++ config/locales/fa.yml | 3 +++ config/locales/fi.yml | 3 +++ config/locales/fr.yml | 3 +++ config/locales/gd.yml | 5 +++++ config/locales/gu.yml | 3 +++ config/locales/he.yml | 3 +++ config/locales/hi.yml | 3 +++ config/locales/hr.yml | 4 ++++ config/locales/hu.yml | 3 +++ config/locales/hy.yml | 3 +++ config/locales/id.yml | 2 ++ config/locales/is.yml | 3 +++ config/locales/it.yml | 3 +++ config/locales/ja.yml | 2 ++ config/locales/ka.yml | 3 +++ config/locales/kk.yml | 3 +++ config/locales/ko.yml | 2 ++ config/locales/lt.yml | 4 ++++ config/locales/lv.yml | 3 +++ config/locales/ms.yml | 2 ++ config/locales/mt.yml | 5 +++++ config/locales/ne.yml | 3 +++ config/locales/nl.yml | 3 +++ config/locales/no.yml | 3 +++ config/locales/pa-pk.yml | 3 +++ config/locales/pa.yml | 3 +++ config/locales/pl.yml | 5 +++++ config/locales/ps.yml | 3 +++ config/locales/pt.yml | 3 +++ config/locales/ro.yml | 4 ++++ config/locales/ru.yml | 5 +++++ config/locales/si.yml | 3 +++ config/locales/sk.yml | 4 ++++ config/locales/sl.yml | 5 +++++ config/locales/so.yml | 3 +++ config/locales/sq.yml | 3 +++ config/locales/sr.yml | 4 ++++ config/locales/sv.yml | 3 +++ config/locales/sw.yml | 3 +++ config/locales/ta.yml | 3 +++ config/locales/th.yml | 2 ++ config/locales/tk.yml | 3 +++ config/locales/tr.yml | 3 +++ config/locales/uk.yml | 5 +++++ config/locales/ur.yml | 3 +++ config/locales/uz.yml | 3 +++ config/locales/vi.yml | 2 ++ config/locales/yi.yml | 3 +++ config/locales/zh-hk.yml | 2 ++ config/locales/zh-tw.yml | 2 ++ config/locales/zh.yml | 2 ++ 66 files changed, 217 insertions(+) diff --git a/config/locales/ar.yml b/config/locales/ar.yml index 9ce121cb2d..0f188e8f11 100644 --- a/config/locales/ar.yml +++ b/config/locales/ar.yml @@ -680,6 +680,13 @@ ar: error: find: formats: + authored_article: + few: + many: + one: مقال مؤلَّف + other: مقالات مؤلَّفة + two: + zero: case_study: few: many: diff --git a/config/locales/az.yml b/config/locales/az.yml index a84a1c6841..933f74fd83 100644 --- a/config/locales/az.yml +++ b/config/locales/az.yml @@ -388,6 +388,9 @@ az: error: find: formats: + authored_article: + one: Müəlliflik edilmiş məqalə + other: Müəlliflik edilmiş məqalələr case_study: one: Nümunə üzrə araşdırma other: Nümunə üzrə araşdırmalar diff --git a/config/locales/be.yml b/config/locales/be.yml index 32bad75c51..090cd75e1e 100644 --- a/config/locales/be.yml +++ b/config/locales/be.yml @@ -534,6 +534,11 @@ be: error: find: formats: + authored_article: + few: + many: + one: Аўтарскі артыкул + other: Аўтарскія артыкулы case_study: few: many: diff --git a/config/locales/bg.yml b/config/locales/bg.yml index d35a553e4d..a5161f0fa9 100644 --- a/config/locales/bg.yml +++ b/config/locales/bg.yml @@ -388,6 +388,9 @@ bg: error: find: formats: + authored_article: + one: Авторска статия + other: Авторска статии case_study: one: Казус other: Казуси diff --git a/config/locales/bn.yml b/config/locales/bn.yml index 828e16003a..4af05365c1 100644 --- a/config/locales/bn.yml +++ b/config/locales/bn.yml @@ -388,6 +388,9 @@ bn: error: find: formats: + authored_article: + one: লেখকের উৎস সহ নিবন্ধ + other: লেখকের উৎস সহ নিবন্ধসমূহ case_study: one: কেস স্টাডি other: কেস স্টাডিসমূহ diff --git a/config/locales/cs.yml b/config/locales/cs.yml index 995bea75c6..b0c52b0d20 100644 --- a/config/locales/cs.yml +++ b/config/locales/cs.yml @@ -461,6 +461,10 @@ cs: error: find: formats: + authored_article: + few: + one: Autorský článek + other: Autorské články case_study: few: one: Případová studie diff --git a/config/locales/cy.yml b/config/locales/cy.yml index 46274c9aed..bde0493207 100644 --- a/config/locales/cy.yml +++ b/config/locales/cy.yml @@ -682,6 +682,13 @@ cy: error: find: Ffeindio formats: + authored_article: + few: + many: + one: Erthygl ag awdur wedi'i enwi + other: Erthyglau ag awdur wedi'i enwi + two: + zero: case_study: few: many: diff --git a/config/locales/da.yml b/config/locales/da.yml index 3f3436fd3d..05a1786cb8 100644 --- a/config/locales/da.yml +++ b/config/locales/da.yml @@ -388,6 +388,9 @@ da: error: find: formats: + authored_article: + one: Forfattet artikel + other: Forfatterartikler case_study: one: Casestudie other: Casestudie diff --git a/config/locales/de.yml b/config/locales/de.yml index ab86f579b7..3def1fb8a6 100644 --- a/config/locales/de.yml +++ b/config/locales/de.yml @@ -388,6 +388,9 @@ de: error: find: formats: + authored_article: + one: Namensartikel + other: Namensartikel case_study: one: Fallstudie other: Fallstudien diff --git a/config/locales/dr.yml b/config/locales/dr.yml index 0c2ad74538..6bfda71ba6 100644 --- a/config/locales/dr.yml +++ b/config/locales/dr.yml @@ -388,6 +388,9 @@ dr: error: find: formats: + authored_article: + one: مقاله تألیف شده + other: مقالات تألیف شده case_study: one: مطالعه موردی other: مطالعات موردی diff --git a/config/locales/el.yml b/config/locales/el.yml index 468d4843ae..942bc29fc7 100644 --- a/config/locales/el.yml +++ b/config/locales/el.yml @@ -388,6 +388,9 @@ el: error: find: formats: + authored_article: + one: Σύνταξη άρθρου + other: Σύνταξη άρθρων case_study: one: Μελέτη περίπτωσης other: Μελέτες περιπτώσεων diff --git a/config/locales/en.yml b/config/locales/en.yml index d8a9c36be0..8bffbde6e8 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -390,6 +390,9 @@ en: error: Error find: Find formats: + authored_article: + one: Authored article + other: Authored articles case_study: one: Case study other: Case studies diff --git a/config/locales/es-419.yml b/config/locales/es-419.yml index 75f19cfd54..e30cab3cdb 100644 --- a/config/locales/es-419.yml +++ b/config/locales/es-419.yml @@ -388,6 +388,9 @@ es-419: error: find: formats: + authored_article: + one: Artículo de autoría + other: Artículos de autoría case_study: one: Estudio de caso other: Estudios de caso diff --git a/config/locales/es.yml b/config/locales/es.yml index af20270cf0..8c9074e4e1 100644 --- a/config/locales/es.yml +++ b/config/locales/es.yml @@ -388,6 +388,9 @@ es: error: find: formats: + authored_article: + one: Artículo de autor + other: Artículos de autor case_study: one: Caso de estudio práctico other: Casos de estudio práctico diff --git a/config/locales/et.yml b/config/locales/et.yml index da3d01580c..e637c2fb20 100644 --- a/config/locales/et.yml +++ b/config/locales/et.yml @@ -388,6 +388,9 @@ et: error: find: formats: + authored_article: + one: Kirjutatud artikkel + other: Kirjutatud artiklid case_study: one: Juhtumiuuring other: Juhtumiuuringud diff --git a/config/locales/fa.yml b/config/locales/fa.yml index 78e51a8129..828a7d46fd 100644 --- a/config/locales/fa.yml +++ b/config/locales/fa.yml @@ -388,6 +388,9 @@ fa: error: find: formats: + authored_article: + one: مقاله تألیف شده + other: مقالات تألیف شده case_study: one: مطالعه موردی other: مطالعات موردی diff --git a/config/locales/fi.yml b/config/locales/fi.yml index d2ebd26628..cf0784c6ff 100644 --- a/config/locales/fi.yml +++ b/config/locales/fi.yml @@ -388,6 +388,9 @@ fi: error: find: formats: + authored_article: + one: Kirjoitettu artikkeli + other: Kirjoitettuja artikkeleita case_study: one: Tapaustutkimus other: Tapaustutkimuksia diff --git a/config/locales/fr.yml b/config/locales/fr.yml index d3e4c7f984..4ec8ef97bd 100644 --- a/config/locales/fr.yml +++ b/config/locales/fr.yml @@ -388,6 +388,9 @@ fr: error: find: formats: + authored_article: + one: Article signé + other: Articles signés case_study: one: Etude de cas other: Etudes de cas diff --git a/config/locales/gd.yml b/config/locales/gd.yml index eeec37a316..abe1eacb68 100644 --- a/config/locales/gd.yml +++ b/config/locales/gd.yml @@ -534,6 +534,11 @@ gd: error: find: formats: + authored_article: + few: + one: Ailt scríofa + other: Téacsanna scríofa + two: case_study: few: one: Cás-staidéir diff --git a/config/locales/gu.yml b/config/locales/gu.yml index ee9049c01f..356ca954f5 100644 --- a/config/locales/gu.yml +++ b/config/locales/gu.yml @@ -388,6 +388,9 @@ gu: error: find: formats: + authored_article: + one: લેખિત લેખ + other: લેખિત લેખો case_study: one: કેસ સ્ટડી other: કેસ સ્ટડીઝ diff --git a/config/locales/he.yml b/config/locales/he.yml index f4fb4b25fa..9affd4dd1f 100644 --- a/config/locales/he.yml +++ b/config/locales/he.yml @@ -388,6 +388,9 @@ he: error: find: formats: + authored_article: + one: מאמר מאושר + other: מאמרים מאושרים case_study: one: מקרה בוחן other: מקרי בוחן diff --git a/config/locales/hi.yml b/config/locales/hi.yml index 497e792931..1ac06ebac8 100644 --- a/config/locales/hi.yml +++ b/config/locales/hi.yml @@ -388,6 +388,9 @@ hi: error: find: formats: + authored_article: + one: मूल आलेख + other: मूल आलेख case_study: one: विषय अध्ययन other: विषय अध्ययन diff --git a/config/locales/hr.yml b/config/locales/hr.yml index 85a924d5f4..493110f335 100644 --- a/config/locales/hr.yml +++ b/config/locales/hr.yml @@ -461,6 +461,10 @@ hr: error: find: formats: + authored_article: + few: + one: Autorski članak + other: Autorski članci case_study: few: one: Studija slučaja diff --git a/config/locales/hu.yml b/config/locales/hu.yml index 444bf6fe77..65db94a11f 100644 --- a/config/locales/hu.yml +++ b/config/locales/hu.yml @@ -388,6 +388,9 @@ hu: error: find: formats: + authored_article: + one: Publicisztika + other: Publicisztikák case_study: one: Esettanulmány other: Esettanulmányok diff --git a/config/locales/hy.yml b/config/locales/hy.yml index fa31d282fd..84116e9b76 100644 --- a/config/locales/hy.yml +++ b/config/locales/hy.yml @@ -388,6 +388,9 @@ hy: error: find: formats: + authored_article: + one: Հեղինակային հոդված + other: Հեղինակային հոդվածներ case_study: one: Մասնավոր դեպքի ուսումնասիրություն other: Մասնավոր դեպքի ուսումնասիրություններ diff --git a/config/locales/id.yml b/config/locales/id.yml index e8edb9d9d2..0246688d99 100644 --- a/config/locales/id.yml +++ b/config/locales/id.yml @@ -315,6 +315,8 @@ id: error: find: formats: + authored_article: + other: Artikel bersumber case_study: other: Studi kasus find_my_nearest: diff --git a/config/locales/is.yml b/config/locales/is.yml index 1f80925494..d355cca3f0 100644 --- a/config/locales/is.yml +++ b/config/locales/is.yml @@ -388,6 +388,9 @@ is: error: find: formats: + authored_article: + one: Samin grein + other: Samdar greinar case_study: one: Ferilsathugun other: Ferilsathuganir diff --git a/config/locales/it.yml b/config/locales/it.yml index e8838c43fb..3e7df18220 100644 --- a/config/locales/it.yml +++ b/config/locales/it.yml @@ -388,6 +388,9 @@ it: error: find: formats: + authored_article: + one: Articolo d’autore + other: Articoli d’autore case_study: one: Caso di studio other: Casi di studio diff --git a/config/locales/ja.yml b/config/locales/ja.yml index fcd93e640f..711515b138 100644 --- a/config/locales/ja.yml +++ b/config/locales/ja.yml @@ -315,6 +315,8 @@ ja: error: find: formats: + authored_article: + other: 執筆記事 case_study: other: ケーススタディ find_my_nearest: diff --git a/config/locales/ka.yml b/config/locales/ka.yml index ff25b86477..8f32a50a95 100644 --- a/config/locales/ka.yml +++ b/config/locales/ka.yml @@ -388,6 +388,9 @@ ka: error: find: formats: + authored_article: + one: ავტორიზებული სტატია + other: ავტორიზებული სტატიები case_study: one: შემთხვევის კვლევა other: შემთხვევის კვლევები diff --git a/config/locales/kk.yml b/config/locales/kk.yml index b2e561630c..a8c54e2755 100644 --- a/config/locales/kk.yml +++ b/config/locales/kk.yml @@ -388,6 +388,9 @@ kk: error: find: formats: + authored_article: + one: Мақала авторы + other: Мақала авторлары case_study: one: Тақырыптық зерттеу other: Тақырыптық зерттеулер diff --git a/config/locales/ko.yml b/config/locales/ko.yml index 6fef2b47cc..08b0e489fe 100644 --- a/config/locales/ko.yml +++ b/config/locales/ko.yml @@ -315,6 +315,8 @@ ko: error: find: formats: + authored_article: + other: 저작물 case_study: other: 사례 연구 find_my_nearest: diff --git a/config/locales/lt.yml b/config/locales/lt.yml index bbd19ac785..25565283d3 100644 --- a/config/locales/lt.yml +++ b/config/locales/lt.yml @@ -461,6 +461,10 @@ lt: error: find: formats: + authored_article: + few: + one: Autoriaus straipsnis + other: Autorių straipsniai case_study: few: one: Atvejo analizė diff --git a/config/locales/lv.yml b/config/locales/lv.yml index cada2ea852..4197d59988 100644 --- a/config/locales/lv.yml +++ b/config/locales/lv.yml @@ -388,6 +388,9 @@ lv: error: find: formats: + authored_article: + one: Autora raksts + other: Autora raksti case_study: one: Piemērs other: Piemēri diff --git a/config/locales/ms.yml b/config/locales/ms.yml index 080f9921c1..44a328c07f 100644 --- a/config/locales/ms.yml +++ b/config/locales/ms.yml @@ -315,6 +315,8 @@ ms: error: find: formats: + authored_article: + other: Artikel ditulis penulis case_study: other: Kajian kes find_my_nearest: diff --git a/config/locales/mt.yml b/config/locales/mt.yml index 226eb28f25..283a7f080c 100644 --- a/config/locales/mt.yml +++ b/config/locales/mt.yml @@ -534,6 +534,11 @@ mt: error: find: formats: + authored_article: + few: + many: + one: Artiklu miktub + other: Artikli miktuba case_study: few: many: diff --git a/config/locales/ne.yml b/config/locales/ne.yml index 958e6b7473..22a3cd7949 100644 --- a/config/locales/ne.yml +++ b/config/locales/ne.yml @@ -388,6 +388,9 @@ ne: error: find: formats: + authored_article: + one: लेखिएको लेख + other: लेखिएको लेखहरू case_study: one: मामिला अध्ययन other: मामिला अध्ययनहरू diff --git a/config/locales/nl.yml b/config/locales/nl.yml index 63799d0439..51e0b48a1c 100644 --- a/config/locales/nl.yml +++ b/config/locales/nl.yml @@ -388,6 +388,9 @@ nl: error: find: formats: + authored_article: + one: Geschreven artikel + other: Geschreven artikelen case_study: one: Casestudy other: Casestudies diff --git a/config/locales/no.yml b/config/locales/no.yml index 2b31153b45..cc8ca7ab45 100644 --- a/config/locales/no.yml +++ b/config/locales/no.yml @@ -388,6 +388,9 @@ error: find: formats: + authored_article: + one: Forfatterartikkel + other: Forfatterartikler case_study: one: Casestudie other: Casestudier diff --git a/config/locales/pa-pk.yml b/config/locales/pa-pk.yml index d64c0c3567..c31f1b272b 100644 --- a/config/locales/pa-pk.yml +++ b/config/locales/pa-pk.yml @@ -388,6 +388,9 @@ pa-pk: error: find: formats: + authored_article: + one: لکھاری دا مضمون + other: لکھاری دے مضمون case_study: one: کیس دی پڑھائی other: کیس دی پڑھائی diff --git a/config/locales/pa.yml b/config/locales/pa.yml index 1dd9db0d73..25bc83e551 100644 --- a/config/locales/pa.yml +++ b/config/locales/pa.yml @@ -388,6 +388,9 @@ pa: error: find: formats: + authored_article: + one: ਲੇਖਕ ਲੇਖ + other: ਲੇਖਕ ਲੇਖ case_study: one: ਕੇਸ ਅਧਿਐਨ other: ਕੇਸ ਅਧਿਐਨ diff --git a/config/locales/pl.yml b/config/locales/pl.yml index e134454ce2..c53c2a8e6a 100644 --- a/config/locales/pl.yml +++ b/config/locales/pl.yml @@ -534,6 +534,11 @@ pl: error: find: formats: + authored_article: + few: + many: + one: Dokument utworzony przez + other: Dokumenty utworzone przez case_study: few: many: diff --git a/config/locales/ps.yml b/config/locales/ps.yml index 5315a14df8..f13a689008 100644 --- a/config/locales/ps.yml +++ b/config/locales/ps.yml @@ -388,6 +388,9 @@ ps: error: find: formats: + authored_article: + one: لیکل شوې مقاله + other: لیکل شوي مقالې case_study: one: موردي مطالعه other: موردي مطالعات diff --git a/config/locales/pt.yml b/config/locales/pt.yml index a74a4ca18e..edbc742a53 100644 --- a/config/locales/pt.yml +++ b/config/locales/pt.yml @@ -388,6 +388,9 @@ pt: error: find: formats: + authored_article: + one: Artigo de autor + other: Artigos de autor case_study: one: Estudo de caso other: Estudos de caso diff --git a/config/locales/ro.yml b/config/locales/ro.yml index a905bf7a22..58a0857abe 100644 --- a/config/locales/ro.yml +++ b/config/locales/ro.yml @@ -461,6 +461,10 @@ ro: error: find: formats: + authored_article: + few: + one: Articol publicat + other: Articole publicate case_study: few: one: Studiu de caz diff --git a/config/locales/ru.yml b/config/locales/ru.yml index 67818cca1b..0f0509b3ac 100644 --- a/config/locales/ru.yml +++ b/config/locales/ru.yml @@ -534,6 +534,11 @@ ru: error: find: formats: + authored_article: + few: + many: + one: Авторская статья + other: Авторские статьи case_study: few: many: diff --git a/config/locales/si.yml b/config/locales/si.yml index 8f8a4b363b..bba99bdd17 100644 --- a/config/locales/si.yml +++ b/config/locales/si.yml @@ -388,6 +388,9 @@ si: error: find: formats: + authored_article: + one: රචනා කළ ලිපිය + other: රචනා කළ ලිපි case_study: one: සිද්ධි අධ්යයනය other: සිද්ධි අධ්යයන diff --git a/config/locales/sk.yml b/config/locales/sk.yml index 0972039442..2301151206 100644 --- a/config/locales/sk.yml +++ b/config/locales/sk.yml @@ -461,6 +461,10 @@ sk: error: find: formats: + authored_article: + few: + one: Autor článku + other: Autorské články case_study: few: one: Prípadová štúdia diff --git a/config/locales/sl.yml b/config/locales/sl.yml index 0c182ae3b2..ab209201f3 100644 --- a/config/locales/sl.yml +++ b/config/locales/sl.yml @@ -534,6 +534,11 @@ sl: error: find: formats: + authored_article: + few: + one: Avtorski članek + other: Avtorski članki + two: case_study: few: one: Študija primera diff --git a/config/locales/so.yml b/config/locales/so.yml index e76163339c..5b132f9026 100644 --- a/config/locales/so.yml +++ b/config/locales/so.yml @@ -388,6 +388,9 @@ so: error: find: formats: + authored_article: + one: Qodob laqoray + other: Qodobada laqoray case_study: one: Daraasad other: Daraasado diff --git a/config/locales/sq.yml b/config/locales/sq.yml index 875c083b3d..85861b9e86 100644 --- a/config/locales/sq.yml +++ b/config/locales/sq.yml @@ -388,6 +388,9 @@ sq: error: find: formats: + authored_article: + one: Artikull me autor + other: Artikuj me autor case_study: one: Rast studimi other: Raste studimi diff --git a/config/locales/sr.yml b/config/locales/sr.yml index c45de7b4ef..025e88e5d7 100644 --- a/config/locales/sr.yml +++ b/config/locales/sr.yml @@ -461,6 +461,10 @@ sr: error: find: formats: + authored_article: + few: + one: Autorski članak + other: Autorski članci case_study: few: one: Studija slučaja diff --git a/config/locales/sv.yml b/config/locales/sv.yml index 66243e4e2d..3fb4858801 100644 --- a/config/locales/sv.yml +++ b/config/locales/sv.yml @@ -388,6 +388,9 @@ sv: error: find: formats: + authored_article: + one: Författad artikel + other: Författade artiklar case_study: one: Fallstudie other: Fallstudier diff --git a/config/locales/sw.yml b/config/locales/sw.yml index 67c730fdbf..1cd8393567 100644 --- a/config/locales/sw.yml +++ b/config/locales/sw.yml @@ -388,6 +388,9 @@ sw: error: find: formats: + authored_article: + one: Makala ya maelezo ya mwandishi + other: Makala ya maelezo ya mwandishi case_study: one: Uchunguzi kifani other: Uchunguzi kifani diff --git a/config/locales/ta.yml b/config/locales/ta.yml index 5e6cb46d2b..e0f9778446 100644 --- a/config/locales/ta.yml +++ b/config/locales/ta.yml @@ -388,6 +388,9 @@ ta: error: find: formats: + authored_article: + one: எழுதிய கட்டுரை + other: எழுதிய கட்டுரைகள் case_study: one: நிகழ்வு ஆய்வு other: நிகழ்வு ஆய்வுகள் diff --git a/config/locales/th.yml b/config/locales/th.yml index b2c5c6981c..07baced234 100644 --- a/config/locales/th.yml +++ b/config/locales/th.yml @@ -315,6 +315,8 @@ th: error: find: formats: + authored_article: + other: บทความที่มีผู้เขียน case_study: other: กรณีศึกษา find_my_nearest: diff --git a/config/locales/tk.yml b/config/locales/tk.yml index 57fed170e0..99c077fae1 100644 --- a/config/locales/tk.yml +++ b/config/locales/tk.yml @@ -388,6 +388,9 @@ tk: error: find: formats: + authored_article: + one: Ygtyýarlandyrylan statýa + other: Ygtyýarlandyrylan statýalar case_study: one: Ýagdaý seljermesi other: Ýagdaý seljermeleri diff --git a/config/locales/tr.yml b/config/locales/tr.yml index 69c798e0a7..d25763f551 100644 --- a/config/locales/tr.yml +++ b/config/locales/tr.yml @@ -388,6 +388,9 @@ tr: error: find: formats: + authored_article: + one: Yazılı makale + other: Yazılı makaleler case_study: one: Vaka incelemesi other: Vaka incelemeleri diff --git a/config/locales/uk.yml b/config/locales/uk.yml index eca73e5593..8fd04052e7 100644 --- a/config/locales/uk.yml +++ b/config/locales/uk.yml @@ -534,6 +534,11 @@ uk: error: find: formats: + authored_article: + few: + many: + one: Авторська стаття + other: Авторські статті case_study: few: many: diff --git a/config/locales/ur.yml b/config/locales/ur.yml index c876918ae4..d8c34b8019 100644 --- a/config/locales/ur.yml +++ b/config/locales/ur.yml @@ -388,6 +388,9 @@ ur: error: find: formats: + authored_article: + one: مصنف کے نام کے ساتھ لکھا مضمون + other: مصنف کے نام کے ساتھ لکھے مضامین case_study: one: کیس اسٹڈی other: کیس اسٹڈیز diff --git a/config/locales/uz.yml b/config/locales/uz.yml index af3114fd83..aa1cd0adc9 100644 --- a/config/locales/uz.yml +++ b/config/locales/uz.yml @@ -388,6 +388,9 @@ uz: error: find: formats: + authored_article: + one: Муаллифлик мақоласи + other: Муаллифлик мақолалари case_study: one: Ҳолатларнинг таҳлили other: Ҳолатларнинг таҳлиллари diff --git a/config/locales/vi.yml b/config/locales/vi.yml index cacd6b5774..02e15aeb7c 100644 --- a/config/locales/vi.yml +++ b/config/locales/vi.yml @@ -315,6 +315,8 @@ vi: error: find: formats: + authored_article: + other: Bài viết có tác giả case_study: other: Nghiên cứu điển hình find_my_nearest: diff --git a/config/locales/yi.yml b/config/locales/yi.yml index 66a6c03173..fe84393921 100644 --- a/config/locales/yi.yml +++ b/config/locales/yi.yml @@ -388,6 +388,9 @@ yi: error: find: formats: + authored_article: + one: + other: case_study: one: other: diff --git a/config/locales/zh-hk.yml b/config/locales/zh-hk.yml index a927ee9e5a..f60ab5e32f 100644 --- a/config/locales/zh-hk.yml +++ b/config/locales/zh-hk.yml @@ -315,6 +315,8 @@ zh-hk: error: find: formats: + authored_article: + other: 撰寫文章 case_study: other: 案例研究 find_my_nearest: diff --git a/config/locales/zh-tw.yml b/config/locales/zh-tw.yml index adfdcdbaae..ebd238e739 100644 --- a/config/locales/zh-tw.yml +++ b/config/locales/zh-tw.yml @@ -315,6 +315,8 @@ zh-tw: error: find: formats: + authored_article: + other: 授權文章 case_study: other: 案例分析 find_my_nearest: diff --git a/config/locales/zh.yml b/config/locales/zh.yml index 4815139e44..1889b853e1 100644 --- a/config/locales/zh.yml +++ b/config/locales/zh.yml @@ -315,6 +315,8 @@ zh: error: find: formats: + authored_article: + other: 撰写文章 case_study: other: 案例研究 find_my_nearest: