├── .dockerignore ├── .erb_lint.yml ├── .github ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── actionlint.yml │ ├── ci.yml │ ├── copy-pr-template-to-dependabot-prs.yml │ ├── deploy.yml │ ├── lint-erb.yml │ ├── pact-verify.yml │ ├── release.yml │ └── rspec.yml ├── .gitignore ├── .govuk_dependabot_merger.yml ├── .rspec ├── .rubocop.yml ├── .ruby-version ├── .tool-versions ├── .yarn └── releases │ └── yarn-3.4.1.cjs ├── .yarnrc.yml ├── Dockerfile ├── Gemfile ├── Gemfile.lock ├── LICENCE ├── Procfile.dev ├── README.md ├── Rakefile ├── app.json ├── app ├── assets │ ├── builds │ │ └── .keep │ ├── config │ │ └── manifest.js │ ├── images │ │ ├── feed-icon-black.png │ │ ├── hands-face-space-social.png │ │ ├── history │ │ │ └── past-foreign-secretaries │ │ │ │ ├── austen-chamberlain.jpg │ │ │ │ ├── charles-james-fox.jpg │ │ │ │ ├── earl-granville.jpg │ │ │ │ ├── george-nathaniel-curzon.jpg │ │ │ │ ├── lord-aberdeen.jpg │ │ │ │ ├── lord-grenville.jpg │ │ │ │ ├── lord-landsowne.jpg │ │ │ │ ├── marquess-of-salisbury.jpg │ │ │ │ ├── sir-edward-grey.jpg │ │ │ │ └── viscount-halifax.jpg │ │ ├── icons-plus-minus.png │ │ ├── icons-plus-minus.svg │ │ ├── loading.gif │ │ ├── mail-icon-x2.png │ │ ├── mail-icon.png │ │ ├── prime-ministers-office-header.jpg │ │ ├── topical-events │ │ │ ├── arts-council-england.png │ │ │ ├── bbc.png │ │ │ ├── birmingham_2022.png │ │ │ ├── british-library.png │ │ │ ├── bunting-grey-string.svg │ │ │ ├── cwgc.png │ │ │ ├── historic-england.png │ │ │ ├── hlf.png │ │ │ ├── iwm.png │ │ │ ├── platinum_jubilee.png │ │ │ ├── unboxed.png │ │ │ └── wmt.png │ │ └── white-arrow.svg │ ├── javascripts │ │ ├── application.js │ │ ├── modules │ │ │ ├── list-filter.js │ │ │ └── toggle-attribute.js │ │ ├── support.js │ │ └── test-dependencies.js │ └── stylesheets │ │ ├── application.scss │ │ ├── helpers │ │ └── _header.scss │ │ └── views │ │ ├── _browse.scss │ │ ├── _bunting.scss │ │ ├── _covid.scss │ │ ├── _history_people.scss │ │ ├── _ministers.scss │ │ ├── _organisation.scss │ │ ├── _organisations.scss │ │ ├── _taxons.scss │ │ ├── _topical_events.scss │ │ └── _world_index.scss ├── controllers │ ├── application_controller.rb │ ├── browse_controller.rb │ ├── coronavirus_landing_page_controller.rb │ ├── development_controller.rb │ ├── embassies_controller.rb │ ├── feeds_controller.rb │ ├── historic_appointments_controller.rb │ ├── ministers_controller.rb │ ├── organisations_api_controller.rb │ ├── organisations_controller.rb │ ├── past_prime_ministers_controller.rb │ ├── people_controller.rb │ ├── roles_controller.rb │ ├── second_level_browse_page_controller.rb │ ├── step_nav_controller.rb │ ├── taxons_controller.rb │ ├── topical_events_controller.rb │ ├── world_controller.rb │ ├── world_location_news_controller.rb │ └── world_wide_taxons_controller.rb ├── helpers │ ├── application_helper.rb │ ├── browse_helper.rb │ ├── document_list_helper.rb │ ├── email_helper.rb │ ├── latest_news_helper.rb │ ├── ministers_index_helper.rb │ ├── organisation_helper.rb │ ├── pagination_helper.rb │ ├── past_foreign_secretaries_helper.rb │ ├── promotional_feature_helper.rb │ └── taxon_list_helper.rb ├── lib │ ├── document_type_inspector.rb │ ├── document_type_routing_constraint.rb │ ├── organisations_support.rb │ ├── prometheus_support.rb │ ├── services.rb │ └── world_taxonomy_sorter.rb ├── models │ ├── content_item.rb │ ├── content_store_organisations.rb │ ├── document.rb │ ├── embassies_index.rb │ ├── example_link.rb │ ├── graphql │ │ └── content_item.rb │ ├── historic_appointments_index.rb │ ├── list_set.rb │ ├── list_set │ │ └── list.rb │ ├── mainstream_browse_page.rb │ ├── ministers_index.rb │ ├── organisation.rb │ ├── past_prime_minister.rb │ ├── past_prime_ministers_index.rb │ ├── person.rb │ ├── popular_list_set.rb │ ├── role.rb │ ├── search_api_organisation.rb │ ├── search_api_search.rb │ ├── step_nav.rb │ ├── taxon.rb │ ├── topical_event.rb │ ├── world_index.rb │ ├── world_location_news.rb │ └── world_wide_taxon.rb ├── presenters │ ├── announcements_presenter.rb │ ├── breadcrumbs.rb │ ├── coronavirus_landing_page_presenter.rb │ ├── embassies_index_presenter.rb │ ├── feed_entry_presenter.rb │ ├── historic_appointments_index_presenter.rb │ ├── link_header_presenter.rb │ ├── ministers_index_presenter.rb │ ├── organisations │ │ ├── contacts_presenter.rb │ │ ├── document_presenter.rb │ │ ├── documents_presenter.rb │ │ ├── header_presenter.rb │ │ ├── index_presenter.rb │ │ ├── not_live_presenter.rb │ │ ├── people_presenter.rb │ │ ├── show_presenter.rb │ │ ├── supergroups_presenter.rb │ │ └── what_we_do_presenter.rb │ ├── organisations_api_presenter.rb │ ├── organisations_facet_presenter.rb │ ├── past_prime_ministers_index_presenter.rb │ ├── role_presenter.rb │ ├── special_announcement_presenter.rb │ ├── supergroups │ │ ├── guidance_and_regulation.rb │ │ ├── news_and_communications.rb │ │ ├── policy_and_engagement.rb │ │ ├── research_and_statistics.rb │ │ ├── services.rb │ │ ├── supergroup.rb │ │ └── transparency.rb │ ├── taxon_organisations_presenter.rb │ ├── taxon_presenter.rb │ ├── world_index_presenter.rb │ └── world_wide_taxon_presenter.rb ├── services │ ├── feed_content.rb │ ├── most_popular_content.rb │ ├── most_recent_content.rb │ ├── search │ │ ├── supergroup.rb │ │ └── supergroups.rb │ ├── search_api_fields.rb │ ├── search_documents.rb │ ├── supergroup_sections.rb │ ├── supergroup_sections │ │ └── sections.rb │ ├── tagged_content.rb │ ├── tagged_organisations.rb │ ├── topical_event_search_documents.rb │ └── world_location_news_search_documents.rb └── views │ ├── application │ └── _breadcrumbs.html.erb │ ├── browse │ ├── _top_level_browse_pages.erb │ ├── index.html.erb │ └── show.html.erb │ ├── coronavirus_landing_page │ ├── components │ │ ├── landing_page │ │ │ └── _page_header.html.erb │ │ └── shared │ │ │ ├── _accordion_sections.html.erb │ │ │ ├── _breadcrumbs.html.erb │ │ │ ├── _country_guidance.html.erb │ │ │ ├── _country_section.html.erb │ │ │ ├── _meta_tags.html.erb │ │ │ ├── _related_topic_section.html.erb │ │ │ ├── _schema.html.erb │ │ │ ├── _section.html.erb │ │ │ └── _topic_section.html.erb │ └── show.html.erb │ ├── development │ └── index.html.erb │ ├── embassies │ ├── _organisation.html.erb │ └── index.html.erb │ ├── feeds │ └── feed.atom.builder │ ├── historic_appointments │ ├── _grouped_historical_people.html.erb │ ├── _historical_person_without_image.html.erb │ ├── index.html.erb │ └── past_foreign_secretaries │ │ ├── _show_person.html.erb │ │ ├── austen_chamberlain.html.erb │ │ ├── charles_fox.html.erb │ │ ├── edward_grey.html.erb │ │ ├── edward_wood.html.erb │ │ ├── george_curzon.html.erb │ │ ├── george_gordon.html.erb │ │ ├── george_gower.html.erb │ │ ├── henry_petty_fitzmaurice.html.erb │ │ ├── robert_cecil.html.erb │ │ └── william_grenville.html.erb │ ├── layouts │ └── application.html.erb │ ├── ministers │ ├── _ministers_by_organisation.html.erb │ └── index.html.erb │ ├── organisations │ ├── _breadcrumb.html.erb │ ├── _contacts.html.erb │ ├── _corporate_information.html.erb │ ├── _courts_header.html.erb │ ├── _expanded_works_with_organisations.html.erb │ ├── _featured_news.html.erb │ ├── _featured_news_no10.html.erb │ ├── _freedom_of_information.html.erb │ ├── _header.html.erb │ ├── _latest_documents.html.erb │ ├── _latest_documents_by_supergroup.html.erb │ ├── _latest_news.html.erb │ ├── _meta.html.erb │ ├── _org_contacts.html.erb │ ├── _organisations_list.html.erb │ ├── _promotional_features.html.erb │ ├── _promotional_features_side_by_side.html.erb │ ├── _related_people.html.erb │ ├── _standard_org_docs_people.html.erb │ ├── _standard_org_foi_profiles.html.erb │ ├── _videos.html.erb │ ├── _what_we_do.html.erb │ ├── court.html.erb │ ├── index.html.erb │ ├── separate_website.html.erb │ └── show.html.erb │ ├── past_prime_ministers │ └── show.html.erb │ ├── people │ ├── _biography.html.erb │ ├── _contents.html.erb │ ├── _current_roles.html.erb │ ├── _header.html.erb │ ├── _image.html.erb │ ├── _previous_roles.html.erb │ └── show.html.erb │ ├── roles │ ├── _contents.html.erb │ ├── _current_holder.html.erb │ ├── _current_role_holder_with_biography.html.erb │ ├── _header.html.erb │ ├── _organisations.html.erb │ ├── _past_role_holders.html.erb │ ├── _responsibilities.html.erb │ └── show.html.erb │ ├── second_level_browse_page │ ├── _links.html.erb │ ├── _show_curated_list.html.erb │ ├── show_a_to_z.html.erb │ └── show_curated.html.erb │ ├── shared │ ├── _announcements.html.erb │ ├── _browse_action_link.erb │ ├── _browse_breadcrumbs.html.erb │ ├── _browse_cards_container.html.erb │ ├── _browse_header.html.erb │ ├── _browse_heading.html.erb │ ├── _document_list_from_search_api.html.erb │ ├── _featured_links.html.erb │ └── _tag_meta.html.erb │ ├── step_nav │ └── show.html.erb │ ├── taxons │ ├── _common.html.erb │ ├── _email_alerts.html.erb │ ├── _organisation_logos_and_list.html.erb │ ├── _organisations.html.erb │ ├── _page_header.html.erb │ ├── sections │ │ ├── _guidance_and_regulation.html.erb │ │ ├── _news_and_communications.html.erb │ │ ├── _policy_and_engagement.html.erb │ │ ├── _research_and_statistics.html.erb │ │ ├── _services.html.erb │ │ └── _transparency.html.erb │ └── show.html.erb │ ├── topical_events │ ├── _bunting.html.erb │ ├── _first_world_war_centenary.html.erb │ ├── _platinum_jubilee_unboxed.html.erb │ └── show.html.erb │ ├── world │ └── index.html.erb │ ├── world_location_news │ └── show.html.erb │ └── world_wide_taxons │ ├── _common.html.erb │ ├── _email_alerts.html.erb │ ├── _page_header.html.erb │ ├── _tagged_content_list.html.erb │ ├── accordion.html.erb │ └── leaf.html.erb ├── bin ├── brakeman ├── bundle ├── dev ├── rails ├── rake ├── rubocop ├── setup └── update ├── config.ru ├── config ├── application.rb ├── boot.rb ├── brakeman.ignore ├── cucumber.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── govuk_examples.yml ├── i18n-tasks.yml ├── initializers │ ├── application_controller_renderer.rb │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── content_security_policy.rb │ ├── cookies_serializer.rb │ ├── dartsass.rb │ ├── filter_parameter_logging.rb │ ├── gds_api_adapters.rb │ ├── govuk_i18n.rb │ ├── govuk_publishing_components.rb │ ├── govuk_web_banners.rb │ ├── graphql_traffic_rates.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── permissions_policy.rb │ ├── prometheus.rb │ ├── session_store.rb │ └── wrap_parameters.rb ├── locales │ ├── ar │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── az │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── be │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── bg │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── bn │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── cs │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── cy │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── da │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── de │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── dr │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── el │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── en │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── es-419 │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── es │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── et │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── fa │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── fi │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── fr │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── gd │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── gu │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── he │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── hi │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── hr │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── hu │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── hy │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── id │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── is │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── it │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── ja │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── ka │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── kk │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── ko │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── ky │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── lt │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── lv │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── ms │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── mt │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── ne │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── nl │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── no │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── pa-pk │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── pa │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── pl │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── ps │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── pt │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── ro │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── ru │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── si │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── sk │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── sl │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── so │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── sq │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── sr │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── sv │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── sw │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── ta │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── th │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── tk │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── tr │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── uk │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── ur │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── uz │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── vi │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── yi │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── zh-hk │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ ├── zh-tw │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml │ └── zh │ │ ├── application.yml │ │ ├── browse.yml │ │ ├── development.yml │ │ ├── embassies.yml │ │ ├── historic_appointments.yml │ │ ├── latest_changes.yml │ │ ├── ministers.yml │ │ ├── organisations.yml │ │ ├── past_foreign_secretaries.yml │ │ ├── people.yml │ │ ├── roles.yml │ │ ├── second_level_browse.yml │ │ ├── services_and_information.yml │ │ ├── shared.yml │ │ ├── taxons.yml │ │ ├── topical_events.yml │ │ ├── world_location_news.yml │ │ ├── world_locations.yml │ │ └── world_wide_taxons.yml ├── past_chancellors │ └── content_item.yml ├── past_foreign_secretaries │ └── content_item.yml ├── puma.rb ├── routes.rb ├── secrets.yml └── spring.rb ├── docs ├── api.md ├── campaign-pages.md └── taxonomy-pages.md ├── features ├── step_definitions │ └── viewing_browse_steps.rb ├── support │ ├── env.rb │ ├── helpers.rb │ └── webmock.rb └── viewing_browse.feature ├── lib ├── assets │ └── .keep ├── sanitiser │ └── strategy.rb └── tasks │ ├── cucumber.rake │ ├── jasmine.rake │ └── lint.rake ├── log └── .keep ├── package.json ├── public ├── 404.html ├── 422.html ├── 500.html ├── favicon.ico └── robots.txt ├── script └── cucumber ├── spec ├── components │ └── all_components_spec.rb ├── controllers │ ├── application_controller_spec.rb │ ├── browse_controller_spec.rb │ ├── coronavirus_landing_page_controller_spec.rb │ ├── embassies_controller_spec.rb │ ├── feeds_controller_spec.rb │ ├── historic_appointments_controller_spec.rb │ ├── ministers_controller_spec.rb │ ├── organisations_api_controller_spec.rb │ ├── organisations_controller_spec.rb │ ├── past_prime_ministers_controller_spec.rb │ ├── roles_controller_spec.rb │ ├── second_level_browse_page_controller_spec.rb │ ├── step_nav_controller_spec.rb │ ├── taxons_controller_spec.rb │ ├── topical_events_controller_spec.rb │ └── world_controller_spec.rb ├── features │ ├── atom_feeds_spec.rb │ ├── content_store_organisations_spec.rb │ ├── courts_pages_spec.rb │ ├── embassies_spec.rb │ ├── mainstream_browsing_spec.rb │ ├── ministers_spec.rb │ ├── organisation_spec.rb │ ├── organisation_status_spec.rb │ ├── past_chancellors_spec.rb │ ├── past_foreign_secretaries_spec.rb │ ├── past_prime_ministers_spec.rb │ ├── person_spec.rb │ ├── role_spec.rb │ ├── step_nav_page_spec.rb │ ├── taxon_browsing_spec.rb │ ├── topical_event_spec.rb │ ├── world_index_spec.rb │ ├── world_location_news_spec.rb │ ├── world_location_taxon_spec.rb │ └── world_wide_taxon_browsing_spec.rb ├── fixtures │ └── content_store │ │ ├── coronavirus_landing_page.json │ │ ├── embassies_index.json │ │ ├── funding_and_finance_for_students.json │ │ ├── running_education_institution.json │ │ ├── student_finance.json │ │ ├── student_finance_draft.json │ │ ├── student_loans.json │ │ ├── student_sponsorship.json │ │ ├── topical_event.json │ │ ├── travelling_to_the_usa.json │ │ ├── world_location_news.json │ │ ├── world_usa.json │ │ └── world_usa_news_events.json ├── helpers │ ├── application_helper_spec.rb │ ├── browse_helper_spec.rb │ ├── document_list_helper_spec.rb │ ├── email_helper_spec.rb │ ├── latest_news_helper_spec.rb │ ├── ministers_index_helper_spec.rb │ ├── organisation_helper_spec.rb │ ├── pagination_helper_spec.rb │ └── promotional_feature_helper_spec.rb ├── initializers │ └── graphql_traffic_rates_spec.rb ├── integration_spec_helper.rb ├── javascripts │ ├── modules │ │ ├── list-filter_spec.js │ │ └── toggle-attribute_spec.js │ └── vendor │ │ ├── jasmine-ajax-3.4.0.js │ │ ├── jasmine-jquery.js │ │ └── jquery-1.12.4.js ├── lib │ ├── document_type_inspector_spec.rb │ ├── document_type_routing_constraint_spec.rb │ ├── locales_validation_spec.rb │ ├── organisations_support_spec.rb │ └── world_taxonomy_sorter_spec.rb ├── models │ ├── content_store_organisations_spec.rb │ ├── list_set_spec.rb │ ├── mainstream_browse_page_spec.rb │ ├── past_prime_minister_spec.rb │ ├── past_prime_ministers_index_spec.rb │ ├── person_spec.rb │ ├── popular_list_spec.rb │ ├── search_api_organisation_spec.rb │ ├── taxon_spec.rb │ ├── topical_event_spec.rb │ ├── world_location_news_spec.rb │ └── world_wide_taxon_spec.rb ├── presenters │ ├── announcements_presenter_spec.rb │ ├── coronavirus_landing_page_presenter_spec.rb │ ├── embassies_index_presenter_spec.rb │ ├── historic_appointments_index_presenter_spec.rb │ ├── ministers_index_presenter_spec.rb │ ├── organisations │ │ ├── contacts_presenter_spec.rb │ │ ├── document_presenter_spec.rb │ │ ├── documents_presenter_spec.rb │ │ ├── header_presenter_spec.rb │ │ ├── people_presenter_spec.rb │ │ ├── show_presenter_spec.rb │ │ └── supergroups_presenter_spec.rb │ ├── organisations_api_presenter_spec.rb │ ├── organisations_presenter_spec.rb │ ├── past_prime_ministers_index_presenter_spec.rb │ ├── role_presenter_spec.rb │ ├── supergroups │ │ ├── guidance_and_regulation_spec.rb │ │ ├── news_and_communications_spec.rb │ │ ├── policy_and_engagement_spec.rb │ │ ├── research_and_statistics_spec.rb │ │ ├── services_spec.rb │ │ ├── supergroup_spec.rb │ │ └── transparency_spec.rb │ ├── taxon_organisations_presenter_spec.rb │ ├── taxon_presenter_spec.rb │ ├── world_index_presenter_spec.rb │ └── world_wide_taxon_presenter_spec.rb ├── requests │ ├── organisations_api_route_spec.rb │ ├── redirection_spec.rb │ └── sanitiser_spec.rb ├── service_consumers │ └── pact_helper.rb ├── services │ ├── most_popular_content_spec.rb │ ├── most_recent_content_spec.rb │ ├── search │ │ ├── supergroup_spec.rb │ │ └── supergroups_spec.rb │ ├── supergroup_sections_spec.rb │ ├── tagged_content_spec.rb │ ├── tagged_organisations_spec.rb │ ├── topical_event_search_documents_spec.rb │ └── world_location_news_search_documents.rb ├── spec_helper.rb └── support │ ├── component_test_helper.rb │ ├── coronavirus_content_item_helper.rb │ ├── coronavirus_landing_page_steps.rb │ ├── courts_pages_helper.rb │ ├── jasmine-browser.json │ ├── organisation_feed_helpers.rb │ ├── organisation_helpers.rb │ ├── organisations_api_test_helper.rb │ ├── organisations_helpers.rb │ ├── prime_ministers_helpers.rb │ ├── search_api_helpers.rb │ ├── supergroups_helpers.rb │ ├── taxon_browsing_helper.rb │ └── taxon_helpers.rb ├── startup.sh ├── vendor └── assets │ ├── javascripts │ └── .keep │ └── stylesheets │ └── .keep └── yarn.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/.dockerignore -------------------------------------------------------------------------------- /.erb_lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/.erb_lint.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/actionlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/.github/workflows/actionlint.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/lint-erb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/.github/workflows/lint-erb.yml -------------------------------------------------------------------------------- /.github/workflows/pact-verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/.github/workflows/pact-verify.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/rspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/.github/workflows/rspec.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/.gitignore -------------------------------------------------------------------------------- /.govuk_dependabot_merger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/.govuk_dependabot_merger.yml -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.4.5 2 | -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | ruby 3.1.2 2 | -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.4.1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/.yarn/releases/yarn-3.4.1.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/LICENCE -------------------------------------------------------------------------------- /Procfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/Procfile.dev -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/Rakefile -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app.json -------------------------------------------------------------------------------- /app/assets/builds/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/assets/config/manifest.js -------------------------------------------------------------------------------- /app/assets/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/assets/images/loading.gif -------------------------------------------------------------------------------- /app/assets/images/mail-icon-x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/assets/images/mail-icon-x2.png -------------------------------------------------------------------------------- /app/assets/images/mail-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/assets/images/mail-icon.png -------------------------------------------------------------------------------- /app/assets/images/white-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/assets/images/white-arrow.svg -------------------------------------------------------------------------------- /app/assets/javascripts/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/assets/javascripts/support.js -------------------------------------------------------------------------------- /app/controllers/browse_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/controllers/browse_controller.rb -------------------------------------------------------------------------------- /app/controllers/feeds_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/controllers/feeds_controller.rb -------------------------------------------------------------------------------- /app/controllers/people_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/controllers/people_controller.rb -------------------------------------------------------------------------------- /app/controllers/roles_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/controllers/roles_controller.rb -------------------------------------------------------------------------------- /app/controllers/taxons_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/controllers/taxons_controller.rb -------------------------------------------------------------------------------- /app/controllers/world_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/controllers/world_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/browse_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/helpers/browse_helper.rb -------------------------------------------------------------------------------- /app/helpers/document_list_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/helpers/document_list_helper.rb -------------------------------------------------------------------------------- /app/helpers/email_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/helpers/email_helper.rb -------------------------------------------------------------------------------- /app/helpers/latest_news_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/helpers/latest_news_helper.rb -------------------------------------------------------------------------------- /app/helpers/organisation_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/helpers/organisation_helper.rb -------------------------------------------------------------------------------- /app/helpers/pagination_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/helpers/pagination_helper.rb -------------------------------------------------------------------------------- /app/helpers/taxon_list_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/helpers/taxon_list_helper.rb -------------------------------------------------------------------------------- /app/lib/document_type_inspector.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/lib/document_type_inspector.rb -------------------------------------------------------------------------------- /app/lib/organisations_support.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/lib/organisations_support.rb -------------------------------------------------------------------------------- /app/lib/prometheus_support.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/lib/prometheus_support.rb -------------------------------------------------------------------------------- /app/lib/services.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/lib/services.rb -------------------------------------------------------------------------------- /app/lib/world_taxonomy_sorter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/lib/world_taxonomy_sorter.rb -------------------------------------------------------------------------------- /app/models/content_item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/models/content_item.rb -------------------------------------------------------------------------------- /app/models/document.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/models/document.rb -------------------------------------------------------------------------------- /app/models/embassies_index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/models/embassies_index.rb -------------------------------------------------------------------------------- /app/models/example_link.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/models/example_link.rb -------------------------------------------------------------------------------- /app/models/graphql/content_item.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/models/graphql/content_item.rb -------------------------------------------------------------------------------- /app/models/list_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/models/list_set.rb -------------------------------------------------------------------------------- /app/models/list_set/list.rb: -------------------------------------------------------------------------------- 1 | ListSet::List = Struct.new(:title, :contents) 2 | -------------------------------------------------------------------------------- /app/models/mainstream_browse_page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/models/mainstream_browse_page.rb -------------------------------------------------------------------------------- /app/models/ministers_index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/models/ministers_index.rb -------------------------------------------------------------------------------- /app/models/organisation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/models/organisation.rb -------------------------------------------------------------------------------- /app/models/past_prime_minister.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/models/past_prime_minister.rb -------------------------------------------------------------------------------- /app/models/person.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/models/person.rb -------------------------------------------------------------------------------- /app/models/popular_list_set.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/models/popular_list_set.rb -------------------------------------------------------------------------------- /app/models/role.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/models/role.rb -------------------------------------------------------------------------------- /app/models/search_api_search.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/models/search_api_search.rb -------------------------------------------------------------------------------- /app/models/step_nav.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/models/step_nav.rb -------------------------------------------------------------------------------- /app/models/taxon.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/models/taxon.rb -------------------------------------------------------------------------------- /app/models/topical_event.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/models/topical_event.rb -------------------------------------------------------------------------------- /app/models/world_index.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/models/world_index.rb -------------------------------------------------------------------------------- /app/models/world_location_news.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/models/world_location_news.rb -------------------------------------------------------------------------------- /app/models/world_wide_taxon.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/models/world_wide_taxon.rb -------------------------------------------------------------------------------- /app/presenters/breadcrumbs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/presenters/breadcrumbs.rb -------------------------------------------------------------------------------- /app/presenters/role_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/presenters/role_presenter.rb -------------------------------------------------------------------------------- /app/presenters/taxon_presenter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/presenters/taxon_presenter.rb -------------------------------------------------------------------------------- /app/services/feed_content.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/services/feed_content.rb -------------------------------------------------------------------------------- /app/services/most_popular_content.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/services/most_popular_content.rb -------------------------------------------------------------------------------- /app/services/most_recent_content.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/services/most_recent_content.rb -------------------------------------------------------------------------------- /app/services/search/supergroup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/services/search/supergroup.rb -------------------------------------------------------------------------------- /app/services/search/supergroups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/services/search/supergroups.rb -------------------------------------------------------------------------------- /app/services/search_api_fields.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/services/search_api_fields.rb -------------------------------------------------------------------------------- /app/services/search_documents.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/services/search_documents.rb -------------------------------------------------------------------------------- /app/services/supergroup_sections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/services/supergroup_sections.rb -------------------------------------------------------------------------------- /app/services/tagged_content.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/services/tagged_content.rb -------------------------------------------------------------------------------- /app/services/tagged_organisations.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/services/tagged_organisations.rb -------------------------------------------------------------------------------- /app/views/browse/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/views/browse/index.html.erb -------------------------------------------------------------------------------- /app/views/browse/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/views/browse/show.html.erb -------------------------------------------------------------------------------- /app/views/development/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/views/development/index.html.erb -------------------------------------------------------------------------------- /app/views/embassies/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/views/embassies/index.html.erb -------------------------------------------------------------------------------- /app/views/feeds/feed.atom.builder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/views/feeds/feed.atom.builder -------------------------------------------------------------------------------- /app/views/ministers/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/views/ministers/index.html.erb -------------------------------------------------------------------------------- /app/views/people/_biography.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/views/people/_biography.html.erb -------------------------------------------------------------------------------- /app/views/people/_contents.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/views/people/_contents.html.erb -------------------------------------------------------------------------------- /app/views/people/_header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/views/people/_header.html.erb -------------------------------------------------------------------------------- /app/views/people/_image.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/views/people/_image.html.erb -------------------------------------------------------------------------------- /app/views/people/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/views/people/show.html.erb -------------------------------------------------------------------------------- /app/views/roles/_contents.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/views/roles/_contents.html.erb -------------------------------------------------------------------------------- /app/views/roles/_header.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/views/roles/_header.html.erb -------------------------------------------------------------------------------- /app/views/roles/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/views/roles/show.html.erb -------------------------------------------------------------------------------- /app/views/shared/_tag_meta.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/views/shared/_tag_meta.html.erb -------------------------------------------------------------------------------- /app/views/step_nav/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/views/step_nav/show.html.erb -------------------------------------------------------------------------------- /app/views/taxons/_common.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/views/taxons/_common.html.erb -------------------------------------------------------------------------------- /app/views/taxons/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/views/taxons/show.html.erb -------------------------------------------------------------------------------- /app/views/world/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/app/views/world/index.html.erb -------------------------------------------------------------------------------- /bin/brakeman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/bin/brakeman -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/bin/dev -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/rubocop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/bin/rubocop -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/bin/update -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/brakeman.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/brakeman.ignore -------------------------------------------------------------------------------- /config/cucumber.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/cucumber.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/govuk_examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/govuk_examples.yml -------------------------------------------------------------------------------- /config/i18n-tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/i18n-tasks.yml -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- 1 | GovukContentSecurityPolicy.configure 2 | -------------------------------------------------------------------------------- /config/initializers/dartsass.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/initializers/dartsass.rb -------------------------------------------------------------------------------- /config/initializers/govuk_i18n.rb: -------------------------------------------------------------------------------- 1 | GovukI18n.configure 2 | -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/prometheus.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/initializers/prometheus.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/locales/ar/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ar/application.yml -------------------------------------------------------------------------------- /config/locales/ar/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ar/browse.yml -------------------------------------------------------------------------------- /config/locales/ar/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ar/development.yml -------------------------------------------------------------------------------- /config/locales/ar/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ar/embassies.yml -------------------------------------------------------------------------------- /config/locales/ar/latest_changes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ar/latest_changes.yml -------------------------------------------------------------------------------- /config/locales/ar/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ar/ministers.yml -------------------------------------------------------------------------------- /config/locales/ar/organisations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ar/organisations.yml -------------------------------------------------------------------------------- /config/locales/ar/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ar/people.yml -------------------------------------------------------------------------------- /config/locales/ar/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ar/roles.yml -------------------------------------------------------------------------------- /config/locales/ar/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ar/shared.yml -------------------------------------------------------------------------------- /config/locales/ar/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ar/taxons.yml -------------------------------------------------------------------------------- /config/locales/ar/topical_events.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ar/topical_events.yml -------------------------------------------------------------------------------- /config/locales/az/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/az/application.yml -------------------------------------------------------------------------------- /config/locales/az/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/az/browse.yml -------------------------------------------------------------------------------- /config/locales/az/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/az/development.yml -------------------------------------------------------------------------------- /config/locales/az/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/az/embassies.yml -------------------------------------------------------------------------------- /config/locales/az/latest_changes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/az/latest_changes.yml -------------------------------------------------------------------------------- /config/locales/az/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/az/ministers.yml -------------------------------------------------------------------------------- /config/locales/az/organisations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/az/organisations.yml -------------------------------------------------------------------------------- /config/locales/az/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/az/people.yml -------------------------------------------------------------------------------- /config/locales/az/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/az/roles.yml -------------------------------------------------------------------------------- /config/locales/az/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/az/shared.yml -------------------------------------------------------------------------------- /config/locales/az/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/az/taxons.yml -------------------------------------------------------------------------------- /config/locales/az/topical_events.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/az/topical_events.yml -------------------------------------------------------------------------------- /config/locales/be/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/be/application.yml -------------------------------------------------------------------------------- /config/locales/be/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/be/browse.yml -------------------------------------------------------------------------------- /config/locales/be/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/be/development.yml -------------------------------------------------------------------------------- /config/locales/be/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/be/embassies.yml -------------------------------------------------------------------------------- /config/locales/be/latest_changes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/be/latest_changes.yml -------------------------------------------------------------------------------- /config/locales/be/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/be/ministers.yml -------------------------------------------------------------------------------- /config/locales/be/organisations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/be/organisations.yml -------------------------------------------------------------------------------- /config/locales/be/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/be/people.yml -------------------------------------------------------------------------------- /config/locales/be/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/be/roles.yml -------------------------------------------------------------------------------- /config/locales/be/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/be/shared.yml -------------------------------------------------------------------------------- /config/locales/be/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/be/taxons.yml -------------------------------------------------------------------------------- /config/locales/be/topical_events.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/be/topical_events.yml -------------------------------------------------------------------------------- /config/locales/bg/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/bg/application.yml -------------------------------------------------------------------------------- /config/locales/bg/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/bg/browse.yml -------------------------------------------------------------------------------- /config/locales/bg/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/bg/development.yml -------------------------------------------------------------------------------- /config/locales/bg/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/bg/embassies.yml -------------------------------------------------------------------------------- /config/locales/bg/latest_changes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/bg/latest_changes.yml -------------------------------------------------------------------------------- /config/locales/bg/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/bg/ministers.yml -------------------------------------------------------------------------------- /config/locales/bg/organisations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/bg/organisations.yml -------------------------------------------------------------------------------- /config/locales/bg/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/bg/people.yml -------------------------------------------------------------------------------- /config/locales/bg/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/bg/roles.yml -------------------------------------------------------------------------------- /config/locales/bg/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/bg/shared.yml -------------------------------------------------------------------------------- /config/locales/bg/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/bg/taxons.yml -------------------------------------------------------------------------------- /config/locales/bg/topical_events.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/bg/topical_events.yml -------------------------------------------------------------------------------- /config/locales/bn/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/bn/application.yml -------------------------------------------------------------------------------- /config/locales/bn/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/bn/browse.yml -------------------------------------------------------------------------------- /config/locales/bn/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/bn/development.yml -------------------------------------------------------------------------------- /config/locales/bn/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/bn/embassies.yml -------------------------------------------------------------------------------- /config/locales/bn/latest_changes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/bn/latest_changes.yml -------------------------------------------------------------------------------- /config/locales/bn/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/bn/ministers.yml -------------------------------------------------------------------------------- /config/locales/bn/organisations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/bn/organisations.yml -------------------------------------------------------------------------------- /config/locales/bn/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/bn/people.yml -------------------------------------------------------------------------------- /config/locales/bn/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/bn/roles.yml -------------------------------------------------------------------------------- /config/locales/bn/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/bn/shared.yml -------------------------------------------------------------------------------- /config/locales/bn/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/bn/taxons.yml -------------------------------------------------------------------------------- /config/locales/bn/topical_events.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/bn/topical_events.yml -------------------------------------------------------------------------------- /config/locales/cs/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/cs/application.yml -------------------------------------------------------------------------------- /config/locales/cs/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/cs/browse.yml -------------------------------------------------------------------------------- /config/locales/cs/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/cs/development.yml -------------------------------------------------------------------------------- /config/locales/cs/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/cs/embassies.yml -------------------------------------------------------------------------------- /config/locales/cs/latest_changes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/cs/latest_changes.yml -------------------------------------------------------------------------------- /config/locales/cs/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/cs/ministers.yml -------------------------------------------------------------------------------- /config/locales/cs/organisations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/cs/organisations.yml -------------------------------------------------------------------------------- /config/locales/cs/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/cs/people.yml -------------------------------------------------------------------------------- /config/locales/cs/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/cs/roles.yml -------------------------------------------------------------------------------- /config/locales/cs/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/cs/shared.yml -------------------------------------------------------------------------------- /config/locales/cs/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/cs/taxons.yml -------------------------------------------------------------------------------- /config/locales/cs/topical_events.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/cs/topical_events.yml -------------------------------------------------------------------------------- /config/locales/cy/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/cy/application.yml -------------------------------------------------------------------------------- /config/locales/cy/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/cy/browse.yml -------------------------------------------------------------------------------- /config/locales/cy/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/cy/development.yml -------------------------------------------------------------------------------- /config/locales/cy/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/cy/embassies.yml -------------------------------------------------------------------------------- /config/locales/cy/latest_changes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/cy/latest_changes.yml -------------------------------------------------------------------------------- /config/locales/cy/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/cy/ministers.yml -------------------------------------------------------------------------------- /config/locales/cy/organisations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/cy/organisations.yml -------------------------------------------------------------------------------- /config/locales/cy/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/cy/people.yml -------------------------------------------------------------------------------- /config/locales/cy/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/cy/roles.yml -------------------------------------------------------------------------------- /config/locales/cy/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/cy/shared.yml -------------------------------------------------------------------------------- /config/locales/cy/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/cy/taxons.yml -------------------------------------------------------------------------------- /config/locales/cy/topical_events.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/cy/topical_events.yml -------------------------------------------------------------------------------- /config/locales/da/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/da/application.yml -------------------------------------------------------------------------------- /config/locales/da/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/da/browse.yml -------------------------------------------------------------------------------- /config/locales/da/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/da/development.yml -------------------------------------------------------------------------------- /config/locales/da/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/da/embassies.yml -------------------------------------------------------------------------------- /config/locales/da/latest_changes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/da/latest_changes.yml -------------------------------------------------------------------------------- /config/locales/da/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/da/ministers.yml -------------------------------------------------------------------------------- /config/locales/da/organisations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/da/organisations.yml -------------------------------------------------------------------------------- /config/locales/da/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/da/people.yml -------------------------------------------------------------------------------- /config/locales/da/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/da/roles.yml -------------------------------------------------------------------------------- /config/locales/da/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/da/shared.yml -------------------------------------------------------------------------------- /config/locales/da/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/da/taxons.yml -------------------------------------------------------------------------------- /config/locales/da/topical_events.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/da/topical_events.yml -------------------------------------------------------------------------------- /config/locales/de/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/de/application.yml -------------------------------------------------------------------------------- /config/locales/de/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/de/browse.yml -------------------------------------------------------------------------------- /config/locales/de/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/de/development.yml -------------------------------------------------------------------------------- /config/locales/de/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/de/embassies.yml -------------------------------------------------------------------------------- /config/locales/de/latest_changes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/de/latest_changes.yml -------------------------------------------------------------------------------- /config/locales/de/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/de/ministers.yml -------------------------------------------------------------------------------- /config/locales/de/organisations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/de/organisations.yml -------------------------------------------------------------------------------- /config/locales/de/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/de/people.yml -------------------------------------------------------------------------------- /config/locales/de/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/de/roles.yml -------------------------------------------------------------------------------- /config/locales/de/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/de/shared.yml -------------------------------------------------------------------------------- /config/locales/de/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/de/taxons.yml -------------------------------------------------------------------------------- /config/locales/de/topical_events.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/de/topical_events.yml -------------------------------------------------------------------------------- /config/locales/dr/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/dr/application.yml -------------------------------------------------------------------------------- /config/locales/dr/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/dr/browse.yml -------------------------------------------------------------------------------- /config/locales/dr/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/dr/development.yml -------------------------------------------------------------------------------- /config/locales/dr/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/dr/embassies.yml -------------------------------------------------------------------------------- /config/locales/dr/latest_changes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/dr/latest_changes.yml -------------------------------------------------------------------------------- /config/locales/dr/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/dr/ministers.yml -------------------------------------------------------------------------------- /config/locales/dr/organisations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/dr/organisations.yml -------------------------------------------------------------------------------- /config/locales/dr/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/dr/people.yml -------------------------------------------------------------------------------- /config/locales/dr/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/dr/roles.yml -------------------------------------------------------------------------------- /config/locales/dr/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/dr/shared.yml -------------------------------------------------------------------------------- /config/locales/dr/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/dr/taxons.yml -------------------------------------------------------------------------------- /config/locales/dr/topical_events.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/dr/topical_events.yml -------------------------------------------------------------------------------- /config/locales/el/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/el/application.yml -------------------------------------------------------------------------------- /config/locales/el/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/el/browse.yml -------------------------------------------------------------------------------- /config/locales/el/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/el/development.yml -------------------------------------------------------------------------------- /config/locales/el/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/el/embassies.yml -------------------------------------------------------------------------------- /config/locales/el/latest_changes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/el/latest_changes.yml -------------------------------------------------------------------------------- /config/locales/el/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/el/ministers.yml -------------------------------------------------------------------------------- /config/locales/el/organisations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/el/organisations.yml -------------------------------------------------------------------------------- /config/locales/el/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/el/people.yml -------------------------------------------------------------------------------- /config/locales/el/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/el/roles.yml -------------------------------------------------------------------------------- /config/locales/el/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/el/shared.yml -------------------------------------------------------------------------------- /config/locales/el/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/el/taxons.yml -------------------------------------------------------------------------------- /config/locales/el/topical_events.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/el/topical_events.yml -------------------------------------------------------------------------------- /config/locales/en/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/en/application.yml -------------------------------------------------------------------------------- /config/locales/en/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/en/browse.yml -------------------------------------------------------------------------------- /config/locales/en/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/en/development.yml -------------------------------------------------------------------------------- /config/locales/en/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/en/embassies.yml -------------------------------------------------------------------------------- /config/locales/en/latest_changes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/en/latest_changes.yml -------------------------------------------------------------------------------- /config/locales/en/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/en/ministers.yml -------------------------------------------------------------------------------- /config/locales/en/organisations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/en/organisations.yml -------------------------------------------------------------------------------- /config/locales/en/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/en/people.yml -------------------------------------------------------------------------------- /config/locales/en/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/en/roles.yml -------------------------------------------------------------------------------- /config/locales/en/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/en/shared.yml -------------------------------------------------------------------------------- /config/locales/en/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/en/taxons.yml -------------------------------------------------------------------------------- /config/locales/en/topical_events.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/en/topical_events.yml -------------------------------------------------------------------------------- /config/locales/es-419/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/es-419/browse.yml -------------------------------------------------------------------------------- /config/locales/es-419/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/es-419/embassies.yml -------------------------------------------------------------------------------- /config/locales/es-419/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/es-419/ministers.yml -------------------------------------------------------------------------------- /config/locales/es-419/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/es-419/people.yml -------------------------------------------------------------------------------- /config/locales/es-419/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/es-419/roles.yml -------------------------------------------------------------------------------- /config/locales/es-419/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/es-419/shared.yml -------------------------------------------------------------------------------- /config/locales/es-419/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/es-419/taxons.yml -------------------------------------------------------------------------------- /config/locales/es/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/es/application.yml -------------------------------------------------------------------------------- /config/locales/es/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/es/browse.yml -------------------------------------------------------------------------------- /config/locales/es/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/es/development.yml -------------------------------------------------------------------------------- /config/locales/es/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/es/embassies.yml -------------------------------------------------------------------------------- /config/locales/es/latest_changes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/es/latest_changes.yml -------------------------------------------------------------------------------- /config/locales/es/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/es/ministers.yml -------------------------------------------------------------------------------- /config/locales/es/organisations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/es/organisations.yml -------------------------------------------------------------------------------- /config/locales/es/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/es/people.yml -------------------------------------------------------------------------------- /config/locales/es/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/es/roles.yml -------------------------------------------------------------------------------- /config/locales/es/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/es/shared.yml -------------------------------------------------------------------------------- /config/locales/es/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/es/taxons.yml -------------------------------------------------------------------------------- /config/locales/es/topical_events.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/es/topical_events.yml -------------------------------------------------------------------------------- /config/locales/et/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/et/application.yml -------------------------------------------------------------------------------- /config/locales/et/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/et/browse.yml -------------------------------------------------------------------------------- /config/locales/et/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/et/development.yml -------------------------------------------------------------------------------- /config/locales/et/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/et/embassies.yml -------------------------------------------------------------------------------- /config/locales/et/latest_changes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/et/latest_changes.yml -------------------------------------------------------------------------------- /config/locales/et/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/et/ministers.yml -------------------------------------------------------------------------------- /config/locales/et/organisations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/et/organisations.yml -------------------------------------------------------------------------------- /config/locales/et/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/et/people.yml -------------------------------------------------------------------------------- /config/locales/et/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/et/roles.yml -------------------------------------------------------------------------------- /config/locales/et/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/et/shared.yml -------------------------------------------------------------------------------- /config/locales/et/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/et/taxons.yml -------------------------------------------------------------------------------- /config/locales/et/topical_events.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/et/topical_events.yml -------------------------------------------------------------------------------- /config/locales/fa/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/fa/application.yml -------------------------------------------------------------------------------- /config/locales/fa/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/fa/browse.yml -------------------------------------------------------------------------------- /config/locales/fa/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/fa/development.yml -------------------------------------------------------------------------------- /config/locales/fa/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/fa/embassies.yml -------------------------------------------------------------------------------- /config/locales/fa/latest_changes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/fa/latest_changes.yml -------------------------------------------------------------------------------- /config/locales/fa/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/fa/ministers.yml -------------------------------------------------------------------------------- /config/locales/fa/organisations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/fa/organisations.yml -------------------------------------------------------------------------------- /config/locales/fa/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/fa/people.yml -------------------------------------------------------------------------------- /config/locales/fa/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/fa/roles.yml -------------------------------------------------------------------------------- /config/locales/fa/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/fa/shared.yml -------------------------------------------------------------------------------- /config/locales/fa/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/fa/taxons.yml -------------------------------------------------------------------------------- /config/locales/fa/topical_events.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/fa/topical_events.yml -------------------------------------------------------------------------------- /config/locales/fi/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/fi/application.yml -------------------------------------------------------------------------------- /config/locales/fi/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/fi/browse.yml -------------------------------------------------------------------------------- /config/locales/fi/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/fi/development.yml -------------------------------------------------------------------------------- /config/locales/fi/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/fi/embassies.yml -------------------------------------------------------------------------------- /config/locales/fi/latest_changes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/fi/latest_changes.yml -------------------------------------------------------------------------------- /config/locales/fi/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/fi/ministers.yml -------------------------------------------------------------------------------- /config/locales/fi/organisations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/fi/organisations.yml -------------------------------------------------------------------------------- /config/locales/fi/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/fi/people.yml -------------------------------------------------------------------------------- /config/locales/fi/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/fi/roles.yml -------------------------------------------------------------------------------- /config/locales/fi/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/fi/shared.yml -------------------------------------------------------------------------------- /config/locales/fi/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/fi/taxons.yml -------------------------------------------------------------------------------- /config/locales/fi/topical_events.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/fi/topical_events.yml -------------------------------------------------------------------------------- /config/locales/fr/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/fr/application.yml -------------------------------------------------------------------------------- /config/locales/fr/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/fr/browse.yml -------------------------------------------------------------------------------- /config/locales/fr/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/fr/development.yml -------------------------------------------------------------------------------- /config/locales/fr/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/fr/embassies.yml -------------------------------------------------------------------------------- /config/locales/fr/latest_changes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/fr/latest_changes.yml -------------------------------------------------------------------------------- /config/locales/fr/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/fr/ministers.yml -------------------------------------------------------------------------------- /config/locales/fr/organisations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/fr/organisations.yml -------------------------------------------------------------------------------- /config/locales/fr/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/fr/people.yml -------------------------------------------------------------------------------- /config/locales/fr/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/fr/roles.yml -------------------------------------------------------------------------------- /config/locales/fr/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/fr/shared.yml -------------------------------------------------------------------------------- /config/locales/fr/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/fr/taxons.yml -------------------------------------------------------------------------------- /config/locales/fr/topical_events.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/fr/topical_events.yml -------------------------------------------------------------------------------- /config/locales/gd/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/gd/application.yml -------------------------------------------------------------------------------- /config/locales/gd/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/gd/browse.yml -------------------------------------------------------------------------------- /config/locales/gd/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/gd/development.yml -------------------------------------------------------------------------------- /config/locales/gd/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/gd/embassies.yml -------------------------------------------------------------------------------- /config/locales/gd/latest_changes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/gd/latest_changes.yml -------------------------------------------------------------------------------- /config/locales/gd/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/gd/ministers.yml -------------------------------------------------------------------------------- /config/locales/gd/organisations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/gd/organisations.yml -------------------------------------------------------------------------------- /config/locales/gd/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/gd/people.yml -------------------------------------------------------------------------------- /config/locales/gd/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/gd/roles.yml -------------------------------------------------------------------------------- /config/locales/gd/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/gd/shared.yml -------------------------------------------------------------------------------- /config/locales/gd/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/gd/taxons.yml -------------------------------------------------------------------------------- /config/locales/gd/topical_events.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/gd/topical_events.yml -------------------------------------------------------------------------------- /config/locales/gu/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/gu/application.yml -------------------------------------------------------------------------------- /config/locales/gu/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/gu/browse.yml -------------------------------------------------------------------------------- /config/locales/gu/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/gu/development.yml -------------------------------------------------------------------------------- /config/locales/gu/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/gu/embassies.yml -------------------------------------------------------------------------------- /config/locales/gu/latest_changes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/gu/latest_changes.yml -------------------------------------------------------------------------------- /config/locales/gu/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/gu/ministers.yml -------------------------------------------------------------------------------- /config/locales/gu/organisations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/gu/organisations.yml -------------------------------------------------------------------------------- /config/locales/gu/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/gu/people.yml -------------------------------------------------------------------------------- /config/locales/gu/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/gu/roles.yml -------------------------------------------------------------------------------- /config/locales/gu/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/gu/shared.yml -------------------------------------------------------------------------------- /config/locales/gu/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/gu/taxons.yml -------------------------------------------------------------------------------- /config/locales/gu/topical_events.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/gu/topical_events.yml -------------------------------------------------------------------------------- /config/locales/he/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/he/application.yml -------------------------------------------------------------------------------- /config/locales/he/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/he/browse.yml -------------------------------------------------------------------------------- /config/locales/he/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/he/development.yml -------------------------------------------------------------------------------- /config/locales/he/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/he/embassies.yml -------------------------------------------------------------------------------- /config/locales/he/latest_changes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/he/latest_changes.yml -------------------------------------------------------------------------------- /config/locales/he/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/he/ministers.yml -------------------------------------------------------------------------------- /config/locales/he/organisations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/he/organisations.yml -------------------------------------------------------------------------------- /config/locales/he/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/he/people.yml -------------------------------------------------------------------------------- /config/locales/he/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/he/roles.yml -------------------------------------------------------------------------------- /config/locales/he/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/he/shared.yml -------------------------------------------------------------------------------- /config/locales/he/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/he/taxons.yml -------------------------------------------------------------------------------- /config/locales/he/topical_events.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/he/topical_events.yml -------------------------------------------------------------------------------- /config/locales/hi/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/hi/application.yml -------------------------------------------------------------------------------- /config/locales/hi/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/hi/browse.yml -------------------------------------------------------------------------------- /config/locales/hi/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/hi/development.yml -------------------------------------------------------------------------------- /config/locales/hi/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/hi/embassies.yml -------------------------------------------------------------------------------- /config/locales/hi/latest_changes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/hi/latest_changes.yml -------------------------------------------------------------------------------- /config/locales/hi/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/hi/ministers.yml -------------------------------------------------------------------------------- /config/locales/hi/organisations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/hi/organisations.yml -------------------------------------------------------------------------------- /config/locales/hi/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/hi/people.yml -------------------------------------------------------------------------------- /config/locales/hi/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/hi/roles.yml -------------------------------------------------------------------------------- /config/locales/hi/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/hi/shared.yml -------------------------------------------------------------------------------- /config/locales/hi/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/hi/taxons.yml -------------------------------------------------------------------------------- /config/locales/hi/topical_events.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/hi/topical_events.yml -------------------------------------------------------------------------------- /config/locales/hr/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/hr/application.yml -------------------------------------------------------------------------------- /config/locales/hr/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/hr/browse.yml -------------------------------------------------------------------------------- /config/locales/hr/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/hr/development.yml -------------------------------------------------------------------------------- /config/locales/hr/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/hr/embassies.yml -------------------------------------------------------------------------------- /config/locales/hr/latest_changes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/hr/latest_changes.yml -------------------------------------------------------------------------------- /config/locales/hr/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/hr/ministers.yml -------------------------------------------------------------------------------- /config/locales/hr/organisations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/hr/organisations.yml -------------------------------------------------------------------------------- /config/locales/hr/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/hr/people.yml -------------------------------------------------------------------------------- /config/locales/hr/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/hr/roles.yml -------------------------------------------------------------------------------- /config/locales/hr/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/hr/shared.yml -------------------------------------------------------------------------------- /config/locales/hr/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/hr/taxons.yml -------------------------------------------------------------------------------- /config/locales/hr/topical_events.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/hr/topical_events.yml -------------------------------------------------------------------------------- /config/locales/hu/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/hu/application.yml -------------------------------------------------------------------------------- /config/locales/hu/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/hu/browse.yml -------------------------------------------------------------------------------- /config/locales/hu/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/hu/development.yml -------------------------------------------------------------------------------- /config/locales/hu/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/hu/embassies.yml -------------------------------------------------------------------------------- /config/locales/hu/latest_changes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/hu/latest_changes.yml -------------------------------------------------------------------------------- /config/locales/hu/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/hu/ministers.yml -------------------------------------------------------------------------------- /config/locales/hu/organisations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/hu/organisations.yml -------------------------------------------------------------------------------- /config/locales/hu/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/hu/people.yml -------------------------------------------------------------------------------- /config/locales/hu/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/hu/roles.yml -------------------------------------------------------------------------------- /config/locales/hu/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/hu/shared.yml -------------------------------------------------------------------------------- /config/locales/hu/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/hu/taxons.yml -------------------------------------------------------------------------------- /config/locales/hu/topical_events.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/hu/topical_events.yml -------------------------------------------------------------------------------- /config/locales/hy/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/hy/application.yml -------------------------------------------------------------------------------- /config/locales/hy/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/hy/browse.yml -------------------------------------------------------------------------------- /config/locales/hy/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/hy/development.yml -------------------------------------------------------------------------------- /config/locales/hy/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/hy/embassies.yml -------------------------------------------------------------------------------- /config/locales/hy/latest_changes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/hy/latest_changes.yml -------------------------------------------------------------------------------- /config/locales/hy/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/hy/ministers.yml -------------------------------------------------------------------------------- /config/locales/hy/organisations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/hy/organisations.yml -------------------------------------------------------------------------------- /config/locales/hy/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/hy/people.yml -------------------------------------------------------------------------------- /config/locales/hy/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/hy/roles.yml -------------------------------------------------------------------------------- /config/locales/hy/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/hy/shared.yml -------------------------------------------------------------------------------- /config/locales/hy/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/hy/taxons.yml -------------------------------------------------------------------------------- /config/locales/hy/topical_events.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/hy/topical_events.yml -------------------------------------------------------------------------------- /config/locales/id/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/id/application.yml -------------------------------------------------------------------------------- /config/locales/id/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/id/browse.yml -------------------------------------------------------------------------------- /config/locales/id/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/id/development.yml -------------------------------------------------------------------------------- /config/locales/id/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/id/embassies.yml -------------------------------------------------------------------------------- /config/locales/id/latest_changes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/id/latest_changes.yml -------------------------------------------------------------------------------- /config/locales/id/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/id/ministers.yml -------------------------------------------------------------------------------- /config/locales/id/organisations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/id/organisations.yml -------------------------------------------------------------------------------- /config/locales/id/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/id/people.yml -------------------------------------------------------------------------------- /config/locales/id/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/id/roles.yml -------------------------------------------------------------------------------- /config/locales/id/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/id/shared.yml -------------------------------------------------------------------------------- /config/locales/id/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/id/taxons.yml -------------------------------------------------------------------------------- /config/locales/id/topical_events.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/id/topical_events.yml -------------------------------------------------------------------------------- /config/locales/is/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/is/application.yml -------------------------------------------------------------------------------- /config/locales/is/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/is/browse.yml -------------------------------------------------------------------------------- /config/locales/is/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/is/development.yml -------------------------------------------------------------------------------- /config/locales/is/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/is/embassies.yml -------------------------------------------------------------------------------- /config/locales/is/latest_changes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/is/latest_changes.yml -------------------------------------------------------------------------------- /config/locales/is/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/is/ministers.yml -------------------------------------------------------------------------------- /config/locales/is/organisations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/is/organisations.yml -------------------------------------------------------------------------------- /config/locales/is/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/is/people.yml -------------------------------------------------------------------------------- /config/locales/is/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/is/roles.yml -------------------------------------------------------------------------------- /config/locales/is/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/is/shared.yml -------------------------------------------------------------------------------- /config/locales/is/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/is/taxons.yml -------------------------------------------------------------------------------- /config/locales/is/topical_events.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/is/topical_events.yml -------------------------------------------------------------------------------- /config/locales/it/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/it/application.yml -------------------------------------------------------------------------------- /config/locales/it/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/it/browse.yml -------------------------------------------------------------------------------- /config/locales/it/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/it/development.yml -------------------------------------------------------------------------------- /config/locales/it/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/it/embassies.yml -------------------------------------------------------------------------------- /config/locales/it/latest_changes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/it/latest_changes.yml -------------------------------------------------------------------------------- /config/locales/it/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/it/ministers.yml -------------------------------------------------------------------------------- /config/locales/it/organisations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/it/organisations.yml -------------------------------------------------------------------------------- /config/locales/it/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/it/people.yml -------------------------------------------------------------------------------- /config/locales/it/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/it/roles.yml -------------------------------------------------------------------------------- /config/locales/it/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/it/shared.yml -------------------------------------------------------------------------------- /config/locales/it/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/it/taxons.yml -------------------------------------------------------------------------------- /config/locales/it/topical_events.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/it/topical_events.yml -------------------------------------------------------------------------------- /config/locales/ja/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ja/application.yml -------------------------------------------------------------------------------- /config/locales/ja/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ja/browse.yml -------------------------------------------------------------------------------- /config/locales/ja/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ja/development.yml -------------------------------------------------------------------------------- /config/locales/ja/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ja/embassies.yml -------------------------------------------------------------------------------- /config/locales/ja/latest_changes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ja/latest_changes.yml -------------------------------------------------------------------------------- /config/locales/ja/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ja/ministers.yml -------------------------------------------------------------------------------- /config/locales/ja/organisations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ja/organisations.yml -------------------------------------------------------------------------------- /config/locales/ja/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ja/people.yml -------------------------------------------------------------------------------- /config/locales/ja/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ja/roles.yml -------------------------------------------------------------------------------- /config/locales/ja/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ja/shared.yml -------------------------------------------------------------------------------- /config/locales/ja/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ja/taxons.yml -------------------------------------------------------------------------------- /config/locales/ja/topical_events.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ja/topical_events.yml -------------------------------------------------------------------------------- /config/locales/ka/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ka/application.yml -------------------------------------------------------------------------------- /config/locales/ka/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ka/browse.yml -------------------------------------------------------------------------------- /config/locales/ka/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ka/development.yml -------------------------------------------------------------------------------- /config/locales/ka/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ka/embassies.yml -------------------------------------------------------------------------------- /config/locales/ka/latest_changes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ka/latest_changes.yml -------------------------------------------------------------------------------- /config/locales/ka/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ka/ministers.yml -------------------------------------------------------------------------------- /config/locales/ka/organisations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ka/organisations.yml -------------------------------------------------------------------------------- /config/locales/ka/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ka/people.yml -------------------------------------------------------------------------------- /config/locales/ka/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ka/roles.yml -------------------------------------------------------------------------------- /config/locales/ka/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ka/shared.yml -------------------------------------------------------------------------------- /config/locales/ka/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ka/taxons.yml -------------------------------------------------------------------------------- /config/locales/ka/topical_events.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ka/topical_events.yml -------------------------------------------------------------------------------- /config/locales/kk/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/kk/application.yml -------------------------------------------------------------------------------- /config/locales/kk/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/kk/browse.yml -------------------------------------------------------------------------------- /config/locales/kk/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/kk/development.yml -------------------------------------------------------------------------------- /config/locales/kk/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/kk/embassies.yml -------------------------------------------------------------------------------- /config/locales/kk/latest_changes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/kk/latest_changes.yml -------------------------------------------------------------------------------- /config/locales/kk/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/kk/ministers.yml -------------------------------------------------------------------------------- /config/locales/kk/organisations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/kk/organisations.yml -------------------------------------------------------------------------------- /config/locales/kk/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/kk/people.yml -------------------------------------------------------------------------------- /config/locales/kk/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/kk/roles.yml -------------------------------------------------------------------------------- /config/locales/kk/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/kk/shared.yml -------------------------------------------------------------------------------- /config/locales/kk/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/kk/taxons.yml -------------------------------------------------------------------------------- /config/locales/kk/topical_events.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/kk/topical_events.yml -------------------------------------------------------------------------------- /config/locales/ko/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ko/application.yml -------------------------------------------------------------------------------- /config/locales/ko/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ko/browse.yml -------------------------------------------------------------------------------- /config/locales/ko/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ko/development.yml -------------------------------------------------------------------------------- /config/locales/ko/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ko/embassies.yml -------------------------------------------------------------------------------- /config/locales/ko/latest_changes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ko/latest_changes.yml -------------------------------------------------------------------------------- /config/locales/ko/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ko/ministers.yml -------------------------------------------------------------------------------- /config/locales/ko/organisations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ko/organisations.yml -------------------------------------------------------------------------------- /config/locales/ko/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ko/people.yml -------------------------------------------------------------------------------- /config/locales/ko/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ko/roles.yml -------------------------------------------------------------------------------- /config/locales/ko/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ko/shared.yml -------------------------------------------------------------------------------- /config/locales/ko/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ko/taxons.yml -------------------------------------------------------------------------------- /config/locales/ko/topical_events.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ko/topical_events.yml -------------------------------------------------------------------------------- /config/locales/ky/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ky/application.yml -------------------------------------------------------------------------------- /config/locales/ky/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ky/browse.yml -------------------------------------------------------------------------------- /config/locales/ky/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ky/development.yml -------------------------------------------------------------------------------- /config/locales/ky/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ky/embassies.yml -------------------------------------------------------------------------------- /config/locales/ky/latest_changes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ky/latest_changes.yml -------------------------------------------------------------------------------- /config/locales/ky/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ky/ministers.yml -------------------------------------------------------------------------------- /config/locales/ky/organisations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ky/organisations.yml -------------------------------------------------------------------------------- /config/locales/ky/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ky/people.yml -------------------------------------------------------------------------------- /config/locales/ky/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ky/roles.yml -------------------------------------------------------------------------------- /config/locales/ky/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ky/shared.yml -------------------------------------------------------------------------------- /config/locales/ky/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ky/taxons.yml -------------------------------------------------------------------------------- /config/locales/ky/topical_events.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ky/topical_events.yml -------------------------------------------------------------------------------- /config/locales/lt/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/lt/application.yml -------------------------------------------------------------------------------- /config/locales/lt/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/lt/browse.yml -------------------------------------------------------------------------------- /config/locales/lt/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/lt/development.yml -------------------------------------------------------------------------------- /config/locales/lt/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/lt/embassies.yml -------------------------------------------------------------------------------- /config/locales/lt/latest_changes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/lt/latest_changes.yml -------------------------------------------------------------------------------- /config/locales/lt/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/lt/ministers.yml -------------------------------------------------------------------------------- /config/locales/lt/organisations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/lt/organisations.yml -------------------------------------------------------------------------------- /config/locales/lt/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/lt/people.yml -------------------------------------------------------------------------------- /config/locales/lt/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/lt/roles.yml -------------------------------------------------------------------------------- /config/locales/lt/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/lt/shared.yml -------------------------------------------------------------------------------- /config/locales/lt/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/lt/taxons.yml -------------------------------------------------------------------------------- /config/locales/lt/topical_events.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/lt/topical_events.yml -------------------------------------------------------------------------------- /config/locales/lv/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/lv/application.yml -------------------------------------------------------------------------------- /config/locales/lv/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/lv/browse.yml -------------------------------------------------------------------------------- /config/locales/lv/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/lv/development.yml -------------------------------------------------------------------------------- /config/locales/lv/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/lv/embassies.yml -------------------------------------------------------------------------------- /config/locales/lv/latest_changes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/lv/latest_changes.yml -------------------------------------------------------------------------------- /config/locales/lv/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/lv/ministers.yml -------------------------------------------------------------------------------- /config/locales/lv/organisations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/lv/organisations.yml -------------------------------------------------------------------------------- /config/locales/lv/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/lv/people.yml -------------------------------------------------------------------------------- /config/locales/lv/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/lv/roles.yml -------------------------------------------------------------------------------- /config/locales/lv/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/lv/shared.yml -------------------------------------------------------------------------------- /config/locales/lv/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/lv/taxons.yml -------------------------------------------------------------------------------- /config/locales/ms/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ms/application.yml -------------------------------------------------------------------------------- /config/locales/ms/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ms/browse.yml -------------------------------------------------------------------------------- /config/locales/ms/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ms/development.yml -------------------------------------------------------------------------------- /config/locales/ms/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ms/embassies.yml -------------------------------------------------------------------------------- /config/locales/ms/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ms/ministers.yml -------------------------------------------------------------------------------- /config/locales/ms/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ms/people.yml -------------------------------------------------------------------------------- /config/locales/ms/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ms/roles.yml -------------------------------------------------------------------------------- /config/locales/ms/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ms/shared.yml -------------------------------------------------------------------------------- /config/locales/ms/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ms/taxons.yml -------------------------------------------------------------------------------- /config/locales/mt/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/mt/application.yml -------------------------------------------------------------------------------- /config/locales/mt/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/mt/browse.yml -------------------------------------------------------------------------------- /config/locales/mt/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/mt/development.yml -------------------------------------------------------------------------------- /config/locales/mt/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/mt/embassies.yml -------------------------------------------------------------------------------- /config/locales/mt/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/mt/ministers.yml -------------------------------------------------------------------------------- /config/locales/mt/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/mt/people.yml -------------------------------------------------------------------------------- /config/locales/mt/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/mt/roles.yml -------------------------------------------------------------------------------- /config/locales/mt/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/mt/shared.yml -------------------------------------------------------------------------------- /config/locales/mt/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/mt/taxons.yml -------------------------------------------------------------------------------- /config/locales/ne/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ne/application.yml -------------------------------------------------------------------------------- /config/locales/ne/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ne/browse.yml -------------------------------------------------------------------------------- /config/locales/ne/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ne/development.yml -------------------------------------------------------------------------------- /config/locales/ne/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ne/embassies.yml -------------------------------------------------------------------------------- /config/locales/ne/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ne/ministers.yml -------------------------------------------------------------------------------- /config/locales/ne/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ne/people.yml -------------------------------------------------------------------------------- /config/locales/ne/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ne/roles.yml -------------------------------------------------------------------------------- /config/locales/ne/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ne/shared.yml -------------------------------------------------------------------------------- /config/locales/ne/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ne/taxons.yml -------------------------------------------------------------------------------- /config/locales/nl/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/nl/application.yml -------------------------------------------------------------------------------- /config/locales/nl/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/nl/browse.yml -------------------------------------------------------------------------------- /config/locales/nl/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/nl/development.yml -------------------------------------------------------------------------------- /config/locales/nl/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/nl/embassies.yml -------------------------------------------------------------------------------- /config/locales/nl/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/nl/ministers.yml -------------------------------------------------------------------------------- /config/locales/nl/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/nl/people.yml -------------------------------------------------------------------------------- /config/locales/nl/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/nl/roles.yml -------------------------------------------------------------------------------- /config/locales/nl/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/nl/shared.yml -------------------------------------------------------------------------------- /config/locales/nl/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/nl/taxons.yml -------------------------------------------------------------------------------- /config/locales/no/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/no/application.yml -------------------------------------------------------------------------------- /config/locales/no/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/no/browse.yml -------------------------------------------------------------------------------- /config/locales/no/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/no/development.yml -------------------------------------------------------------------------------- /config/locales/no/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/no/embassies.yml -------------------------------------------------------------------------------- /config/locales/no/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/no/ministers.yml -------------------------------------------------------------------------------- /config/locales/no/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/no/people.yml -------------------------------------------------------------------------------- /config/locales/no/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/no/roles.yml -------------------------------------------------------------------------------- /config/locales/no/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/no/shared.yml -------------------------------------------------------------------------------- /config/locales/no/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/no/taxons.yml -------------------------------------------------------------------------------- /config/locales/pa-pk/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/pa-pk/browse.yml -------------------------------------------------------------------------------- /config/locales/pa-pk/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/pa-pk/people.yml -------------------------------------------------------------------------------- /config/locales/pa-pk/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/pa-pk/roles.yml -------------------------------------------------------------------------------- /config/locales/pa-pk/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/pa-pk/shared.yml -------------------------------------------------------------------------------- /config/locales/pa-pk/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/pa-pk/taxons.yml -------------------------------------------------------------------------------- /config/locales/pa/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/pa/application.yml -------------------------------------------------------------------------------- /config/locales/pa/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/pa/browse.yml -------------------------------------------------------------------------------- /config/locales/pa/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/pa/development.yml -------------------------------------------------------------------------------- /config/locales/pa/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/pa/embassies.yml -------------------------------------------------------------------------------- /config/locales/pa/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/pa/ministers.yml -------------------------------------------------------------------------------- /config/locales/pa/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/pa/people.yml -------------------------------------------------------------------------------- /config/locales/pa/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/pa/roles.yml -------------------------------------------------------------------------------- /config/locales/pa/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/pa/shared.yml -------------------------------------------------------------------------------- /config/locales/pa/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/pa/taxons.yml -------------------------------------------------------------------------------- /config/locales/pl/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/pl/application.yml -------------------------------------------------------------------------------- /config/locales/pl/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/pl/browse.yml -------------------------------------------------------------------------------- /config/locales/pl/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/pl/development.yml -------------------------------------------------------------------------------- /config/locales/pl/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/pl/embassies.yml -------------------------------------------------------------------------------- /config/locales/pl/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/pl/ministers.yml -------------------------------------------------------------------------------- /config/locales/pl/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/pl/people.yml -------------------------------------------------------------------------------- /config/locales/pl/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/pl/roles.yml -------------------------------------------------------------------------------- /config/locales/pl/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/pl/shared.yml -------------------------------------------------------------------------------- /config/locales/pl/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/pl/taxons.yml -------------------------------------------------------------------------------- /config/locales/ps/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ps/application.yml -------------------------------------------------------------------------------- /config/locales/ps/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ps/browse.yml -------------------------------------------------------------------------------- /config/locales/ps/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ps/development.yml -------------------------------------------------------------------------------- /config/locales/ps/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ps/embassies.yml -------------------------------------------------------------------------------- /config/locales/ps/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ps/ministers.yml -------------------------------------------------------------------------------- /config/locales/ps/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ps/people.yml -------------------------------------------------------------------------------- /config/locales/ps/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ps/roles.yml -------------------------------------------------------------------------------- /config/locales/ps/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ps/shared.yml -------------------------------------------------------------------------------- /config/locales/ps/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ps/taxons.yml -------------------------------------------------------------------------------- /config/locales/pt/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/pt/application.yml -------------------------------------------------------------------------------- /config/locales/pt/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/pt/browse.yml -------------------------------------------------------------------------------- /config/locales/pt/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/pt/development.yml -------------------------------------------------------------------------------- /config/locales/pt/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/pt/embassies.yml -------------------------------------------------------------------------------- /config/locales/pt/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/pt/ministers.yml -------------------------------------------------------------------------------- /config/locales/pt/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/pt/people.yml -------------------------------------------------------------------------------- /config/locales/pt/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/pt/roles.yml -------------------------------------------------------------------------------- /config/locales/pt/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/pt/shared.yml -------------------------------------------------------------------------------- /config/locales/pt/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/pt/taxons.yml -------------------------------------------------------------------------------- /config/locales/ro/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ro/application.yml -------------------------------------------------------------------------------- /config/locales/ro/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ro/browse.yml -------------------------------------------------------------------------------- /config/locales/ro/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ro/development.yml -------------------------------------------------------------------------------- /config/locales/ro/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ro/embassies.yml -------------------------------------------------------------------------------- /config/locales/ro/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ro/ministers.yml -------------------------------------------------------------------------------- /config/locales/ro/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ro/people.yml -------------------------------------------------------------------------------- /config/locales/ro/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ro/roles.yml -------------------------------------------------------------------------------- /config/locales/ro/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ro/shared.yml -------------------------------------------------------------------------------- /config/locales/ro/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ro/taxons.yml -------------------------------------------------------------------------------- /config/locales/ru/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ru/application.yml -------------------------------------------------------------------------------- /config/locales/ru/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ru/browse.yml -------------------------------------------------------------------------------- /config/locales/ru/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ru/development.yml -------------------------------------------------------------------------------- /config/locales/ru/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ru/embassies.yml -------------------------------------------------------------------------------- /config/locales/ru/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ru/ministers.yml -------------------------------------------------------------------------------- /config/locales/ru/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ru/people.yml -------------------------------------------------------------------------------- /config/locales/ru/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ru/roles.yml -------------------------------------------------------------------------------- /config/locales/ru/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ru/shared.yml -------------------------------------------------------------------------------- /config/locales/ru/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ru/taxons.yml -------------------------------------------------------------------------------- /config/locales/si/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/si/application.yml -------------------------------------------------------------------------------- /config/locales/si/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/si/browse.yml -------------------------------------------------------------------------------- /config/locales/si/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/si/development.yml -------------------------------------------------------------------------------- /config/locales/si/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/si/embassies.yml -------------------------------------------------------------------------------- /config/locales/si/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/si/ministers.yml -------------------------------------------------------------------------------- /config/locales/si/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/si/people.yml -------------------------------------------------------------------------------- /config/locales/si/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/si/roles.yml -------------------------------------------------------------------------------- /config/locales/si/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/si/shared.yml -------------------------------------------------------------------------------- /config/locales/si/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/si/taxons.yml -------------------------------------------------------------------------------- /config/locales/sk/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sk/application.yml -------------------------------------------------------------------------------- /config/locales/sk/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sk/browse.yml -------------------------------------------------------------------------------- /config/locales/sk/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sk/development.yml -------------------------------------------------------------------------------- /config/locales/sk/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sk/embassies.yml -------------------------------------------------------------------------------- /config/locales/sk/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sk/ministers.yml -------------------------------------------------------------------------------- /config/locales/sk/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sk/people.yml -------------------------------------------------------------------------------- /config/locales/sk/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sk/roles.yml -------------------------------------------------------------------------------- /config/locales/sk/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sk/shared.yml -------------------------------------------------------------------------------- /config/locales/sk/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sk/taxons.yml -------------------------------------------------------------------------------- /config/locales/sl/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sl/application.yml -------------------------------------------------------------------------------- /config/locales/sl/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sl/browse.yml -------------------------------------------------------------------------------- /config/locales/sl/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sl/development.yml -------------------------------------------------------------------------------- /config/locales/sl/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sl/embassies.yml -------------------------------------------------------------------------------- /config/locales/sl/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sl/ministers.yml -------------------------------------------------------------------------------- /config/locales/sl/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sl/people.yml -------------------------------------------------------------------------------- /config/locales/sl/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sl/roles.yml -------------------------------------------------------------------------------- /config/locales/sl/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sl/shared.yml -------------------------------------------------------------------------------- /config/locales/sl/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sl/taxons.yml -------------------------------------------------------------------------------- /config/locales/so/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/so/application.yml -------------------------------------------------------------------------------- /config/locales/so/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/so/browse.yml -------------------------------------------------------------------------------- /config/locales/so/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/so/development.yml -------------------------------------------------------------------------------- /config/locales/so/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/so/embassies.yml -------------------------------------------------------------------------------- /config/locales/so/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/so/ministers.yml -------------------------------------------------------------------------------- /config/locales/so/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/so/people.yml -------------------------------------------------------------------------------- /config/locales/so/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/so/roles.yml -------------------------------------------------------------------------------- /config/locales/so/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/so/shared.yml -------------------------------------------------------------------------------- /config/locales/so/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/so/taxons.yml -------------------------------------------------------------------------------- /config/locales/sq/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sq/application.yml -------------------------------------------------------------------------------- /config/locales/sq/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sq/browse.yml -------------------------------------------------------------------------------- /config/locales/sq/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sq/development.yml -------------------------------------------------------------------------------- /config/locales/sq/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sq/embassies.yml -------------------------------------------------------------------------------- /config/locales/sq/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sq/ministers.yml -------------------------------------------------------------------------------- /config/locales/sq/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sq/people.yml -------------------------------------------------------------------------------- /config/locales/sq/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sq/roles.yml -------------------------------------------------------------------------------- /config/locales/sq/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sq/shared.yml -------------------------------------------------------------------------------- /config/locales/sq/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sq/taxons.yml -------------------------------------------------------------------------------- /config/locales/sr/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sr/application.yml -------------------------------------------------------------------------------- /config/locales/sr/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sr/browse.yml -------------------------------------------------------------------------------- /config/locales/sr/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sr/development.yml -------------------------------------------------------------------------------- /config/locales/sr/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sr/embassies.yml -------------------------------------------------------------------------------- /config/locales/sr/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sr/ministers.yml -------------------------------------------------------------------------------- /config/locales/sr/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sr/people.yml -------------------------------------------------------------------------------- /config/locales/sr/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sr/roles.yml -------------------------------------------------------------------------------- /config/locales/sr/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sr/shared.yml -------------------------------------------------------------------------------- /config/locales/sr/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sr/taxons.yml -------------------------------------------------------------------------------- /config/locales/sv/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sv/application.yml -------------------------------------------------------------------------------- /config/locales/sv/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sv/browse.yml -------------------------------------------------------------------------------- /config/locales/sv/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sv/development.yml -------------------------------------------------------------------------------- /config/locales/sv/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sv/embassies.yml -------------------------------------------------------------------------------- /config/locales/sv/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sv/ministers.yml -------------------------------------------------------------------------------- /config/locales/sv/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sv/people.yml -------------------------------------------------------------------------------- /config/locales/sv/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sv/roles.yml -------------------------------------------------------------------------------- /config/locales/sv/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sv/shared.yml -------------------------------------------------------------------------------- /config/locales/sv/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sv/taxons.yml -------------------------------------------------------------------------------- /config/locales/sw/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sw/application.yml -------------------------------------------------------------------------------- /config/locales/sw/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sw/browse.yml -------------------------------------------------------------------------------- /config/locales/sw/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sw/development.yml -------------------------------------------------------------------------------- /config/locales/sw/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sw/embassies.yml -------------------------------------------------------------------------------- /config/locales/sw/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sw/ministers.yml -------------------------------------------------------------------------------- /config/locales/sw/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sw/people.yml -------------------------------------------------------------------------------- /config/locales/sw/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sw/roles.yml -------------------------------------------------------------------------------- /config/locales/sw/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sw/shared.yml -------------------------------------------------------------------------------- /config/locales/sw/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/sw/taxons.yml -------------------------------------------------------------------------------- /config/locales/ta/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ta/application.yml -------------------------------------------------------------------------------- /config/locales/ta/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ta/browse.yml -------------------------------------------------------------------------------- /config/locales/ta/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ta/development.yml -------------------------------------------------------------------------------- /config/locales/ta/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ta/embassies.yml -------------------------------------------------------------------------------- /config/locales/ta/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ta/ministers.yml -------------------------------------------------------------------------------- /config/locales/ta/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ta/people.yml -------------------------------------------------------------------------------- /config/locales/ta/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ta/roles.yml -------------------------------------------------------------------------------- /config/locales/ta/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ta/shared.yml -------------------------------------------------------------------------------- /config/locales/ta/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ta/taxons.yml -------------------------------------------------------------------------------- /config/locales/th/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/th/application.yml -------------------------------------------------------------------------------- /config/locales/th/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/th/browse.yml -------------------------------------------------------------------------------- /config/locales/th/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/th/development.yml -------------------------------------------------------------------------------- /config/locales/th/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/th/embassies.yml -------------------------------------------------------------------------------- /config/locales/th/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/th/ministers.yml -------------------------------------------------------------------------------- /config/locales/th/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/th/people.yml -------------------------------------------------------------------------------- /config/locales/th/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/th/roles.yml -------------------------------------------------------------------------------- /config/locales/th/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/th/shared.yml -------------------------------------------------------------------------------- /config/locales/th/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/th/taxons.yml -------------------------------------------------------------------------------- /config/locales/tk/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/tk/application.yml -------------------------------------------------------------------------------- /config/locales/tk/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/tk/browse.yml -------------------------------------------------------------------------------- /config/locales/tk/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/tk/development.yml -------------------------------------------------------------------------------- /config/locales/tk/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/tk/embassies.yml -------------------------------------------------------------------------------- /config/locales/tk/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/tk/ministers.yml -------------------------------------------------------------------------------- /config/locales/tk/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/tk/people.yml -------------------------------------------------------------------------------- /config/locales/tk/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/tk/roles.yml -------------------------------------------------------------------------------- /config/locales/tk/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/tk/shared.yml -------------------------------------------------------------------------------- /config/locales/tk/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/tk/taxons.yml -------------------------------------------------------------------------------- /config/locales/tr/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/tr/application.yml -------------------------------------------------------------------------------- /config/locales/tr/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/tr/browse.yml -------------------------------------------------------------------------------- /config/locales/tr/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/tr/development.yml -------------------------------------------------------------------------------- /config/locales/tr/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/tr/embassies.yml -------------------------------------------------------------------------------- /config/locales/tr/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/tr/ministers.yml -------------------------------------------------------------------------------- /config/locales/tr/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/tr/people.yml -------------------------------------------------------------------------------- /config/locales/tr/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/tr/roles.yml -------------------------------------------------------------------------------- /config/locales/tr/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/tr/shared.yml -------------------------------------------------------------------------------- /config/locales/tr/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/tr/taxons.yml -------------------------------------------------------------------------------- /config/locales/uk/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/uk/application.yml -------------------------------------------------------------------------------- /config/locales/uk/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/uk/browse.yml -------------------------------------------------------------------------------- /config/locales/uk/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/uk/development.yml -------------------------------------------------------------------------------- /config/locales/uk/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/uk/embassies.yml -------------------------------------------------------------------------------- /config/locales/uk/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/uk/ministers.yml -------------------------------------------------------------------------------- /config/locales/uk/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/uk/people.yml -------------------------------------------------------------------------------- /config/locales/uk/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/uk/roles.yml -------------------------------------------------------------------------------- /config/locales/uk/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/uk/shared.yml -------------------------------------------------------------------------------- /config/locales/uk/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/uk/taxons.yml -------------------------------------------------------------------------------- /config/locales/ur/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ur/application.yml -------------------------------------------------------------------------------- /config/locales/ur/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ur/browse.yml -------------------------------------------------------------------------------- /config/locales/ur/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ur/development.yml -------------------------------------------------------------------------------- /config/locales/ur/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ur/embassies.yml -------------------------------------------------------------------------------- /config/locales/ur/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ur/ministers.yml -------------------------------------------------------------------------------- /config/locales/ur/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ur/people.yml -------------------------------------------------------------------------------- /config/locales/ur/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ur/roles.yml -------------------------------------------------------------------------------- /config/locales/ur/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ur/shared.yml -------------------------------------------------------------------------------- /config/locales/ur/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/ur/taxons.yml -------------------------------------------------------------------------------- /config/locales/uz/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/uz/application.yml -------------------------------------------------------------------------------- /config/locales/uz/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/uz/browse.yml -------------------------------------------------------------------------------- /config/locales/uz/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/uz/development.yml -------------------------------------------------------------------------------- /config/locales/uz/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/uz/embassies.yml -------------------------------------------------------------------------------- /config/locales/uz/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/uz/ministers.yml -------------------------------------------------------------------------------- /config/locales/uz/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/uz/people.yml -------------------------------------------------------------------------------- /config/locales/uz/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/uz/roles.yml -------------------------------------------------------------------------------- /config/locales/uz/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/uz/shared.yml -------------------------------------------------------------------------------- /config/locales/uz/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/uz/taxons.yml -------------------------------------------------------------------------------- /config/locales/vi/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/vi/application.yml -------------------------------------------------------------------------------- /config/locales/vi/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/vi/browse.yml -------------------------------------------------------------------------------- /config/locales/vi/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/vi/development.yml -------------------------------------------------------------------------------- /config/locales/vi/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/vi/embassies.yml -------------------------------------------------------------------------------- /config/locales/vi/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/vi/ministers.yml -------------------------------------------------------------------------------- /config/locales/vi/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/vi/people.yml -------------------------------------------------------------------------------- /config/locales/vi/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/vi/roles.yml -------------------------------------------------------------------------------- /config/locales/vi/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/vi/shared.yml -------------------------------------------------------------------------------- /config/locales/vi/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/vi/taxons.yml -------------------------------------------------------------------------------- /config/locales/yi/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/yi/application.yml -------------------------------------------------------------------------------- /config/locales/yi/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/yi/browse.yml -------------------------------------------------------------------------------- /config/locales/yi/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/yi/development.yml -------------------------------------------------------------------------------- /config/locales/yi/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/yi/embassies.yml -------------------------------------------------------------------------------- /config/locales/yi/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/yi/ministers.yml -------------------------------------------------------------------------------- /config/locales/yi/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/yi/people.yml -------------------------------------------------------------------------------- /config/locales/yi/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/yi/roles.yml -------------------------------------------------------------------------------- /config/locales/yi/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/yi/shared.yml -------------------------------------------------------------------------------- /config/locales/yi/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/yi/taxons.yml -------------------------------------------------------------------------------- /config/locales/zh-hk/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/zh-hk/browse.yml -------------------------------------------------------------------------------- /config/locales/zh-hk/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/zh-hk/people.yml -------------------------------------------------------------------------------- /config/locales/zh-hk/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/zh-hk/roles.yml -------------------------------------------------------------------------------- /config/locales/zh-hk/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/zh-hk/shared.yml -------------------------------------------------------------------------------- /config/locales/zh-hk/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/zh-hk/taxons.yml -------------------------------------------------------------------------------- /config/locales/zh-tw/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/zh-tw/browse.yml -------------------------------------------------------------------------------- /config/locales/zh-tw/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/zh-tw/people.yml -------------------------------------------------------------------------------- /config/locales/zh-tw/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/zh-tw/roles.yml -------------------------------------------------------------------------------- /config/locales/zh-tw/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/zh-tw/shared.yml -------------------------------------------------------------------------------- /config/locales/zh-tw/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/zh-tw/taxons.yml -------------------------------------------------------------------------------- /config/locales/zh/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/zh/application.yml -------------------------------------------------------------------------------- /config/locales/zh/browse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/zh/browse.yml -------------------------------------------------------------------------------- /config/locales/zh/development.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/zh/development.yml -------------------------------------------------------------------------------- /config/locales/zh/embassies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/zh/embassies.yml -------------------------------------------------------------------------------- /config/locales/zh/ministers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/zh/ministers.yml -------------------------------------------------------------------------------- /config/locales/zh/people.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/zh/people.yml -------------------------------------------------------------------------------- /config/locales/zh/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/zh/roles.yml -------------------------------------------------------------------------------- /config/locales/zh/shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/zh/shared.yml -------------------------------------------------------------------------------- /config/locales/zh/taxons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/locales/zh/taxons.yml -------------------------------------------------------------------------------- /config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/puma.rb -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/config/spring.rb -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/docs/api.md -------------------------------------------------------------------------------- /docs/campaign-pages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/docs/campaign-pages.md -------------------------------------------------------------------------------- /docs/taxonomy-pages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/docs/taxonomy-pages.md -------------------------------------------------------------------------------- /features/support/env.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/features/support/env.rb -------------------------------------------------------------------------------- /features/support/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/features/support/helpers.rb -------------------------------------------------------------------------------- /features/support/webmock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/features/support/webmock.rb -------------------------------------------------------------------------------- /features/viewing_browse.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/features/viewing_browse.feature -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/sanitiser/strategy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/lib/sanitiser/strategy.rb -------------------------------------------------------------------------------- /lib/tasks/cucumber.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/lib/tasks/cucumber.rake -------------------------------------------------------------------------------- /lib/tasks/jasmine.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/lib/tasks/jasmine.rake -------------------------------------------------------------------------------- /lib/tasks/lint.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/lib/tasks/lint.rake -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/package.json -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/public/500.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/public/robots.txt -------------------------------------------------------------------------------- /script/cucumber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/script/cucumber -------------------------------------------------------------------------------- /spec/features/atom_feeds_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/spec/features/atom_feeds_spec.rb -------------------------------------------------------------------------------- /spec/features/embassies_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/spec/features/embassies_spec.rb -------------------------------------------------------------------------------- /spec/features/ministers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/spec/features/ministers_spec.rb -------------------------------------------------------------------------------- /spec/features/person_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/spec/features/person_spec.rb -------------------------------------------------------------------------------- /spec/features/role_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/spec/features/role_spec.rb -------------------------------------------------------------------------------- /spec/features/world_index_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/spec/features/world_index_spec.rb -------------------------------------------------------------------------------- /spec/helpers/email_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/spec/helpers/email_helper_spec.rb -------------------------------------------------------------------------------- /spec/integration_spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/spec/integration_spec_helper.rb -------------------------------------------------------------------------------- /spec/models/list_set_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/spec/models/list_set_spec.rb -------------------------------------------------------------------------------- /spec/models/person_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/spec/models/person_spec.rb -------------------------------------------------------------------------------- /spec/models/popular_list_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/spec/models/popular_list_spec.rb -------------------------------------------------------------------------------- /spec/models/taxon_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/spec/models/taxon_spec.rb -------------------------------------------------------------------------------- /spec/models/topical_event_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/spec/models/topical_event_spec.rb -------------------------------------------------------------------------------- /spec/requests/redirection_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/spec/requests/redirection_spec.rb -------------------------------------------------------------------------------- /spec/requests/sanitiser_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/spec/requests/sanitiser_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/jasmine-browser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/spec/support/jasmine-browser.json -------------------------------------------------------------------------------- /spec/support/taxon_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/spec/support/taxon_helpers.rb -------------------------------------------------------------------------------- /startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/startup.sh -------------------------------------------------------------------------------- /vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/collections/HEAD/yarn.lock --------------------------------------------------------------------------------