From 7efd8e8a40c45dd1d13c4a8cb70c28779629e2c1 Mon Sep 17 00:00:00 2001 From: Andy Sellick Date: Fri, 17 May 2024 14:17:02 +0100 Subject: [PATCH 1/2] Remove publisher metadata component - appears to not be in use - functionality can be reproduced using the metadata component from govuk_publishing_components --- .../components/_publisher-metadata.scss | 28 ------ .../components/_publisher_metadata.html.erb | 58 ------------ .../components/docs/important_metadata.yml | 2 +- .../components/docs/publisher_metadata.yml | 91 ------------------- config/initializers/dartsass.rb | 1 - test/components/publisher_metadata_test.rb | 75 --------------- test/test_helper.rb | 7 -- 7 files changed, 1 insertion(+), 261 deletions(-) delete mode 100644 app/assets/stylesheets/components/_publisher-metadata.scss delete mode 100644 app/views/components/_publisher_metadata.html.erb delete mode 100644 app/views/components/docs/publisher_metadata.yml delete mode 100644 test/components/publisher_metadata_test.rb diff --git a/app/assets/stylesheets/components/_publisher-metadata.scss b/app/assets/stylesheets/components/_publisher-metadata.scss deleted file mode 100644 index 99cb7b232..000000000 --- a/app/assets/stylesheets/components/_publisher-metadata.scss +++ /dev/null @@ -1,28 +0,0 @@ -@import "govuk_publishing_components/individual_component_support"; -@import "../mixins/margins"; - -.app-c-publisher-metadata { - @include responsive-bottom-margin; - direction: ltr; - padding-top: govuk-spacing(3); -} - -.app-c-publisher-metadata__other { - .govuk-link { - font-weight: bold; - } -} - -.app-c-publisher-metadata__term { - float: left; - padding-right: govuk-spacing(1); -} - -.app-c-publisher-metadata__toggle, -.app-c-publisher-metadata__definition-others { - display: none; - - .js-enabled & { - display: inline-block; - } -} diff --git a/app/views/components/_publisher_metadata.html.erb b/app/views/components/_publisher_metadata.html.erb deleted file mode 100644 index ddf0503b3..000000000 --- a/app/views/components/_publisher_metadata.html.erb +++ /dev/null @@ -1,58 +0,0 @@ -<% add_app_component_stylesheet("publisher-metadata") %> -<% - published ||= false - last_updated ||= false - link_to_history ||= false - other ||= {} - other_has_values = other.values.compact.reject(&:blank?).any? - metadata = [published, last_updated] -%> -<% if metadata.any? || other_has_values %> -
- <%= render 'components/published_dates', published: published, last_updated: last_updated, link_to_history: link_to_history %> - <% if other_has_values %> - - <% end %> -
-<% end %> diff --git a/app/views/components/docs/important_metadata.yml b/app/views/components/docs/important_metadata.yml index 689422991..5b290489a 100644 --- a/app/views/components/docs/important_metadata.yml +++ b/app/views/components/docs/important_metadata.yml @@ -1,7 +1,7 @@ name: Important metadata description: List of document-type specific metadata body: | - A replacement for the [metadata component](https://govuk-static.herokuapp.com/component-guide/metadata) with only the format specific details. This component separates facet metadata from [publisher metadata](/component-guide/publisher_metadata). + A replacement for the [metadata component](https://govuk-static.herokuapp.com/component-guide/metadata) with only the format specific details. Part of the universal navigation design. diff --git a/app/views/components/docs/publisher_metadata.yml b/app/views/components/docs/publisher_metadata.yml deleted file mode 100644 index fdb6a79a2..000000000 --- a/app/views/components/docs/publisher_metadata.yml +++ /dev/null @@ -1,91 +0,0 @@ -name: Publisher metadata -description: Lists publication dates and publishers. -body: | - A replacement for the [metadata component](https://govuk-static.herokuapp.com/component-guide/metadata) with only the publisher details. - Dates are rendered by the [published dates component](/component-guide/published_dates). - - Part of the universal navigation design. -shared_accessibility_criteria: -- link - -examples: - default: - data: - published: 31 July 2017 - last_updated: 20 September 2017 - other: - from: - - Ministry of Defence - with_history_link: - data: - published: 31 July 2017 - last_updated: 20 September 2017 - link_to_history: true - other: - from: - - Ministry of Defence - no_last_updated: - data: - published: 31 July 2017 - no_publishers: - data: - published: 31 July 2017 - last_updated: 20 September 2017 - link_to_history: true - two_publishers: - data: - published: 31 July 2017 - last_updated: 20 September 2017 - other: - from: - - Department for Education - - Education Funding Agency - multiple_publishers_and_no_link_to_history: - data: - published: 31 July 2017 - last_updated: 20 September 2017 - other: - from: - - Department for Education - - Education Funding Agency - - Department for Work and Pensions - one_collection: - data: - other: - collections: - - Tribunals statistics - two_collections: - data: - other: - collections: - - Tribunals statistics - - Civil justice statistics quarterly - more_than_two_collections: - data: - other: - collections: - - Tribunals statistics - - Civil justice statistics quarterly - - Offender management statistics quarterly - nothing: - description: | - If an `other` object is provided with keys that have no values the component does not render. - data: - other: - From: - Another: [] - "Empty thing": false - "Also empty": {} - national_applicability: - data: - other: - Applies to: "England, Scotland, and Wales (see detailed guidance for Northern Ireland)" - right_to_left: - data: - published: 31 July 2017 - last_updated: 20 September 2017 - other: - from: - - Ministry of Defence - context: - right_to_left: true diff --git a/config/initializers/dartsass.rb b/config/initializers/dartsass.rb index 8dfe080c6..e2cadc570 100644 --- a/config/initializers/dartsass.rb +++ b/config/initializers/dartsass.rb @@ -7,7 +7,6 @@ "components/_figure.scss" => "components/_figure.css", "components/_important-metadata.scss" => "components/_important-metadata.css", "components/_published-dates.scss" => "components/_published-dates.css", - "components/_publisher-metadata.scss" => "components/_publisher-metadata.css", "views/_guide.scss" => "views/_guide.css", "views/_html-publication.scss" => "views/_html-publication.css", "views/_manual.scss" => "views/_manual.css", diff --git a/test/components/publisher_metadata_test.rb b/test/components/publisher_metadata_test.rb deleted file mode 100644 index 5c77138f4..000000000 --- a/test/components/publisher_metadata_test.rb +++ /dev/null @@ -1,75 +0,0 @@ -require "component_test_helper" - -class PublisherMetadataTest < ComponentTestCase - def component_name - "publisher_metadata" - end - - test "does not render metadata when no data is given" do - assert_empty render_component({}) - end - - test "does not render when an 'other' object is provided without any values" do - assert_empty render_component(other: { from: [] }) - assert_empty render_component(other: { a: false, b: "", c: [], d: {}, e: nil }) - end - - test "renders a from link when from data is given" do - render_component(other: { From: ["Ministry of Defence"] }) - assert_select ".app-c-publisher-metadata__other a[href='/government/organisations/ministry-of-defence']", text: "Ministry of Defence" - assert_select ".app-c-publisher-metadata__other dt", text: "From:" - assert_select ".app-c-publisher-metadata__other dd", text: "Ministry of Defence" - end - - test "renders two from links when two publishers are given" do - render_component(other: { from: ["Ministry of Defence", "Education Funding Agency"] }) - assert_select ".app-c-publisher-metadata__other a[href='/government/organisations/ministry-of-defence']", text: "Ministry of Defence" - assert_select ".app-c-publisher-metadata__other a[href='/government/organisations/education-funding-agency']", text: "Education Funding Agency" - end - - test "renders a sentence when multiple publishers are given" do - render_component(other: { from: ["Department for Education", "Education Funding Agency"] }) - assert_select ".app-c-publisher-metadata__other dt", text: "From:" - assert_select ".app-c-publisher-metadata__other dd", text: "Department for Education and Education Funding Agency" - end - - test "renders published dates component when only published date is given" do - render_component(published: "31 July 2017") - assert_select ".app-c-published-dates" - end - - test "renders published dates component when only last updated date is given" do - render_component(last_updated: "20 September 2017") - assert_select ".app-c-published-dates" - end - - test "renders full metadata component when all parameters are given" do - render_component(other: { from: ["Ministry of Defence"] }, published: "31 July 2017", last_updated: "20 September 2017", link_to_history: true) - assert_select ".app-c-published-dates" - assert_select ".app-c-publisher-metadata__other a[href='/government/organisations/ministry-of-defence']", text: "Ministry of Defence" - assert_select ".app-c-publisher-metadata__other dt", text: "From:" - assert_select ".app-c-publisher-metadata__other dd", text: "Ministry of Defence" - end - - test "link tracking is enabled" do - render_component(other: { from: ["Ministry of Defence"] }) - assert_select ".app-c-publisher-metadata__other dl[data-module='gem-track-click']" - end - - test "renders two collection links when two collections are given" do - render_component(other: { collections: ["Tribunals statistics", "Civil justice statistics quarterly"] }) - assert_select ".app-c-publisher-metadata__other dt", text: "Collections:" - assert_select ".app-c-publisher-metadata__other dd a[href='/government/collections/tribunals-statistics']", text: "Tribunals statistics" - assert_select ".app-c-publisher-metadata__other dd a[href='/government/collections/civil-justice-statistics-quarterly']", text: "Civil justice statistics quarterly" - end - - test "renders the first collection and a toggle link when more than two collections are given" do - render_component(other: { collections: ["Tribunals statistics", "Civil justice statistics quarterly", "Offender management statistics quarterly"] }) - assert_select ".app-c-publisher-metadata__other dt", text: "Collections:" - assert_select ".app-c-publisher-metadata__other .app-c-publisher-metadata__definition-sentence", text: "Tribunals statistics, and 2 others" - assert_select ".app-c-publisher-metadata__other a", text: "+ show all" - assert_select ".app-c-publisher-metadata__other a[href='/government/collections/tribunals-statistics']", text: "Tribunals statistics" - assert_select ".app-c-publisher-metadata__other a[href='/government/collections/civil-justice-statistics-quarterly']", text: "Civil justice statistics quarterly" - assert_select ".app-c-publisher-metadata__other a[href='/government/collections/offender-management-statistics-quarterly']", text: "Offender management statistics quarterly" - end -end diff --git a/test/test_helper.rb b/test/test_helper.rb index 2fc49add9..64e0938d1 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -133,13 +133,6 @@ def assert_has_metadata_local(metadata, term_selector, definition_selector) end end - def assert_has_publisher_metadata(options) - within(".app-c-publisher-metadata") do - assert_has_published_dates(options[:first_published], options[:last_updated], history_link: options[:history_link]) - assert_has_publisher_metadata_other(options[:metadata]) - end - end - def assert_has_important_metadata(metadata) within(".app-c-important-metadata") do assert_has_metadata_local( From 7680daa9d57c089e68163b41e7adf6f0402fbfcf Mon Sep 17 00:00:00 2001 From: Andy Sellick Date: Tue, 4 Jun 2024 16:59:39 +0100 Subject: [PATCH 2/2] Update language files - remove text for publisher metadata component --- config/locales/ar.yml | 3 --- config/locales/az.yml | 3 --- config/locales/be.yml | 3 --- config/locales/bg.yml | 3 --- config/locales/bn.yml | 3 --- config/locales/cs.yml | 3 --- config/locales/cy.yml | 3 --- 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 | 3 --- config/locales/gu.yml | 3 --- config/locales/he.yml | 3 --- config/locales/hi.yml | 3 --- config/locales/hr.yml | 3 --- config/locales/hu.yml | 3 --- config/locales/hy.yml | 3 --- config/locales/id.yml | 3 --- config/locales/is.yml | 3 --- config/locales/it.yml | 3 --- config/locales/ja.yml | 3 --- config/locales/ka.yml | 3 --- config/locales/kk.yml | 3 --- config/locales/ko.yml | 3 --- config/locales/lt.yml | 3 --- config/locales/lv.yml | 3 --- config/locales/ms.yml | 3 --- config/locales/mt.yml | 3 --- 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 | 3 --- config/locales/ps.yml | 3 --- config/locales/pt.yml | 3 --- config/locales/ro.yml | 3 --- config/locales/ru.yml | 3 --- config/locales/si.yml | 3 --- config/locales/sk.yml | 3 --- config/locales/sl.yml | 3 --- config/locales/so.yml | 3 --- config/locales/sq.yml | 3 --- config/locales/sr.yml | 3 --- config/locales/sv.yml | 3 --- config/locales/sw.yml | 3 --- config/locales/ta.yml | 3 --- config/locales/th.yml | 3 --- config/locales/tk.yml | 3 --- config/locales/tr.yml | 3 --- config/locales/uk.yml | 3 --- config/locales/ur.yml | 3 --- config/locales/uz.yml | 3 --- config/locales/vi.yml | 3 --- config/locales/yi.yml | 3 --- config/locales/zh-hk.yml | 3 --- config/locales/zh-tw.yml | 3 --- config/locales/zh.yml | 3 --- 66 files changed, 198 deletions(-) diff --git a/config/locales/ar.yml b/config/locales/ar.yml index 70df7d23c..b67f68098 100644 --- a/config/locales/ar.yml +++ b/config/locales/ar.yml @@ -40,9 +40,6 @@ ar: published: تاريخ النشر %{date} see_all_updates: اطلع على كل التحديثات show_all_updates: إظهار كل التحديثات - publisher_metadata: - hide_all: إخفاء الكل - show_all: إظهار الكل share_links: share_this_page: شارك هذه الصفحة consultation: diff --git a/config/locales/az.yml b/config/locales/az.yml index 7576cea20..fd2b9e065 100644 --- a/config/locales/az.yml +++ b/config/locales/az.yml @@ -40,9 +40,6 @@ az: published: 'Dərc edilib: %{date}' see_all_updates: bütün yeniləmələrə baxın show_all_updates: bütün yeniləmələri göstər - publisher_metadata: - hide_all: hamısını gizlət - show_all: hamısını göstər share_links: share_this_page: Bu səhifəni paylaşın consultation: diff --git a/config/locales/be.yml b/config/locales/be.yml index cb01961dc..53ffe9499 100644 --- a/config/locales/be.yml +++ b/config/locales/be.yml @@ -40,9 +40,6 @@ be: published: Апублікавана %{date} see_all_updates: паглядзець усе абнаўленні show_all_updates: паказаць усе абнаўленні - publisher_metadata: - hide_all: 'схаваць усе ' - show_all: 'паказаць усе ' share_links: share_this_page: Падзяліцца гэтай старонкай consultation: diff --git a/config/locales/bg.yml b/config/locales/bg.yml index b4693c86d..1b5a5fd08 100644 --- a/config/locales/bg.yml +++ b/config/locales/bg.yml @@ -40,9 +40,6 @@ bg: published: Публикувано на %{date} see_all_updates: вижте всички актуализации show_all_updates: показване на всички актуализации - publisher_metadata: - hide_all: скриване на всички - show_all: показване на всички share_links: share_this_page: Споделяне на тази страница consultation: diff --git a/config/locales/bn.yml b/config/locales/bn.yml index 652dfb0e9..db9365d8f 100644 --- a/config/locales/bn.yml +++ b/config/locales/bn.yml @@ -40,9 +40,6 @@ bn: published: প্রকাশিত হওয়ার তারিখ %{date} see_all_updates: সকল আপডেট দেখুন show_all_updates: সকল আপডেট দেখান - publisher_metadata: - hide_all: সবগুলো লুকান - show_all: সবগুলো দেখান share_links: share_this_page: এই পেজটি শেয়ার করুন consultation: diff --git a/config/locales/cs.yml b/config/locales/cs.yml index d2d02bdbd..7c673f553 100644 --- a/config/locales/cs.yml +++ b/config/locales/cs.yml @@ -40,9 +40,6 @@ cs: published: Zveřejněno %{date} see_all_updates: vidět všechny aktualizace show_all_updates: zobrazit všechny aktualizace - publisher_metadata: - hide_all: skrýt vše - show_all: zobrazit vše share_links: share_this_page: Sdílet tuto stránku consultation: diff --git a/config/locales/cy.yml b/config/locales/cy.yml index 545bd2b49..6a5c15530 100644 --- a/config/locales/cy.yml +++ b/config/locales/cy.yml @@ -40,9 +40,6 @@ cy: published: Cyhoeddwyd ar %{date} see_all_updates: gweld pob diweddariad show_all_updates: dangos pob diweddariad - publisher_metadata: - hide_all: cuddio popeth - show_all: dangos popeth share_links: share_this_page: Rhannu'r dudalen hon consultation: diff --git a/config/locales/da.yml b/config/locales/da.yml index 4e939a68f..16f3e2389 100644 --- a/config/locales/da.yml +++ b/config/locales/da.yml @@ -40,9 +40,6 @@ da: published: Udgivet %{date} see_all_updates: se alle opdateringer show_all_updates: vis alle opdateringer - publisher_metadata: - hide_all: skjule alle - show_all: se alle share_links: share_this_page: Del denne side consultation: diff --git a/config/locales/de.yml b/config/locales/de.yml index 10b60e96e..6dfe90094 100644 --- a/config/locales/de.yml +++ b/config/locales/de.yml @@ -40,9 +40,6 @@ de: published: Veröffentlicht am %{date} see_all_updates: alle Aktualisierungen ansehen show_all_updates: alle Aktualisierungen anzeigen - publisher_metadata: - hide_all: alle ausblenden - show_all: alle anzeigen share_links: share_this_page: Diese Seite teilen consultation: diff --git a/config/locales/dr.yml b/config/locales/dr.yml index 7a69ffb8c..8c1f3e6dd 100644 --- a/config/locales/dr.yml +++ b/config/locales/dr.yml @@ -40,9 +40,6 @@ dr: published: منتشر شده%{date} see_all_updates: تمام آپدیت ها را مشاهده نمایید show_all_updates: تمام آپدیت ها را نمایش دهید - publisher_metadata: - hide_all: همه را مخفی نمایید - show_all: همه را نمایش دهید share_links: share_this_page: این صفحه را به اشتراک بگذارید consultation: diff --git a/config/locales/el.yml b/config/locales/el.yml index 6b1c0add4..e133968c5 100644 --- a/config/locales/el.yml +++ b/config/locales/el.yml @@ -40,9 +40,6 @@ el: published: Δημοσιεύτηκε %{date} see_all_updates: δείτε όλες τις ενημερώσεις show_all_updates: εμφάνιση όλων των ενημερώσεων - publisher_metadata: - hide_all: απόκρυψη όλων - show_all: εμφάνιση όλων share_links: share_this_page: Κοινοποιήστε αυτή τη σελίδα consultation: diff --git a/config/locales/en.yml b/config/locales/en.yml index a28396c30..a62db9533 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -40,9 +40,6 @@ en: published: Published %{date} see_all_updates: See all updates show_all_updates: show all updates - publisher_metadata: - hide_all: hide all - show_all: show all share_links: share_this_page: Share this page consultation: diff --git a/config/locales/es-419.yml b/config/locales/es-419.yml index 818aca49f..f121b323e 100644 --- a/config/locales/es-419.yml +++ b/config/locales/es-419.yml @@ -40,9 +40,6 @@ es-419: published: Publicado %{date} see_all_updates: ver todas las novedades show_all_updates: mostrar todas las actualizaciones - publisher_metadata: - hide_all: ocultar todo - show_all: mostrar todo share_links: share_this_page: Compartir esta página consultation: diff --git a/config/locales/es.yml b/config/locales/es.yml index f5a3dd154..a3678f844 100644 --- a/config/locales/es.yml +++ b/config/locales/es.yml @@ -40,9 +40,6 @@ es: published: Publicado %{date} see_all_updates: ver todas las actualizaciones show_all_updates: mostrar todas las actualizaciones - publisher_metadata: - hide_all: ocultar todo - show_all: mostrar todo share_links: share_this_page: Compartir esta página consultation: diff --git a/config/locales/et.yml b/config/locales/et.yml index d2ed11139..c0f4dee3c 100644 --- a/config/locales/et.yml +++ b/config/locales/et.yml @@ -40,9 +40,6 @@ et: published: Avaldatud %{date} see_all_updates: vt kõiki värskendusi show_all_updates: kuva kõik värskendused - publisher_metadata: - hide_all: peida kõik - show_all: kuva kõik share_links: share_this_page: Jaga seda lehte consultation: diff --git a/config/locales/fa.yml b/config/locales/fa.yml index c311b4f30..893c01db3 100644 --- a/config/locales/fa.yml +++ b/config/locales/fa.yml @@ -40,9 +40,6 @@ fa: published: منشتر شده %{date} see_all_updates: مشاهده تمام بروزرسانی‌ها show_all_updates: نمایش تمام بروزرسانی‌ها - publisher_metadata: - hide_all: مخفی کردن همه - show_all: نمایش همه share_links: share_this_page: اشتراک‌گذاری این صفحه consultation: diff --git a/config/locales/fi.yml b/config/locales/fi.yml index f645ccfda..f2b74e98c 100644 --- a/config/locales/fi.yml +++ b/config/locales/fi.yml @@ -40,9 +40,6 @@ fi: published: Julkaistu %{date} see_all_updates: katso kaikki palvelut show_all_updates: näytä kaikki päivitykset - publisher_metadata: - hide_all: Piilota kaikki - show_all: näytä kaikki share_links: share_this_page: Jaa tämä sivu consultation: diff --git a/config/locales/fr.yml b/config/locales/fr.yml index ab6beb0f1..444f31337 100644 --- a/config/locales/fr.yml +++ b/config/locales/fr.yml @@ -40,9 +40,6 @@ fr: published: Publié le %{date} see_all_updates: afficher toutes les mises à jour show_all_updates: afficher toutes les mises à jour - publisher_metadata: - hide_all: masquer tout - show_all: afficher tout share_links: share_this_page: Partagez cette page consultation: diff --git a/config/locales/gd.yml b/config/locales/gd.yml index c4451a856..3c3354d26 100644 --- a/config/locales/gd.yml +++ b/config/locales/gd.yml @@ -40,9 +40,6 @@ gd: published: Arna chur suas ar %{date} see_all_updates: féach gach nuashonrú show_all_updates: Taispeáin gach nuashonrú - publisher_metadata: - hide_all: gach rud a cheilt - show_all: Taispeáin go léir share_links: share_this_page: Comhroinn an leathanach seo consultation: diff --git a/config/locales/gu.yml b/config/locales/gu.yml index 47ef1c1b6..d63348e75 100644 --- a/config/locales/gu.yml +++ b/config/locales/gu.yml @@ -40,9 +40,6 @@ gu: published: પ્રકાશિત થયો %{date} see_all_updates: બધા અપડેટ્સ જુઓ show_all_updates: બધા અપડેટ્સ બતાવો - publisher_metadata: - hide_all: બધા હાઈડ કરો - show_all: બધા બતાવો share_links: share_this_page: આ પેજ શેર કરો consultation: diff --git a/config/locales/he.yml b/config/locales/he.yml index 9216659e1..5ec923246 100644 --- a/config/locales/he.yml +++ b/config/locales/he.yml @@ -40,9 +40,6 @@ he: published: פורסם %{date} see_all_updates: ראה כל העדכונים show_all_updates: הצג כל עדכונים - publisher_metadata: - hide_all: הסתר הכל - show_all: הצג הכל share_links: share_this_page: שתף דף זה consultation: diff --git a/config/locales/hi.yml b/config/locales/hi.yml index b7fc137f9..0c1c2b54b 100644 --- a/config/locales/hi.yml +++ b/config/locales/hi.yml @@ -40,9 +40,6 @@ hi: published: प्रकाशित %{date} see_all_updates: सभी अपडेट देखें show_all_updates: सभी अपडेट दिखाएं - publisher_metadata: - hide_all: सब छिपाएं - show_all: सब दिखाएं share_links: share_this_page: यह पेज शेयर करें consultation: diff --git a/config/locales/hr.yml b/config/locales/hr.yml index 42128b611..6b60a6fd5 100644 --- a/config/locales/hr.yml +++ b/config/locales/hr.yml @@ -40,9 +40,6 @@ hr: published: Objavljeno %{date} see_all_updates: pogledajte sva ažuriranja show_all_updates: prikaži sva ažuriranja - publisher_metadata: - hide_all: sakrij sve - show_all: prikaži sve share_links: share_this_page: Podijelite ovu stranicu consultation: diff --git a/config/locales/hu.yml b/config/locales/hu.yml index c5bcb1a30..3d5be6151 100644 --- a/config/locales/hu.yml +++ b/config/locales/hu.yml @@ -40,9 +40,6 @@ hu: published: 'közzététel dátuma: %{date}' see_all_updates: minden frissítés megtekintése show_all_updates: minden frissítés megjelenítése - publisher_metadata: - hide_all: összes elrejtése - show_all: összes megjelenítése share_links: share_this_page: Oldal megosztása consultation: diff --git a/config/locales/hy.yml b/config/locales/hy.yml index 7dd11ce46..b76b726d8 100644 --- a/config/locales/hy.yml +++ b/config/locales/hy.yml @@ -40,9 +40,6 @@ hy: published: Հրապարակվել է՝ %{date} see_all_updates: դիտել բոլոր թարմացումները show_all_updates: ցույց տալ բոլոր թարմացումները - publisher_metadata: - hide_all: թաքցնել բոլորը - show_all: ցույց տալ բոլորը share_links: share_this_page: Կիսվել այս էջով consultation: diff --git a/config/locales/id.yml b/config/locales/id.yml index 149d3206d..0058e344f 100644 --- a/config/locales/id.yml +++ b/config/locales/id.yml @@ -40,9 +40,6 @@ id: published: Diterbitkan %{date} see_all_updates: lihat semua pembaruan show_all_updates: Tampilkan semua pembaruan - publisher_metadata: - hide_all: sembunyikan semua - show_all: tampilkan semua share_links: share_this_page: Bagikan halaman ini consultation: diff --git a/config/locales/is.yml b/config/locales/is.yml index 76fc4d200..66c71c84c 100644 --- a/config/locales/is.yml +++ b/config/locales/is.yml @@ -40,9 +40,6 @@ is: published: Birt %{date} see_all_updates: sjá allar uppfærslur show_all_updates: sýna allar uppfærslur - publisher_metadata: - hide_all: fela allt - show_all: sýna allt share_links: share_this_page: Deila þessari síðu consultation: diff --git a/config/locales/it.yml b/config/locales/it.yml index d32c8d978..248927168 100644 --- a/config/locales/it.yml +++ b/config/locales/it.yml @@ -40,9 +40,6 @@ it: published: Pubblicato %{date} see_all_updates: vedi tutti gli aggiornamenti show_all_updates: mostra tutti gli aggiornamenti - publisher_metadata: - hide_all: nascondi tutto - show_all: mostra tutto share_links: share_this_page: Condividi questa pagina consultation: diff --git a/config/locales/ja.yml b/config/locales/ja.yml index dc4664b24..e050acee1 100644 --- a/config/locales/ja.yml +++ b/config/locales/ja.yml @@ -40,9 +40,6 @@ ja: published: 公開日:%{date} see_all_updates: すべての更新を見る show_all_updates: すべての更新を表示 - publisher_metadata: - hide_all: すべて非表示 - show_all: すべて表示 share_links: share_this_page: このページを共有 consultation: diff --git a/config/locales/ka.yml b/config/locales/ka.yml index fdfcc8d48..ac6f14c79 100644 --- a/config/locales/ka.yml +++ b/config/locales/ka.yml @@ -40,9 +40,6 @@ ka: published: გამოქვეყნდა %{date} see_all_updates: ყველა ცვლილების ნახვა show_all_updates: ყველა ცვლილების ჩვენება - publisher_metadata: - hide_all: ყველას დაფარვა - show_all: ყველას ჩვენება share_links: share_this_page: ამ გვერდის გაზიარება consultation: diff --git a/config/locales/kk.yml b/config/locales/kk.yml index 08a5b850c..449afae63 100644 --- a/config/locales/kk.yml +++ b/config/locales/kk.yml @@ -40,9 +40,6 @@ kk: published: "%{date} күні жарияланды" see_all_updates: барлық жаңартуларды қарау show_all_updates: барлық жаңартуларды көрсету - publisher_metadata: - hide_all: барлығын жасыру - show_all: барлығын көрсету share_links: share_this_page: Осы бетпен бөлісу consultation: diff --git a/config/locales/ko.yml b/config/locales/ko.yml index 152d81d7f..e6b2d04ca 100644 --- a/config/locales/ko.yml +++ b/config/locales/ko.yml @@ -40,9 +40,6 @@ ko: published: 발행일 %{date} see_all_updates: 모든 업데이트 보기 show_all_updates: 모든 업데이트 보기 - publisher_metadata: - hide_all: 모두 숨기기 - show_all: 모두 보기 share_links: share_this_page: 이 페이지 공유하기 consultation: diff --git a/config/locales/lt.yml b/config/locales/lt.yml index dfdf6ea5d..706df1cea 100644 --- a/config/locales/lt.yml +++ b/config/locales/lt.yml @@ -40,9 +40,6 @@ lt: published: Publikuota %{date} see_all_updates: matyti visą naują informaciją show_all_updates: rodyti visą naują informaciją - publisher_metadata: - hide_all: slėpti visus - show_all: rodyti visus share_links: share_this_page: Bendrinti šį puslapį consultation: diff --git a/config/locales/lv.yml b/config/locales/lv.yml index 8462413f9..707bde37d 100644 --- a/config/locales/lv.yml +++ b/config/locales/lv.yml @@ -40,9 +40,6 @@ lv: published: Publicēts %{date} see_all_updates: skatīt visus atjauninājumus show_all_updates: rādīt visus atjauninājumus - publisher_metadata: - hide_all: paslēpt visu - show_all: rādīt visu share_links: share_this_page: Kopīgot šo lapu consultation: diff --git a/config/locales/ms.yml b/config/locales/ms.yml index d0adf12ae..c4576f425 100644 --- a/config/locales/ms.yml +++ b/config/locales/ms.yml @@ -40,9 +40,6 @@ ms: published: Diterbitkan %{date} see_all_updates: lihat semua kemas kini show_all_updates: tunjuk semua kemas kini - publisher_metadata: - hide_all: sorok semua - show_all: tunjuk semua share_links: share_this_page: Kongsi laman ini consultation: diff --git a/config/locales/mt.yml b/config/locales/mt.yml index d681d2782..61a9491c1 100644 --- a/config/locales/mt.yml +++ b/config/locales/mt.yml @@ -40,9 +40,6 @@ mt: published: Ippubblikat %{date} see_all_updates: ara l-aġġornamenti kollha show_all_updates: uri l-aġġornamenti kollha - publisher_metadata: - hide_all: aħbi kollox - show_all: uri kollox share_links: share_this_page: Aqsam din il-paġna ma' consultation: diff --git a/config/locales/ne.yml b/config/locales/ne.yml index 72c40ed7d..dc36c2aeb 100644 --- a/config/locales/ne.yml +++ b/config/locales/ne.yml @@ -40,9 +40,6 @@ ne: published: प्रकाशित %{date} see_all_updates: सबै अद्यावधिक हेर्नुहोस् show_all_updates: सबै अद्यावधिक देखाउनुहोस् - publisher_metadata: - hide_all: सबै लुकाउनुहोस् - show_all: सबै देखाउनुहोस् share_links: share_this_page: यो पृष्ठ साझा गर्नुहोस् consultation: diff --git a/config/locales/nl.yml b/config/locales/nl.yml index dfb3bf88a..744407ae2 100644 --- a/config/locales/nl.yml +++ b/config/locales/nl.yml @@ -40,9 +40,6 @@ nl: published: Gepubliceerd %{date} see_all_updates: zie alle updates show_all_updates: toon alle updates - publisher_metadata: - hide_all: alles verbergen - show_all: alles tonen share_links: share_this_page: Deel deze pagina consultation: diff --git a/config/locales/no.yml b/config/locales/no.yml index 00db1a73d..7e20ec43b 100644 --- a/config/locales/no.yml +++ b/config/locales/no.yml @@ -40,9 +40,6 @@ published: Publisert %{date} see_all_updates: se alle oppdateringer show_all_updates: vis alle oppdateringer - publisher_metadata: - hide_all: Skjul alle - show_all: Vis alt share_links: share_this_page: Del denne siden consultation: diff --git a/config/locales/pa-pk.yml b/config/locales/pa-pk.yml index f920fc7d8..85d9ec2ed 100644 --- a/config/locales/pa-pk.yml +++ b/config/locales/pa-pk.yml @@ -40,9 +40,6 @@ pa-pk: published: شائع ہویا {date} % see_all_updates: ساری تازہ ترین صورتِ حال show_all_updates: ساری تازہ ترین صورتِ حال وکھاؤ - publisher_metadata: - hide_all: سارا لُکاؤ - show_all: سارا وکھاؤ share_links: share_this_page: ایہ ورقہ تقسیم کرو consultation: diff --git a/config/locales/pa.yml b/config/locales/pa.yml index 82462c9dd..6c733282f 100644 --- a/config/locales/pa.yml +++ b/config/locales/pa.yml @@ -40,9 +40,6 @@ pa: published: ਪ੍ਰਕਾਸ਼ਿਤ %{date} see_all_updates: ਸਾਰੇ ਅਪਡੇਟਸ ਵੇਖੋ show_all_updates: ਸਾਰੇ ਅਪਡੇਟ ਦਿਖਾਉ - publisher_metadata: - hide_all: ਸਭ ਨੂੰ ਲੁਕਾਓ - show_all: ਸਾਰੇ ਦਿਖਾਓ share_links: share_this_page: ਇਸ ਪੇਜ ਨੂੰ ਸ਼ੇਅਰ ਕਰੋ consultation: diff --git a/config/locales/pl.yml b/config/locales/pl.yml index 711645289..88ebfb6a4 100644 --- a/config/locales/pl.yml +++ b/config/locales/pl.yml @@ -40,9 +40,6 @@ pl: published: Opublikowano %{date} see_all_updates: zobacz wszystkie aktualizacje show_all_updates: pokaż wszystkie aktualizacje - publisher_metadata: - hide_all: ukryj wszystkie - show_all: pokaż wszystkie share_links: share_this_page: Udostępnij tę stronę consultation: diff --git a/config/locales/ps.yml b/config/locales/ps.yml index 6f7e60c9c..4853b70c2 100644 --- a/config/locales/ps.yml +++ b/config/locales/ps.yml @@ -40,9 +40,6 @@ ps: published: خپور شوی%{date} see_all_updates: ټول تازه معلومات وګورئ show_all_updates: ټول تازه معلومات وښایاست - publisher_metadata: - hide_all: ټول پټ کړئ - show_all: ټول ښکاره کړه share_links: share_this_page: دا پاه شریکه کړئ consultation: diff --git a/config/locales/pt.yml b/config/locales/pt.yml index 651103273..81085d2b9 100644 --- a/config/locales/pt.yml +++ b/config/locales/pt.yml @@ -40,9 +40,6 @@ pt: published: Publicado a %{date} see_all_updates: ver todas as atualizações show_all_updates: mostrar todas as atualizações - publisher_metadata: - hide_all: ocultar tudo - show_all: mostrar tudo share_links: share_this_page: Partilhar esta página consultation: diff --git a/config/locales/ro.yml b/config/locales/ro.yml index a7f62e89c..a9950c02c 100644 --- a/config/locales/ro.yml +++ b/config/locales/ro.yml @@ -40,9 +40,6 @@ ro: published: Publicat pe %{date} see_all_updates: vedeți toate actualizările show_all_updates: afișați toate actualizările - publisher_metadata: - hide_all: ascundeți tot - show_all: afișați tot share_links: share_this_page: Distribuiți această pagină consultation: diff --git a/config/locales/ru.yml b/config/locales/ru.yml index 1aa919b9a..2331f6b47 100644 --- a/config/locales/ru.yml +++ b/config/locales/ru.yml @@ -40,9 +40,6 @@ ru: published: Опубликовано %{date} see_all_updates: Посмотреть всю поледнюю информацию show_all_updates: Показать всю поледнюю информацию - publisher_metadata: - hide_all: Скрыть всё - show_all: Показать всё share_links: share_this_page: 'Поделиться данной страницей ' consultation: diff --git a/config/locales/si.yml b/config/locales/si.yml index 9b09d3f0e..4d12a894c 100644 --- a/config/locales/si.yml +++ b/config/locales/si.yml @@ -40,9 +40,6 @@ si: published: පළ කළේ %{date} see_all_updates: සියලුම යාවත්කාලීනයන් බලන්න show_all_updates: සියලු යාවත්කාලීනයන් පෙන්වන්න - publisher_metadata: - hide_all: සියල්ල සැඟවන්න - show_all: සියල්ල පෙන්වන්න share_links: share_this_page: මෙම පිටුව බෙදාගන්න consultation: diff --git a/config/locales/sk.yml b/config/locales/sk.yml index 1223fb689..edb63f667 100644 --- a/config/locales/sk.yml +++ b/config/locales/sk.yml @@ -40,9 +40,6 @@ sk: published: Zverejnené %{date} see_all_updates: pozrite si všetky aktualizácie show_all_updates: zobraziť všetky aktualizácie - publisher_metadata: - hide_all: skryť všetko - show_all: zobraziť všetko share_links: share_this_page: Zdieľať túto stránku consultation: diff --git a/config/locales/sl.yml b/config/locales/sl.yml index 727cf134c..1369eb6fa 100644 --- a/config/locales/sl.yml +++ b/config/locales/sl.yml @@ -40,9 +40,6 @@ sl: published: Objavljeno %{date} see_all_updates: poglej vse posodobitve show_all_updates: prikaži vse posodobitve - publisher_metadata: - hide_all: skrij vse - show_all: prikaži vse share_links: share_this_page: Deli to stran consultation: diff --git a/config/locales/so.yml b/config/locales/so.yml index 6cb86c729..1b132de2e 100644 --- a/config/locales/so.yml +++ b/config/locales/so.yml @@ -40,9 +40,6 @@ so: published: La daabacay %{date} see_all_updates: eeg dhamaan cusboonaysiinaha show_all_updates: muuji dhamaan cusboonaysiinaha - publisher_metadata: - hide_all: qari dhamaan - show_all: Muuji dhamaan share_links: share_this_page: Lawadaag bogan consultation: diff --git a/config/locales/sq.yml b/config/locales/sq.yml index 8eb21ecae..8986115f9 100644 --- a/config/locales/sq.yml +++ b/config/locales/sq.yml @@ -40,9 +40,6 @@ sq: published: Publikuar %{date} see_all_updates: shih të gjitha përditësimet show_all_updates: shfaq të gjitha përditësimet - publisher_metadata: - hide_all: fshih të gjitha - show_all: shfaq të gjitha share_links: share_this_page: Shpërdaj këtë faqe consultation: diff --git a/config/locales/sr.yml b/config/locales/sr.yml index 0193c74b6..6bede00c0 100644 --- a/config/locales/sr.yml +++ b/config/locales/sr.yml @@ -40,9 +40,6 @@ sr: published: Objavljeno %{date} see_all_updates: pogledajte sva ažuriranja show_all_updates: prikaži sva ažuriranja - publisher_metadata: - hide_all: sakrij sve - show_all: prikaži sve share_links: share_this_page: Podeli ovu stranicu consultation: diff --git a/config/locales/sv.yml b/config/locales/sv.yml index 2dbfff672..2a196746b 100644 --- a/config/locales/sv.yml +++ b/config/locales/sv.yml @@ -40,9 +40,6 @@ sv: published: Publicerad %{date} see_all_updates: se alla uppdateringar show_all_updates: Visa alla uppdateringar - publisher_metadata: - hide_all: dölja alla - show_all: visa alla share_links: share_this_page: Dela den här sidan consultation: diff --git a/config/locales/sw.yml b/config/locales/sw.yml index 085d6d239..fd8ddf0bf 100644 --- a/config/locales/sw.yml +++ b/config/locales/sw.yml @@ -40,9 +40,6 @@ sw: published: Ulichapishwa tarehe %{date} see_all_updates: angalia taarifa zote show_all_updates: Onyesha taarifa zote - publisher_metadata: - hide_all: ficha zote - show_all: onyesha zote share_links: share_this_page: Shiriki ukurasa huu consultation: diff --git a/config/locales/ta.yml b/config/locales/ta.yml index c54abf18c..8d87e07a3 100644 --- a/config/locales/ta.yml +++ b/config/locales/ta.yml @@ -40,9 +40,6 @@ ta: published: வெளியிடப்பட்ட தேதி %{date} see_all_updates: அனைத்து புதுப்பித்தல்களையும் பார்க்க show_all_updates: அனைத்து புதுப்பித்தல்களையும் காட்டு - publisher_metadata: - hide_all: அனைத்தையும் மறை - show_all: அனைத்தையும் காட்டு share_links: share_this_page: இந்தப் பக்கத்தைப் பகிர்க consultation: diff --git a/config/locales/th.yml b/config/locales/th.yml index 4d0f9d8e2..bb0ac1414 100644 --- a/config/locales/th.yml +++ b/config/locales/th.yml @@ -40,9 +40,6 @@ th: published: เผยแพร่เมื่อ %{date} see_all_updates: ดูอัปเดตทั้งหมด show_all_updates: แสดงอัปเดตทั้งหมด - publisher_metadata: - hide_all: ซ่อนทั้งหมด - show_all: แสดงทั้งหมด share_links: share_this_page: แชร์หน้านี้ consultation: diff --git a/config/locales/tk.yml b/config/locales/tk.yml index aadf27745..a0d4b3589 100644 --- a/config/locales/tk.yml +++ b/config/locales/tk.yml @@ -40,9 +40,6 @@ tk: published: Çap edilen %{date} see_all_updates: ähli täzelenmelere serediň show_all_updates: ähli täzelenmeleri görkez - publisher_metadata: - hide_all: ählisini gizle - show_all: ählisini görkez share_links: share_this_page: Bu sahypany paýlaşyň consultation: diff --git a/config/locales/tr.yml b/config/locales/tr.yml index 4fe803788..7730a667c 100644 --- a/config/locales/tr.yml +++ b/config/locales/tr.yml @@ -40,9 +40,6 @@ tr: published: Yayınlama %{date} see_all_updates: tüm güncellemeleri görün show_all_updates: tüm güncellemeleri göster - publisher_metadata: - hide_all: hepsini gizle - show_all: hepsini göster share_links: share_this_page: Bu sayfayı paylaş consultation: diff --git a/config/locales/uk.yml b/config/locales/uk.yml index 176414fa3..aa2c07481 100644 --- a/config/locales/uk.yml +++ b/config/locales/uk.yml @@ -40,9 +40,6 @@ uk: published: Опубліковано %{date} see_all_updates: переглянути всі оновлення show_all_updates: показати всі оновлення - publisher_metadata: - hide_all: приховати всі - show_all: показати всі share_links: share_this_page: Поділіться цією сторінкою consultation: diff --git a/config/locales/ur.yml b/config/locales/ur.yml index d6feb0b6b..1e083d91b 100644 --- a/config/locales/ur.yml +++ b/config/locales/ur.yml @@ -40,9 +40,6 @@ ur: published: شائع کردہ %{date} see_all_updates: تمام اپ ڈیٹس دیکھیں show_all_updates: تمام اپ ڈیٹس دکھائیں - publisher_metadata: - hide_all: تمام کو پوشیدہ کریں - show_all: تمام دکھائیں share_links: share_this_page: اس صفحے کو شیئر کریں consultation: diff --git a/config/locales/uz.yml b/config/locales/uz.yml index 59a63c9fd..60ed2080e 100644 --- a/config/locales/uz.yml +++ b/config/locales/uz.yml @@ -40,9 +40,6 @@ uz: published: Нашр қилинган %{date} see_all_updates: Барча янгиланишларни кўриш show_all_updates: янгиланишларни барчасини кўрсатиш - publisher_metadata: - hide_all: барчасини яшириш - show_all: барчасини кўрсатиш share_links: share_this_page: Саҳифа билан бўлишиш consultation: diff --git a/config/locales/vi.yml b/config/locales/vi.yml index ffe0377fb..2a2e586eb 100644 --- a/config/locales/vi.yml +++ b/config/locales/vi.yml @@ -40,9 +40,6 @@ vi: published: Ngày xuất bản %{date} see_all_updates: xem tất cả nội dung cập nhật show_all_updates: hiển thị tất cả nội dung cập nhật - publisher_metadata: - hide_all: ẩn tất cả - show_all: hiển thị tất cả share_links: share_this_page: Chia sẻ trang này consultation: diff --git a/config/locales/yi.yml b/config/locales/yi.yml index 3f830ccb9..dd0dc7a12 100644 --- a/config/locales/yi.yml +++ b/config/locales/yi.yml @@ -40,9 +40,6 @@ yi: published: see_all_updates: show_all_updates: - publisher_metadata: - hide_all: - show_all: share_links: share_this_page: consultation: diff --git a/config/locales/zh-hk.yml b/config/locales/zh-hk.yml index d00453b5e..1876d0c32 100644 --- a/config/locales/zh-hk.yml +++ b/config/locales/zh-hk.yml @@ -40,9 +40,6 @@ zh-hk: published: 已發佈 %{date} see_all_updates: 查看所有更新 show_all_updates: 顯示所有更新 - publisher_metadata: - hide_all: 全部隱藏 - show_all: 全部顯示 share_links: share_this_page: 轉載此一頁面 consultation: diff --git a/config/locales/zh-tw.yml b/config/locales/zh-tw.yml index 9416852fd..9710f4555 100644 --- a/config/locales/zh-tw.yml +++ b/config/locales/zh-tw.yml @@ -40,9 +40,6 @@ zh-tw: published: 發布於 %{date} see_all_updates: 查看所有更新 show_all_updates: 展開所有更新 - publisher_metadata: - hide_all: 隱藏全部 - show_all: 展開全部 share_links: share_this_page: 分享此頁面 consultation: diff --git a/config/locales/zh.yml b/config/locales/zh.yml index c2c1562a0..b7fd887ec 100644 --- a/config/locales/zh.yml +++ b/config/locales/zh.yml @@ -40,9 +40,6 @@ zh: published: 发布 %{date} see_all_updates: 查看全部更新 show_all_updates: 显示全部更新 - publisher_metadata: - hide_all: 隐藏全部 - show_all: 显示全部 share_links: share_this_page: 分享本页面 consultation: