diff --git a/README.md b/README.md
index edc0098620..4a66662227 100644
--- a/README.md
+++ b/README.md
@@ -35,6 +35,9 @@ some hard-coded routes.
|Help |[help_page](https://docs.publishing.service.gov.uk/content-schemas/help_page.html)|https://www.gov.uk/help/browsers|
|History |[history](https://docs.publishing.service.gov.uk/content-schemas/history.html)|https://www.gov.uk/government/history/10-downing-street|
|Homepage |[homepage](https://docs.publishing.service.gov.uk/content-schemas/homepage.html)|https://www.gov.uk/|
+|HTML Publication |[html_publication](https://docs.publishing.service.gov.uk/content-schemas/html_publication.html)|https://www.gov.uk/government/publications/car-show-me-tell-me-vehicle-safety-questions/car-show-me-tell-me-vehicle-safety-questions|
+| ||https://www.gov.uk/government/publications/skilled-worker-visa-temporary-shortage-list/skilled-worker-visa-temporary-shortage-list|
+| ||https://www.gov.uk/government/publications/usa-apply-for-a-uk-visa/apply-for-a-uk-visa-in-the-usa|
|Get involved |[get_involved](https://docs.publishing.service.gov.uk/content-schemas/get_involved.html)|https://www.gov.uk/government/get-involved|
|Gone |[gone](https://docs.publishing.service.gov.uk/content-schemas/gone.html)|https://www.gov.uk/government/collections/greenhouse-gas-conversion-factors-for-company-reporting|
|Licence finder |schema: [specialist_document](https://docs.publishing.service.gov.uk/content-schemas/specialist_document.html)|https://www.gov.uk/find-licences/premises-licence|
diff --git a/app/assets/images/open-government-licence-min.png b/app/assets/images/open-government-licence-min.png
new file mode 100644
index 0000000000..1bfa49cbcd
Binary files /dev/null and b/app/assets/images/open-government-licence-min.png differ
diff --git a/app/assets/stylesheets/application.scss b/app/assets/stylesheets/application.scss
index f218843360..7cf925241c 100644
--- a/app/assets/stylesheets/application.scss
+++ b/app/assets/stylesheets/application.scss
@@ -27,6 +27,7 @@ $govuk-include-default-font-face: true;
@import "govuk_publishing_components/components/feedback";
@import "govuk_publishing_components/components/figure";
@import "govuk_publishing_components/components/govspeak";
+@import "govuk_publishing_components/components/govspeak-html-publication";
@import "govuk_publishing_components/components/heading";
@import "govuk_publishing_components/components/hint";
@import "govuk_publishing_components/components/image-card";
diff --git a/app/assets/stylesheets/views/_html-publication.scss b/app/assets/stylesheets/views/_html-publication.scss
new file mode 100644
index 0000000000..3e4d51be13
--- /dev/null
+++ b/app/assets/stylesheets/views/_html-publication.scss
@@ -0,0 +1,64 @@
+@import "govuk_publishing_components/individual_component_support";
+
+.publication-external {
+ margin-bottom: govuk-spacing(4);
+ position: relative;
+
+ // design calls for the logos at the top to always be left aligned
+ .direction-rtl & {
+ direction: ltr;
+ }
+
+ .organisation-logos {
+ margin: 0;
+ }
+}
+
+.offset-empty-contents-list {
+ @include govuk-media-query($from: desktop) {
+ float: right;
+
+ .direction-rtl & {
+ float: left;
+ }
+ }
+}
+
+.contents-list-container {
+ @include govuk-media-query($from: desktop) {
+ position: sticky;
+ top: govuk-spacing(2);
+ max-height: 100vh;
+ overflow-y: auto;
+ margin-bottom: govuk-spacing(4);
+ }
+
+ .direction-rtl & {
+ float: right;
+ }
+}
+
+.print-metadata {
+ display: none;
+}
+
+.print-metadata__licence {
+ width: 78px;
+ height: auto;
+ margin-top: 60px;
+ margin-bottom: 40px;
+}
+
+.direction-rtl .back-to-top-wrapper {
+ direction: rtl;
+ text-align: start;
+}
+
+// Required to display a separate meta data page when printing
+@include govuk-media-query($media-type: print) {
+ .print-metadata {
+ page-break-before: always;
+ page-break-after: always;
+ display: block;
+ }
+}
diff --git a/app/controllers/html_publication_controller.rb b/app/controllers/html_publication_controller.rb
new file mode 100644
index 0000000000..3a6fd66a61
--- /dev/null
+++ b/app/controllers/html_publication_controller.rb
@@ -0,0 +1,7 @@
+class HtmlPublicationController < ContentItemsController
+ include Cacheable
+
+ def show
+ @presenter = HtmlPublicationPresenter.new(content_item)
+ end
+end
diff --git a/app/models/html_publication.rb b/app/models/html_publication.rb
new file mode 100644
index 0000000000..6a11d8f227
--- /dev/null
+++ b/app/models/html_publication.rb
@@ -0,0 +1,28 @@
+class HtmlPublication < ContentItem
+ include Political
+ include NationalApplicability
+
+ def parent
+ linked("parent").first
+ end
+
+ def public_timestamp
+ content_store_response["details"]["public_timestamp"]
+ end
+
+ def first_published_version
+ content_store_response.dig("details", "first_published_version")
+ end
+
+ def headers
+ content_store_response.dig("details", "headers") || []
+ end
+
+ def copyright_year
+ content_store_response.dig("details", "public_timestamp").to_date.year if public_timestamp.present?
+ end
+
+ def isbn
+ content_store_response.dig("details", "isbn")
+ end
+end
diff --git a/app/presenters/html_publication_presenter.rb b/app/presenters/html_publication_presenter.rb
new file mode 100644
index 0000000000..7682b65ac4
--- /dev/null
+++ b/app/presenters/html_publication_presenter.rb
@@ -0,0 +1,45 @@
+class HtmlPublicationPresenter < ContentItemPresenter
+ include ContentsList
+ include DateHelper
+
+ def hide_from_search_engines?
+ return false unless content_item.parent
+
+ PublicationPresenter::PATHS_TO_HIDE.include? content_item.parent.base_path
+ end
+
+ def organisation_logos
+ content_item.organisations.map do |organisation|
+ {
+ name: organisation.logo.formatted_title.html_safe,
+ url: organisation.base_path,
+ brand: organisation.brand,
+ crest: organisation.logo.crest,
+ image: content_item.organisations.count == 1 ? organisation.logo.image : nil,
+ }
+ end
+ end
+
+ def last_changed
+ timestamp = display_date(content_item.public_timestamp)
+
+ # This assumes that a translation doesn't need the date to come beforehand.
+ if content_item.first_published_version
+ "#{I18n.t('common.metadata.published')} #{timestamp}"
+ else
+ "#{I18n.t('common.metadata.updated')} #{timestamp}"
+ end
+ end
+
+ def format_sub_type
+ if content_item.parent && content_item.parent.document_type.present?
+ content_item.parent.document_type
+ else
+ "publication"
+ end
+ end
+
+ def full_path(request)
+ request.base_url + request.path
+ end
+end
diff --git a/app/views/html_publication/_print_meta_data.html.erb b/app/views/html_publication/_print_meta_data.html.erb
new file mode 100644
index 0000000000..34444162e6
--- /dev/null
+++ b/app/views/html_publication/_print_meta_data.html.erb
@@ -0,0 +1,20 @@
+
+ <%= image_tag "open-government-licence-min.png", class: "print-metadata__licence" %>
+
+
+ <%= t("formats.html_publication.print_meta_data.copyright", year: content_item.copyright_year) %>
+
+
+ <%= t("formats.html_publication.print_meta_data.licence_html") %>
+
+
+ <%= t("formats.html_publication.print_meta_data.third_party") %>
+
+
+ <%= t("formats.html_publication.print_meta_data.available_at", url: @presenter.full_path(request)) %>
+
+<% unless content_item.isbn.blank? %>
+
+ <%= t("formats.html_publication.print_meta_data.isbn") %> <%= content_item.isbn %>
+
+<% end %>
diff --git a/app/views/html_publication/show.html.erb b/app/views/html_publication/show.html.erb
new file mode 100644
index 0000000000..c46fd3bb15
--- /dev/null
+++ b/app/views/html_publication/show.html.erb
@@ -0,0 +1,92 @@
+<% content_for :head do %>
+ <%= render "govuk_publishing_components/components/machine_readable_metadata",
+ schema: :html_publication,
+ content_item: content_item.to_h %>
+
+ <% if @presenter.hide_from_search_engines? %>
+
+ <% end %>
+ <%= stylesheet_link_tag "views/_html-publication" %>
+ <%= stylesheet_link_tag "views/_csv_preview" %>
+<% end %>
+
+<% if content_item.organisations %>
+
+
+ <% @presenter.organisation_logos.each do |organisation| %>
+ -
+ <%= render "govuk_publishing_components/components/organisation_logo", {
+ organisation:,
+ } %>
+
+ <% end %>
+
+
+<% end %>
+
+<%= render "govuk_publishing_components/components/inverse_header", {
+ padding_top: 6,
+ padding_bottom: 6,
+ subtext: @presenter.last_changed,
+ dir: page_text_direction,
+} do %>
+ <%= render "govuk_publishing_components/components/heading", {
+ text: content_item.title,
+ context: I18n.t("formats.#{@presenter.format_sub_type}.name", count: 1),
+ inverse: true,
+ margin_bottom: 0,
+ font_size: "xl",
+ heading_level: 1,
+ } %>
+<% end %>
+
+<%= render "shared/history_notice", content_item: content_item %>
+
+<% if content_item.withdrawn? %>
+ <% withdrawn_time_tag = tag.time(display_date(content_item.withdrawn_at), datetime: content_item.withdrawn_at) %>
+
+ <%= render "govuk_publishing_components/components/notice", {
+ title: I18n.t("withdrawn_notice.title", schema_name: I18n.t("formats.#{@presenter.format_sub_type}.name", count: 1, locale: :en).downcase, withdrawn_time: withdrawn_time_tag).html_safe,
+ description_govspeak: content_item.withdrawn_explanation&.html_safe,
+ time: withdrawn_time_tag,
+ lang: "en",
+ dir: page_text_direction,
+ } %>
+<% end %>
+
+<% if content_item.national_applicability.present? %>
+ <%= render "govuk_publishing_components/components/devolved_nations", {
+ national_applicability: content_item.national_applicability,
+ content_type: content_item.schema_name,
+ } %>
+<% end %>
+
+
+
+ <% if content_item.headers.any? %>
+
+ <%= render "govuk_publishing_components/components/contents_list", contents: @presenter.headers_for_contents_list_component, format_numbers: true %>
+
+ <%= render "govuk_publishing_components/components/print_link", {
+ margin_bottom: 6,
+ } %>
+
+ <% end %>
+
+
+ <%= render partial: "print_meta_data" %>
+
+
+
+ <%= render "govuk_publishing_components/components/govspeak_html_publication", {
+ direction: page_text_direction,
+ } do %>
+ <%= raw(content_item.body.html_safe) %>
+ <% end %>
+
+
+
+
+ <%= render "govuk_publishing_components/components/back_to_top_link", href: "#contents", text: "Back to top" %>
+
+
diff --git a/app/views/shared/_history_notice.html.erb b/app/views/shared/_history_notice.html.erb
index 91becded08..be718b0391 100644
--- a/app/views/shared/_history_notice.html.erb
+++ b/app/views/shared/_history_notice.html.erb
@@ -4,5 +4,6 @@
t("shared.historically_political", government: "#{content_item.publishing_government}"),
attributes: %w(lang dir),
),
+ dir: page_text_direction,
} %>
<% end %>
diff --git a/config/govuk_examples.yml b/config/govuk_examples.yml
index 5b30ec3bdd..b7243b3959 100644
--- a/config/govuk_examples.yml
+++ b/config/govuk_examples.yml
@@ -19,6 +19,7 @@ gone: /government/collections/greenhouse-gas-conversion-factors-for-company-repo
guide: /log-in-register-hmrc-online-services
help_page: /help/browsers
history: /government/history/10-downing-street
+html_publication: /government/publications/car-show-me-tell-me-vehicle-safety-questions/car-show-me-tell-me-vehicle-safety-questions
homepage: /
licence_transaction: /find-licences/tv-licence
local_transaction: /contact-electoral-registration-office
diff --git a/config/initializers/dartsass.rb b/config/initializers/dartsass.rb
index 3ffc793aa8..7bfd4610b0 100644
--- a/config/initializers/dartsass.rb
+++ b/config/initializers/dartsass.rb
@@ -8,6 +8,7 @@
"views/_csv_preview.scss" => "views/_csv_preview.css",
"views/_guide.scss" => "views/_guide.css",
"views/_homepage.scss" => "views/_homepage.css",
+ "views/_html-publication.scss" => "views/_html-publication.css",
"views/_local-transaction.scss" => "views/_local-transaction.css",
"views/_location_form.scss" => "views/_location_form.css",
"views/_place-list.scss" => "views/_place-list.css",
diff --git a/config/locales/ar.yml b/config/locales/ar.yml
index 055de266e9..1ea044e8fb 100644
--- a/config/locales/ar.yml
+++ b/config/locales/ar.yml
@@ -84,6 +84,9 @@ ar:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: تاريخ النشر
+ updated: تاريخ التحديث
nations:
england-and-wales:
england-and-wales_for:
@@ -329,16 +332,16 @@ ar:
name:
few:
many:
- one:
- other:
+ one: تقرير الشركة
+ other: تقارير الشركة
two:
zero:
correspondence:
name:
few:
many:
- one:
- other:
+ one: مراسلة
+ other: مراسلات
two:
zero:
countryside_stewardship_grant:
@@ -353,8 +356,8 @@ ar:
name:
few:
many:
- one:
- other:
+ one: قرار
+ other: قرارات
two:
zero:
detailed_guide:
@@ -444,16 +447,16 @@ ar:
name:
few:
many:
- one:
- other:
+ one: إصدار حرية تداول المعلومات
+ other: إصدارات حرية تداول المعلومات
two:
zero:
form:
name:
few:
many:
- one:
- other:
+ one: نموذج
+ other: نماذج
two:
zero:
get_involved:
@@ -507,18 +510,32 @@ ar:
few:
many:
one:
- other:
+ other: توجيه
two:
zero:
guide:
pages_in_guide: الصفحات في هذا الدليل
skip_contents:
+ html_publication:
+ name:
+ few:
+ many:
+ one: HTML Publication
+ other: HTML Publications
+ two:
+ zero:
+ print_meta_data:
+ available_at: يتاح المنشور على %{url}
+ copyright: "© Crown copyright %{year}"
+ isbn: 'رقم ISBN:'
+ licence_html: 'تم ترخيص هذا المنشور بموجب شروط الترخيص الحكومي المفتوح (الإصدار v3.0) ما لم ينص على خلاف ذلك. للاطلاع على هذا الترخيص، تفضَّل بزيارة nationalarchives.gov.uk/doc/open-government-licence/version/3 أو اكتب خطابًا موجهًا إلى Information Policy Team, The National Archives, Kew, London TW9 4DU، أو تواصل عبر البريد الإلكتروني: psi@nationalarchives.gov.uk.'
+ third_party: في الحالات التي نحدد فيها أي معلومات متعلقة بحقوق الطبع والنشر لطرفٍ ثالث، ستحتاج إلى الحصول على إذن من أصحاب حقوق الطبع والنشر المعنيين.
impact_assessment:
name:
few:
many:
- one:
- other:
+ one: تقييم الأثر
+ other: تقييمات الأثر
two:
zero:
imported:
@@ -533,8 +550,8 @@ ar:
name:
few:
many:
- one:
- other:
+ one: تقرير مستقل
+ other: تقارير مستقلة
two:
zero:
international_development_fund:
@@ -549,8 +566,8 @@ ar:
name:
few:
many:
- one:
- other:
+ one: معاهدة دولية
+ other: معاهدات دولية
two:
zero:
licence:
@@ -636,8 +653,8 @@ ar:
name:
few:
many:
- one:
- other:
+ one: خريطة
+ other: خرائط
two:
zero:
medical_safety_alert:
@@ -661,7 +678,7 @@ ar:
few:
many:
one:
- other:
+ other: الإحصاءات الوطنية
two:
zero:
national_statistics_announcement:
@@ -692,8 +709,8 @@ ar:
name:
few:
many:
- one:
- other:
+ one: إشعار
+ other: إشعارات
two:
zero:
official:
@@ -709,7 +726,7 @@ ar:
few:
many:
one:
- other:
+ other: الإحصاءات الرسمية
two:
zero:
official_statistics_announcement:
@@ -761,8 +778,8 @@ ar:
name:
few:
many:
- one:
- other:
+ one: ورقة تتعلق بالسياسات
+ other: أوراق تتعلق بالسياسات
two:
zero:
press_release:
@@ -794,7 +811,7 @@ ar:
few:
many:
one:
- other:
+ other: مادة ترويجية
two:
zero:
publication:
@@ -825,8 +842,8 @@ ar:
name:
few:
many:
- one:
- other:
+ one: لائحة
+ other: لوائح
two:
zero:
research:
@@ -834,7 +851,7 @@ ar:
few:
many:
one:
- other:
+ other: البحث والتحليل
two:
zero:
residential_property_tribunal_decision:
@@ -895,8 +912,8 @@ ar:
name:
few:
many:
- one:
- other:
+ one: معيار
+ other: معايير
two:
zero:
start_now:
@@ -937,7 +954,7 @@ ar:
few:
many:
one:
- other:
+ other: التوجيه القانوني
two:
zero:
tax_tribunal_decision:
@@ -968,7 +985,7 @@ ar:
few:
many:
one:
- other:
+ other: بيانات الشفافية
two:
zero:
travel_advice:
diff --git a/config/locales/az.yml b/config/locales/az.yml
index 7765e49ba1..453c0df155 100644
--- a/config/locales/az.yml
+++ b/config/locales/az.yml
@@ -84,6 +84,9 @@ az:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: Dərc edilib
+ updated: Yenilənib
nations:
england-and-wales:
england-and-wales_for:
@@ -271,20 +274,20 @@ az:
welsh_language_scheme_html: "%{link} ilə bağlı öhdəliyimiz barədə öyrənin."
corporate_report:
name:
- one:
- other:
+ one: Şirkətin fəaliyyəti üzrə hesabat
+ other: Şirkətin fəaliyyəti üzrə hesabatlar
correspondence:
name:
- one:
- other:
+ one: Yazışma
+ other: Yazışmalar
countryside_stewardship_grant:
name:
one:
other:
decision:
name:
- one:
- other:
+ one: Qərar
+ other: Qərarlar
detailed_guide:
name:
one: Göstəriş
@@ -334,12 +337,12 @@ az:
valid_postcode_no_locations:
foi_release:
name:
- one:
- other:
+ one: Məlumat əldə etmə azadlığı buraxılışı
+ other: Məlumat əldə etmə azadlığı buraxılışları
form:
name:
- one:
- other:
+ one: Forma
+ other: Formalar
get_involved:
civil_service:
civil_service_quarterly:
@@ -384,31 +387,41 @@ az:
other: Hökumətin reaksiyaları
guidance:
name:
- one:
- other:
+ one: Göstəriş
+ other: Göstəriş
guide:
pages_in_guide: Bu təlimatdakı səhifələr
skip_contents:
- impact_assessment:
+ html_publication:
name:
one:
other:
+ print_meta_data:
+ available_at: Bu nəşr %{url} ünvanında mövcuddur
+ copyright: "© Böyük Britaniyanın müəllif hüququ %{year}"
+ isbn: 'ISBN:'
+ licence_html: 'Bu nəşr v3.0 Açıq dövlət lisenziyasının şərtlərinə uyğun olaraq lisenziya ilə təmin edilmişdir (başqa cür nəzərdə tutulmadığı halda). Bu lisenziyaya baxmaq üçün nationalarchives.gov.uk/doc/open-government-licence/version/3 ünvanına baş çəkin və ya Information Policy Team, The National Archives, Kew, London TW9 4DU ünvanına yazın, yaxud aşağıdakı ünvana e-məktub göndərin: psi@nationalarchives.gov.uk.'
+ third_party: Hər hansı üçüncü tərəfin müəllif hüququ üzrə məlumatını müəyyən etdiyimiz yerlərdə müvafiq müəllif hüququ sahiblərindən icazə almalı olacaqsınız.
+ impact_assessment:
+ name:
+ one: Təsirin dəyərləndirilməsi
+ other: Təsirin dəyərləndirilmələri
imported:
name:
one:
other:
independent_report:
name:
- one:
- other:
+ one: Müstəqil hesabat
+ other: Müstəqil hesabatlar
international_development_fund:
name:
one:
other:
international_treaty:
name:
- one:
- other:
+ one: Beynəlxalq saziş
+ other: Beynəlxalq sazişlər
licence:
change:
local_transaction:
@@ -486,8 +499,8 @@ az:
updates_title:
map:
name:
- one:
- other:
+ one: Xəritə
+ other: Xəritələr
medical_safety_alert:
name:
one:
@@ -498,8 +511,8 @@ az:
other:
national_statistics:
name:
- one:
- other:
+ one: Milli statistika
+ other: Milli statistika
national_statistics_announcement:
name:
one:
@@ -514,16 +527,16 @@ az:
other: Xəbərləri əks etdirən materiallar
notice:
name:
- one:
- other:
+ one: Bildiriş
+ other: Bildirişlər
official:
name:
one:
other:
official_statistics:
name:
- one:
- other:
+ one: Rəsmi statistika
+ other: Rəsmi statistika
official_statistics_announcement:
name:
one:
@@ -551,8 +564,8 @@ az:
other:
policy_paper:
name:
- one:
- other:
+ one: Siyasət sənədi
+ other: Siyasət sənədləri
press_release:
name:
one: Press-reliz
@@ -567,8 +580,8 @@ az:
other:
promotional:
name:
- one:
- other:
+ one: Reklam materialı
+ other: Reklam materialı
publication:
details: Təəffüratlar
documents:
@@ -583,12 +596,12 @@ az:
other:
regulation:
name:
- one:
- other:
+ one: Tənzimləmə
+ other: Tənzimləmələr
research:
name:
- one:
- other:
+ one: Araşdırma və təhlil
+ other: Araşdırma və təhlil
residential_property_tribunal_decision:
name:
one:
@@ -625,8 +638,8 @@ az:
written_on: Yazılma tarixi
standard:
name:
- one:
- other:
+ one: Standart
+ other: Standartlar
start_now:
statement_to_parliament:
name:
@@ -646,8 +659,8 @@ az:
other:
statutory_guidance:
name:
- one:
- other:
+ one: Normativ göstərişlər
+ other: Normativ göstərişlər
tax_tribunal_decision:
name:
one:
@@ -665,8 +678,8 @@ az:
other:
transparency:
name:
- one:
- other:
+ one: Məlumatla bağlı şəffaflıq
+ other: Məlumatla bağlı şəffaflıq
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: FCO ölkənin bölgələrinə zəruri səyahət istisna olmaqla heç birini məsləhət görmürlər.
diff --git a/config/locales/be.yml b/config/locales/be.yml
index 7bcc28dd01..07ca3f27a1 100644
--- a/config/locales/be.yml
+++ b/config/locales/be.yml
@@ -84,6 +84,9 @@ be:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: Апублікаваны
+ updated: Адноўлена
nations:
england-and-wales:
england-and-wales_for:
@@ -301,14 +304,14 @@ be:
name:
few:
many:
- one:
- other:
+ one: Карпаратыўная справаздача
+ other: Карпаратыўныя справаздачы
correspondence:
name:
few:
many:
- one:
- other:
+ one: Перапіска
+ other: Перапіска
countryside_stewardship_grant:
name:
few:
@@ -319,8 +322,8 @@ be:
name:
few:
many:
- one:
- other:
+ one: Пастанова
+ other: Пастановы
detailed_guide:
name:
few:
@@ -390,14 +393,14 @@ be:
name:
few:
many:
- one:
- other:
+ one: Рэліз у межах Закона аб свабодзе інфармацыі
+ other: Рэлізы ў межах Закона аб свабодзе інфармацыі
form:
name:
few:
many:
- one:
- other:
+ one: Форма
+ other: Формы
get_involved:
civil_service:
civil_service_quarterly:
@@ -446,17 +449,29 @@ be:
name:
few:
many:
- one:
- other:
+ one: Кіраўніцтва
+ other: Кіраўніцтва
guide:
pages_in_guide: Старонкі ў гэтым кіраўніцтве
skip_contents:
- impact_assessment:
+ html_publication:
name:
few:
many:
one:
other:
+ print_meta_data:
+ available_at: Дадзеная публікацыя даступная па адрасе %{url}
+ copyright: "© Аўтарскае права Кароны %{year}"
+ isbn: 'ISBN:'
+ licence_html: 'Дадзеная публікацыя ліцэнзавана на ўмовах Open Government Licence v3.0, калі не паказана іншае. Каб азнаёміцца з гэтай ліцэнзіяй, наведайце nationalarchives.gov.uk/doc/open-government-licence/version/3 oнапісаць у Аддзел інфармацыйнай палітыкі, Нацыянальны архіў, К''ю, Лондан TW9 4DU, ці па электроннай пошце: psi@nationalarchives.gov.uk.'
+ third_party: Калі мы выявілі інфармацыю пра аўтарскія правы трэціх асоб, вам патрэбна атрымаць дазвол ад адпаведных праваўладальнікаў.
+ impact_assessment:
+ name:
+ few:
+ many:
+ one: Ацэнка ўплыву
+ other: Ацэнкі ўплыву
imported:
name:
few:
@@ -467,8 +482,8 @@ be:
name:
few:
many:
- one:
- other:
+ one: Незалежная справаздача
+ other: Незалежныя справаздачы
international_development_fund:
name:
few:
@@ -479,8 +494,8 @@ be:
name:
few:
many:
- one:
- other:
+ one: Міжнароднае пагадненне
+ other: Міжнародныя пагадненнi
licence:
change:
local_transaction:
@@ -562,8 +577,8 @@ be:
name:
few:
many:
- one:
- other:
+ one: Карта
+ other: Карты
medical_safety_alert:
name:
few:
@@ -580,8 +595,8 @@ be:
name:
few:
many:
- one:
- other:
+ one: Нацыянальная статыстыка
+ other: Нацыянальная статыстыка
national_statistics_announcement:
name:
few:
@@ -604,8 +619,8 @@ be:
name:
few:
many:
- one:
- other:
+ one: Паведамленне
+ other: Паведамленні
official:
name:
few:
@@ -616,8 +631,8 @@ be:
name:
few:
many:
- one:
- other:
+ one: Афіцыйная статыстыка
+ other: Афіцыйная статыстыка
official_statistics_announcement:
name:
few:
@@ -657,8 +672,8 @@ be:
name:
few:
many:
- one:
- other:
+ one: Праграмны дакумент
+ other: Праграмныя дакументы
press_release:
name:
few:
@@ -681,8 +696,8 @@ be:
name:
few:
many:
- one:
- other:
+ one: Рэкламны матэрыял
+ other: Рэкламны матэрыял
publication:
details: Дэталi
documents:
@@ -705,14 +720,14 @@ be:
name:
few:
many:
- one:
- other:
+ one: Тэзіс
+ other: Тэзісы
research:
name:
few:
many:
- one:
- other:
+ one: Даследаванні і аналіз
+ other: Даследаванні і аналіз
residential_property_tribunal_decision:
name:
few:
@@ -761,8 +776,8 @@ be:
name:
few:
many:
- one:
- other:
+ one: Стандарт
+ other: Стандарты
start_now:
statement_to_parliament:
name:
@@ -792,8 +807,8 @@ be:
name:
few:
many:
- one:
- other:
+ one: Заканадаўчае кіраўніцтва
+ other: Заканадаўчае кіраўніцтва
tax_tribunal_decision:
name:
few:
@@ -817,8 +832,8 @@ be:
name:
few:
many:
- one:
- other:
+ one: Адкрытыя дадзеныя
+ other: Адкрытыя дадзеныя
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: Міністэрства замежных спраў і па справах Садружнасці FCO раяць устрымацца ад усіх падарожжаў, апроч самых патрэбных, у некаторыя раёны краіны.
diff --git a/config/locales/bg.yml b/config/locales/bg.yml
index 166ba8e94f..e7072a48e8 100644
--- a/config/locales/bg.yml
+++ b/config/locales/bg.yml
@@ -84,6 +84,9 @@ bg:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: Публикуван
+ updated: Актуализиран
nations:
england-and-wales:
england-and-wales_for:
@@ -271,20 +274,20 @@ bg:
welsh_language_scheme_html: Научете повече за нашия ангажимент към %{link}.
corporate_report:
name:
- one:
- other:
+ one: Фирмен доклад
+ other: Фирмени доклади
correspondence:
name:
- one:
- other:
+ one: Кореспонденция
+ other: Кореспонденции
countryside_stewardship_grant:
name:
one:
other:
decision:
name:
- one:
- other:
+ one: Решение
+ other: Решения
detailed_guide:
name:
one: Насока
@@ -334,12 +337,12 @@ bg:
valid_postcode_no_locations:
foi_release:
name:
- one:
- other:
+ one: Свобода на информацията издание
+ other: Свобода на информацията издания
form:
name:
- one:
- other:
+ one: Формуляр
+ other: Формуляри
get_involved:
civil_service:
civil_service_quarterly:
@@ -384,31 +387,41 @@ bg:
other: Отговори на правителството
guidance:
name:
- one:
- other:
+ one: Насока
+ other: Насока
guide:
pages_in_guide: Страници в това ръководство
skip_contents:
- impact_assessment:
+ html_publication:
name:
one:
other:
+ print_meta_data:
+ available_at: Тази публикация е налична на адрес %{url}
+ copyright: "© Crown copyright %{year}"
+ isbn: 'ISBN:'
+ licence_html: 'Тази публикация е лицензирана съгласно условията на Open Government Licence v3.0, освен ако не е посочено друго. За да разгледате този лиценз, посетете nationalarchives.gov.uk/doc/open-government-licence/version/3 или пишете до екипа за информационна политика, The National Archives, Kew, Лондон TW9 4DU, или изпратете имейл до: psi@nationalarchives.gov.uk.'
+ third_party: Когато идентифицираме информация за авторски права на трети страни, ще трябва да получите разрешение от съответните носители на авторските права.
+ impact_assessment:
+ name:
+ one: Оценка на въздействието
+ other: Оценки на въздействието
imported:
name:
one:
other:
independent_report:
name:
- one:
- other:
+ one: Независим доклад
+ other: Независими доклади
international_development_fund:
name:
one:
other:
international_treaty:
name:
- one:
- other:
+ one: Международен договор
+ other: Международни договори
licence:
change:
local_transaction:
@@ -486,8 +499,8 @@ bg:
updates_title:
map:
name:
- one:
- other:
+ one: Карта
+ other: Карти
medical_safety_alert:
name:
one:
@@ -498,8 +511,8 @@ bg:
other:
national_statistics:
name:
- one:
- other:
+ one: Национална статистика
+ other: Национална статистика
national_statistics_announcement:
name:
one:
@@ -514,16 +527,16 @@ bg:
other: Репортажи
notice:
name:
- one:
- other:
+ one: Известие
+ other: Известия
official:
name:
one:
other:
official_statistics:
name:
- one:
- other:
+ one: Официална статистика
+ other: Официална статистика
official_statistics_announcement:
name:
one:
@@ -551,8 +564,8 @@ bg:
other:
policy_paper:
name:
- one:
- other:
+ one: Политически документ
+ other: Политически документи
press_release:
name:
one: Съобщение за пресата
@@ -567,8 +580,8 @@ bg:
other:
promotional:
name:
- one:
- other:
+ one: Рекламен материал
+ other: Рекламен материал
publication:
details: Подробности
documents:
@@ -583,12 +596,12 @@ bg:
other:
regulation:
name:
- one:
- other:
+ one: Наредба
+ other: Наредби
research:
name:
- one:
- other:
+ one: Проучване и анализ
+ other: Проучване и анализ
residential_property_tribunal_decision:
name:
one:
@@ -625,8 +638,8 @@ bg:
written_on: Написано на
standard:
name:
- one:
- other:
+ one: Стандарт
+ other: Стандарти
start_now:
statement_to_parliament:
name:
@@ -646,8 +659,8 @@ bg:
other:
statutory_guidance:
name:
- one:
- other:
+ one: Законови указания
+ other: Законови указания
tax_tribunal_decision:
name:
one:
@@ -665,8 +678,8 @@ bg:
other:
transparency:
name:
- one:
- other:
+ one: Данни за прозрачност
+ other: Данни за прозрачност
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: FCO препоръчва да не се пътува до някои части на страната, освен ако това не е необходимо.
diff --git a/config/locales/bn.yml b/config/locales/bn.yml
index e974f3a879..eb31173ac6 100644
--- a/config/locales/bn.yml
+++ b/config/locales/bn.yml
@@ -84,6 +84,9 @@ bn:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: প্রকাশিত হয়েছে
+ updated: হালনাগাদ করা হয়েছে
nations:
england-and-wales:
england-and-wales_for:
@@ -271,20 +274,20 @@ bn:
welsh_language_scheme_html: "%{link}-এ আপনার আমাদের অঙ্গীকার সম্পর্কে জানুন।"
corporate_report:
name:
- one:
- other:
+ one: কর্পোরেট রিপোর্ট
+ other: কর্পোরেট রিপোর্টসমূহ
correspondence:
name:
- one:
- other:
+ one: যোগাযোগ
+ other: যোগাযোগ
countryside_stewardship_grant:
name:
one:
other:
decision:
name:
- one:
- other:
+ one: সিদ্ধান্ত
+ other: সিদ্ধান্তসমূহ
detailed_guide:
name:
one: পরিচালনা
@@ -334,12 +337,12 @@ bn:
valid_postcode_no_locations:
foi_release:
name:
- one:
- other:
+ one: FOI ছাড়পত্র
+ other: FOI ছাড়পত্রসমূহ
form:
name:
- one:
- other:
+ one: ফর্ম
+ other: ফর্মসমূহ
get_involved:
civil_service:
civil_service_quarterly:
@@ -384,31 +387,41 @@ bn:
other: সরকারের সাড়া
guidance:
name:
- one:
- other:
+ one: পরিচালনা
+ other: পরিচালনা
guide:
pages_in_guide: এই নির্দেশিকাতে পৃষ্ঠা
skip_contents:
- impact_assessment:
+ html_publication:
name:
one:
other:
+ print_meta_data:
+ available_at: এই প্রকাশনাটি %{url}-এ উপলভ্য
+ copyright: "© ক্রাউন কপিরাইট %{year}"
+ isbn: 'ISBN:'
+ licence_html: 'অন্যভাবে বলা না থাকলে, এই প্রকাশনাটি ওপেন গভর্নমেন্ট লাইসেন্স v3.0-এর শর্তাধীন লাইসেন্স করা হয়েছে। এই লাইসেন্সটি দেখতে, nationalarchives.gov.uk/doc/open-government-licence/version/3 ভিজিট করুন বা Information Policy Team, The National Archives, Kew, London TW9 4DU ঠিকানায় লিখুন বা এই ঠিকানায় ইমেইল করুন: psi@nationalarchives.gov.uk।'
+ third_party: আমরা যখন কোনো তৃতীয় পক্ষের কপিরাইটের তথ্য শনাক্ত করবো, তখন আপনাকে সংশ্লিষ্ট কপিরাইট ধারকের কাছ থেকে অনুমতি নিতে হবে।
+ impact_assessment:
+ name:
+ one: প্রভাব মূল্যায়ন
+ other: প্রভাব মূল্যায়ন
imported:
name:
one:
other:
independent_report:
name:
- one:
- other:
+ one: স্বতন্ত্র রিপোর্ট
+ other: স্বতন্ত্র রিপোর্টসমূহ
international_development_fund:
name:
one:
other:
international_treaty:
name:
- one:
- other:
+ one: ইন্টারন্যাশনাল চুক্তি
+ other: ইন্টারন্যাশনাল চুক্তিসমূহ
licence:
change:
local_transaction:
@@ -486,8 +499,8 @@ bn:
updates_title:
map:
name:
- one:
- other:
+ one: মানচিত্র
+ other: মানচিত্রসমূহ
medical_safety_alert:
name:
one:
@@ -498,8 +511,8 @@ bn:
other:
national_statistics:
name:
- one:
- other:
+ one: জাতীয় পরিসংখ্যান
+ other: জাতীয় পরিসংখ্যান
national_statistics_announcement:
name:
one:
@@ -514,16 +527,16 @@ bn:
other: সংবাদের বিষয়াবলী
notice:
name:
- one:
- other:
+ one: বিজ্ঞপ্তি
+ other: বিজ্ঞপ্তিসমূহ
official:
name:
one:
other:
official_statistics:
name:
- one:
- other:
+ one: দাপ্তরিক পরিসংখ্যান
+ other: দাপ্তরিক পরিসংখ্যান
official_statistics_announcement:
name:
one:
@@ -551,8 +564,8 @@ bn:
other:
policy_paper:
name:
- one:
- other:
+ one: পলিসি পেপার
+ other: পলিসি পেপারসমূহ
press_release:
name:
one: প্রেস বিজ্ঞপ্তি
@@ -567,8 +580,8 @@ bn:
other:
promotional:
name:
- one:
- other:
+ one: প্রোমোশন সম্পর্কিত উপকরণ
+ other: প্রোমোশন সম্পর্কিত উপকরণ
publication:
details: বিস্তারিত
documents:
@@ -583,12 +596,12 @@ bn:
other:
regulation:
name:
- one:
- other:
+ one: বিধিবিধান
+ other: বিধিবিধান
research:
name:
- one:
- other:
+ one: গবেষণা ও বিশ্লেষণ
+ other: গবেষণা ও বিশ্লেষণ
residential_property_tribunal_decision:
name:
one:
@@ -625,8 +638,8 @@ bn:
written_on: যখন লেখা হয়েছে
standard:
name:
- one:
- other:
+ one: স্ট্যান্ডার্ড
+ other: স্ট্যান্ডার্ডসমূহ
start_now:
statement_to_parliament:
name:
@@ -646,8 +659,8 @@ bn:
other:
statutory_guidance:
name:
- one:
- other:
+ one: বিধিবদ্ধ নির্দেশনা
+ other: বিধিবদ্ধ নির্দেশনা
tax_tribunal_decision:
name:
one:
@@ -665,8 +678,8 @@ bn:
other:
transparency:
name:
- one:
- other:
+ one: স্বচ্ছতার তথ্য
+ other: স্বচ্ছতার তথ্য
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: FCO দেশের কিছু অংশে শুধু প্রয়োজনীয় ভ্রমণ ছাড়া সকল ধরনের ভ্রমণের বিরুদ্ধে পরামর্শ দিয়েছে।
diff --git a/config/locales/cs.yml b/config/locales/cs.yml
index 656fc98136..96c08c2e25 100644
--- a/config/locales/cs.yml
+++ b/config/locales/cs.yml
@@ -84,6 +84,9 @@ cs:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: Zveřejněno
+ updated: Aktualizováno
nations:
england-and-wales:
england-and-wales_for:
@@ -286,13 +289,13 @@ cs:
corporate_report:
name:
few:
- one:
- other:
+ one: Podniková zpráva
+ other: Podnikové zprávy
correspondence:
name:
few:
- one:
- other:
+ one: Korespondence
+ other: Korespondence
countryside_stewardship_grant:
name:
few:
@@ -301,8 +304,8 @@ cs:
decision:
name:
few:
- one:
- other:
+ one: Rozhodnutí
+ other: Rozhodnutí
detailed_guide:
name:
few:
@@ -362,13 +365,13 @@ cs:
foi_release:
name:
few:
- one:
- other:
+ one: Zveřejnění informací
+ other: Zveřejnění informací
form:
name:
few:
- one:
- other:
+ one: Formulář
+ other: Formuláře
get_involved:
civil_service:
civil_service_quarterly:
@@ -415,16 +418,27 @@ cs:
guidance:
name:
few:
- one:
- other:
+ one: Směrnice
+ other: Směrnice
guide:
pages_in_guide: Stránky v této příručce
skip_contents:
- impact_assessment:
+ html_publication:
name:
few:
one:
other:
+ print_meta_data:
+ available_at: Tato publikace je k dispozici na adrese %{url}
+ copyright: "© Crown copyright %{year}"
+ isbn: 'ISBN:'
+ licence_html: 'Tato publikace je licencována podle podmínek Open Government Licence v3.0, pokud není uvedeno jinak. Chcete-li si tuto licenci prohlédnout, navštivte nationalarchives.gov.uk/doc/open-government-licence/version/3 nebo napište na adresu Information Policy Team, The National Archives, Kew, London TW9 4DU, nebo pošlete e-mail: psi@nationalarchives.gov.uk.'
+ third_party: V případě, že jsme identifikovali informace o autorských právech třetích stran, budete muset získat povolení od příslušných držitelů autorských práv.
+ impact_assessment:
+ name:
+ few:
+ one: Posouzení dopadu
+ other: Posouzení dopadů
imported:
name:
few:
@@ -433,8 +447,8 @@ cs:
independent_report:
name:
few:
- one:
- other:
+ one: Nezávislá zpráva
+ other: Nezávislé zprávy
international_development_fund:
name:
few:
@@ -443,8 +457,8 @@ cs:
international_treaty:
name:
few:
- one:
- other:
+ one: Mezinárodní smlouva
+ other: Mezinárodní smlouvy
licence:
change:
local_transaction:
@@ -524,8 +538,8 @@ cs:
map:
name:
few:
- one:
- other:
+ one: Mapa
+ other: Mapy
medical_safety_alert:
name:
few:
@@ -539,8 +553,8 @@ cs:
national_statistics:
name:
few:
- one:
- other:
+ one: Národní statistiky
+ other: Národní statistiky
national_statistics_announcement:
name:
few:
@@ -559,8 +573,8 @@ cs:
notice:
name:
few:
- one:
- other:
+ one: Oznámení
+ other: Oznámení
official:
name:
few:
@@ -569,8 +583,8 @@ cs:
official_statistics:
name:
few:
- one:
- other:
+ one: Oficiální statistiky
+ other: Oficiální statistiky
official_statistics_announcement:
name:
few:
@@ -604,8 +618,8 @@ cs:
policy_paper:
name:
few:
- one:
- other:
+ one: Politický dokument
+ other: Politické dokumenty
press_release:
name:
few:
@@ -624,8 +638,8 @@ cs:
promotional:
name:
few:
- one:
- other:
+ one: Propagační materiály
+ other: Propagační materiály
publication:
details: Podrobnosti
documents:
@@ -644,13 +658,13 @@ cs:
regulation:
name:
few:
- one:
- other:
+ one: Nařízení
+ other: nařízení
research:
name:
few:
- one:
- other:
+ one: Výzkum a analýza
+ other: Výzkum a analýza
residential_property_tribunal_decision:
name:
few:
@@ -693,8 +707,8 @@ cs:
standard:
name:
few:
- one:
- other:
+ one: Standardní
+ other: Standardy
start_now:
statement_to_parliament:
name:
@@ -719,8 +733,8 @@ cs:
statutory_guidance:
name:
few:
- one:
- other:
+ one: Zákonné směrnice
+ other: Zákonné směrnice
tax_tribunal_decision:
name:
few:
@@ -741,8 +755,8 @@ cs:
transparency:
name:
few:
- one:
- other:
+ one: Údaje o transparentnosti
+ other: Údaje o transparentnosti
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: Úřad pro zahraniční věci, společenství národů a rozvoj nedoporučuje cestovat do některých částí země, s výjimkou nezbytných.
diff --git a/config/locales/cy.yml b/config/locales/cy.yml
index 52a6fa765c..039fdc2423 100644
--- a/config/locales/cy.yml
+++ b/config/locales/cy.yml
@@ -84,6 +84,9 @@ cy:
email_and_print_link:
extra_bank_holiday: Gŵyl banc ychwanegol
holiday_entitlement_html: Nid oes yn rhaid i'ch cyflogwr roi gwyliau â thâl i chi ar wyliau banc neu gyhoeddus.
+ metadata:
+ published: Cyhoeddwyd
+ updated: Diweddarwyd
nations:
england-and-wales: Cymru a Lloegr
england-and-wales_for: ar gyfer Cymru a Lloegr
@@ -515,6 +518,20 @@ cy:
guide:
pages_in_guide: Tudalennau yn y canllaw hwn
skip_contents: Sgipio cynnwys
+ html_publication:
+ name:
+ few:
+ many:
+ one:
+ other:
+ two:
+ zero:
+ print_meta_data:
+ available_at: Mae'r cyhoeddiad hwn ar gael yn %{url}
+ copyright: "© Hawlfraint y Goron %{year}"
+ isbn: 'ISBN:'
+ licence_html: 'Mae''r cyhoeddiad hwn wedi''i drwyddedu o dan delerau Trwydded Agored y Llywodraeth v3.0 ac eithrio ble nodir yn wahanol. I weld y drwydded hon, ewch i nationalarchives.gov.uk/doc/open-government-licence/version/3 neu ysgrifennwch at y Tîm Polisi Gwybodaeth, Yr Archifau Gwladol, Kew, Llundain TW9 4DU, neu anfonwch e-bost at: psi@nationalarchives.gov.uk.'
+ third_party: Lle byddwn wedi nodi unrhyw wybodaeth am hawlfraint trydydd parti, bydd angen i chi gael caniatâd gan ddeiliaid yr hawlfraint dan sylw.
impact_assessment:
name:
few:
diff --git a/config/locales/da.yml b/config/locales/da.yml
index e09e3ee39f..ef1b1af309 100644
--- a/config/locales/da.yml
+++ b/config/locales/da.yml
@@ -84,6 +84,9 @@ da:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: offentliggjort
+ updated: Opdateret
nations:
england-and-wales:
england-and-wales_for:
@@ -271,20 +274,20 @@ da:
welsh_language_scheme_html: Learn more about our commitment to% {link}.
corporate_report:
name:
- one:
- other:
+ one: Virksomhedsrapport
+ other: Virksomhedsrapporter
correspondence:
name:
- one:
- other:
+ one: Korrespondance
+ other: Korrespondancer
countryside_stewardship_grant:
name:
one:
other:
decision:
name:
- one:
- other:
+ one: Beslutning
+ other: Beslutninger
detailed_guide:
name:
one: Vejledning
@@ -334,12 +337,12 @@ da:
valid_postcode_no_locations:
foi_release:
name:
- one:
- other:
+ one: FOI frigivelse
+ other: FOI frigivelser
form:
name:
- one:
- other:
+ one: Formular
+ other: Formularer
get_involved:
civil_service:
civil_service_quarterly:
@@ -384,31 +387,41 @@ da:
other: Regeringens reaktioner
guidance:
name:
- one:
- other:
+ one: Vejledning
+ other: Vejledning
guide:
pages_in_guide: Sider i denne vejledning
skip_contents:
- impact_assessment:
+ html_publication:
name:
one:
other:
+ print_meta_data:
+ available_at: Denne publikation er tilgængelig på %{url}
+ copyright: "© Krown copyright %{year}"
+ isbn: 'ISBN:'
+ licence_html: 'This publication is licensed under the terms of the open government license v3.0, unless otherwise stated. Hvis du vil se denne licens, kan du besøge nationalarchives.gov.uk/doc/open-government-licence/version/3 eller skrive til Information Policy Team, The National Archives, Kew, London TW9 4DU eller e-mail: psi@nationalarchives.gov.uk.'
+ third_party: Hvis vi har identificeret ophavsretlige oplysninger fra tredjepart, skal du indhente tilladelse fra de pågældende ophavsretsindehavere.
+ impact_assessment:
+ name:
+ one: Konsekvensanalyse
+ other: Konsekvensanalyser
imported:
name:
one:
other:
independent_report:
name:
- one:
- other:
+ one: Uafhængig rapport
+ other: Uafhængige rapporter
international_development_fund:
name:
one:
other:
international_treaty:
name:
- one:
- other:
+ one: International traktat
+ other: Internationale traktater
licence:
change:
local_transaction:
@@ -486,8 +499,8 @@ da:
updates_title:
map:
name:
- one:
- other:
+ one: Kort
+ other: Kort
medical_safety_alert:
name:
one:
@@ -498,8 +511,8 @@ da:
other:
national_statistics:
name:
- one:
- other:
+ one: Nationale statistikker
+ other: Nationale statistikker
national_statistics_announcement:
name:
one:
@@ -514,16 +527,16 @@ da:
other: Nyhedshistorier
notice:
name:
- one:
- other:
+ one: Meddelelse
+ other: Meddelelser
official:
name:
one:
other:
official_statistics:
name:
- one:
- other:
+ one: Officielle statistikker
+ other: Officielle statistikker
official_statistics_announcement:
name:
one:
@@ -551,8 +564,8 @@ da:
other:
policy_paper:
name:
- one:
- other:
+ one: Politikdokument
+ other: Politikdokumenter
press_release:
name:
one: Pressemeddelelse
@@ -567,8 +580,8 @@ da:
other:
promotional:
name:
- one:
- other:
+ one: Reklamemateriale
+ other: Reklamemateriale
publication:
details: Detaljer
documents:
@@ -583,12 +596,12 @@ da:
other:
regulation:
name:
- one:
- other:
+ one: Forordning
+ other: Forordninger
research:
name:
- one:
- other:
+ one: Forskning og analyse
+ other: Forskning og analyse
residential_property_tribunal_decision:
name:
one:
@@ -625,8 +638,8 @@ da:
written_on: Skrevet på
standard:
name:
- one:
- other:
+ one: Standard
+ other: Standarder
start_now:
statement_to_parliament:
name:
@@ -646,8 +659,8 @@ da:
other:
statutory_guidance:
name:
- one:
- other:
+ one: Lovpligtig vejledning
+ other: Lovpligtig vejledning
tax_tribunal_decision:
name:
one:
@@ -665,8 +678,8 @@ da:
other:
transparency:
name:
- one:
- other:
+ one: Data om gennemsigtighed
+ other: Data om gennemsigtighed
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: Den FCO fraråde alle, men væsentlige rejser til dele af landet.
diff --git a/config/locales/de.yml b/config/locales/de.yml
index 9697dd3d1b..d86054b3fa 100644
--- a/config/locales/de.yml
+++ b/config/locales/de.yml
@@ -84,6 +84,9 @@ de:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: Veröffentlicht
+ updated: Aktualisiert
nations:
england-and-wales:
england-and-wales_for:
@@ -271,20 +274,20 @@ de:
welsh_language_scheme_html: Informieren Sie sich über unser Engagement für %{link}.
corporate_report:
name:
- one:
- other:
+ one: Unternehmensbericht
+ other: Unternehmensberichte
correspondence:
name:
- one:
- other:
+ one: Korrespondenz
+ other: Korrespondenzen
countryside_stewardship_grant:
name:
one:
other:
decision:
name:
- one:
- other:
+ one: Entscheidung
+ other: Entscheidungen
detailed_guide:
name:
one: Detaillierte Hinweise
@@ -334,12 +337,12 @@ de:
valid_postcode_no_locations:
foi_release:
name:
- one:
- other:
+ one: Freigabe gemäß Informationsfreiheitsgesetz
+ other: Freigaben gemäß Informationsfreiheitsgesetz
form:
name:
- one:
- other:
+ one: Formular
+ other: Formulare
get_involved:
civil_service:
civil_service_quarterly:
@@ -384,31 +387,41 @@ de:
other: Antworten der Regierung
guidance:
name:
- one:
- other:
+ one: Detaillierte Hinweise
+ other: Detaillierte Hinweise
guide:
pages_in_guide: Seiten in diesem Leitfaden
skip_contents:
- impact_assessment:
+ html_publication:
name:
one:
other:
+ print_meta_data:
+ available_at: Diese Veröffentlichung ist verfügbar unter %{url}
+ copyright: "© Crown copyright %{year}"
+ isbn: 'ISBN:'
+ licence_html: 'Diese Veröffentlichung unterliegt, sofern nicht anders angegeben, den Bedingungen der Open Government Licence v3.0. Um diese Lizenz einzusehen, gehen Sie auf nationalarchives.gov.uk/doc/open-government-licence/version/3 oder schreiben Sie an das Information Policy Team, The National Archives, Kew, London TW9 4DU, oder senden Sie eine Email: psi@nationalarchives.gov.uk.'
+ third_party: Wenn wir urheberrechtlich geschützte Informationen von Dritten identifiziert haben, müssen Sie die Erlaubnis der betreffenden Urheberrechtsinhaber einholen.
+ impact_assessment:
+ name:
+ one: Folgenabschätzung
+ other: Folgenabschätzungen
imported:
name:
one:
other:
independent_report:
name:
- one:
- other:
+ one: Unabhängiger Bericht
+ other: Unabhängige Berichte
international_development_fund:
name:
one:
other:
international_treaty:
name:
- one:
- other:
+ one: Internationaler Vertrag
+ other: Internationale Verträge
licence:
change:
local_transaction:
@@ -486,8 +499,8 @@ de:
updates_title:
map:
name:
- one:
- other:
+ one: Karte
+ other: Karten
medical_safety_alert:
name:
one:
@@ -498,8 +511,8 @@ de:
other:
national_statistics:
name:
- one:
- other:
+ one: Nationale Statistik
+ other: Nationale Statistik
national_statistics_announcement:
name:
one:
@@ -514,16 +527,16 @@ de:
other: Meldungen
notice:
name:
- one:
- other:
+ one: Hinweis
+ other: Hinweise
official:
name:
one:
other:
official_statistics:
name:
- one:
- other:
+ one: Statistiken
+ other: Statistiken
official_statistics_announcement:
name:
one:
@@ -551,8 +564,8 @@ de:
other:
policy_paper:
name:
- one:
- other:
+ one: Grundsatzpapier
+ other: Grundsatzpapiere
press_release:
name:
one: Pressemitteilung
@@ -567,8 +580,8 @@ de:
other:
promotional:
name:
- one:
- other:
+ one: Werbematerial
+ other: Werbematerial
publication:
details: Einzelheiten
documents:
@@ -583,12 +596,12 @@ de:
other:
regulation:
name:
- one:
- other:
+ one: Regulierung
+ other: Regulierungen
research:
name:
- one:
- other:
+ one: Forschung und Analyse
+ other: Forschung und Analyse
residential_property_tribunal_decision:
name:
one:
@@ -625,8 +638,8 @@ de:
written_on: Geschrieben am
standard:
name:
- one:
- other:
+ one: Standard
+ other: Standards
start_now:
statement_to_parliament:
name:
@@ -646,8 +659,8 @@ de:
other:
statutory_guidance:
name:
- one:
- other:
+ one: Gesetzlicher Leitfaden
+ other: Gesetzlicher Leitfaden
tax_tribunal_decision:
name:
one:
@@ -665,8 +678,8 @@ de:
other:
transparency:
name:
- one:
- other:
+ one: Transparenzdaten
+ other: Transparenzdaten
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: Das FCO rät von allen Reisen in Teile des Landes ab, die nicht unbedingt erforderlich sind.
diff --git a/config/locales/dr.yml b/config/locales/dr.yml
index 55a329b69a..fefc635bcb 100644
--- a/config/locales/dr.yml
+++ b/config/locales/dr.yml
@@ -84,6 +84,9 @@ dr:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: منتشر شده
+ updated: آپدیت شده
nations:
england-and-wales:
england-and-wales_for:
@@ -271,20 +274,20 @@ dr:
welsh_language_scheme_html: از تعهد ما به %{link} مطلع شوید.
corporate_report:
name:
- one:
- other:
+ one: گزارش شرکت
+ other: گزارشات شرکت
correspondence:
name:
- one:
- other:
+ one: مکاتبه
+ other: مکاتیب
countryside_stewardship_grant:
name:
one:
other:
decision:
name:
- one:
- other:
+ one: تصمیم
+ other: تصامیم
detailed_guide:
name:
one: راهنمایی
@@ -334,12 +337,12 @@ dr:
valid_postcode_no_locations:
foi_release:
name:
- one:
- other:
+ one: انتشار آزادی اطلاعات
+ other: انتشارات آزادی اطلاعات
form:
name:
- one:
- other:
+ one: فارم
+ other: فارم ها
get_involved:
civil_service:
civil_service_quarterly:
@@ -384,31 +387,44 @@ dr:
other: پاسخ هایی حکومت
guidance:
name:
- one:
- other:
+ one: راهنمایی
+ other: راهنمایی
guide:
pages_in_guide: صفحات موجود در این راهنما
skip_contents:
- impact_assessment:
+ html_publication:
name:
one:
other:
+ print_meta_data:
+ available_at: این نشریه در%{url} موجود است
+ copyright: "©حق چاپ تاج%{year}"
+ isbn: شماره کتاب استندرد بین المللی
+ licence_html: |-
+ این نشریه تحت شرایط مجوز دولت باز v3.0 جواز دارد مگر در مواردی که خلاف آن ذکر شده باشد.
+ جهت بازدید از این جواز، مراجعه نمایید بهnationalarchives.gov.uk/doc/open-government-licence/version/3 و یا به تیم پالیسی معلومات اطلاع دهید، آرشیف ملی، کیو، لندن TW9 4DU، یا ایمل
+ psi@nationalarchives.gov.uk.
+ third_party: در مواردی که ما حق چاپ برداری شخص ثالث را شناسایی نمودیم، شما نیاز دارید تا از صاحبان دارندهء حق چاپ اجازه بگیرید
+ impact_assessment:
+ name:
+ one: ارزیابی تأثیر
+ other: ارزیابی هایی تأثیر
imported:
name:
one:
other:
independent_report:
name:
- one:
- other:
+ one: گزارش مستقل
+ other: گزارشات مستقل
international_development_fund:
name:
one:
other:
international_treaty:
name:
- one:
- other:
+ one: معاهده بین المللی
+ other: معاهدات بین المللی
licence:
change:
local_transaction:
@@ -486,8 +502,8 @@ dr:
updates_title:
map:
name:
- one:
- other:
+ one: نقشه
+ other: نقشه ها
medical_safety_alert:
name:
one:
@@ -498,8 +514,8 @@ dr:
other:
national_statistics:
name:
- one:
- other:
+ one: آمار ملی
+ other: آمار ملی
national_statistics_announcement:
name:
one:
@@ -514,16 +530,16 @@ dr:
other: گزارشات خبری
notice:
name:
- one:
- other:
+ one: اطلاعیه
+ other: اطلاعیه ها
official:
name:
one:
other:
official_statistics:
name:
- one:
- other:
+ one: آمار رسمی
+ other: آمار رسمی
official_statistics_announcement:
name:
one:
@@ -551,8 +567,8 @@ dr:
other:
policy_paper:
name:
- one:
- other:
+ one: مقاله سیاست
+ other: اوراق سیاست
press_release:
name:
one: بیانیه مطبوعاتی
@@ -567,8 +583,8 @@ dr:
other:
promotional:
name:
- one:
- other:
+ one: مواد تبلیغاتی
+ other: مواد تبلیغاتی
publication:
details: جزیٔیات
documents:
@@ -583,12 +599,12 @@ dr:
other:
regulation:
name:
- one:
- other:
+ one: قانون
+ other: قوانین
research:
name:
- one:
- other:
+ one: تحقیق و تجزیه و تحلیل
+ other: تحقیق و تجزیه و تحلیل
residential_property_tribunal_decision:
name:
one:
@@ -625,8 +641,8 @@ dr:
written_on: نوشته شده است د
standard:
name:
- one:
- other:
+ one: استندرد
+ other: استندرد ها
start_now:
statement_to_parliament:
name:
@@ -646,8 +662,8 @@ dr:
other:
statutory_guidance:
name:
- one:
- other:
+ one: راهنمایی قانونی
+ other: راهنمایی قانونی
tax_tribunal_decision:
name:
one:
@@ -665,8 +681,8 @@ dr:
other:
transparency:
name:
- one:
- other:
+ one: داده هایی شفافیت
+ other: داده هایی شفافیت
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: اینFCO در مورد هر گونه سفر ضروری به تمام نقاط کشور توصیه مینماید.
diff --git a/config/locales/el.yml b/config/locales/el.yml
index 1e8bc70cd3..a9941eef1e 100644
--- a/config/locales/el.yml
+++ b/config/locales/el.yml
@@ -84,6 +84,9 @@ el:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: Δημοσιεύθηκε
+ updated: Ενημερωμένο
nations:
england-and-wales:
england-and-wales_for:
@@ -271,20 +274,20 @@ el:
welsh_language_scheme_html: Μάθετε για τη δέσμευσή μας στο %{link}.
corporate_report:
name:
- one:
- other:
+ one: Εταιρική έκθεση
+ other: Εταιρικές εκθέσεις
correspondence:
name:
- one:
- other:
+ one: Αλληλογραφία
+ other: Αλληλογραφίες
countryside_stewardship_grant:
name:
one:
other:
decision:
name:
- one:
- other:
+ one: Απόφαση
+ other: Αποφάσεις
detailed_guide:
name:
one: Οδηγία
@@ -334,12 +337,12 @@ el:
valid_postcode_no_locations:
foi_release:
name:
- one:
- other:
+ one: Κυκλοφορία ελευθερία της πληροφόρησης
+ other: Κυκλοφορίες ελευθερία της πληροφόρησης
form:
name:
- one:
- other:
+ one: Φόρμα
+ other: Φόρμες
get_involved:
civil_service:
civil_service_quarterly:
@@ -384,31 +387,41 @@ el:
other: Κυβερνητικές απαντήσεις
guidance:
name:
- one:
- other:
+ one: Οδηγία
+ other: Οδηγία
guide:
pages_in_guide: Σελίδες σε αυτόν τον οδηγό
skip_contents:
- impact_assessment:
+ html_publication:
name:
one:
other:
+ print_meta_data:
+ available_at: Αυτή η δημοσίευση είναι διαθέσιμη στο %{url}
+ copyright: "© Crown copyright %{year}"
+ isbn: 'ISBN:'
+ licence_html: 'Αυτή η δημοσίευση έχει άδεια σύμφωνα με τους όρους της Άδειας Ανοικτής Κυβέρνησης v3.0, εκτός εάν αναφέρεται διαφορετικά. Για να δείτε αυτήν την άδεια, επισκεφτείτε την διεύθυνση nationalarchives.gov.uk/doc/open-government-licence/version/3 ή γράψτε στην Information Policy Team, The National Archives, Kew, London TW9 4DU, ή στείλτε email: psi@nationalarchives.gov.uk.'
+ third_party: Όπου έχουμε εντοπίσει οποιαδήποτε στοιχεία πνευματικών δικαιωμάτων τρίτου μέρους, θα χρειαστεί να λάβετε άδεια από τους ενδιαφερόμενους κατόχους πνευματικών δικαιωμάτων.
+ impact_assessment:
+ name:
+ one: Εκτίμηση επίπτωσης
+ other: Εκτιμήσεις επιπτώσεων
imported:
name:
one:
other:
independent_report:
name:
- one:
- other:
+ one: Ανεξάρτητη έκθεση
+ other: Ανεξάρτητες εκθέσεις
international_development_fund:
name:
one:
other:
international_treaty:
name:
- one:
- other:
+ one: Διεθνής συνθήκη
+ other: Διεθνείς συνθήκες
licence:
change:
local_transaction:
@@ -486,8 +499,8 @@ el:
updates_title:
map:
name:
- one:
- other:
+ one: Χάρτης
+ other: Χάρτες
medical_safety_alert:
name:
one:
@@ -498,8 +511,8 @@ el:
other:
national_statistics:
name:
- one:
- other:
+ one: Εθνική Στατιστική Υπηρεσία
+ other: Εθνική Στατιστική Υπηρεσία
national_statistics_announcement:
name:
one:
@@ -514,16 +527,16 @@ el:
other: Ιστορίες ειδήσεων
notice:
name:
- one:
- other:
+ one: Σημείωση
+ other: Σημειώσεις
official:
name:
one:
other:
official_statistics:
name:
- one:
- other:
+ one: Επίσημη Στατιστικά Στοιχεία
+ other: Επίσημη Στατιστικά Στοιχεία
official_statistics_announcement:
name:
one:
@@ -551,8 +564,8 @@ el:
other:
policy_paper:
name:
- one:
- other:
+ one: Έγγραφο πολιτικής
+ other: Έγγραφα πολιτικής
press_release:
name:
one: Δελτίο τύπου
@@ -567,8 +580,8 @@ el:
other:
promotional:
name:
- one:
- other:
+ one: Προωθητικό υλικό
+ other: Προωθητικό υλικό
publication:
details: Λεπτομέρειες
documents:
@@ -583,12 +596,12 @@ el:
other:
regulation:
name:
- one:
- other:
+ one: Κανονισμός λειτουργίας
+ other: Κανονισμοί λειτουργίας
research:
name:
- one:
- other:
+ one: Έρευνα και ανάλυση
+ other: Έρευνα και ανάλυση
residential_property_tribunal_decision:
name:
one:
@@ -625,8 +638,8 @@ el:
written_on: Γράφτηκε στις
standard:
name:
- one:
- other:
+ one: Πρότυπο
+ other: Πρότυπα
start_now:
statement_to_parliament:
name:
@@ -646,8 +659,8 @@ el:
other:
statutory_guidance:
name:
- one:
- other:
+ one: Νομικές οδηγίες
+ other: Νομικές οδηγίες
tax_tribunal_decision:
name:
one:
@@ -665,8 +678,8 @@ el:
other:
transparency:
name:
- one:
- other:
+ one: Δεδομένα διαφάνειας
+ other: Δεδομένα διαφάνειας
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: Το FCO σας συμβουλεύει να αποφύγετε τα ταξίδια, πλην των απαραίτητων, σε μέρη της χώρας.
diff --git a/config/locales/en.yml b/config/locales/en.yml
index 1042cab773..16deb1dbff 100644
--- a/config/locales/en.yml
+++ b/config/locales/en.yml
@@ -84,6 +84,9 @@ en:
email_and_print_link: Sign up for emails or print this page
extra_bank_holiday: Extra bank holiday
holiday_entitlement_html: Your employer does not have to give you paid leave on bank or public holidays.
+ metadata:
+ published: Published
+ updated: Updated
nations:
england-and-wales: England and Wales
england-and-wales_for: for England and Wales
@@ -391,6 +394,16 @@ en:
guide:
pages_in_guide: Pages in this guide
skip_contents: Skip contents
+ html_publication:
+ name:
+ one: HTML Publication
+ other: HTML Publications
+ print_meta_data:
+ available_at: This publication is available at %{url}
+ copyright: "© Crown copyright %{year}"
+ isbn: 'ISBN:'
+ licence_html: 'This publication is licensed under the terms of the Open Government Licence v3.0 except where otherwise stated. To view this licence, visit nationalarchives.gov.uk/doc/open-government-licence/version/3 or write to the Information Policy Team, The National Archives, Kew, London TW9 4DU, or email: psi@nationalarchives.gov.uk.'
+ third_party: Where we have identified any third party copyright information you will need to obtain permission from the copyright holders concerned.
impact_assessment:
name:
one: Impact assessment
diff --git a/config/locales/es-419.yml b/config/locales/es-419.yml
index c70f797d46..1c022f20ec 100644
--- a/config/locales/es-419.yml
+++ b/config/locales/es-419.yml
@@ -84,6 +84,9 @@ es-419:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: Publicado
+ updated: Actualizado
nations:
england-and-wales:
england-and-wales_for:
@@ -271,20 +274,20 @@ es-419:
welsh_language_scheme_html: Conozca nuestro compromiso con %{link}.
corporate_report:
name:
- one:
- other:
+ one: Informe de la empresa
+ other: Informes de la empresa
correspondence:
name:
- one:
- other:
+ one: Correspondencia
+ other: Correspondencias
countryside_stewardship_grant:
name:
one:
other:
decision:
name:
- one:
- other:
+ one: Decisión
+ other: Decisiones
detailed_guide:
name:
one: Orientación
@@ -334,12 +337,12 @@ es-419:
valid_postcode_no_locations:
foi_release:
name:
- one:
- other:
+ one: Publicación sobre Libertad de Información (FOI)
+ other: Publicaciones sobre Libertad de Informacion (FOI)
form:
name:
- one:
- other:
+ one: Formulario
+ other: Formularios
get_involved:
civil_service:
civil_service_quarterly:
@@ -384,31 +387,41 @@ es-419:
other: Respuestas gubernamentales
guidance:
name:
- one:
- other:
+ one: Orientación
+ other: Orientación
guide:
pages_in_guide: Páginas en esta guía
skip_contents:
- impact_assessment:
+ html_publication:
name:
one:
other:
+ print_meta_data:
+ available_at: Esta publicación está disponible en %{url}
+ copyright: "© Crown copyright %{year}"
+ isbn: 'ISBN:'
+ licence_html: 'Esta publicación está autorizada bajo los términos de la Licencia de Gobierno Abierto v3.0, salvo que se indique lo contrario. Para ver esta licencia, visite nationalarchives.gov.uk/doc/open-government-licence/version/3 o escriba a Information Policy Team, The National Archives, Kew, London TW9 4DU, o envíe un correo electrónico: psi@nationalarchives.gov.uk.'
+ third_party: Cuando identifiquemos cualquier información de derechos de autor de terceros, deberá obtener el permiso de los titulares de los derechos de autor correspondientes.
+ impact_assessment:
+ name:
+ one: Análisis de impacto
+ other: Evaluaciones de impacto
imported:
name:
one:
other:
independent_report:
name:
- one:
- other:
+ one: Informe independiente
+ other: Informes independientes
international_development_fund:
name:
one:
other:
international_treaty:
name:
- one:
- other:
+ one: Tratado internacional
+ other: Tratados internacionales
licence:
change:
local_transaction:
@@ -486,8 +499,8 @@ es-419:
updates_title:
map:
name:
- one:
- other:
+ one: Mapa
+ other: Mapas
medical_safety_alert:
name:
one:
@@ -498,8 +511,8 @@ es-419:
other:
national_statistics:
name:
- one:
- other:
+ one: Estadísticas nacionales
+ other: Estadísticas nacionales
national_statistics_announcement:
name:
one:
@@ -514,16 +527,16 @@ es-419:
other: Reportajes de noticias
notice:
name:
- one:
- other:
+ one: Aviso
+ other: Avisos
official:
name:
one:
other:
official_statistics:
name:
- one:
- other:
+ one: Estadísticas Oficiales
+ other: Estadísticas Oficiales
official_statistics_announcement:
name:
one:
@@ -551,8 +564,8 @@ es-419:
other:
policy_paper:
name:
- one:
- other:
+ one: Documento normativo
+ other: Documentos normativos
press_release:
name:
one: Comunicado de prensa
@@ -567,8 +580,8 @@ es-419:
other:
promotional:
name:
- one:
- other:
+ one: Material promocional
+ other: Material promocional
publication:
details: Detalles
documents:
@@ -583,12 +596,12 @@ es-419:
other:
regulation:
name:
- one:
- other:
+ one: Regulación
+ other: Regulaciones
research:
name:
- one:
- other:
+ one: Investigación y análisis
+ other: Investigación y análisis
residential_property_tribunal_decision:
name:
one:
@@ -625,8 +638,8 @@ es-419:
written_on: Escrito en
standard:
name:
- one:
- other:
+ one: Estándar
+ other: Estándares
start_now:
statement_to_parliament:
name:
@@ -646,8 +659,8 @@ es-419:
other:
statutory_guidance:
name:
- one:
- other:
+ one: Orientaciones reglamentarias
+ other: Orientaciones reglamentarias
tax_tribunal_decision:
name:
one:
@@ -665,8 +678,8 @@ es-419:
other:
transparency:
name:
- one:
- other:
+ one: Transparencia de datos
+ other: Transparencia de datos
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: El FCO desaconseja todos los viajes que no sean imprescindibles a algunas zonas del país.
diff --git a/config/locales/es.yml b/config/locales/es.yml
index 36c2f79669..8eb9d68cad 100644
--- a/config/locales/es.yml
+++ b/config/locales/es.yml
@@ -84,6 +84,9 @@ es:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: Publicado
+ updated: Actualizado
nations:
england-and-wales:
england-and-wales_for:
@@ -271,20 +274,20 @@ es:
welsh_language_scheme_html: Encuentre más sobre nuestro compromiso de publicar en %{link}.
corporate_report:
name:
- one:
- other:
+ one: Informe corporativo
+ other: Informes corporativos
correspondence:
name:
- one:
- other:
+ one: Correspondencia
+ other: Correspondencias
countryside_stewardship_grant:
name:
one:
other:
decision:
name:
- one:
- other:
+ one: Decisión
+ other: Decisiones
detailed_guide:
name:
one: Orientación detallada
@@ -334,12 +337,12 @@ es:
valid_postcode_no_locations:
foi_release:
name:
- one:
- other:
+ one: Nota de prensa de Freedom of Information
+ other: Boletines de FOI
form:
name:
- one:
- other:
+ one: Formulario
+ other: Formularios
get_involved:
civil_service:
civil_service_quarterly:
@@ -384,31 +387,41 @@ es:
other: Respuestas gubernamentales
guidance:
name:
- one:
- other:
+ one: Instrucciones
+ other: Instrucciones
guide:
pages_in_guide: Páginas de esta guía
skip_contents:
- impact_assessment:
+ html_publication:
name:
one:
other:
+ print_meta_data:
+ available_at: Esta publicación está disponible en %{url}
+ copyright: "© Derechos de autor de la corona %{year}"
+ isbn: 'ISBN:'
+ licence_html: 'Esta publicación tiene licencia según lo estipulado en la Licencia de Gobierno Abierto v3,0 excepto donde se indique lo contrario. Para ver esta licencia, visite nationalarchives.gov.uk/doc/open-government-license/version/3 o escriba al equipo de políticas de información, he National Archives, Kew, Londres TW9 4DU, o envíe un correo electrónico a: psi@nationalarchives.gov.uk.'
+ third_party: Cuando hayamos identificado cualquier información de copyright de terceros, deberá obtener permiso de los titulares de los derechos de autor correspondientes.
+ impact_assessment:
+ name:
+ one: Evaluación del impacto
+ other: Evaluaciones del impacto
imported:
name:
one:
other:
independent_report:
name:
- one:
- other:
+ one: Informe independiente
+ other: Informes independientes
international_development_fund:
name:
one:
other:
international_treaty:
name:
- one:
- other:
+ one: Tratado internacional
+ other: Tratados internacionales
licence:
change:
local_transaction:
@@ -486,8 +499,8 @@ es:
updates_title:
map:
name:
- one:
- other:
+ one: Mapa
+ other: Mapas
medical_safety_alert:
name:
one:
@@ -498,8 +511,8 @@ es:
other:
national_statistics:
name:
- one:
- other:
+ one: Estadísticas - cifras nacionales
+ other: Estadísticas - cifras nacionales
national_statistics_announcement:
name:
one:
@@ -514,16 +527,16 @@ es:
other: Noticias
notice:
name:
- one:
- other:
+ one: Aviso
+ other: Avisos
official:
name:
one:
other:
official_statistics:
name:
- one:
- other:
+ one: Estadísticas
+ other: Estadísticas
official_statistics_announcement:
name:
one:
@@ -551,8 +564,8 @@ es:
other:
policy_paper:
name:
- one:
- other:
+ one: Informe sobre políticas gubernamentales
+ other: Informes sobre políticas gubernamentales
press_release:
name:
one: Nota de prensa
@@ -567,8 +580,8 @@ es:
other:
promotional:
name:
- one:
- other:
+ one: Material de promoción
+ other: Material de promoción
publication:
details: Detalles
documents:
@@ -583,12 +596,12 @@ es:
other:
regulation:
name:
- one:
- other:
+ one: Reglamento
+ other: Reglamentos
research:
name:
- one:
- other:
+ one: Investigación y análisis
+ other: Investigación y análisis
residential_property_tribunal_decision:
name:
one:
@@ -625,8 +638,8 @@ es:
written_on: Escrito en
standard:
name:
- one:
- other:
+ one: Estándar
+ other: Estándares
start_now:
statement_to_parliament:
name:
@@ -646,8 +659,8 @@ es:
other:
statutory_guidance:
name:
- one:
- other:
+ one: Directrices estatutarias
+ other: Directrices estatutarias
tax_tribunal_decision:
name:
one:
@@ -665,8 +678,8 @@ es:
other:
transparency:
name:
- one:
- other:
+ one: Datos sobre transparencia
+ other: Datos sobre transparencia
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: La FCO aconseja que no se viaje a partes del país, salvo viajes esenciales.
diff --git a/config/locales/et.yml b/config/locales/et.yml
index 9bfe0de838..10b20ba461 100644
--- a/config/locales/et.yml
+++ b/config/locales/et.yml
@@ -84,6 +84,9 @@ et:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: Avaldatud
+ updated: Uuendatud
nations:
england-and-wales:
england-and-wales_for:
@@ -271,20 +274,20 @@ et:
welsh_language_scheme_html: Lisateave meie pühendumuse kohta %{link}.
corporate_report:
name:
- one:
- other:
+ one: Ettevõtte aruanne
+ other: Ettevõtte aruanded
correspondence:
name:
- one:
- other:
+ one: Korrespondents
+ other: Korrespondentsid
countryside_stewardship_grant:
name:
one:
other:
decision:
name:
- one:
- other:
+ one: Otsus
+ other: Otsused
detailed_guide:
name:
one: Juhised
@@ -334,12 +337,12 @@ et:
valid_postcode_no_locations:
foi_release:
name:
- one:
- other:
+ one: FOI väljaanne
+ other: FOI väljaanded
form:
name:
- one:
- other:
+ one: Vorm
+ other: Vormid
get_involved:
civil_service:
civil_service_quarterly:
@@ -384,31 +387,41 @@ et:
other: Valitsuse vastused
guidance:
name:
- one:
- other:
+ one: Juhised
+ other: Juhised
guide:
pages_in_guide: Selle juhendi leheküljed
skip_contents:
- impact_assessment:
+ html_publication:
name:
one:
other:
+ print_meta_data:
+ available_at: See publikatsioon on saadaval aadressil %{url}
+ copyright: "© Crowni autoriõigus %{year}"
+ isbn: 'ISBN:'
+ licence_html: 'See publikatsioon on litsentsitud valitsuse avatud litsentsi v3.0 kohaselt, kui pole märgitud teisiti. Selle litsentsi vaatamiseks külastage saiti nationalarchives.gov.uk/doc/open-government-licence/version/3 või kirjutage aadressil Information Policy Team, The National Archives, Kew, London TW9 4DU või saatke e-kiri: psi@nationalarchives.gov.uk.'
+ third_party: Kui oleme tuvastanud kolmanda osapoole autoriõiguse teabe, peate hankima loa vastavalt autoriõiguse hoidjalt.
+ impact_assessment:
+ name:
+ one: Mõju hindamine
+ other: Mõju hindamised
imported:
name:
one:
other:
independent_report:
name:
- one:
- other:
+ one: Sõltumatu aruanne
+ other: Sõltumatud aruanded
international_development_fund:
name:
one:
other:
international_treaty:
name:
- one:
- other:
+ one: Rahvusvaheline leping
+ other: Rahvusvahelised lepingud
licence:
change:
local_transaction:
@@ -486,8 +499,8 @@ et:
updates_title:
map:
name:
- one:
- other:
+ one: Kaart
+ other: Kaardid
medical_safety_alert:
name:
one:
@@ -498,8 +511,8 @@ et:
other:
national_statistics:
name:
- one:
- other:
+ one: Riiklik statistika
+ other: Riiklik statistika
national_statistics_announcement:
name:
one:
@@ -514,16 +527,16 @@ et:
other: Uudislood
notice:
name:
- one:
- other:
+ one: Märkus
+ other: Märkused
official:
name:
one:
other:
official_statistics:
name:
- one:
- other:
+ one: Ametlik statistika
+ other: Ametlik statistika
official_statistics_announcement:
name:
one:
@@ -551,8 +564,8 @@ et:
other:
policy_paper:
name:
- one:
- other:
+ one: Eeskirjade dokument
+ other: Eeskirjade dokumendid
press_release:
name:
one: Pressiteade
@@ -567,8 +580,8 @@ et:
other:
promotional:
name:
- one:
- other:
+ one: Reklaammaterjal
+ other: Reklaammaterjal
publication:
details: Üksikasjad
documents:
@@ -583,12 +596,12 @@ et:
other:
regulation:
name:
- one:
- other:
+ one: Määrus
+ other: Määrused
research:
name:
- one:
- other:
+ one: Uurimine ja analüüs
+ other: Uurimine ja analüüs
residential_property_tribunal_decision:
name:
one:
@@ -625,8 +638,8 @@ et:
written_on: Kirjutatud
standard:
name:
- one:
- other:
+ one: Standard
+ other: Standardid
start_now:
statement_to_parliament:
name:
@@ -646,8 +659,8 @@ et:
other:
statutory_guidance:
name:
- one:
- other:
+ one: Seadusjärgsed juhised
+ other: Seadusjärgsed juhised
tax_tribunal_decision:
name:
one:
@@ -665,8 +678,8 @@ et:
other:
transparency:
name:
- one:
- other:
+ one: Läbipaistvuse andmed
+ other: Läbipaistvuse andmed
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: FCO soovitab mitte reisida riigi osadesse muidu kui hädavajadusel.
diff --git a/config/locales/fa.yml b/config/locales/fa.yml
index 6ed3889a71..2e48f612a0 100644
--- a/config/locales/fa.yml
+++ b/config/locales/fa.yml
@@ -84,6 +84,9 @@ fa:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: منتشر شده
+ updated: بروز شده
nations:
england-and-wales:
england-and-wales_for:
@@ -271,20 +274,20 @@ fa:
welsh_language_scheme_html: درباره تعهد ما نسبت به %{link} اطلاعات کسب کنید.
corporate_report:
name:
- one:
- other:
+ one: گزارش شرکتی
+ other: گزارشات شرکتی
correspondence:
name:
- one:
- other:
+ one: مکاتبه
+ other: مکاتبات
countryside_stewardship_grant:
name:
one:
other:
decision:
name:
- one:
- other:
+ one: تصمیم
+ other: تصمیمات
detailed_guide:
name:
one: راهنمایی
@@ -334,12 +337,12 @@ fa:
valid_postcode_no_locations:
foi_release:
name:
- one:
- other:
+ one: موارد انتشار آزادی اطلاعات
+ other: موارد انتشار آزادی اطلاعات
form:
name:
- one:
- other:
+ one: فرم
+ other: فرمها
get_involved:
civil_service:
civil_service_quarterly:
@@ -384,31 +387,41 @@ fa:
other: پاسخهای دولتی
guidance:
name:
- one:
- other:
+ one: راهنمایی
+ other: راهنمایی
guide:
pages_in_guide: صفحات موجود در این راهنما
skip_contents:
- impact_assessment:
+ html_publication:
name:
one:
other:
+ print_meta_data:
+ available_at: این مورد منتشر شده در %{url} در دسترس است
+ copyright: "© کپیرایت Crown %{year}"
+ isbn: 'شابک:'
+ licence_html: 'این مورد منتشر شده تحت شرایط مجوز دولت باز نسخه 3.0 قرار دارد، مگر در مواردی که خلاف آن بیان شده باشد. برای مشاهده این مجوز، از nationalarchives.gov.uk/doc/open-government-licence/version/3 بازدید کرده یا به تیم سیاست اطلاعرسانی، آرشیوهای ملی به آدرس Kew, London TW9 4DU نامه بنویسید یا ایمیل بزنید: psi@nationalarchives.gov.uk.'
+ third_party: در مواقعی که ما هر گونه اطلاعات کپیرایت شخص ثالث شناسایی کنیم، شما باید از صاحبان کپیرایت مربوطه، مجوز کسب کنید.
+ impact_assessment:
+ name:
+ one: ارزیابی تأثیر
+ other: ارزیابیهای تأثیر
imported:
name:
one:
other:
independent_report:
name:
- one:
- other:
+ one: گزارش مستقل
+ other: گزارشات مستقل
international_development_fund:
name:
one:
other:
international_treaty:
name:
- one:
- other:
+ one: معاهده بینالمللی
+ other: معاهدات بینالمللی
licence:
change:
local_transaction:
@@ -486,8 +499,8 @@ fa:
updates_title:
map:
name:
- one:
- other:
+ one: نقشه
+ other: نقشهها
medical_safety_alert:
name:
one:
@@ -498,8 +511,8 @@ fa:
other:
national_statistics:
name:
- one:
- other:
+ one: آمار ملی
+ other: آمار ملی
national_statistics_announcement:
name:
one:
@@ -514,16 +527,16 @@ fa:
other: گزارشات خبری
notice:
name:
- one:
- other:
+ one: اطلاعیه
+ other: اطلاعیهها
official:
name:
one:
other:
official_statistics:
name:
- one:
- other:
+ one: آمار رسمی
+ other: آمار رسمی
official_statistics_announcement:
name:
one:
@@ -551,8 +564,8 @@ fa:
other:
policy_paper:
name:
- one:
- other:
+ one: سند سیاست
+ other: اسناد سیاست
press_release:
name:
one: بیانیه مطبوعاتی
@@ -567,8 +580,8 @@ fa:
other:
promotional:
name:
- one:
- other:
+ one: محتوای تبلیغاتی
+ other: محتوای تبلیغاتی
publication:
details: جزئیات
documents:
@@ -583,12 +596,12 @@ fa:
other:
regulation:
name:
- one:
- other:
+ one: قانون
+ other: قوانین
research:
name:
- one:
- other:
+ one: تحقیق و تحلیل
+ other: تحقیق و تحلیل
residential_property_tribunal_decision:
name:
one:
@@ -625,8 +638,8 @@ fa:
written_on: نوشته شده در
standard:
name:
- one:
- other:
+ one: استاندارد
+ other: استانداردها
start_now:
statement_to_parliament:
name:
@@ -646,8 +659,8 @@ fa:
other:
statutory_guidance:
name:
- one:
- other:
+ one: راهنمای قانونی
+ other: راهنمای قانونی
tax_tribunal_decision:
name:
one:
@@ -665,8 +678,8 @@ fa:
other:
transparency:
name:
- one:
- other:
+ one: دادههای شفافیت
+ other: دادههای شفافیت
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: وزارت امور خارجه بریتانیا (FCO) توصیه میکند از سفرهای غیر ضروری به بخشهایی از این کشور خودداری کنید.
diff --git a/config/locales/fi.yml b/config/locales/fi.yml
index a41ab0022b..e4e06d7150 100644
--- a/config/locales/fi.yml
+++ b/config/locales/fi.yml
@@ -84,6 +84,9 @@ fi:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: Julkaistu
+ updated: Päivitetty
nations:
england-and-wales:
england-and-wales_for:
@@ -271,20 +274,20 @@ fi:
welsh_language_scheme_html: Tutustu sitoumukseemme %{link}.
corporate_report:
name:
- one:
- other:
+ one: Yrityksen raportti
+ other: Yritysraportit
correspondence:
name:
- one:
- other:
+ one: Kirjeenvaihto
+ other: Kirjeenvaihto
countryside_stewardship_grant:
name:
one:
other:
decision:
name:
- one:
- other:
+ one: Päätös
+ other: Päätökset
detailed_guide:
name:
one: Ohjaus
@@ -334,12 +337,12 @@ fi:
valid_postcode_no_locations:
foi_release:
name:
- one:
- other:
+ one: Tiedonvälityksen vapaus julkaisu
+ other: Tiedonvälityksen vapaus julkaisut
form:
name:
- one:
- other:
+ one: Lomake
+ other: Lomakkeet
get_involved:
civil_service:
civil_service_quarterly:
@@ -384,31 +387,41 @@ fi:
other: Hallituksen vastaukset
guidance:
name:
- one:
- other:
+ one: Ohjaus
+ other: Ohjaus
guide:
pages_in_guide: Tämän oppaan sivut
skip_contents:
- impact_assessment:
+ html_publication:
name:
one:
other:
+ print_meta_data:
+ available_at: Tämä julkaisu on saatavilla osoitteessa %{url}
+ copyright: "© kruunun tekijänoikeus %{year}"
+ isbn: 'ISBN:'
+ licence_html: 'Tämä julkaisu on lisensoitu Open Government Licence v3.0 lisenssin ehdoilla, ellei toisin mainita. Voit tutustua tähän lisenssiin osoitteessa nationalarchives.gov.uk/doc/open-government-licence/version/3 tai kirjallisesti osoitteeseen Information Policy Team, Kansallisarkisto, Kew, Lontoo TW9 4DU, tai sähköpostitse: psi@nationalarchives.gov.uk.'
+ third_party: Jos olemme tunnistaneet kolmannen osapuolen tekijänoikeustietoja, sinun on hankittava lupa tekijänoikeuksien haltijoilta huolestunut.
+ impact_assessment:
+ name:
+ one: Vaikutuksen arviointi
+ other: Vaikutustenarvioinnit
imported:
name:
one:
other:
independent_report:
name:
- one:
- other:
+ one: Riippumaton raportti
+ other: Riippumattomat raportit
international_development_fund:
name:
one:
other:
international_treaty:
name:
- one:
- other:
+ one: Kansainvälinen sopimus
+ other: Kansainväliset sopimukset
licence:
change:
local_transaction:
@@ -486,8 +499,8 @@ fi:
updates_title:
map:
name:
- one:
- other:
+ one: Kartta
+ other: Kartat
medical_safety_alert:
name:
one:
@@ -498,8 +511,8 @@ fi:
other:
national_statistics:
name:
- one:
- other:
+ one: Kansalliset tilastot
+ other: Kansalliset tilastot
national_statistics_announcement:
name:
one:
@@ -514,16 +527,16 @@ fi:
other: Uutisia
notice:
name:
- one:
- other:
+ one: Ilmoitus
+ other: Ilmoitukset
official:
name:
one:
other:
official_statistics:
name:
- one:
- other:
+ one: Viralliset tilastot
+ other: Viralliset tilastot
official_statistics_announcement:
name:
one:
@@ -551,8 +564,8 @@ fi:
other:
policy_paper:
name:
- one:
- other:
+ one: Toimintapoliittinen asiakirja
+ other: Toimintapoliittiset asiakirjat
press_release:
name:
one: Lehdistötiedote
@@ -567,8 +580,8 @@ fi:
other:
promotional:
name:
- one:
- other:
+ one: Myynninedistämismateriaali
+ other: Myynninedistämismateriaali
publication:
details: Yksityiskohdat
documents:
@@ -583,12 +596,12 @@ fi:
other:
regulation:
name:
- one:
- other:
+ one: Asetus
+ other: Asetukset
research:
name:
- one:
- other:
+ one: Tutkimus ja analyysi
+ other: Tutkimus ja analyysi
residential_property_tribunal_decision:
name:
one:
@@ -625,8 +638,8 @@ fi:
written_on: Kirjoitettu
standard:
name:
- one:
- other:
+ one: Standardi
+ other: Standardit
start_now:
statement_to_parliament:
name:
@@ -646,8 +659,8 @@ fi:
other:
statutory_guidance:
name:
- one:
- other:
+ one: Lakisääteiset ohjeet
+ other: Lakisääteiset ohjeet
tax_tribunal_decision:
name:
one:
@@ -665,8 +678,8 @@ fi:
other:
transparency:
name:
- one:
- other:
+ one: Avoimuustiedot
+ other: Avoimuustiedot
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: FCO kehottaa välttämään kaikkia muita kuin välttämättömiä matkoja osissa maata.
diff --git a/config/locales/fr.yml b/config/locales/fr.yml
index 8afb8ae64e..8acb96316e 100644
--- a/config/locales/fr.yml
+++ b/config/locales/fr.yml
@@ -84,6 +84,9 @@ fr:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: Publié
+ updated: Mis à jour
nations:
england-and-wales:
england-and-wales_for:
@@ -271,20 +274,20 @@ fr:
welsh_language_scheme_html: Découvrez comment nous nous engageons sur %{link}.
corporate_report:
name:
- one:
- other:
+ one: Rapport de l'entreprise
+ other: Rapports de l'entreprise
correspondence:
name:
- one:
- other:
+ one: Correspondance
+ other: Correspondances
countryside_stewardship_grant:
name:
one:
other:
decision:
name:
- one:
- other:
+ one: Décision
+ other: Décisions
detailed_guide:
name:
one: Orientations
@@ -334,12 +337,12 @@ fr:
valid_postcode_no_locations:
foi_release:
name:
- one:
- other:
+ one: Communiqué d'accès à l'information
+ other: Communiqués d'accès à l'information
form:
name:
- one:
- other:
+ one: Formulaire
+ other: Formulaires
get_involved:
civil_service:
civil_service_quarterly:
@@ -384,31 +387,41 @@ fr:
other: Réponses du gouvernement
guidance:
name:
- one:
- other:
+ one: Orientation
+ other: Orientation
guide:
pages_in_guide: Pages de ce guide
skip_contents:
- impact_assessment:
+ html_publication:
name:
one:
other:
+ print_meta_data:
+ available_at: Cette publication est disponible à %{url}
+ copyright: "© Copyright de la Couronne %{year}"
+ isbn: 'Numéro International Normalisé du Livre (ISBN):'
+ licence_html: 'Cette publication est sous licence selon les termes de la Open Government Licence v3.0, sauf indication contraire. Pour consulter cette licence, visitez le site nationalarchives.gov.uk/doc/open-government-licence/version/3 ou écrivez à l''équipe chargée de la politique d''information, The National Archives, Kew, London TW9 4DU, ou par courriel : psi@nationalarchives.gov.uk.'
+ third_party: Dans le cas où nous avons identifié des informations relatives à des droits d'auteur de tiers, vous devrez obtenir l'autorisation des détenteurs de droits d'auteur concernés.
+ impact_assessment:
+ name:
+ one: Évaluation de l'impact
+ other: Évaluations de l'impact
imported:
name:
one:
other:
independent_report:
name:
- one:
- other:
+ one: Rapport indépendant
+ other: Rapports indépendants
international_development_fund:
name:
one:
other:
international_treaty:
name:
- one:
- other:
+ one: Traité international
+ other: Traités internationaux
licence:
change:
local_transaction:
@@ -486,8 +499,8 @@ fr:
updates_title:
map:
name:
- one:
- other:
+ one: Carte
+ other: Cartes
medical_safety_alert:
name:
one:
@@ -498,8 +511,8 @@ fr:
other:
national_statistics:
name:
- one:
- other:
+ one: Statistiques nationales
+ other: Statistiques nationales
national_statistics_announcement:
name:
one:
@@ -514,16 +527,16 @@ fr:
other: Actualités
notice:
name:
- one:
- other:
+ one: Notification
+ other: Notifications
official:
name:
one:
other:
official_statistics:
name:
- one:
- other:
+ one: Statistiques officielles
+ other: Statistiques officielles
official_statistics_announcement:
name:
one:
@@ -551,8 +564,8 @@ fr:
other:
policy_paper:
name:
- one:
- other:
+ one: Document de politique générale
+ other: Documents de politique générale
press_release:
name:
one: Communiqué de presse
@@ -567,8 +580,8 @@ fr:
other:
promotional:
name:
- one:
- other:
+ one: Matériel promotionnel
+ other: Matériel promotionnel
publication:
details: Détails
documents:
@@ -583,12 +596,12 @@ fr:
other:
regulation:
name:
- one:
- other:
+ one: Règlement
+ other: Règlements
research:
name:
- one:
- other:
+ one: Recherche et analyse
+ other: Recherche et analyse
residential_property_tribunal_decision:
name:
one:
@@ -625,8 +638,8 @@ fr:
written_on: Rédigé le
standard:
name:
- one:
- other:
+ one: norme
+ other: normes
start_now:
statement_to_parliament:
name:
@@ -646,8 +659,8 @@ fr:
other:
statutory_guidance:
name:
- one:
- other:
+ one: Orientation statutaire
+ other: Orientation statutaire
tax_tribunal_decision:
name:
one:
@@ -665,8 +678,8 @@ fr:
other:
transparency:
name:
- one:
- other:
+ one: Transparence des données
+ other: Transparence des données
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: Le Bureau des affaires étrangères et du Commonwealth (FCO) déconseille tout voyage dans certaines parties du pays, à l'exception de ceux qui sont indispensables.
diff --git a/config/locales/gd.yml b/config/locales/gd.yml
index c30e5dc9e7..d3290863c7 100644
--- a/config/locales/gd.yml
+++ b/config/locales/gd.yml
@@ -84,6 +84,9 @@ gd:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: Arna chur suas
+ updated: Athnuachan
nations:
england-and-wales:
england-and-wales_for:
@@ -300,14 +303,14 @@ gd:
corporate_report:
name:
few:
- one:
- other:
+ one: Tuarascáil cuideachta
+ other: Tuarascálacha cuideachta
two:
correspondence:
name:
few:
- one:
- other:
+ one: Comhfhreagras
+ other: Comhfhreagras
two:
countryside_stewardship_grant:
name:
@@ -318,8 +321,8 @@ gd:
decision:
name:
few:
- one:
- other:
+ one: Cinneadh
+ other: Cinntí
two:
detailed_guide:
name:
@@ -389,14 +392,14 @@ gd:
foi_release:
name:
few:
- one:
- other:
+ one: Preasráiteas FAITH
+ other: Scaoileadh Shaoráil Faisnéise
two:
form:
name:
few:
- one:
- other:
+ one: Foirm
+ other: Foirmeacha
two:
get_involved:
civil_service:
@@ -445,18 +448,30 @@ gd:
guidance:
name:
few:
- one:
- other:
+ one: Treoshuíomh
+ other: Treoshuímh
two:
guide:
pages_in_guide: Leathanaigh na treorach seo
skip_contents:
- impact_assessment:
+ html_publication:
name:
few:
one:
other:
two:
+ print_meta_data:
+ available_at: Tá an foilseachán seo i láthair ar %{url}
+ copyright: "© Cóipcheart na Corónach %{year}"
+ isbn: 'ISBN:'
+ licence_html: 'Tá an foilseachán seo ceadúnaithe faoi théarmaí an Cheadúnais Rialtais Oscailte v3.0, mura gcuirtear a mhalairt in iúl. Le fáil amach faoin gceadúnas seo, féach nationalarchives.gov.uk/doc/open-government-licence/version/3 nó scríobh chuig an bhFoireann um Beartas Faisnéise, An Chartlann Náisiúnta, Kew, Londain TW9 4DU, nó trí r-phost: psi@nationalarchives.gov.uk.'
+ third_party: Sa mhéid go bhfuil faisnéis aitheanta againn maidir le cóipchearta tríú páirtí, beidh ort cead a fháil ó shealbhóirí na gceart sin.
+ impact_assessment:
+ name:
+ few:
+ one: Anailís tionchair
+ other: Anailísí tionchair
+ two:
imported:
name:
few:
@@ -466,8 +481,8 @@ gd:
independent_report:
name:
few:
- one:
- other:
+ one: Tuarascáil neamhspleách
+ other: Tuarascálacha neamhspleácha
two:
international_development_fund:
name:
@@ -478,8 +493,8 @@ gd:
international_treaty:
name:
few:
- one:
- other:
+ one: Conradh idirnáisiúnta
+ other: Conarthaí idirnáisiúnta
two:
licence:
change:
@@ -561,8 +576,8 @@ gd:
map:
name:
few:
- one:
- other:
+ one: Roghchlár
+ other: Cártaí
two:
medical_safety_alert:
name:
@@ -579,8 +594,8 @@ gd:
national_statistics:
name:
few:
- one:
- other:
+ one: Staitisticí náisiúnta
+ other: Staitisticí náisiúnta
two:
national_statistics_announcement:
name:
@@ -603,8 +618,8 @@ gd:
notice:
name:
few:
- one:
- other:
+ one: Tuairim
+ other: Tuairim
two:
official:
name:
@@ -615,8 +630,8 @@ gd:
official_statistics:
name:
few:
- one:
- other:
+ one: Staitisticí oifigiúla
+ other: Staitisticí oifigiúla
two:
official_statistics_announcement:
name:
@@ -656,8 +671,8 @@ gd:
policy_paper:
name:
few:
- one:
- other:
+ one: Doiciméad beartais
+ other: Doiciméid bheartais
two:
press_release:
name:
@@ -680,8 +695,8 @@ gd:
promotional:
name:
few:
- one:
- other:
+ one: Ábhar cur chun cinn
+ other: Ábhar cur chun cinn
two:
publication:
details: Sonraí
@@ -704,14 +719,14 @@ gd:
regulation:
name:
few:
- one:
- other:
+ one: Rialacha
+ other: Rialacháin
two:
research:
name:
few:
- one:
- other:
+ one: Taighde agus anailís
+ other: Taighde agus anailís
two:
residential_property_tribunal_decision:
name:
@@ -760,8 +775,8 @@ gd:
standard:
name:
few:
- one:
- other:
+ one: Caighdeán
+ other: Caighdeáin
two:
start_now:
statement_to_parliament:
@@ -791,8 +806,8 @@ gd:
statutory_guidance:
name:
few:
- one:
- other:
+ one: Treoir reachtúil
+ other: Treoir reachtúil
two:
tax_tribunal_decision:
name:
@@ -816,8 +831,8 @@ gd:
transparency:
name:
few:
- one:
- other:
+ one: Sonraí trédhearcachta
+ other: Sonraí trédhearcachta
two:
travel_advice:
alert_status:
diff --git a/config/locales/gu.yml b/config/locales/gu.yml
index e6cdcf58f4..6023d14ff4 100644
--- a/config/locales/gu.yml
+++ b/config/locales/gu.yml
@@ -84,6 +84,9 @@ gu:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: પ્રકાશિત
+ updated: અપડેટ થયેલ
nations:
england-and-wales:
england-and-wales_for:
@@ -271,20 +274,20 @@ gu:
welsh_language_scheme_html: "%{link} પ્રત્યે અમારી પ્રતિબદ્ધતા અંગે જાણો."
corporate_report:
name:
- one:
- other:
+ one: કોર્પોરેટ અહેવાલ
+ other: કોર્પોરેટ અહેવાલો
correspondence:
name:
- one:
- other:
+ one: પત્રવ્યવહાર
+ other: પત્રવ્યવહાર
countryside_stewardship_grant:
name:
one:
other:
decision:
name:
- one:
- other:
+ one: નિર્ણય
+ other: નિર્ણયો
detailed_guide:
name:
one: માર્ગદર્શન
@@ -334,12 +337,12 @@ gu:
valid_postcode_no_locations:
foi_release:
name:
- one:
- other:
+ one: માહિતીની સ્વતંત્રતા રીલીઝ
+ other: માહિતીની સ્વતંત્રતા રીલીઝ
form:
name:
- one:
- other:
+ one: પત્રક
+ other: પત્રકો
get_involved:
civil_service:
civil_service_quarterly:
@@ -384,31 +387,41 @@ gu:
other: સરકારના પ્રતિભાવો
guidance:
name:
- one:
- other:
+ one: માર્ગદર્શન
+ other: માર્ગદર્શન
guide:
pages_in_guide: આ માર્ગદર્શિકામાંના પૃષ્ઠો
skip_contents:
- impact_assessment:
+ html_publication:
name:
one:
other:
+ print_meta_data:
+ available_at: આ પ્રકાશન %{url} પર ઉપલબ્ધ છે
+ copyright: "© ક્રાઉન કૉપીરાઇટ %{year}"
+ isbn: 'ISBN:'
+ licence_html: આ પ્રકાશન ઓપન ગવર્નમેંટ લાઇસન્સ v3.0ની શરતો હેઠળ લાઇસન્સ પ્રાપ્ત છે, સિવાય કે અન્યથા જણાવેલ હોય.લાઇસન્સ જોવા માટે, nationalarchives.gov.uk/doc/open-government-licence/version/3ની મુલાકાત લો અથવા ઇન્ફોર્મેશન પોલિસી ટીમ, ધ નેશનલ આર્કાઇવ્સ, કિઉ, લંડન TW- 4DU ને લખો અથવા ઈમેલ કરો:psi@nationalarchives.gov.uk.
+ third_party: જ્યાં અમે કોઈ તૃતીય પક્ષની કૉપીરાઇટ માહિતી આપી છે, ત્યાં તમારે સંબંધિત કૉપીરાઇટ ધારકોની પરવાનગી મેળવવી આવશ્યક રહેશે.
+ impact_assessment:
+ name:
+ one: અસરનું મૂલ્યાંકન
+ other: અસરના મૂલ્યાંકનો
imported:
name:
one:
other:
independent_report:
name:
- one:
- other:
+ one: સ્વતંત્ર અહેવાલ
+ other: સ્વતંત્ર અહેવાલો
international_development_fund:
name:
one:
other:
international_treaty:
name:
- one:
- other:
+ one: આંતરરાષ્ટ્રીય સંધિ
+ other: આંતરરાષ્ટ્રીય સંધિઓ
licence:
change:
local_transaction:
@@ -486,8 +499,8 @@ gu:
updates_title:
map:
name:
- one:
- other:
+ one: નકશો
+ other: નકશાઓ
medical_safety_alert:
name:
one:
@@ -498,8 +511,8 @@ gu:
other:
national_statistics:
name:
- one:
- other:
+ one: રાષ્ટ્રીય આંકડા
+ other: રાષ્ટ્રીય આંકડા
national_statistics_announcement:
name:
one:
@@ -514,16 +527,16 @@ gu:
other: ન્યૂઝ સ્ટોરીઝ
notice:
name:
- one:
- other:
+ one: સૂચના
+ other: સૂચનાઓ
official:
name:
one:
other:
official_statistics:
name:
- one:
- other:
+ one: અધિકૃત આંકડા
+ other: અધિકૃત આંકડા
official_statistics_announcement:
name:
one:
@@ -551,8 +564,8 @@ gu:
other:
policy_paper:
name:
- one:
- other:
+ one: પોલિસી પેપર
+ other: પોલિસી પેપર્સ
press_release:
name:
one: પ્રેસ રીલીઝ
@@ -567,8 +580,8 @@ gu:
other:
promotional:
name:
- one:
- other:
+ one: પ્રચાર સામગ્રી
+ other: પ્રચાર સામગ્રી
publication:
details: વિગતો
documents:
@@ -583,12 +596,12 @@ gu:
other:
regulation:
name:
- one:
- other:
+ one: નિયમન
+ other: નિયમનો
research:
name:
- one:
- other:
+ one: સંશોધન અને વિશ્લેષણ
+ other: સંશોધન અને વિશ્લેષણ
residential_property_tribunal_decision:
name:
one:
@@ -625,8 +638,8 @@ gu:
written_on: પર લખેલ
standard:
name:
- one:
- other:
+ one: સ્ટાન્ડર્ડ
+ other: સ્ટાન્ડર્ડ્સ
start_now:
statement_to_parliament:
name:
@@ -646,8 +659,8 @@ gu:
other:
statutory_guidance:
name:
- one:
- other:
+ one: વૈધાનિક માર્ગદર્શન
+ other: વૈધાનિક માર્ગદર્શન
tax_tribunal_decision:
name:
one:
@@ -665,8 +678,8 @@ gu:
other:
transparency:
name:
- one:
- other:
+ one: પારદર્શિતા ડેટા
+ other: પારદર્શિતા ડેટા
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: વિદેશી - કોમનવેલ્થ અને વિકાસ કચેરી જરૂરી મુસાફરી સિવાય દેશના કેટલાક ભાગોમાં પ્રવાસ ન કરવાની સલાહ આપે છે.
diff --git a/config/locales/he.yml b/config/locales/he.yml
index f3cae50f76..afcd5129d1 100644
--- a/config/locales/he.yml
+++ b/config/locales/he.yml
@@ -84,6 +84,9 @@ he:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: פורסם
+ updated: מעודכן
nations:
england-and-wales:
england-and-wales_for:
@@ -271,20 +274,20 @@ he:
welsh_language_scheme_html: מידע נוסף על המחויבות שלנו לפרסום %{link}
corporate_report:
name:
- one:
- other:
+ one: דו"ח משותף
+ other: דו"חות משותפים
correspondence:
name:
- one:
- other:
+ one: תכתובת
+ other: תכתובות
countryside_stewardship_grant:
name:
one:
other:
decision:
name:
- one:
- other:
+ one: החלטה
+ other: החלטות
detailed_guide:
name:
one: הדרכה
@@ -334,12 +337,12 @@ he:
valid_postcode_no_locations:
foi_release:
name:
- one:
- other:
+ one: פרסום חופש מידע
+ other: פרסומי חופש מידע
form:
name:
- one:
- other:
+ one: טופס
+ other: טפסים
get_involved:
civil_service:
civil_service_quarterly:
@@ -384,31 +387,41 @@ he:
other: תגובות ממשלתיות
guidance:
name:
- one:
- other:
+ one: הדרכה
+ other: הדרכה
guide:
pages_in_guide: דפים במדריך זה
skip_contents:
- impact_assessment:
+ html_publication:
name:
one:
other:
+ print_meta_data:
+ available_at: פרסום זה זמין בכתובת %{url}
+ copyright: "© Crown copyright %{year}"
+ isbn: 'ISBN:'
+ licence_html: 'פרסום זה הינו בעל רישיון על פי תנאי רישיון הממשל הפתוח v3.0 למעט היכן שצוין אחרת. לצפייה ברישיון זה, בקר ב nationalarchives.gov.uk/doc/open-government-licence/version/3 או כתוב לצוות מדיניות המידע, הארכיון הלאומי, קיו, לונדון TW9 4DU, או דואר אלקטרוני: psi@nationalarchives.gov.uk.'
+ third_party: כאשר זיהינו מידע על זכויות יוצרים של צד שלישי, יהיה עליך לקבל הרשאה מבעלי זכויות היוצרים הנוגעים בדבר.
+ impact_assessment:
+ name:
+ one: הערכת השפעה
+ other: הערכת השפעות
imported:
name:
one:
other:
independent_report:
name:
- one:
- other:
+ one: דו"ח עצמאי
+ other: דו"ות עצמאיים
international_development_fund:
name:
one:
other:
international_treaty:
name:
- one:
- other:
+ one: אמנה בינלאומית
+ other: אמנות בינלאומיות
licence:
change:
local_transaction:
@@ -486,8 +499,8 @@ he:
updates_title:
map:
name:
- one:
- other:
+ one: מפה
+ other: מפות
medical_safety_alert:
name:
one:
@@ -498,8 +511,8 @@ he:
other:
national_statistics:
name:
- one:
- other:
+ one: סטטיסטיקה לאומית
+ other: סטטסטיקה לאומית
national_statistics_announcement:
name:
one:
@@ -514,16 +527,16 @@ he:
other: חדשות
notice:
name:
- one:
- other:
+ one: הודעה
+ other: הודעות
official:
name:
one:
other:
official_statistics:
name:
- one:
- other:
+ one: סטטיסטיקה רשמית
+ other: סטטיסטיקה רשמית
official_statistics_announcement:
name:
one:
@@ -551,8 +564,8 @@ he:
other:
policy_paper:
name:
- one:
- other:
+ one: נייר מדיניות
+ other: ניירות מדיניות
press_release:
name:
one: הודעה לעיתונות
@@ -567,8 +580,8 @@ he:
other:
promotional:
name:
- one:
- other:
+ one: חומר פרסומי
+ other: חומר פרסומי
publication:
details: פרטים
documents:
@@ -583,12 +596,12 @@ he:
other:
regulation:
name:
- one:
- other:
+ one: תקנה
+ other: תקנות
research:
name:
- one:
- other:
+ one: מחקר וניתוח
+ other: מחקר וניתוח
residential_property_tribunal_decision:
name:
one:
@@ -625,8 +638,8 @@ he:
written_on: כתוב על
standard:
name:
- one:
- other:
+ one: תקן
+ other: תקנים
start_now:
statement_to_parliament:
name:
@@ -646,8 +659,8 @@ he:
other:
statutory_guidance:
name:
- one:
- other:
+ one: הדרכה סטטוטורית
+ other: הדרכה סטטוטורית
tax_tribunal_decision:
name:
one:
@@ -665,8 +678,8 @@ he:
other:
transparency:
name:
- one:
- other:
+ one: שקיפות מידע
+ other: שקיפות מידע
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: ' FCO להמליץ על כל נסיעות מלבד חיוניות לחלקי הארץ.'
diff --git a/config/locales/hi.yml b/config/locales/hi.yml
index 672635fb7a..56b1ca1818 100644
--- a/config/locales/hi.yml
+++ b/config/locales/hi.yml
@@ -84,6 +84,9 @@ hi:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: प्रकाशित
+ updated: अपडेट किया गया
nations:
england-and-wales:
england-and-wales_for:
@@ -271,20 +274,20 @@ hi:
welsh_language_scheme_html: हमारी प्रकाशन के प्रति वचनबद्धता के बारे में जानें %(link)।
corporate_report:
name:
- one:
- other:
+ one: कॉरपोरेट विवरण
+ other: कॉरपोरेट विवरण
correspondence:
name:
- one:
- other:
+ one: पत्र व्यवहार
+ other: पत्र व्यवहार
countryside_stewardship_grant:
name:
one:
other:
decision:
name:
- one:
- other:
+ one: फैसला
+ other: फैसले
detailed_guide:
name:
one: मार्गदर्शन
@@ -334,12 +337,12 @@ hi:
valid_postcode_no_locations:
foi_release:
name:
- one:
- other:
+ one: एफओआई की विज्ञप्ति
+ other: एफओआई की विज्ञप्तियां
form:
name:
- one:
- other:
+ one: प्रपत्र
+ other: प्रपत्र
get_involved:
civil_service:
civil_service_quarterly:
@@ -384,31 +387,41 @@ hi:
other: सरकारी जवाब
guidance:
name:
- one:
- other:
+ one: मार्गदर्शन
+ other: मार्गदर्शन
guide:
pages_in_guide: इस गाइड में पेज
skip_contents:
- impact_assessment:
+ html_publication:
name:
one:
other:
+ print_meta_data:
+ available_at: यह प्रकाशन %{url} पर उपलब्ध है
+ copyright: "© क्राउन कॉपीराइट %{year}"
+ isbn: 'आईएसबीएन:'
+ licence_html: 'यह प्रकाशन ओपन गवर्नमेंट लाइसेंस v3.0 के नियमों के तहत लाइसेंस प्राप्त है, जहां अन्यथा कहा गया है उसे छोड़कर। यह लाइसेंस देखने के लिए, nationalarchives.gov.uk/doc/open-government-licence/version/3 पर जाएं, या Information Policy Team, The National Archives, Kew, London TW9 4DU को लिखें, या ईमेल करें: psi@nationalarchives.gov.uk।'
+ third_party: जहां हमने किसी तीसरे पक्ष की कॉपीराइट जानकारी को मान्य किया हो, वहां आपको संबंधित कॉपीराइट धारकों से अनुमति लेनी होगी।
+ impact_assessment:
+ name:
+ one: प्रभाव का आंकलन
+ other: प्रभाव का आंकलन
imported:
name:
one:
other:
independent_report:
name:
- one:
- other:
+ one: स्वतंत्र रिपोर्ट
+ other: स्वतंत्र रिपोर्टें
international_development_fund:
name:
one:
other:
international_treaty:
name:
- one:
- other:
+ one: अंतरराष्ट्रीय संधि
+ other: अंतरराष्ट्रीय संधियां
licence:
change:
local_transaction:
@@ -486,8 +499,8 @@ hi:
updates_title:
map:
name:
- one:
- other:
+ one: मानचित्र
+ other: मानचित्रों
medical_safety_alert:
name:
one:
@@ -498,8 +511,8 @@ hi:
other:
national_statistics:
name:
- one:
- other:
+ one: राष्ट्रीय सांख्यिकी
+ other: राष्ट्रीय सांख्यिकी
national_statistics_announcement:
name:
one:
@@ -514,16 +527,16 @@ hi:
other: समाचार कथाएं
notice:
name:
- one:
- other:
+ one: नोटिस
+ other: नोटिस
official:
name:
one:
other:
official_statistics:
name:
- one:
- other:
+ one: आधिकारिक सांख्यिकी
+ other: आधिकारिक सांख्यिकी
official_statistics_announcement:
name:
one:
@@ -551,8 +564,8 @@ hi:
other:
policy_paper:
name:
- one:
- other:
+ one: नीति पत्र
+ other: नीति पत्र
press_release:
name:
one: प्रेस विज्ञप्ति
@@ -567,8 +580,8 @@ hi:
other:
promotional:
name:
- one:
- other:
+ one: प्रचार सामग्री
+ other: प्रचार सामग्री
publication:
details: विवरण
documents:
@@ -583,12 +596,12 @@ hi:
other:
regulation:
name:
- one:
- other:
+ one: विनियमन
+ other: विनियमों
research:
name:
- one:
- other:
+ one: अनुसंधान एवं विश्लेषण
+ other: अनुसंधान एवं विश्लेषण
residential_property_tribunal_decision:
name:
one:
@@ -625,8 +638,8 @@ hi:
written_on: पर लिखा
standard:
name:
- one:
- other:
+ one: मानक
+ other: मानकों
start_now:
statement_to_parliament:
name:
@@ -646,8 +659,8 @@ hi:
other:
statutory_guidance:
name:
- one:
- other:
+ one: वैधानिक मार्गदर्शन
+ other: वैधानिक मार्गदर्शन
tax_tribunal_decision:
name:
one:
@@ -665,8 +678,8 @@ hi:
other:
transparency:
name:
- one:
- other:
+ one: पारदर्शिता आंकड़े
+ other: पारदर्शिता आंकड़े
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: FCO देश के कुछ हिस्सों में अनिवार्य यात्रा को छोड़कर बाकी सबके विरुद्ध सलाह देता है।
diff --git a/config/locales/hr.yml b/config/locales/hr.yml
index 935ce2dce7..36f9360335 100644
--- a/config/locales/hr.yml
+++ b/config/locales/hr.yml
@@ -84,6 +84,9 @@ hr:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: Objavljeno
+ updated: Ažurirano
nations:
england-and-wales:
england-and-wales_for:
@@ -286,13 +289,13 @@ hr:
corporate_report:
name:
few:
- one:
- other:
+ one: Korporativno izvješće
+ other: Korporativna izvješća
correspondence:
name:
few:
- one:
- other:
+ one: Prepiska
+ other: Prepiske
countryside_stewardship_grant:
name:
few:
@@ -301,8 +304,8 @@ hr:
decision:
name:
few:
- one:
- other:
+ one: Odluka
+ other: Odluke
detailed_guide:
name:
few:
@@ -362,13 +365,13 @@ hr:
foi_release:
name:
few:
- one:
- other:
+ one: Izdanje slobode informacija
+ other: Izdanje slobode informacija
form:
name:
few:
- one:
- other:
+ one: Obrazac
+ other: Obrasci
get_involved:
civil_service:
civil_service_quarterly:
@@ -415,16 +418,27 @@ hr:
guidance:
name:
few:
- one:
- other:
+ one: Upute
+ other: Upute
guide:
pages_in_guide: Stranice u ovom vodiču
skip_contents:
- impact_assessment:
+ html_publication:
name:
few:
one:
other:
+ print_meta_data:
+ available_at: Ova je publikacija dostupna na %{url}
+ copyright: "© Crown copyright %{year}"
+ isbn: 'ISBN:'
+ licence_html: 'Ova je publikacija licencirana pod uvjetima Licenca otvorene vlade v3.0, osim ako nije drugačije navedeno. Za pregled ove licence posjetite nationalarchives.gov.uk/doc/open-government-licence/ verziju/3 ili pišite timu za politiku informiranja, Nacionalni arhiv, Kew, London TW9 4DU, ili pošaljite e -poštu: psi@nationalarchives.gov. uk .'
+ third_party: Ako smo identificirali bilo koje podatke o autorskim pravima trećih strana, morat ćete dobiti dopuštenje od dotičnih vlasnika autorskih prava.
+ impact_assessment:
+ name:
+ few:
+ one: Procjena utjecaja
+ other: Procjene utjecaja
imported:
name:
few:
@@ -433,8 +447,8 @@ hr:
independent_report:
name:
few:
- one:
- other:
+ one: Nezavisno izvješće
+ other: Nezavisna izvješća
international_development_fund:
name:
few:
@@ -443,8 +457,8 @@ hr:
international_treaty:
name:
few:
- one:
- other:
+ one: Međunarodni ugovor
+ other: Međunarodni ugovori
licence:
change:
local_transaction:
@@ -524,8 +538,8 @@ hr:
map:
name:
few:
- one:
- other:
+ one: Karta
+ other: Karte
medical_safety_alert:
name:
few:
@@ -539,8 +553,8 @@ hr:
national_statistics:
name:
few:
- one:
- other:
+ one: Nacionalna statistika
+ other: Nacionalna statistika
national_statistics_announcement:
name:
few:
@@ -559,8 +573,8 @@ hr:
notice:
name:
few:
- one:
- other:
+ one: Obavijest
+ other: Obavijesti
official:
name:
few:
@@ -569,8 +583,8 @@ hr:
official_statistics:
name:
few:
- one:
- other:
+ one: Službena statistika
+ other: Službena statistika
official_statistics_announcement:
name:
few:
@@ -604,8 +618,8 @@ hr:
policy_paper:
name:
few:
- one:
- other:
+ one: Dokument o pravilima
+ other: Dokumenti o pravilima
press_release:
name:
few:
@@ -624,8 +638,8 @@ hr:
promotional:
name:
few:
- one:
- other:
+ one: Promidžbeni materijal
+ other: Promidžbeni materijal
publication:
details: Detalji
documents:
@@ -644,13 +658,13 @@ hr:
regulation:
name:
few:
- one:
- other:
+ one: Regulacija
+ other: Regulacije
research:
name:
few:
- one:
- other:
+ one: Istraživanje i analiza
+ other: Istraživanje i analiza
residential_property_tribunal_decision:
name:
few:
@@ -693,8 +707,8 @@ hr:
standard:
name:
few:
- one:
- other:
+ one: Standard
+ other: Standardi
start_now:
statement_to_parliament:
name:
@@ -719,8 +733,8 @@ hr:
statutory_guidance:
name:
few:
- one:
- other:
+ one: Zakonske smjernice
+ other: Zakonske smjernice
tax_tribunal_decision:
name:
few:
@@ -741,8 +755,8 @@ hr:
transparency:
name:
few:
- one:
- other:
+ one: Podaci o transparentnosti
+ other: Podaci o transparentnosti
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: FCO savjetuje protiv svih, osim bitnih putovanja u dijelova zemlje.
diff --git a/config/locales/hu.yml b/config/locales/hu.yml
index 14abde878b..1bdee19045 100644
--- a/config/locales/hu.yml
+++ b/config/locales/hu.yml
@@ -84,6 +84,9 @@ hu:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: közzététel dátuma
+ updated: Frissítve
nations:
england-and-wales:
england-and-wales_for:
@@ -271,20 +274,20 @@ hu:
welsh_language_scheme_html: 'Tájékozódjon az információk közzétételével kapcsolatos elkötelezettségünkről: %{link}'
corporate_report:
name:
- one:
- other:
+ one: Testületi beszámoló
+ other: Testületi beszámolók
correspondence:
name:
- one:
- other:
+ one: Levelezés
+ other: Levelezések
countryside_stewardship_grant:
name:
one:
other:
decision:
name:
- one:
- other:
+ one: Döntés
+ other: Döntések
detailed_guide:
name:
one: Útmutató
@@ -334,12 +337,12 @@ hu:
valid_postcode_no_locations:
foi_release:
name:
- one:
- other:
+ one: Információhoz való joggal kapcsolatos közlemény
+ other: Információhoz való joggal kapcsolatos közlemények
form:
name:
- one:
- other:
+ one: Űrlap
+ other: Űrlapok
get_involved:
civil_service:
civil_service_quarterly:
@@ -384,31 +387,41 @@ hu:
other: Kormányválaszok
guidance:
name:
- one:
- other:
+ one: Útmutató
+ other: Útmutató
guide:
pages_in_guide: A jelen útmutató oldalai
skip_contents:
- impact_assessment:
+ html_publication:
name:
one:
other:
+ print_meta_data:
+ available_at: 'A kiadvány elérhető a következő helyen: %{url}'
+ copyright: "© Crown copyright %{year}"
+ isbn: 'ISBN:'
+ licence_html: 'A jelen kiadvány licenceit a Nyílt Közigazgatási Engedélyek 3.0 biztosítja, kivéve, ha másként van jelölve. A licenc megtekintéséhez látogassa meg a(z) nationalarchives.gov.uk/doc/open-government-licence/version/3 vagy írjon az Információkezeléssel foglalkozó Csapatnak, The National Archives, Kew, London TW9 4DU, vagy e-mailt a következő címre: psi@nationalarchives.gov.uk.'
+ third_party: Enegdélyt kell kérnie az érintett szerzői jogok tulajdonosaitól abban az esetben, ha harmadik fél szerzői jogi információkat közöltünk.
+ impact_assessment:
+ name:
+ one: Hatásvizsgálat
+ other: Hatásvizsgálatok
imported:
name:
one:
other:
independent_report:
name:
- one:
- other:
+ one: Független beszámoló
+ other: Független beszámolók
international_development_fund:
name:
one:
other:
international_treaty:
name:
- one:
- other:
+ one: Nemzetközi egyezmény
+ other: Nemzetközi egyezmények
licence:
change:
local_transaction:
@@ -486,8 +499,8 @@ hu:
updates_title:
map:
name:
- one:
- other:
+ one: Térkép
+ other: Térképek
medical_safety_alert:
name:
one:
@@ -498,8 +511,8 @@ hu:
other:
national_statistics:
name:
- one:
- other:
+ one: Nemzeti statisztikák
+ other: Nemzeti statisztikák
national_statistics_announcement:
name:
one:
@@ -514,16 +527,16 @@ hu:
other: Hírek
notice:
name:
- one:
- other:
+ one: Értesítés
+ other: Értesítések
official:
name:
one:
other:
official_statistics:
name:
- one:
- other:
+ one: Hivatalos statisztika
+ other: Hivatalos statisztikák
official_statistics_announcement:
name:
one:
@@ -551,8 +564,8 @@ hu:
other:
policy_paper:
name:
- one:
- other:
+ one: Irányelvi dokumentum
+ other: Irányelvi dokumentumok
press_release:
name:
one: Sajtóközlemény
@@ -567,8 +580,8 @@ hu:
other:
promotional:
name:
- one:
- other:
+ one: Promóciós anyag
+ other: Promóciós anyagok
publication:
details: Részletek
documents:
@@ -583,12 +596,12 @@ hu:
other:
regulation:
name:
- one:
- other:
+ one: Szabályozás
+ other: Szabályozások
research:
name:
- one:
- other:
+ one: Kutatás és elemzés
+ other: Kutatás és elemzés
residential_property_tribunal_decision:
name:
one:
@@ -625,8 +638,8 @@ hu:
written_on: 'Írás időpontja:'
standard:
name:
- one:
- other:
+ one: Szabvány
+ other: Szabványok
start_now:
statement_to_parliament:
name:
@@ -646,8 +659,8 @@ hu:
other:
statutory_guidance:
name:
- one:
- other:
+ one: Törvényi előírás
+ other: Törvényi előírás
tax_tribunal_decision:
name:
one:
@@ -665,8 +678,8 @@ hu:
other:
transparency:
name:
- one:
- other:
+ one: Átláthatósági adatok
+ other: Átláthatósági adatok
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: A FCO azt javasolja, hogy az ország bizonyos részeire csak feltétlenül szükséges esetben utazzanak.
diff --git a/config/locales/hy.yml b/config/locales/hy.yml
index 07754180dd..04f4cfe699 100644
--- a/config/locales/hy.yml
+++ b/config/locales/hy.yml
@@ -84,6 +84,9 @@ hy:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: Հրապարակված
+ updated: Թարմացված
nations:
england-and-wales:
england-and-wales_for:
@@ -271,20 +274,20 @@ hy:
welsh_language_scheme_html: 'Տեղեկանալ մեր աշխատանքի մասին %{link} հղումով:'
corporate_report:
name:
- one:
- other:
+ one: Կորպորատիվ զեկույց
+ other: Կորպորատիվ զեկույցներ
correspondence:
name:
- one:
- other:
+ one: Նամակագրություն
+ other: Նամակագրություններ
countryside_stewardship_grant:
name:
one:
other:
decision:
name:
- one:
- other:
+ one: Որոշում
+ other: Որոշումներ
detailed_guide:
name:
one: Ուղեցույց
@@ -334,12 +337,12 @@ hy:
valid_postcode_no_locations:
foi_release:
name:
- one:
- other:
+ one: Տեղեկատվության ազատության հրապարակում
+ other: Տեղեկատվության ազատության հրապարակումներ
form:
name:
- one:
- other:
+ one: Ձևաթուղթ
+ other: Ձևաթղթեր
get_involved:
civil_service:
civil_service_quarterly:
@@ -384,31 +387,41 @@ hy:
other: Կառավարության արձագանքներ
guidance:
name:
- one:
- other:
+ one: Ուղեցույց
+ other: Ուղեցույց
guide:
pages_in_guide: Այս ուղեցույցում առկա էջերը
skip_contents:
- impact_assessment:
+ html_publication:
name:
one:
other:
+ print_meta_data:
+ available_at: Այս հրապարակումը հասանելի էt %{url} հասցեով
+ copyright: "© Crown copyright %{year}"
+ isbn: ISBN՝
+ licence_html: 'Այս հրապարակումը լիցենզավորված է Open Government Licence v3.0 հրապարակման սերվերի դրույթների ներքո, բացառությամբ այլ դեպքերի: Այս լիցենզիան դիտելու համար այցելեք nationalarchives.gov.uk/doc/open-government-licence/version/3 կամ գրեք Տեղեկատվական քաղաքականության թիմին, Ազգային արխիվին, Kew, London TW9 4DU կամ ուղարկեք էլ. Նամակ հետևյալ հասցեին՝ psi@nationalarchives.gov.uk։'
+ third_party: Եթե բացահայտենք երրորդ կողմի հեղինակային իրավունքի որևէ տեղեկություն, ձեզնից կպահանջվի ստանալ թույլտվություն հեղինակային իրավունքի համապատասխան սեփականատերերից։
+ impact_assessment:
+ name:
+ one: Ազդեցության գնահատում
+ other: Ազդեցության գնահատումներ
imported:
name:
one:
other:
independent_report:
name:
- one:
- other:
+ one: Անկախ զեկույց
+ other: Անկախ զեկույցներ
international_development_fund:
name:
one:
other:
international_treaty:
name:
- one:
- other:
+ one: Միջազգային պայմանագիր
+ other: Միջազգային պայմանագրեր
licence:
change:
local_transaction:
@@ -486,8 +499,8 @@ hy:
updates_title:
map:
name:
- one:
- other:
+ one: Քարտեզ
+ other: Քարտեզներ
medical_safety_alert:
name:
one:
@@ -498,8 +511,8 @@ hy:
other:
national_statistics:
name:
- one:
- other:
+ one: Ազգային վիճակագրություն
+ other: Ազգային վիճակագրություն
national_statistics_announcement:
name:
one:
@@ -514,16 +527,16 @@ hy:
other: Տեղեկատվական նյութեր
notice:
name:
- one:
- other:
+ one: Ծանուցում
+ other: Ծանուցումներ
official:
name:
one:
other:
official_statistics:
name:
- one:
- other:
+ one: Պաշտոնական վիճակագրություն
+ other: Պաշտոնական վիճակագրություն
official_statistics_announcement:
name:
one:
@@ -551,8 +564,8 @@ hy:
other:
policy_paper:
name:
- one:
- other:
+ one: Քաղաքականության փաստաթուղթ
+ other: Քաղաքականության փաստաթղթեր
press_release:
name:
one: Կոմյունիկե
@@ -567,8 +580,8 @@ hy:
other:
promotional:
name:
- one:
- other:
+ one: Գովազդային նյութ
+ other: Գովազդային նյութ
publication:
details: Մանրամասներ
documents:
@@ -583,12 +596,12 @@ hy:
other:
regulation:
name:
- one:
- other:
+ one: Կանոնադրություն
+ other: Կանոնադրություններ
research:
name:
- one:
- other:
+ one: Հետազոտություն և վերլուծություն
+ other: Հետազոտություն և վերլուծություն
residential_property_tribunal_decision:
name:
one:
@@ -625,8 +638,8 @@ hy:
written_on: Գրվել է
standard:
name:
- one:
- other:
+ one: Ստանդարտ
+ other: Ստանդարտներ
start_now:
statement_to_parliament:
name:
@@ -646,8 +659,8 @@ hy:
other:
statutory_guidance:
name:
- one:
- other:
+ one: Կանոնադրական ուղեցույց
+ other: Կանոնադրական ուղեցույց
tax_tribunal_decision:
name:
one:
@@ -665,8 +678,8 @@ hy:
other:
transparency:
name:
- one:
- other:
+ one: Թափանցիկության տվյալներ
+ other: Թափանցիկության տվյալներ
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: FCO-ը խորհուրդ է տալիս չմեկնել տվյալ երկրի ամբողջ տարածք, բացառությամբ էական նշանակություն ունեցող հատվածների։
diff --git a/config/locales/id.yml b/config/locales/id.yml
index dd41ae0807..8ede6a325a 100644
--- a/config/locales/id.yml
+++ b/config/locales/id.yml
@@ -84,6 +84,9 @@ id:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: Diterbitkan
+ updated: Diperbarui
nations:
england-and-wales:
england-and-wales_for:
@@ -257,16 +260,16 @@ id:
welsh_language_scheme_html: Cari tahu komitmen kami kepada %{link}.
corporate_report:
name:
- other:
+ other: Laporan korporat
correspondence:
name:
- other:
+ other: Korespondensi
countryside_stewardship_grant:
name:
other:
decision:
name:
- other:
+ other: Keputusan
detailed_guide:
name:
other: Panduan
@@ -307,10 +310,10 @@ id:
valid_postcode_no_locations:
foi_release:
name:
- other:
+ other: Rilis Kebebasan Informasi
form:
name:
- other:
+ other: Formulir
get_involved:
civil_service:
civil_service_quarterly:
@@ -354,25 +357,34 @@ id:
other: Respons pemerintah
guidance:
name:
- other:
+ other: Panduan
guide:
pages_in_guide: Halaman dalam panduan ini
skip_contents:
- impact_assessment:
+ html_publication:
name:
other:
+ print_meta_data:
+ available_at: Publikasi ini tersedia di %{url}
+ copyright: Hak cipta © Crown %{year}
+ isbn: 'ISBN:'
+ licence_html: 'Publikasi ini berlisensi sesuai dengan ketentuan Lisensi Terbuka Pemerintah v3.0 kecuali dinyatakan berbeda. Untuk melihat lisensi ini, kunjungi nationalarchives.gov.uk/doc/open-government-licence/version/3 atau kirim surat ke the Information Policy Team, The National Archives, Kew, London TW9 4DU, atau email: psi@nationalarchives.gov.uk.'
+ third_party: Saat kami mengidentifikasi informasi hak cipta milik pihak ketigaa, Anda harus mendapat izin dari pemegang hak cipta terkait.
+ impact_assessment:
+ name:
+ other: Penilaian dampak
imported:
name:
other:
independent_report:
name:
- other:
+ other: Laporan independen
international_development_fund:
name:
other:
international_treaty:
name:
- other:
+ other: Pakta internasional
licence:
change:
local_transaction:
@@ -449,7 +461,7 @@ id:
updates_title:
map:
name:
- other:
+ other: Peta
medical_safety_alert:
name:
other:
@@ -458,7 +470,7 @@ id:
other:
national_statistics:
name:
- other:
+ other: Statistik Nasional
national_statistics_announcement:
name:
other:
@@ -470,13 +482,13 @@ id:
other: Cerita berita
notice:
name:
- other:
+ other: Pemberitahuan
official:
name:
other:
official_statistics:
name:
- other:
+ other: Statistik Resmi
official_statistics_announcement:
name:
other:
@@ -499,7 +511,7 @@ id:
other:
policy_paper:
name:
- other:
+ other: Kertas kebijakan
press_release:
name:
other: Siaran pers
@@ -511,7 +523,7 @@ id:
other:
promotional:
name:
- other:
+ other: Bahan promosi
publication:
details: Detail
documents:
@@ -523,10 +535,10 @@ id:
other:
regulation:
name:
- other:
+ other: Regulasi
research:
name:
- other:
+ other: Riset dan analisis
residential_property_tribunal_decision:
name:
other:
@@ -558,7 +570,7 @@ id:
written_on: Ditulis pada
standard:
name:
- other:
+ other: Standar
start_now:
statement_to_parliament:
name:
@@ -574,7 +586,7 @@ id:
other:
statutory_guidance:
name:
- other:
+ other: Panduan perundang-undangan
tax_tribunal_decision:
name:
other:
@@ -590,7 +602,7 @@ id:
other:
transparency:
name:
- other:
+ other: Data transparansi
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: The FCO melarang semua perjalanan yang tidak esensial ke bagian-bagian dari negara itu.
diff --git a/config/locales/is.yml b/config/locales/is.yml
index 36bbbea7e0..029da3e05f 100644
--- a/config/locales/is.yml
+++ b/config/locales/is.yml
@@ -84,6 +84,9 @@ is:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: Birt
+ updated: Uppfært
nations:
england-and-wales:
england-and-wales_for:
@@ -271,20 +274,20 @@ is:
welsh_language_scheme_html: Kynntu þér skuldbindingu okkar við %{link}.
corporate_report:
name:
- one:
- other:
+ one: Skýrsla fyrirtækis
+ other: Skýrslur fyrirtækja
correspondence:
name:
- one:
- other:
+ one: Samskipti
+ other: Samskipti
countryside_stewardship_grant:
name:
one:
other:
decision:
name:
- one:
- other:
+ one: Ákvörðun
+ other: Ákvarðanir
detailed_guide:
name:
one: Leiðsögn
@@ -334,12 +337,12 @@ is:
valid_postcode_no_locations:
foi_release:
name:
- one:
- other:
+ one: Upplýsingafrelsi (FOI) útgáfa
+ other: Upplýsingafrelsi (FOI) útgáfur
form:
name:
- one:
- other:
+ one: Eyðublað
+ other: Eyðublöð
get_involved:
civil_service:
civil_service_quarterly:
@@ -384,31 +387,41 @@ is:
other: Viðbrögð stjórnvalda
guidance:
name:
- one:
- other:
+ one: Leiðbeiningar
+ other: Leiðbeiningar
guide:
pages_in_guide: Síður í þessum leiðbeiningum
skip_contents:
- impact_assessment:
+ html_publication:
name:
one:
other:
+ print_meta_data:
+ available_at: Þessi útgáfa er aðgengileg á %{url}
+ copyright: "© Höfundarréttur Krúnunnar %{year}"
+ isbn: 'ISBN:'
+ licence_html: 'Þessi útgáfa fellur undir skilmála Open Government Licence v3.0 nema annað sé tekið fram. Heimsæku til að skoða þessa skilmála nationalarchives.gov.uk/doc/open-government-licence/version/3 eða skrifaðu til Information Policy Team, The National Archives, Kew, London TW9 4DU, eða sendu tölvupóst: psi@nationalarchives.gov.uk.'
+ third_party: Þar sem við höfum auðkennt að eitthvað fellur undir höfundarrétt þriðja aðila munt þú þurfa leyfi frá þeim höfundarrétthafa.
+ impact_assessment:
+ name:
+ one: Áhrifamat
+ other: Áhrifamöt
imported:
name:
one:
other:
independent_report:
name:
- one:
- other:
+ one: Óháð skýrsla
+ other: Óháðar skýrslur
international_development_fund:
name:
one:
other:
international_treaty:
name:
- one:
- other:
+ one: Alþjóðasamningur
+ other: Alþjóðasamningar
licence:
change:
local_transaction:
@@ -486,8 +499,8 @@ is:
updates_title:
map:
name:
- one:
- other:
+ one: Kort
+ other: Kort
medical_safety_alert:
name:
one:
@@ -498,8 +511,8 @@ is:
other:
national_statistics:
name:
- one:
- other:
+ one: Hagstofa
+ other: Hagstofa
national_statistics_announcement:
name:
one:
@@ -514,16 +527,16 @@ is:
other: Fréttir
notice:
name:
- one:
- other:
+ one: Tilkynning
+ other: Tilkynningar
official:
name:
one:
other:
official_statistics:
name:
- one:
- other:
+ one: Opinber tölfræði
+ other: Opinber tölfræði
official_statistics_announcement:
name:
one:
@@ -551,8 +564,8 @@ is:
other:
policy_paper:
name:
- one:
- other:
+ one: Stefnu ritgerð
+ other: Stefnu ritgerðir
press_release:
name:
one: Fréttatilkynning
@@ -567,8 +580,8 @@ is:
other:
promotional:
name:
- one:
- other:
+ one: Kynningarefni
+ other: Kynningarefni
publication:
details: Nánari upplýsingar
documents:
@@ -583,12 +596,12 @@ is:
other:
regulation:
name:
- one:
- other:
+ one: Reglugerð
+ other: Reglugerðir
research:
name:
- one:
- other:
+ one: Rannsóknir og greining
+ other: Rannsóknir og greining
residential_property_tribunal_decision:
name:
one:
@@ -625,8 +638,8 @@ is:
written_on: Skrifað þann
standard:
name:
- one:
- other:
+ one: Staðall
+ other: Staðlar
start_now:
statement_to_parliament:
name:
@@ -646,8 +659,8 @@ is:
other:
statutory_guidance:
name:
- one:
- other:
+ one: Lagalegar leiðbeiningar
+ other: Lagalegar leiðbeiningar
tax_tribunal_decision:
name:
one:
@@ -665,8 +678,8 @@ is:
other:
transparency:
name:
- one:
- other:
+ one: Gögn um gagnsæi
+ other: Gögn um gagnsæi
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: FCO ráðleggur gegn öllum ferðalögum til hluta landsins nema þeim allra nauðsynlegustu.
diff --git a/config/locales/it.yml b/config/locales/it.yml
index 09761f3aff..bb39a9362d 100644
--- a/config/locales/it.yml
+++ b/config/locales/it.yml
@@ -84,6 +84,9 @@ it:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: Pubblicato
+ updated: Aggiornato
nations:
england-and-wales:
england-and-wales_for:
@@ -271,20 +274,20 @@ it:
welsh_language_scheme_html: Scopri il nostro impegno per %{link}.
corporate_report:
name:
- one:
- other:
+ one: Report aziendale
+ other: Report aziendali
correspondence:
name:
- one:
- other:
+ one: Corrispondenza
+ other: Corrispondenze
countryside_stewardship_grant:
name:
one:
other:
decision:
name:
- one:
- other:
+ one: Decisione
+ other: Decisioni
detailed_guide:
name:
one: Guida
@@ -334,12 +337,12 @@ it:
valid_postcode_no_locations:
foi_release:
name:
- one:
- other:
+ one: Pubblicazione sulla libertà d’informazione (FOI)
+ other: Pubblicazioni sulla libertà d’informazione (FOI)
form:
name:
- one:
- other:
+ one: Modulo
+ other: Moduli
get_involved:
civil_service:
civil_service_quarterly:
@@ -384,31 +387,41 @@ it:
other: Risposte del governo
guidance:
name:
- one:
- other:
+ one: Guida
+ other: Guida
guide:
pages_in_guide: Pagine in questa guida
skip_contents:
- impact_assessment:
+ html_publication:
name:
one:
other:
+ print_meta_data:
+ available_at: Questa pubblicazione è disponibile all’indirizzo %{url}
+ copyright: "© Crown copyright %{year}"
+ isbn: 'ISBN:'
+ licence_html: 'Questa pubblicazione è concessa in licenza secondo i termini della Open Government License v3.0, salvo ove diversamente indicato. Per visualizzare questa licenza, visitare nationalarchives.gov.uk/doc/open-government-licence/version/3 o scrivere a Information Policy Team, The National Archives, Kew, London TW9 4DU, o inviare una e-mail all’indirizzo: psi@nationalarchives.gov.uk.'
+ third_party: Laddove abbiamo identificato informazioni sul copyright di terzi, sarà necessario ottenere l'autorizzazione dai titolari del copyright interessati.
+ impact_assessment:
+ name:
+ one: Valutazione dell’impatto
+ other: Valutazioni dell’impatto
imported:
name:
one:
other:
independent_report:
name:
- one:
- other:
+ one: Report indipendente
+ other: Report indipendenti
international_development_fund:
name:
one:
other:
international_treaty:
name:
- one:
- other:
+ one: Trattato internazionale
+ other: Trattati internazionali
licence:
change:
local_transaction:
@@ -486,8 +499,8 @@ it:
updates_title:
map:
name:
- one:
- other:
+ one: Mappa
+ other: Mappe
medical_safety_alert:
name:
one:
@@ -498,8 +511,8 @@ it:
other:
national_statistics:
name:
- one:
- other:
+ one: Statistiche nazionali
+ other: Statistiche nazionali
national_statistics_announcement:
name:
one:
@@ -514,16 +527,16 @@ it:
other: Storie di notizie
notice:
name:
- one:
- other:
+ one: Avviso
+ other: Avvisi
official:
name:
one:
other:
official_statistics:
name:
- one:
- other:
+ one: Statistiche ufficiali
+ other: Statistiche ufficiali
official_statistics_announcement:
name:
one:
@@ -551,8 +564,8 @@ it:
other:
policy_paper:
name:
- one:
- other:
+ one: Documento politico
+ other: Documenti politici
press_release:
name:
one: Comunicato stampa
@@ -567,8 +580,8 @@ it:
other:
promotional:
name:
- one:
- other:
+ one: Materiale promozionale
+ other: Materiale promozionale
publication:
details: Dettagli
documents:
@@ -583,12 +596,12 @@ it:
other:
regulation:
name:
- one:
- other:
+ one: Regolamento
+ other: Regolamenti
research:
name:
- one:
- other:
+ one: Ricerca e analisi
+ other: Ricerca e analisi
residential_property_tribunal_decision:
name:
one:
@@ -625,8 +638,8 @@ it:
written_on: Scritto il
standard:
name:
- one:
- other:
+ one: Standard
+ other: Standard
start_now:
statement_to_parliament:
name:
@@ -646,8 +659,8 @@ it:
other:
statutory_guidance:
name:
- one:
- other:
+ one: Guida statutaria
+ other: Guida statutaria
tax_tribunal_decision:
name:
one:
@@ -665,8 +678,8 @@ it:
other:
transparency:
name:
- one:
- other:
+ one: Dati sulla trasparenza
+ other: Dati sulla trasparenza
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: L’FCO sconsiglia tutti i viaggi tranne quelli essenziali in alcune parti del paese.
diff --git a/config/locales/ja.yml b/config/locales/ja.yml
index 1e4f1ffc78..f6f38a5f01 100644
--- a/config/locales/ja.yml
+++ b/config/locales/ja.yml
@@ -84,6 +84,9 @@ ja:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: 掲載日
+ updated: 更新済み
nations:
england-and-wales:
england-and-wales_for:
@@ -257,16 +260,16 @@ ja:
welsh_language_scheme_html: 情報公開の詳細については %{link} をご覧下さい。
corporate_report:
name:
- other:
+ other: 企業報告書
correspondence:
name:
- other:
+ other: 対応
countryside_stewardship_grant:
name:
other:
decision:
name:
- other:
+ other: 決定
detailed_guide:
name:
other: ガイダンス
@@ -307,10 +310,10 @@ ja:
valid_postcode_no_locations:
foi_release:
name:
- other:
+ other: FOI(情報公開)発表
form:
name:
- other:
+ other: フォーム
get_involved:
civil_service:
civil_service_quarterly:
@@ -354,25 +357,34 @@ ja:
other: 政府の対応
guidance:
name:
- other:
+ other: ガイダンス
guide:
pages_in_guide: このガイドのページ
skip_contents:
- impact_assessment:
+ html_publication:
name:
other:
+ print_meta_data:
+ available_at: この出版物は%{url}で入手できます
+ copyright: "© Crown copyright %{year}"
+ isbn: ISBN:
+ licence_html: 本書は、特に明記されていない限り、Open Government License v 3.0の条件に基づいてライセンスされています。このライセンスを確認するには、nationalarchives.gov.uk/doc/open-government-licence/version/3 にアクセスするか、Information Policy Team、The National Archives、Kew、London TW 9 4 DU、またはEメールにて psi@nationalarchives.gov.ukまでお問い合わせください。
+ third_party: 第三者の著作権情報を特定した場合は、関係する著作権所有者から許可を得る必要があります。
+ impact_assessment:
+ name:
+ other: 影響評価
imported:
name:
other:
independent_report:
name:
- other:
+ other: 第三者による報告
international_development_fund:
name:
other:
international_treaty:
name:
- other:
+ other: 国際条約
licence:
change:
local_transaction:
@@ -449,7 +461,7 @@ ja:
updates_title:
map:
name:
- other:
+ other: 地図
medical_safety_alert:
name:
other:
@@ -458,7 +470,7 @@ ja:
other:
national_statistics:
name:
- other:
+ other: 国家統計
national_statistics_announcement:
name:
other:
@@ -470,13 +482,13 @@ ja:
other: ニュースストーリー
notice:
name:
- other:
+ other: お知らせ
official:
name:
other:
official_statistics:
name:
- other:
+ other: 公式統計
official_statistics_announcement:
name:
other:
@@ -499,7 +511,7 @@ ja:
other:
policy_paper:
name:
- other:
+ other: 方針書
press_release:
name:
other: プレスリリース
@@ -511,7 +523,7 @@ ja:
other:
promotional:
name:
- other:
+ other: 販促資料
publication:
details: 詳細
documents:
@@ -523,10 +535,10 @@ ja:
other:
regulation:
name:
- other:
+ other: 規則
research:
name:
- other:
+ other: 調査と分析
residential_property_tribunal_decision:
name:
other:
@@ -558,7 +570,7 @@ ja:
written_on: 記述日:
standard:
name:
- other:
+ other: 標準
start_now:
statement_to_parliament:
name:
@@ -574,7 +586,7 @@ ja:
other:
statutory_guidance:
name:
- other:
+ other: 法定ガイダンス
tax_tribunal_decision:
name:
other:
@@ -590,7 +602,7 @@ ja:
other:
transparency:
name:
- other:
+ other: 透明性データ
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: FCO は、国内一部地域への必要不可欠ものを除くすべての移動を控えるよう勧告しています。
diff --git a/config/locales/ka.yml b/config/locales/ka.yml
index 3027ea9a0c..f3d52ed538 100644
--- a/config/locales/ka.yml
+++ b/config/locales/ka.yml
@@ -84,6 +84,9 @@ ka:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: პუბლიკაცია
+ updated: განახლება
nations:
england-and-wales:
england-and-wales_for:
@@ -271,20 +274,20 @@ ka:
welsh_language_scheme_html: გაეცანით ჩვენს ვალდებულებას %{link}.
corporate_report:
name:
- one:
- other:
+ one: კორპორატიული ანგარიში
+ other: კორპორატიული ანგარიშები
correspondence:
name:
- one:
- other:
+ one: მიმოწერა
+ other: მიმოწერები
countryside_stewardship_grant:
name:
one:
other:
decision:
name:
- one:
- other:
+ one: გადაწყვეტილება
+ other: გადაწყვეტილებები
detailed_guide:
name:
one: ხელძღვანელობა
@@ -334,12 +337,12 @@ ka:
valid_postcode_no_locations:
foi_release:
name:
- one:
- other:
+ one: ინფორმაციის თავისუფლების გამოცემა
+ other: ინფორმაციის თავისუფლების გამოცემებ
form:
name:
- one:
- other:
+ one: ფორმა
+ other: ფორმები
get_involved:
civil_service:
civil_service_quarterly:
@@ -384,31 +387,41 @@ ka:
other: მთავრობის პასუხები
guidance:
name:
- one:
- other:
+ one: გზამკვლევი
+ other: გზამკვლევი
guide:
pages_in_guide: გვერდები ამ სახელმძღვანელოში
skip_contents:
- impact_assessment:
+ html_publication:
name:
one:
other:
+ print_meta_data:
+ available_at: ეს პუბლიკაცია ხელმისაწვდომია %{url}-ზე
+ copyright: "© გვირგვინის საავტორო უფლებ ა%{year}"
+ isbn: 'ISBN:'
+ licence_html: 'ეს პუბლიკაცია ლიცენზირებულია ღია მმართველობის ლიცენზიის v3.0 პირობებით, გარდა სხვა შემთხვევებისა. ამ ლიცენზიის სანახავად ეწვიეთ nationalarchives.gov.uk/doc/open-government-licence/version/3 ან მოგვწერეთ საინფორმაციო პოლიტიკის ჯგუფში, ეროვნულ არქივში, Kew, London TW9 4DU, ან ელ.ფოსტაზე: psi@nationalarchives.gov.uk.'
+ third_party: სადაც ჩვენ გამოვავლინეთ მესამე მხარის საავტორო უფლებების შესახებ ინფორმაცია, თქვენ დაგჭირდებათ ნებართვის მიღება შესაბამისი საავტორო უფლებების მფლობელებისგან.
+ impact_assessment:
+ name:
+ one: ზემოქმედების შეფასება
+ other: ზემოქმედების შეფასებები
imported:
name:
one:
other:
independent_report:
name:
- one:
- other:
+ one: დამოუკიდებელი ანგარიში
+ other: დამოუკიდებელი ანგარიშები
international_development_fund:
name:
one:
other:
international_treaty:
name:
- one:
- other:
+ one: საერთაშორისო ხელშეკრულება
+ other: საერთაშორისო ხელშეკრულებები
licence:
change:
local_transaction:
@@ -486,8 +499,8 @@ ka:
updates_title:
map:
name:
- one:
- other:
+ one: რუკა
+ other: რუკები
medical_safety_alert:
name:
one:
@@ -498,8 +511,8 @@ ka:
other:
national_statistics:
name:
- one:
- other:
+ one: ეროვნული სტატისტიკა
+ other: ეროვნული სტატისტიკა
national_statistics_announcement:
name:
one:
@@ -514,16 +527,16 @@ ka:
other: ახალი ამბები
notice:
name:
- one:
- other:
+ one: შენიშვნა
+ other: შენიშვნები
official:
name:
one:
other:
official_statistics:
name:
- one:
- other:
+ one: ოფიციალური სტატისტიკა
+ other: ოფიციალური სტატისტიკა
official_statistics_announcement:
name:
one:
@@ -551,8 +564,8 @@ ka:
other:
policy_paper:
name:
- one:
- other:
+ one: საკანონომდებლო დოკუმენტი
+ other: საკანონომდებლო დოკუმენტები
press_release:
name:
one: პრეს რელიზი
@@ -567,8 +580,8 @@ ka:
other:
promotional:
name:
- one:
- other:
+ one: პრომო მასალა
+ other: პრომო მასალები
publication:
details: დეტალები
documents:
@@ -583,12 +596,12 @@ ka:
other:
regulation:
name:
- one:
- other:
+ one: რეგულირება
+ other: რეგულირებები
research:
name:
- one:
- other:
+ one: კვლევა და ანალიზი
+ other: კვლევა და ანალიზი
residential_property_tribunal_decision:
name:
one:
@@ -625,8 +638,8 @@ ka:
written_on: დაწერილი
standard:
name:
- one:
- other:
+ one: სტანდარტი
+ other: სტანდარტები
start_now:
statement_to_parliament:
name:
@@ -646,8 +659,8 @@ ka:
other:
statutory_guidance:
name:
- one:
- other:
+ one: კანონიერი ხელმძღვანელობა
+ other: კანონიერი ხელმძღვანელობა
tax_tribunal_decision:
name:
one:
@@ -665,8 +678,8 @@ ka:
other:
transparency:
name:
- one:
- other:
+ one: გამჭვირვალობის მონაცემები
+ other: გამჭვირვალობის მონაცემები
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: The FCO რჩევა ყველას წინააღმდეგ, გარდა ესენციური მოგზაურობებისა ქვეყნის ზოგიერთ ნაწილებში.
diff --git a/config/locales/kk.yml b/config/locales/kk.yml
index b3bb3f522f..5ced401b42 100644
--- a/config/locales/kk.yml
+++ b/config/locales/kk.yml
@@ -84,6 +84,9 @@ kk:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: Жарияланды
+ updated: Жаңартылды
nations:
england-and-wales:
england-and-wales_for:
@@ -271,20 +274,20 @@ kk:
welsh_language_scheme_html: "%{link} қосқан үлесіміз туралы оқыңыз."
corporate_report:
name:
- one:
- other:
+ one: Корпоративтік есеп
+ other: Корпоративтік есептер
correspondence:
name:
- one:
- other:
+ one: Хат алмасу
+ other: Хат алмасулар
countryside_stewardship_grant:
name:
one:
other:
decision:
name:
- one:
- other:
+ one: Шешім
+ other: Шешімдер
detailed_guide:
name:
one: Нұсқаулық
@@ -334,12 +337,12 @@ kk:
valid_postcode_no_locations:
foi_release:
name:
- one:
- other:
+ one: FOI шығарылымы
+ other: FOI шығарылымдары
form:
name:
- one:
- other:
+ one: Форма
+ other: Формалар
get_involved:
civil_service:
civil_service_quarterly:
@@ -384,31 +387,41 @@ kk:
other: Мемлекет жауаптары
guidance:
name:
- one:
- other:
+ one: Нұсқаулық
+ other: Нұсқаулық
guide:
pages_in_guide: Бұл нұсқаулықтағы беттер
skip_contents:
- impact_assessment:
+ html_publication:
name:
one:
other:
+ print_meta_data:
+ available_at: Бұл жарияланым %{url} сайтында қолжетімді
+ copyright: "© Crown авторлық құқығы %{year}"
+ isbn: 'ISBN:'
+ licence_html: 'Бұл жарияланым басқаша көрсетілмеген жағдайларды қоспағанда, v3.0 Ашық Үкімет лицензиясының шарттары бойынша лицензияланған. Осы лицензияны көру үшін, nationalarchives.gov.uk/doc/open-government-licence/version/3 веб-сайтына өтіңіз немесе немесе Ақпараттық саясат тобына, Ұлттық мұрағаттарға, Kew, London TW9 4DU жазыңыз немесе төмендегі мекенжайға электрондық хат жазыңыз: psi@nationalarchives.gov.uk.'
+ third_party: Егер біз авторлық құқық туралы кез келген үшінші тарап ақпаратын анықтаған болсақ, сізге тиісті авторлық құқық иелерінен рұқсат алу қажет болады.
+ impact_assessment:
+ name:
+ one: Ықпалын бағалау
+ other: Ықпалын бағалаулар
imported:
name:
one:
other:
independent_report:
name:
- one:
- other:
+ one: Тәуелсіз есеп
+ other: Тәуелсіз есептер
international_development_fund:
name:
one:
other:
international_treaty:
name:
- one:
- other:
+ one: Халықаралық келісім
+ other: Халықаралық келісімдер
licence:
change:
local_transaction:
@@ -486,8 +499,8 @@ kk:
updates_title:
map:
name:
- one:
- other:
+ one: Карта
+ other: Карталар
medical_safety_alert:
name:
one:
@@ -498,8 +511,8 @@ kk:
other:
national_statistics:
name:
- one:
- other:
+ one: Ұлттық статистика
+ other: Ұлттық статистика
national_statistics_announcement:
name:
one:
@@ -514,16 +527,16 @@ kk:
other: Жаңалықтар оқиғалары
notice:
name:
- one:
- other:
+ one: Ескертпе
+ other: Ескертпелер
official:
name:
one:
other:
official_statistics:
name:
- one:
- other:
+ one: Ресми статистика
+ other: Ресми статистика
official_statistics_announcement:
name:
one:
@@ -551,8 +564,8 @@ kk:
other:
policy_paper:
name:
- one:
- other:
+ one: Саяси құжат
+ other: Саяси құжаттар
press_release:
name:
one: Пресс-релиз
@@ -567,8 +580,8 @@ kk:
other:
promotional:
name:
- one:
- other:
+ one: Жарнамалық материал
+ other: Жарнамалық материал
publication:
details: Толық мәліметтер
documents:
@@ -583,12 +596,12 @@ kk:
other:
regulation:
name:
- one:
- other:
+ one: Ереже
+ other: Ережелер
research:
name:
- one:
- other:
+ one: Зерттеу және талдау
+ other: Зерттеу және талдау
residential_property_tribunal_decision:
name:
one:
@@ -625,8 +638,8 @@ kk:
written_on: Жазылған күні
standard:
name:
- one:
- other:
+ one: Стандарт
+ other: Стандарттар
start_now:
statement_to_parliament:
name:
@@ -646,8 +659,8 @@ kk:
other:
statutory_guidance:
name:
- one:
- other:
+ one: Заң нұсқаулығы
+ other: Заң нұсқаулығы
tax_tribunal_decision:
name:
one:
@@ -665,8 +678,8 @@ kk:
other:
transparency:
name:
- one:
- other:
+ one: Ашықтық деректері
+ other: Ашықтық деректері
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: FCO маңыздысынан басқа елдің барлық аймақтарына барудан бас тартуға кеңес береді.
diff --git a/config/locales/ko.yml b/config/locales/ko.yml
index 2eff782272..367a959971 100644
--- a/config/locales/ko.yml
+++ b/config/locales/ko.yml
@@ -84,6 +84,9 @@ ko:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: 발행
+ updated: 업데이트
nations:
england-and-wales:
england-and-wales_for:
@@ -257,16 +260,16 @@ ko:
welsh_language_scheme_html: "%{link} 에서 정보 공개에 대한 내용."
corporate_report:
name:
- other:
+ other: 기업 보고서
correspondence:
name:
- other:
+ other: 통신
countryside_stewardship_grant:
name:
other:
decision:
name:
- other:
+ other: 판결
detailed_guide:
name:
other: 지침
@@ -307,10 +310,10 @@ ko:
valid_postcode_no_locations:
foi_release:
name:
- other:
+ other: FOI 발표
form:
name:
- other:
+ other: 양식
get_involved:
civil_service:
civil_service_quarterly:
@@ -354,25 +357,34 @@ ko:
other: 정부 대응
guidance:
name:
- other:
+ other: 지침
guide:
pages_in_guide: 이 지침 내 페이지
skip_contents:
- impact_assessment:
+ html_publication:
name:
other:
+ print_meta_data:
+ available_at: 이 발행물은 %{url}에서 이용할 수 있습니다
+ copyright: "© Crown copyright %{year}"
+ isbn: 'ISBN:'
+ licence_html: 본 출판물은 달리 명시된 경우를 제외하고 정부 공개 라이선스 v3.0의 조항에 따라 라이선스됩니다. 이 라이선스를 보려면 nationalarchives.gov.uk/doc/open-government-licence/version/3 에 방문하거나, 정보 정책 팀(Information Policy Team), 국립 아카이브(The National Archives), Kew, London TW9 4DU에 문의를 남기거나 다음 주소로 이메일을 보내십시오. psi@nationalarchives.gov.uk
+ third_party: 서드파티 저작권 정보를 확인한 경우, 해당 저작권자의 허가를 받아야 합니다.
+ impact_assessment:
+ name:
+ other: 영향 평가
imported:
name:
other:
independent_report:
name:
- other:
+ other: 독립적 보고서
international_development_fund:
name:
other:
international_treaty:
name:
- other:
+ other: 국제 조약
licence:
change:
local_transaction:
@@ -449,7 +461,7 @@ ko:
updates_title:
map:
name:
- other:
+ other: 지도
medical_safety_alert:
name:
other:
@@ -458,7 +470,7 @@ ko:
other:
national_statistics:
name:
- other:
+ other: 국내 통계
national_statistics_announcement:
name:
other:
@@ -470,13 +482,13 @@ ko:
other: 뉴스 스토리
notice:
name:
- other:
+ other: 공지
official:
name:
other:
official_statistics:
name:
- other:
+ other: 공식 통계
official_statistics_announcement:
name:
other:
@@ -499,7 +511,7 @@ ko:
other:
policy_paper:
name:
- other:
+ other: 정책 문서
press_release:
name:
other: 보도자료
@@ -511,7 +523,7 @@ ko:
other:
promotional:
name:
- other:
+ other: 홍보 자료
publication:
details: 세부 정보
documents:
@@ -523,10 +535,10 @@ ko:
other:
regulation:
name:
- other:
+ other: 규제
research:
name:
- other:
+ other: 조사 및 분석
residential_property_tribunal_decision:
name:
other:
@@ -558,7 +570,7 @@ ko:
written_on: 작성 날짜
standard:
name:
- other:
+ other: 표준
start_now:
statement_to_parliament:
name:
@@ -574,7 +586,7 @@ ko:
other:
statutory_guidance:
name:
- other:
+ other: 법정지도
tax_tribunal_decision:
name:
other:
@@ -590,7 +602,7 @@ ko:
other:
transparency:
name:
- other:
+ other: 투명성 데이터
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: FCO 는 해당 국가의 각지를 여행하지 말라고 권고합니다.
diff --git a/config/locales/ku.yml b/config/locales/ku.yml
index d2de8ce7fd..59a8832edf 100644
--- a/config/locales/ku.yml
+++ b/config/locales/ku.yml
@@ -84,6 +84,9 @@ ku:
email_and_print_link: ناوت تۆمار بکە بۆ ئیمەیڵهكان یان ئەم لاپەڕەیە پرنت بکە
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: بڵاوکراوەتەوە
+ updated: نوێ کراوەتەوە
nations:
england-and-wales:
england-and-wales_for:
@@ -389,6 +392,16 @@ ku:
guide:
pages_in_guide: لاپەڕەکانی ئەم ڕێنماییە
skip_contents: ناوەڕۆکەکان بەجێبهێڵە
+ html_publication:
+ name:
+ one:
+ other:
+ print_meta_data:
+ available_at: ئەم بڵاوکراوەیە لە %{url} بەردەستە.
+ copyright: "© مافی چاپکردنی تاج %{year}"
+ isbn: 'ISBN:'
+ licence_html: 'ئەم بڵاوکراوە بەپێی مەرجەکانی مۆڵەتی حکومەتی کراوە v3.0 مۆڵەتی پێدراوە جگە لەو شوێنانەی کە بە پێچەوانەوە ئاماژەیان پێکراوە. بۆ بینینی ئەم مۆڵەتە، سەردانی nationalarchives.gov.uk/doc/open-government-licence/version/3 بکەن یان نامە بنووسە بۆ تیمی سیاسەتی زانیاری، ئەرشیفی نیشتمانی، کیو، لەندەن TW9 4DU، یان ئیمەیڵ: psi@ئnationalarchives.gov.uk.'
+ third_party: لەو شوێنانەی کە ئێمە هەر زانیارییەکی مافی کۆپیکردنی لایەنی سێیەممان دەستنیشان کردووە پێویستە مۆڵەت لە خاوەن مافی کۆپیکردنی پەیوەندیدار وەربگریت.
impact_assessment:
name:
one: هەڵسەنگاندنی کاریگەرییەکان
diff --git a/config/locales/ky.yml b/config/locales/ky.yml
index 7aa29f41cd..8c98bc2e8c 100644
--- a/config/locales/ky.yml
+++ b/config/locales/ky.yml
@@ -84,6 +84,9 @@ ky:
email_and_print_link: Электрондук каттарга жазылуу же бул баракчаны басып чыгаруу
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: Жарыяланды
+ updated: Жаңыртылды
nations:
england-and-wales:
england-and-wales_for:
@@ -389,6 +392,16 @@ ky:
guide:
pages_in_guide: Бул жетектемедеги баракчалар
skip_contents: Мазмунду өткөрүп жиберүү
+ html_publication:
+ name:
+ one:
+ other:
+ print_meta_data:
+ available_at: Бул жарыялоо %{url} сайтында жеткиликтүү
+ copyright: "© Crown copyright %{year}"
+ isbn: 'ISBN:'
+ licence_html: 'Бул басылма Ачык Өкмөт Лицензиясынын v3.0 шарттарына ылайык лицензияланган. Бул уруксаттаманы көрүү үчүн nationalarchives.gov.uk/doc/open-government-licence/version/3 вебсайтына баш багып же Маалыматтык саясат тобуна, Улуттук архивге, Кью, Лондон TW9 4DU жазып же электрондук катты бул дарекке жөнөтүңүз: psi@nationalarchives.gov.uk.'
+ third_party: Үчүнчү тараптын автордук укук маалыматын аныктаган учурда, сиз тиешелүү автордук укук ээлеринен уруксат алышыңыз керек болот.
impact_assessment:
name:
one: Таасирдин баалоосу
diff --git a/config/locales/lt.yml b/config/locales/lt.yml
index 6ff3ce133c..69a738c3fc 100644
--- a/config/locales/lt.yml
+++ b/config/locales/lt.yml
@@ -84,6 +84,9 @@ lt:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: publikuota
+ updated: atnaujinta
nations:
england-and-wales:
england-and-wales_for:
@@ -286,13 +289,13 @@ lt:
corporate_report:
name:
few:
- one:
- other:
+ one: Bendra ataskaita
+ other: Bendros ataskaitos
correspondence:
name:
few:
- one:
- other:
+ one: Korespondencija
+ other: Korespondencija
countryside_stewardship_grant:
name:
few:
@@ -301,8 +304,8 @@ lt:
decision:
name:
few:
- one:
- other:
+ one: Sprendimas
+ other: Sprendimai
detailed_guide:
name:
few:
@@ -362,13 +365,13 @@ lt:
foi_release:
name:
few:
- one:
- other:
+ one: 'Informacijos laisvė: pranešimas'
+ other: 'Informacijos laisvė: pranešimai'
form:
name:
few:
- one:
- other:
+ one: Forma
+ other: Formos
get_involved:
civil_service:
civil_service_quarterly:
@@ -415,16 +418,27 @@ lt:
guidance:
name:
few:
- one:
- other:
+ one: Informacija
+ other: Informacija
guide:
pages_in_guide: Puslapiai šiame vadove
skip_contents:
- impact_assessment:
+ html_publication:
name:
few:
one:
other:
+ print_meta_data:
+ available_at: Šis leidinys prieinamas %{url}
+ copyright: "© Karūnos autorių teisės %{year}"
+ isbn: 'ISBN:'
+ licence_html: 'Šis leidinys licencijuojamas laikantis atviros vyriausybės licencijos v3.0, nebent nurodyta kitaip. Norėdami peržiūrėti šią licenciją, apsilankykite nationalarchives.gov.uk/doc/open-government-licence/version/3 arba kreipkitės raštu į mūsų informacijos strategijos komandą adresu The National Archives, Kew, London TW9 4DU arba el. paštu: psi@nationalarchives.gov.uk.'
+ third_party: ei nustatėme trečiosios šalies autorių teisių informaciją, turėsite gauti atitinkamų autorių teisių savininkų leidimą.
+ impact_assessment:
+ name:
+ few:
+ one: Poveikio įvertinimas
+ other: Poveikio įvertinimai
imported:
name:
few:
@@ -433,8 +447,8 @@ lt:
independent_report:
name:
few:
- one:
- other:
+ one: Nepriklausoma ataskaita
+ other: Nepriklausomos ataskaitos
international_development_fund:
name:
few:
@@ -443,8 +457,8 @@ lt:
international_treaty:
name:
few:
- one:
- other:
+ one: Tarptautinė sutartis
+ other: Tarptautinės sutartys
licence:
change:
local_transaction:
@@ -524,8 +538,8 @@ lt:
map:
name:
few:
- one:
- other:
+ one: Žemėlapis
+ other: Žemėlapiai
medical_safety_alert:
name:
few:
@@ -539,8 +553,8 @@ lt:
national_statistics:
name:
few:
- one:
- other:
+ one: Statistika - nacionalinė statistika
+ other: Statistika - nacionalinė statistika
national_statistics_announcement:
name:
few:
@@ -559,8 +573,8 @@ lt:
notice:
name:
few:
- one:
- other:
+ one: Pranešimas
+ other: Pranešimai
official:
name:
few:
@@ -569,8 +583,8 @@ lt:
official_statistics:
name:
few:
- one:
- other:
+ one: Statistika
+ other: Statistika
official_statistics_announcement:
name:
few:
@@ -604,8 +618,8 @@ lt:
policy_paper:
name:
few:
- one:
- other:
+ one: Strategijos dokumentas
+ other: Strategijų dokumentai
press_release:
name:
few:
@@ -624,8 +638,8 @@ lt:
promotional:
name:
few:
- one:
- other:
+ one: Reklaminė medžiaga
+ other: Reklaminė medžiaga
publication:
details: Informacija
documents:
@@ -644,13 +658,13 @@ lt:
regulation:
name:
few:
- one:
- other:
+ one: Reglamentas
+ other: Reglamentai
research:
name:
few:
- one:
- other:
+ one: Tyrimas ir analizė
+ other: Tyrimai ir analizės
residential_property_tribunal_decision:
name:
few:
@@ -693,8 +707,8 @@ lt:
standard:
name:
few:
- one:
- other:
+ one: Standartas
+ other: Standartai
start_now:
statement_to_parliament:
name:
@@ -719,8 +733,8 @@ lt:
statutory_guidance:
name:
few:
- one:
- other:
+ one: Įstatyminė informacija
+ other: Įstatyminė informacija
tax_tribunal_decision:
name:
few:
@@ -741,8 +755,8 @@ lt:
transparency:
name:
few:
- one:
- other:
+ one: Skaidrumo informacija
+ other: Skaidrumo informacija
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: FCO pataria keliauti į skirtingas šalies vietas tik būtinais tikslais.
diff --git a/config/locales/lv.yml b/config/locales/lv.yml
index 18b837a546..110402ea9e 100644
--- a/config/locales/lv.yml
+++ b/config/locales/lv.yml
@@ -84,6 +84,9 @@ lv:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: publicēts
+ updated: atjaunināts
nations:
england-and-wales:
england-and-wales_for:
@@ -271,20 +274,20 @@ lv:
welsh_language_scheme_html: Vairāk par mūsu apņemšanos nodrošināt informācijas pieejamību %{link}.
corporate_report:
name:
- one:
- other:
+ one: Korporatīvais ziņojums
+ other: Korporatīvie ziņojumi
correspondence:
name:
- one:
- other:
+ one: Sarakste
+ other: Sarakstes
countryside_stewardship_grant:
name:
one:
other:
decision:
name:
- one:
- other:
+ one: Lēmums
+ other: Lēmumi
detailed_guide:
name:
one: Detalizētas norādes
@@ -334,12 +337,12 @@ lv:
valid_postcode_no_locations:
foi_release:
name:
- one:
- other:
+ one: Informācijas atklātības datu publicēšana
+ other: Informācijas atklātības datu publicēšana
form:
name:
- one:
- other:
+ one: Forma
+ other: Formas
get_involved:
civil_service:
civil_service_quarterly:
@@ -384,31 +387,41 @@ lv:
other: Valdības atbildes
guidance:
name:
- one:
- other:
+ one: Norādes
+ other: Norādes
guide:
pages_in_guide: Lapas šajā ceļvedī
skip_contents:
- impact_assessment:
+ html_publication:
name:
one:
other:
+ print_meta_data:
+ available_at: Šī publikācija ir pieejama vietnē %{url}
+ copyright: "© Britu sadraudzības autortiesības %{year}"
+ isbn: 'ISBN:'
+ licence_html: 'Šī publikācija ir licencēta saskaņā ar valsts izsniegtās atklātās licences v3.0 nosacījumiem, izņemot, ja norādīts citādi. Lai skatītu šo licenci, apmeklējiet nationalarchives.gov.uk/doc/open-government-licence/version/3 vai rakstiet uz adresi Information Policy Team, The National Archives, Kew, London TW9 4DU vai e-pasta adresi: psi@nationalarchives.gov.uk.'
+ third_party: Gadījumos, kur esam identificējuši trešo personu autortiesību informāciju, jums ir nepieciešams saņemt atļauju no attiecīgajiem autortiesību īpašniekiem.
+ impact_assessment:
+ name:
+ one: Ietekmes novērtējums
+ other: Ietekmes novērtējumi
imported:
name:
one:
other:
independent_report:
name:
- one:
- other:
+ one: Neatkarīgs ziņojums
+ other: Neatkarīgi ziņojumi
international_development_fund:
name:
one:
other:
international_treaty:
name:
- one:
- other:
+ one: Starptautiskais līgums
+ other: Starptautiskie līgumi
licence:
change:
local_transaction:
@@ -486,8 +499,8 @@ lv:
updates_title:
map:
name:
- one:
- other:
+ one: Karte
+ other: Kartes
medical_safety_alert:
name:
one:
@@ -498,8 +511,8 @@ lv:
other:
national_statistics:
name:
- one:
- other:
+ one: Statistika - valsts dati
+ other: Statistika - valsts dati
national_statistics_announcement:
name:
one:
@@ -514,16 +527,16 @@ lv:
other: Ziņas
notice:
name:
- one:
- other:
+ one: Paziņojums
+ other: Paziņojumi
official:
name:
one:
other:
official_statistics:
name:
- one:
- other:
+ one: Statistika
+ other: Statistika
official_statistics_announcement:
name:
one:
@@ -551,8 +564,8 @@ lv:
other:
policy_paper:
name:
- one:
- other:
+ one: Politikas dokuments
+ other: Politikas dokumenti
press_release:
name:
one: Paziņojums presei
@@ -567,8 +580,8 @@ lv:
other:
promotional:
name:
- one:
- other:
+ one: Reklāmas materiāls
+ other: Reklāmas materiāli
publication:
details: Detalizēta informācija
documents:
@@ -583,12 +596,12 @@ lv:
other:
regulation:
name:
- one:
- other:
+ one: Regula
+ other: Regulas
research:
name:
- one:
- other:
+ one: Izpēte un analīze
+ other: Izpēte un analīze
residential_property_tribunal_decision:
name:
one:
@@ -625,8 +638,8 @@ lv:
written_on: Uzrakstīts uz
standard:
name:
- one:
- other:
+ one: Standarts
+ other: Standarti
start_now:
statement_to_parliament:
name:
@@ -646,8 +659,8 @@ lv:
other:
statutory_guidance:
name:
- one:
- other:
+ one: Saistošās vadlīnijas
+ other: Saistošās vadlīnijas
tax_tribunal_decision:
name:
one:
@@ -665,8 +678,8 @@ lv:
other:
transparency:
name:
- one:
- other:
+ one: Atklātības dati
+ other: Atklātības dati
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: FCO iesaka izvairīties no jebkādas ceļošanas, izņemot neatliekamus braucienus uz noteiktām valsts daļām.
diff --git a/config/locales/ms.yml b/config/locales/ms.yml
index 0a6563515f..76e1380e22 100644
--- a/config/locales/ms.yml
+++ b/config/locales/ms.yml
@@ -84,6 +84,9 @@ ms:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: Diterbitkan
+ updated: Dikemas kini
nations:
england-and-wales:
england-and-wales_for:
@@ -257,16 +260,16 @@ ms:
welsh_language_scheme_html: Ketahui tentang komitmen kami kepada %{link}.
corporate_report:
name:
- other:
+ other: Laporan korporat
correspondence:
name:
- other:
+ other: Perwakilan
countryside_stewardship_grant:
name:
other:
decision:
name:
- other:
+ other: Keputusan
detailed_guide:
name:
other: Panduan
@@ -307,10 +310,10 @@ ms:
valid_postcode_no_locations:
foi_release:
name:
- other:
+ other: Hebahan Kebebasan Maklumat (FOI)
form:
name:
- other:
+ other: Borang
get_involved:
civil_service:
civil_service_quarterly:
@@ -354,25 +357,34 @@ ms:
other: Respons kerajaan
guidance:
name:
- other:
+ other: Panduan
guide:
pages_in_guide: Laman dalam panduan ini
skip_contents:
- impact_assessment:
+ html_publication:
name:
other:
+ print_meta_data:
+ available_at: Penerbitan ini tersedia di %{url}
+ copyright: "© Crown copyright %{year}"
+ isbn: 'Nombor Buku Standard Antarabangsa (ISBN):'
+ licence_html: 'Penerbitan ini dilesenkan di bawah terma Lesen Kerajaan Terbuka v3.0 kecuali dinyatakan sebaliknya. Untuk melihat lesen ini, lawati nationalarchives.gov.uk/doc/open-government-licence/version/3 atau tulis kepada Pasukan Dasar Maklumat, Arkib Negara, Kew, London TW9 4DU, atau e-mel: psi@nationalarchives.gov.uk.'
+ third_party: Di mana kami telah mengenal pasti mana-mana maklumat hak cipta pihak ketiga, anda perlu mendapatkan kebenaran daripada pemegang hak cipta tersebut.
+ impact_assessment:
+ name:
+ other: Penilaian impak
imported:
name:
other:
independent_report:
name:
- other:
+ other: Laporan bebas
international_development_fund:
name:
other:
international_treaty:
name:
- other:
+ other: Perjanjian antarabangsa
licence:
change:
local_transaction:
@@ -449,7 +461,7 @@ ms:
updates_title:
map:
name:
- other:
+ other: Peta
medical_safety_alert:
name:
other:
@@ -458,7 +470,7 @@ ms:
other:
national_statistics:
name:
- other:
+ other: Statistik Nasional
national_statistics_announcement:
name:
other:
@@ -470,13 +482,13 @@ ms:
other: Berita
notice:
name:
- other:
+ other: Notis
official:
name:
other:
official_statistics:
name:
- other:
+ other: Statistik Rasmi
official_statistics_announcement:
name:
other:
@@ -499,7 +511,7 @@ ms:
other:
policy_paper:
name:
- other:
+ other: Kertas dasar
press_release:
name:
other: Siaran akhbar
@@ -511,7 +523,7 @@ ms:
other:
promotional:
name:
- other:
+ other: Bahan promosi
publication:
details: Butiran
documents:
@@ -523,10 +535,10 @@ ms:
other:
regulation:
name:
- other:
+ other: Peraturan
research:
name:
- other:
+ other: Penyelidikan dan analisis
residential_property_tribunal_decision:
name:
other:
@@ -558,7 +570,7 @@ ms:
written_on: Ditulis pada
standard:
name:
- other:
+ other: Standard
start_now:
statement_to_parliament:
name:
@@ -574,7 +586,7 @@ ms:
other:
statutory_guidance:
name:
- other:
+ other: Panduan berkanun
tax_tribunal_decision:
name:
other:
@@ -590,7 +602,7 @@ ms:
other:
transparency:
name:
- other:
+ other: Data ketelusan
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: The FCO menasihati supaya tidak membuat perjalanan kecuali yang perlu sahaja ke bahagian-bahagian tertentu negara ini.
diff --git a/config/locales/mt.yml b/config/locales/mt.yml
index 0590051325..461e867ebc 100644
--- a/config/locales/mt.yml
+++ b/config/locales/mt.yml
@@ -84,6 +84,9 @@ mt:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: Ippubblikat
+ updated: Aġġornat
nations:
england-and-wales:
england-and-wales_for:
@@ -301,14 +304,14 @@ mt:
name:
few:
many:
- one:
- other:
+ one: Rapport korporattiv
+ other: Rapporti korporattivi
correspondence:
name:
few:
many:
- one:
- other:
+ one: Korrispondenza
+ other: Korrispondenzi
countryside_stewardship_grant:
name:
few:
@@ -319,8 +322,8 @@ mt:
name:
few:
many:
- one:
- other:
+ one: Deċiżjoni
+ other: Deċiżjonijiet
detailed_guide:
name:
few:
@@ -390,14 +393,14 @@ mt:
name:
few:
many:
- one:
- other:
+ one: Stqarrija tal-Libertà għall-Informazzjoni
+ other: Stqarrijiet tal-Libertà għall-Informazzjoni
form:
name:
few:
many:
- one:
- other:
+ one: Formola
+ other: Formoli
get_involved:
civil_service:
civil_service_quarterly:
@@ -446,17 +449,29 @@ mt:
name:
few:
many:
- one:
- other:
+ one: Gwida
+ other: Gwida
guide:
pages_in_guide: Paġni f'dan il-gwida
skip_contents:
- impact_assessment:
+ html_publication:
name:
few:
many:
one:
other:
+ print_meta_data:
+ available_at: Din il-pubblikazzjoni hija disponibbli fuq %{url}
+ copyright: "© Crown copyright %{year}"
+ isbn: 'ISBN:'
+ licence_html: 'Din il-publikazzjoni hija liċenzjata taħt it-termini tal-Liċenzja ta'' Gvern Miftuħ v3.0 sakemm ma jkunx hemm xi ħaġa oħra miktuba. Biex tara din il-liċenzja, żur nationalarchives.gov.uk/doc/open-government-licence/version/3 jew ikteb lit-tim tal-politika dwar l-informazzjoni, l-Arkivji Nazzjoni, Kew, Londra TW9 4DU, jew ibgħat imejl: psi@nationalarchives.gov.uk.'
+ third_party: Fejn inkunu identifikajna informazzjoni tal-copyright minn parti terza, aħna ser ninfurmawk biex iġġib permess mid-detenturi tal-copyright ikkonċernati.
+ impact_assessment:
+ name:
+ few:
+ many:
+ one: Assessjar tal-impatt
+ other: Assessjar tal-impatt
imported:
name:
few:
@@ -467,8 +482,8 @@ mt:
name:
few:
many:
- one:
- other:
+ one: Rapport indipendenti
+ other: Rapporti indipendenti
international_development_fund:
name:
few:
@@ -479,8 +494,8 @@ mt:
name:
few:
many:
- one:
- other:
+ one: Trattat internazzjonali
+ other: Trattati internazzjonali
licence:
change:
local_transaction:
@@ -562,8 +577,8 @@ mt:
name:
few:
many:
- one:
- other:
+ one: Mappa
+ other: Mapep
medical_safety_alert:
name:
few:
@@ -580,8 +595,8 @@ mt:
name:
few:
many:
- one:
- other:
+ one: Statistiċi nazzjonali
+ other: Statistiċi nazzjonali
national_statistics_announcement:
name:
few:
@@ -604,8 +619,8 @@ mt:
name:
few:
many:
- one:
- other:
+ one: Avviż
+ other: Avviżi
official:
name:
few:
@@ -616,8 +631,8 @@ mt:
name:
few:
many:
- one:
- other:
+ one: Statistiċi uffiċjali
+ other: Statistiċi uffiċjali
official_statistics_announcement:
name:
few:
@@ -657,8 +672,8 @@ mt:
name:
few:
many:
- one:
- other:
+ one: Dokument tal-Politika
+ other: Dokumenti tal-Politika
press_release:
name:
few:
@@ -681,8 +696,8 @@ mt:
name:
few:
many:
- one:
- other:
+ one: Materjal promozzjonali
+ other: Materjal promozzjonali
publication:
details: Dettalji
documents:
@@ -705,14 +720,14 @@ mt:
name:
few:
many:
- one:
- other:
+ one: Regolament
+ other: Regolamenti
research:
name:
few:
many:
- one:
- other:
+ one: Riċerka u analiżi
+ other: Riċerka u analiżi
residential_property_tribunal_decision:
name:
few:
@@ -761,8 +776,8 @@ mt:
name:
few:
many:
- one:
- other:
+ one: Standard
+ other: Standards
start_now:
statement_to_parliament:
name:
@@ -792,8 +807,8 @@ mt:
name:
few:
many:
- one:
- other:
+ one: Gwida statutorja
+ other: Gwida statutorja
tax_tribunal_decision:
name:
few:
@@ -817,8 +832,8 @@ mt:
name:
few:
many:
- one:
- other:
+ one: Dejta dwar it-trasparenza
+ other: Dejta dwar it-trasparenza
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: Il- FCO jirrakkomanda li ma jsiru l-ebda vjaġġi ħlief dawk essenzjali.
diff --git a/config/locales/ne.yml b/config/locales/ne.yml
index fec47a0117..a936db1376 100644
--- a/config/locales/ne.yml
+++ b/config/locales/ne.yml
@@ -84,6 +84,9 @@ ne:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: प्रकाशित
+ updated: अद्यावधिक गरियो
nations:
england-and-wales:
england-and-wales_for:
@@ -271,20 +274,20 @@ ne:
welsh_language_scheme_html: "%{link} को हाम्रो प्रतिबद्धताको बारेमा जानकारी पाउनुहोस्।"
corporate_report:
name:
- one:
- other:
+ one: निगम प्रतिवेदन
+ other: निगम प्रतिवेदनहरू
correspondence:
name:
- one:
- other:
+ one: पत्राचार
+ other: पत्राचारहरू
countryside_stewardship_grant:
name:
one:
other:
decision:
name:
- one:
- other:
+ one: निर्णय
+ other: निर्णयहरु
detailed_guide:
name:
one: मार्गदर्शन
@@ -334,12 +337,12 @@ ne:
valid_postcode_no_locations:
foi_release:
name:
- one:
- other:
+ one: जानकारीको स्वतन्त्रता विज्ञप्ति
+ other: जानकारीको स्वतन्त्रता विज्ञप्तिहरू
form:
name:
- one:
- other:
+ one: फारम
+ other: फारमहरु
get_involved:
civil_service:
civil_service_quarterly:
@@ -384,31 +387,41 @@ ne:
other: सरकारको प्रतिक्रियाहरू
guidance:
name:
- one:
- other:
+ one: मार्गदर्शन
+ other: मार्गदर्शन
guide:
pages_in_guide: यस गाइडका पृष्ठहरू
skip_contents:
- impact_assessment:
+ html_publication:
name:
one:
other:
+ print_meta_data:
+ available_at: यो प्रकाशन %{url} मा उपलब्ध छ
+ copyright: "© क्राउन प्रतिलिपि अधिकार %{year}"
+ isbn: 'ISBN:'
+ licence_html: 'यो प्रकाशन कुनै ठाउँमा तोकिएको बाहेक खुला सरकार इजाजतपत्र v3.0 को शर्तहरु अन्तर्गत इजाजतपत्र प्राप्त छ। यो इजाजतपत्र हेर्नको लागी nationalarchives.gov.uk/doc/open-government-licence/version/3 मा जानुहोस् वा सूचना नीति टोलि, राष्ट्रिय अभिलेखालय, किउ, लन्डन TW9 4DU मा पत्र लेख्नुहोस् वा ईमेल पठाउनुहोस्: psi@nationalarchives.gov.uk.'
+ third_party: यदि हामीले कुनै तेस्रो पक्ष प्रतिलिपि अधिकार जानकारीको पहिचान गरेका छौं भने तपाईंले सम्बन्धित प्रतिलिपि अधिकार धारकहरु बाट अनुमति प्राप्त गर्न आवश्यक छ।
+ impact_assessment:
+ name:
+ one: प्रभाव मूल्यांकन
+ other: प्रभाव मूल्यांकनहरू
imported:
name:
one:
other:
independent_report:
name:
- one:
- other:
+ one: स्वतन्त्र प्रतिवेदन
+ other: स्वतन्त्र प्रतिवेदनहरू
international_development_fund:
name:
one:
other:
international_treaty:
name:
- one:
- other:
+ one: अन्तर्राष्ट्रिय सन्धि
+ other: अन्तर्राष्ट्रिय सन्धिहरु
licence:
change:
local_transaction:
@@ -486,8 +499,8 @@ ne:
updates_title:
map:
name:
- one:
- other:
+ one: नक्शा
+ other: नक्साहरू
medical_safety_alert:
name:
one:
@@ -498,8 +511,8 @@ ne:
other:
national_statistics:
name:
- one:
- other:
+ one: राष्ट्रिय तथ्याङ्क
+ other: राष्ट्रिय तथ्याङ्क
national_statistics_announcement:
name:
one:
@@ -514,16 +527,16 @@ ne:
other: समाचार कथाहरु
notice:
name:
- one:
- other:
+ one: सूचना
+ other: सूचनाहरु
official:
name:
one:
other:
official_statistics:
name:
- one:
- other:
+ one: आधिकारिक तथ्याङ्क
+ other: आधिकारिक तथ्याङ्क
official_statistics_announcement:
name:
one:
@@ -551,8 +564,8 @@ ne:
other:
policy_paper:
name:
- one:
- other:
+ one: नीति पत्र
+ other: नीति पत्रहरू
press_release:
name:
one: प्रेस विज्ञप्ति
@@ -567,8 +580,8 @@ ne:
other:
promotional:
name:
- one:
- other:
+ one: प्रचार सामग्री
+ other: प्रचार सामग्री
publication:
details: विवरण
documents:
@@ -583,12 +596,12 @@ ne:
other:
regulation:
name:
- one:
- other:
+ one: नियम
+ other: नियमहरु
research:
name:
- one:
- other:
+ one: अनुसन्धान र विश्लेषण
+ other: अनुसन्धान र विश्लेषण
residential_property_tribunal_decision:
name:
one:
@@ -625,8 +638,8 @@ ne:
written_on: मा लेखिएको छ
standard:
name:
- one:
- other:
+ one: मानक
+ other: मानकहरू
start_now:
statement_to_parliament:
name:
@@ -646,8 +659,8 @@ ne:
other:
statutory_guidance:
name:
- one:
- other:
+ one: वैधानिक मार्गदर्शन
+ other: वैधानिक मार्गदर्शन
tax_tribunal_decision:
name:
one:
@@ -665,8 +678,8 @@ ne:
other:
transparency:
name:
- one:
- other:
+ one: पारदर्शिता जानकारी
+ other: पारदर्शिता जानकारी
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: विदेश, राष्ट्रमंडल र विकास कार्यालय ले जरूरी यात्रा बाहेक देशको केहि भागमा सबै यात्रा बिरूद्ध सल्लाह दिएको छ।
diff --git a/config/locales/nl.yml b/config/locales/nl.yml
index f82589839c..0b9651d521 100644
--- a/config/locales/nl.yml
+++ b/config/locales/nl.yml
@@ -84,6 +84,9 @@ nl:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: Gepubliceerd
+ updated: Bijgewerkt
nations:
england-and-wales:
england-and-wales_for:
@@ -271,20 +274,20 @@ nl:
welsh_language_scheme_html: Lees meer over onze inzet voor %{link}.
corporate_report:
name:
- one:
- other:
+ one: Ondernemingsverslag
+ other: Bedrijfsverslagen
correspondence:
name:
- one:
- other:
+ one: Correspondentie
+ other: Correspondentie
countryside_stewardship_grant:
name:
one:
other:
decision:
name:
- one:
- other:
+ one: Besluit
+ other: Besluiten
detailed_guide:
name:
one: Richtsnoer
@@ -334,12 +337,12 @@ nl:
valid_postcode_no_locations:
foi_release:
name:
- one:
- other:
+ one: Vrijheid van informatie-vrijgave
+ other: Vrijheid van informatie-vrijgaven
form:
name:
- one:
- other:
+ one: Formulier
+ other: Formulieren
get_involved:
civil_service:
civil_service_quarterly:
@@ -384,31 +387,41 @@ nl:
other: Overheidsantwoorden
guidance:
name:
- one:
- other:
+ one: Richtlijn
+ other: Richtlijn
guide:
pages_in_guide: Pagina's in deze gids
skip_contents:
- impact_assessment:
+ html_publication:
name:
one:
other:
+ print_meta_data:
+ available_at: Deze publicatie is beschikbaar op %{url}
+ copyright: "© Crown copyright %{year}"
+ isbn: 'ISBN:'
+ licence_html: 'Voor deze publicatie is een licentie verleend onder de voorwaarden van de Open Overheidslicentie v3.0, tenzij anders vermeld. Om deze licentie te bekijken, ga naar nationalarchives.gov.uk/doc/open-government-licence/version/3 of schrijf naar het Informatiebeleidsteam, The National Archives, Kew, Londen TW9 4DU, of stuur een e-mail: psi@nationalarchives.gov.uk.'
+ third_party: Als we auteursrechtinformatie van derden hebben geïdentificeerd, moet u toestemming vragen aan de betrokken auteursrechthebbenden.
+ impact_assessment:
+ name:
+ one: Effectbeoordeling
+ other: Effectbeoordelingen
imported:
name:
one:
other:
independent_report:
name:
- one:
- other:
+ one: Onafhankelijk rapport
+ other: Onafhankelijke rapporten
international_development_fund:
name:
one:
other:
international_treaty:
name:
- one:
- other:
+ one: Internationaal verdrag
+ other: Internationale verdragen
licence:
change:
local_transaction:
@@ -486,8 +499,8 @@ nl:
updates_title:
map:
name:
- one:
- other:
+ one: Kaart
+ other: Kaarten
medical_safety_alert:
name:
one:
@@ -498,8 +511,8 @@ nl:
other:
national_statistics:
name:
- one:
- other:
+ one: Nationale statistieken
+ other: Nationale statistieken
national_statistics_announcement:
name:
one:
@@ -514,16 +527,16 @@ nl:
other: Nieuwsberichten
notice:
name:
- one:
- other:
+ one: Mededeling
+ other: Mededelingen
official:
name:
one:
other:
official_statistics:
name:
- one:
- other:
+ one: Officiële statistieken
+ other: Officiële statistieken
official_statistics_announcement:
name:
one:
@@ -551,8 +564,8 @@ nl:
other:
policy_paper:
name:
- one:
- other:
+ one: Beleidsnota
+ other: Beleidsnota's
press_release:
name:
one: Persbericht
@@ -567,8 +580,8 @@ nl:
other:
promotional:
name:
- one:
- other:
+ one: Promotiemateriaal
+ other: Promotiemateriaal
publication:
details: Details
documents:
@@ -583,12 +596,12 @@ nl:
other:
regulation:
name:
- one:
- other:
+ one: Regelgeving
+ other: Regelgeving
research:
name:
- one:
- other:
+ one: Onderzoek en analyse
+ other: Onderzoek en analyse
residential_property_tribunal_decision:
name:
one:
@@ -625,8 +638,8 @@ nl:
written_on: Geschreven op
standard:
name:
- one:
- other:
+ one: Standaard
+ other: Standaarden
start_now:
statement_to_parliament:
name:
@@ -646,8 +659,8 @@ nl:
other:
statutory_guidance:
name:
- one:
- other:
+ one: Statutaire richtsnoeren
+ other: Statutaire richtsnoeren
tax_tribunal_decision:
name:
one:
@@ -665,8 +678,8 @@ nl:
other:
transparency:
name:
- one:
- other:
+ one: Transparantiegegevens
+ other: Transparantiegegevens
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: Het FCO raadt alle, behalve essentiële, reizen naar delen van het land af.
diff --git a/config/locales/no.yml b/config/locales/no.yml
index 3ade470f04..d6cf7876a5 100644
--- a/config/locales/no.yml
+++ b/config/locales/no.yml
@@ -84,6 +84,9 @@
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: Publisert
+ updated: Oppdatert
nations:
england-and-wales:
england-and-wales_for:
@@ -271,20 +274,20 @@
welsh_language_scheme_html: Finn ut mer om vårt engasjement for %{link}.
corporate_report:
name:
- one:
- other:
+ one: Bedriftsrapport
+ other: Bedriftsrapporter
correspondence:
name:
- one:
- other:
+ one: Korrespondanse
+ other: Korrespondanser
countryside_stewardship_grant:
name:
one:
other:
decision:
name:
- one:
- other:
+ one: Beslutning
+ other: Beslutninger
detailed_guide:
name:
one: Veiledning
@@ -334,12 +337,12 @@
valid_postcode_no_locations:
foi_release:
name:
- one:
- other:
+ one: Informasjonsfrihetstillatelse
+ other: Informasjonsfrihetstillatelser
form:
name:
- one:
- other:
+ one: Skjema
+ other: Skjemaer
get_involved:
civil_service:
civil_service_quarterly:
@@ -384,31 +387,41 @@
other: Myndighetenes svar
guidance:
name:
- one:
- other:
+ one: Veiledning
+ other: Veiledning
guide:
pages_in_guide: Sider i denne veiledningen
skip_contents:
- impact_assessment:
+ html_publication:
name:
one:
other:
+ print_meta_data:
+ available_at: Denne publikasjonen er tilgjengelig på %{url}
+ copyright: "© Crown copyright %{year}"
+ isbn: 'ISBN:'
+ licence_html: 'Denne publikasjonen er lisensiert under vilkårene i Open Government License v3.0 med mindre annet er angitt. For å se denne lisensen, besøk nationalarchives.gov.uk/doc/open-government-licence/version/3 eller skriv til Information Policy Team, National Archives, Kew, London TW9 4DU, eller e-post: psi@nationalarchives.gov.uk.'
+ third_party: Der vi har identifisert opphavsrettsinformasjon fra tredjepart, må du få tillatelse fra berørte opphavsrettsinnehavere.
+ impact_assessment:
+ name:
+ one: Konsekvensutredning
+ other: Konsekvensanalyser
imported:
name:
one:
other:
independent_report:
name:
- one:
- other:
+ one: Uavhengig rapport
+ other: Uavhengige rapporter
international_development_fund:
name:
one:
other:
international_treaty:
name:
- one:
- other:
+ one: Internasjonal traktat
+ other: Internasjonale traktater
licence:
change:
local_transaction:
@@ -486,8 +499,8 @@
updates_title:
map:
name:
- one:
- other:
+ one: Kart
+ other: Kart
medical_safety_alert:
name:
one:
@@ -498,8 +511,8 @@
other:
national_statistics:
name:
- one:
- other:
+ one: Nasjonal statistikk
+ other: Nasjonal statistikk
national_statistics_announcement:
name:
one:
@@ -514,16 +527,16 @@
other: Nyheter
notice:
name:
- one:
- other:
+ one: Merknad
+ other: Merknader
official:
name:
one:
other:
official_statistics:
name:
- one:
- other:
+ one: Offisiell statistikk
+ other: Offisiell statistikk
official_statistics_announcement:
name:
one:
@@ -551,8 +564,8 @@
other:
policy_paper:
name:
- one:
- other:
+ one: Skriv om retningslinjer
+ other: Skriv om retningslinjer
press_release:
name:
one: Pressemelding
@@ -567,8 +580,8 @@
other:
promotional:
name:
- one:
- other:
+ one: Reklamemateriell
+ other: Reklamemateriell
publication:
details: Detaljer
documents:
@@ -583,12 +596,12 @@
other:
regulation:
name:
- one:
- other:
+ one: Forskrift
+ other: Forskrifter
research:
name:
- one:
- other:
+ one: Forskning og analyse
+ other: Forskning og analyse
residential_property_tribunal_decision:
name:
one:
@@ -625,8 +638,8 @@
written_on: Skrevet på
standard:
name:
- one:
- other:
+ one: Standard
+ other: Standarder
start_now:
statement_to_parliament:
name:
@@ -646,8 +659,8 @@
other:
statutory_guidance:
name:
- one:
- other:
+ one: Lovpålagt veiledning
+ other: Lovpålagt veiledning
tax_tribunal_decision:
name:
one:
@@ -665,8 +678,8 @@
other:
transparency:
name:
- one:
- other:
+ one: Åpenhetsdata
+ other: Åpenhetsdata
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: FCO fraråder alle reiser, unntatt viktige reiser, til deler av landet.
diff --git a/config/locales/pa-pk.yml b/config/locales/pa-pk.yml
index 7a9428255a..36dffd95b9 100644
--- a/config/locales/pa-pk.yml
+++ b/config/locales/pa-pk.yml
@@ -84,6 +84,9 @@ pa-pk:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: شائع ہویا
+ updated: تازہ ترین حال
nations:
england-and-wales:
england-and-wales_for:
@@ -271,20 +274,20 @@ pa-pk:
welsh_language_scheme_html: ساڈی وابستگی دے بارے جانو %{link}.
corporate_report:
name:
- one:
- other:
+ one: کاروبار دی رپورٹ
+ other: کاروبار دیاں رپورٹاں
correspondence:
name:
- one:
- other:
+ one: خط وکتابت
+ other: خط وکتابت
countryside_stewardship_grant:
name:
one:
other:
decision:
name:
- one:
- other:
+ one: فیصلہ
+ other: فیصلے
detailed_guide:
name:
one: 'رہنمائی '
@@ -334,12 +337,12 @@ pa-pk:
valid_postcode_no_locations:
foi_release:
name:
- one:
- other:
+ one: فریڈم آف انفارمیشن جاری کرنا
+ other: فریڈم آف انفارمیشن جاری کرنا
form:
name:
- one:
- other:
+ one: 'فارم '
+ other: فارمز
get_involved:
civil_service:
civil_service_quarterly:
@@ -384,31 +387,41 @@ pa-pk:
other: حکومت دے جوابات
guidance:
name:
- one:
- other:
+ one: رہنمائی
+ other: 'رہنمائی '
guide:
pages_in_guide: ایس ہدایت نامے وچ ورقے
skip_contents:
- impact_assessment:
+ html_publication:
name:
one:
other:
+ print_meta_data:
+ available_at: ایہ اشاعت ایتھے موجود اے %{url}
+ copyright: "%{year}© کراؤن کاپی رائٹ"
+ isbn: 'ISBN:'
+ licence_html: 'ایہ اشاعت نوں حکومت دے لائسنس وی 3۔0 دی شرائط دے تحت لائسنس ملیا اے سوائے اُس تھاں جتھے ایس توں علاوہ ہور کُج لکھیا اے۔ ایس لائسنس نوں ویکھن لئی ایہ ملاحظہ کرو۔ , visit nationalarchives.gov.uk/doc/open-government-licence/version/3 or write to the Information Policy Team, The National Archives, Kew, London TW9 4DU, or email: psi@nationalarchives.gov.uk.'
+ third_party: "جتھے اسی تیجے بندے دی کاپی رائٹ دی معلومات دی شناخت کراں گے تے تہانوں اُس کاپی رائٹ دے مالک توں اجازت لینا \nہوؤئے گی۔"
+ impact_assessment:
+ name:
+ one: اثر دی جانچ
+ other: اثر دی جانچ
imported:
name:
one:
other:
independent_report:
name:
- one:
- other:
+ one: خودمُختار رپورٹ
+ other: خودمُختار رپورٹس
international_development_fund:
name:
one:
other:
international_treaty:
name:
- one:
- other:
+ one: بین الاقوامی معاہدہ
+ other: بین الاقوامی معایدے
licence:
change:
local_transaction:
@@ -486,8 +499,8 @@ pa-pk:
updates_title:
map:
name:
- one:
- other:
+ one: نقشہ
+ other: نقشے
medical_safety_alert:
name:
one:
@@ -498,8 +511,8 @@ pa-pk:
other:
national_statistics:
name:
- one:
- other:
+ one: قومی اعدادوشمار
+ other: قومی اعدادوشمار
national_statistics_announcement:
name:
one:
@@ -514,16 +527,16 @@ pa-pk:
other: خبراں دیاں کہانیاں
notice:
name:
- one:
- other:
+ one: نوٹس
+ other: ںوٹسز
official:
name:
one:
other:
official_statistics:
name:
- one:
- other:
+ one: سرکاری اعدادوشمار
+ other: سرکاری اعدادوشمار
official_statistics_announcement:
name:
one:
@@ -551,8 +564,8 @@ pa-pk:
other:
policy_paper:
name:
- one:
- other:
+ one: حکمت عملی دا کاغذ
+ other: حکمتِ عملی دے کاغذات
press_release:
name:
one: خبراں دینا
@@ -567,8 +580,8 @@ pa-pk:
other:
promotional:
name:
- one:
- other:
+ one: اشتہاری مواد
+ other: اشتہاری مواد
publication:
details: تفصیلات
documents:
@@ -583,12 +596,12 @@ pa-pk:
other:
regulation:
name:
- one:
- other:
+ one: قانون
+ other: قوانین
research:
name:
- one:
- other:
+ one: 'کھوج تے تجزیہ '
+ other: 'کھوج تے تجزیہ '
residential_property_tribunal_decision:
name:
one:
@@ -625,8 +638,8 @@ pa-pk:
written_on: ایس تے لکھیا گیا
standard:
name:
- one:
- other:
+ one: سٹینڈرڈ
+ other: سٹینڈرڈز
start_now:
statement_to_parliament:
name:
@@ -646,8 +659,8 @@ pa-pk:
other:
statutory_guidance:
name:
- one:
- other:
+ one: قانونی رہنمائی
+ other: قانونی رہنمائی
tax_tribunal_decision:
name:
one:
@@ -665,8 +678,8 @@ pa-pk:
other:
transparency:
name:
- one:
- other:
+ one: شفافیت دے اعدادوشمار
+ other: شفافیت دے اعدادوشمار
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: ایہFCO مُلک دے سارے علاقیاں وچ ضروری سفر کرن لئی کیتی گئی نصحیت۔
diff --git a/config/locales/pa.yml b/config/locales/pa.yml
index 66fa24f07d..477201b222 100644
--- a/config/locales/pa.yml
+++ b/config/locales/pa.yml
@@ -84,6 +84,9 @@ pa:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: ਪ੍ਰਕਾਸ਼ਿਤ
+ updated: ਅੱਪਡੇਟ ਕੀਤਾ
nations:
england-and-wales:
england-and-wales_for:
@@ -271,20 +274,20 @@ pa:
welsh_language_scheme_html: "%{link} ਪ੍ਰਤੀ ਸਾਡੀ ਵਚਨਬੱਧਤਾ ਬਾਰੇ ਜਾਣੋ।"
corporate_report:
name:
- one:
- other:
+ one: ਕਾਰਪੋਰੇਟ ਰਿਪੋਰਟ
+ other: ਕਾਰਪੋਰੇਟ ਰਿਪੋਰਟਾਂ
correspondence:
name:
- one:
- other:
+ one: ਪੱਤਰ -ਵਿਹਾਰ
+ other: ਪੱਤਰ -ਵਿਹਾਰ
countryside_stewardship_grant:
name:
one:
other:
decision:
name:
- one:
- other:
+ one: ਫੈਸਲਾ
+ other: ਫੈਸਲੇ
detailed_guide:
name:
one: ਸੇਧ
@@ -334,12 +337,12 @@ pa:
valid_postcode_no_locations:
foi_release:
name:
- one:
- other:
+ one: FOI ਰਿਲੀਜ਼
+ other: FOI ਰਿਲੀਜ਼
form:
name:
- one:
- other:
+ one: ਫਾਰਮ
+ other: ਫਾਰਮ
get_involved:
civil_service:
civil_service_quarterly:
@@ -384,31 +387,41 @@ pa:
other: ਸਰਕਾਰ ਦੇ ਜਵਾਬ
guidance:
name:
- one:
- other:
+ one: ਸੇਧ
+ other: ਸੇਧ
guide:
pages_in_guide: ਇਸ ਗਾਈਡ ਦੇ ਪੰਨੇ
skip_contents:
- impact_assessment:
+ html_publication:
name:
one:
other:
+ print_meta_data:
+ available_at: ਇਹ ਪ੍ਰਕਾਸ਼ਨ %{url} ਤੇ ਉਪਲਬਧ ਹੈ
+ copyright: "©ਕ੍ਰਾਊਨ ਕਾਪੀਰਾਈਟ %{year}"
+ isbn: 'ISBN:'
+ licence_html: 'ਇਹ ਪ੍ਰਕਾਸ਼ਨ ਓਪਨ ਗਵਰਨਮੈਂਟ ਲਾਇਸੈਂਸ v3.0 ਦੀਆਂ ਸ਼ਰਤਾਂ ਦੇ ਅਧੀਨ ਲਾਇਸੈਂਸਸ਼ੁਦਾ ਹੈ, ਸਿਵਾਏ ਜਿੱਥੇ ਹੋਰ ਨਹੀਂ ਕਿਹਾ ਗਿਆ ਹੈ। ਇਸ ਲਾਇਸੈਂਸ ਨੂੰ ਦੇਖਣ ਲਈ, nationalarchives.gov.uk/doc/open-government-licence/version/3 ਜਾਂ ਸੂਚਨਾ ਨੀਤੀ ਟੀਮ, ਦਿ ਨੈਸ਼ਨਲ ਆਰਕਾਈਵਜ਼, ਕੇਵ, ਲੰਡਨ TW9 4DU, ਜਾਂ ਈਮੇਲ ਨੂੰ ਲਿਖੋ: psi@nationalarchives.gov.uk।'
+ third_party: ਜਿੱਥੇ ਅਸੀਂ ਕਿਸੇ ਤੀਜੀ ਧਿਰ ਦੀ ਕਾਪੀਰਾਈਟ ਜਾਣਕਾਰੀ ਦੀ ਪਛਾਣ ਕੀਤੀ ਹੈ ਤੁਹਾਨੂੰ ਸਬੰਧਤ ਕਾਪੀਰਾਈਟ ਧਾਰਕਾਂ ਤੋਂ ਇਜਾਜ਼ਤ ਲੈਣ ਦੀ ਜ਼ਰੂਰਤ ਹੋਏਗੀ।
+ impact_assessment:
+ name:
+ one: ਪ੍ਰਭਾਵ ਮੁਲਾਂਕਣ
+ other: ਪ੍ਰਭਾਵ ਮੁਲਾਂਕਣ
imported:
name:
one:
other:
independent_report:
name:
- one:
- other:
+ one: ਸੁਤੰਤਰ ਰਿਪੋਰਟ
+ other: ਸੁਤੰਤਰ ਰਿਪੋਰਟਾਂ
international_development_fund:
name:
one:
other:
international_treaty:
name:
- one:
- other:
+ one: ਅੰਤਰਰਾਸ਼ਟਰੀ ਸੰਧੀ
+ other: ਅੰਤਰਰਾਸ਼ਟਰੀ ਸੰਧੀਆਂ
licence:
change:
local_transaction:
@@ -486,8 +499,8 @@ pa:
updates_title:
map:
name:
- one:
- other:
+ one: ਨਕਸ਼ਾ
+ other: ਨਕਸ਼ੇ
medical_safety_alert:
name:
one:
@@ -498,8 +511,8 @@ pa:
other:
national_statistics:
name:
- one:
- other:
+ one: ਰਾਸ਼ਟਰੀ ਅੰਕੜੇ
+ other: ਰਾਸ਼ਟਰੀ ਅੰਕੜੇ
national_statistics_announcement:
name:
one:
@@ -514,16 +527,16 @@ pa:
other: ਖ਼ਬਰਾਂ ਦੀਆਂ ਕਹਾਣੀਆਂ
notice:
name:
- one:
- other:
+ one: ਨੋਟਿਸ
+ other: ਨੋਟਿਸ
official:
name:
one:
other:
official_statistics:
name:
- one:
- other:
+ one: ਅਧਿਕਾਰਤ ਅੰਕੜੇ
+ other: ਅਧਿਕਾਰਤ ਅੰਕੜੇ
official_statistics_announcement:
name:
one:
@@ -551,8 +564,8 @@ pa:
other:
policy_paper:
name:
- one:
- other:
+ one: ਨੀਤੀ ਪੇਪਰ
+ other: ਨੀਤੀ ਦੇ ਕਾਗਜ਼
press_release:
name:
one: ਪੱਤਰਕਾਰਾਂ ਨੂੰ ਦਿੱਤੀ ਗਈ ਅਧਕਾਰਿਤ ਰਿਪੋਰਟ
@@ -567,8 +580,8 @@ pa:
other:
promotional:
name:
- one:
- other:
+ one: ਪ੍ਰਚਾਰ ਸਮੱਗਰੀ
+ other: ਪ੍ਰਚਾਰ ਸਮੱਗਰੀ
publication:
details: ਵੇਰਵੇ
documents:
@@ -583,12 +596,12 @@ pa:
other:
regulation:
name:
- one:
- other:
+ one: ਨਿਯਮ
+ other: ਨਿਯਮ
research:
name:
- one:
- other:
+ one: ਖੋਜ ਅਤੇ ਵਿਸ਼ਲੇਸ਼ਣ
+ other: ਖੋਜ ਅਤੇ ਵਿਸ਼ਲੇਸ਼ਣ
residential_property_tribunal_decision:
name:
one:
@@ -625,8 +638,8 @@ pa:
written_on: "'ਤੇ ਲਿਖਿਆ ਗਿਆ"
standard:
name:
- one:
- other:
+ one: ਮਿਆਰੀ
+ other: ਮਿਆਰ
start_now:
statement_to_parliament:
name:
@@ -646,8 +659,8 @@ pa:
other:
statutory_guidance:
name:
- one:
- other:
+ one: ਕਨੂੰਨੀ ਸੇਧ
+ other: ਕਨੂੰਨੀ ਸੇਧ
tax_tribunal_decision:
name:
one:
@@ -665,8 +678,8 @@ pa:
other:
transparency:
name:
- one:
- other:
+ one: ਪਾਰਦਰਸ਼ਤਾ ਡਾਟਾ
+ other: ਪਾਰਦਰਸ਼ਤਾ ਡਾਟਾ
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: FCO ਦੇਸ਼ ਦੇ ਕੁਝ ਹਿੱਸਿਆਂ ਦੀ ਜ਼ਰੂਰੀ ਯਾਤਰਾ ਨੂੰ ਛੱਡ ਕੇ ਬਾਕੀ ਦੇ ਵਿਰੁੱਧ ਸਲਾਹ ਦਿੰਦਾ ਹੈ।
diff --git a/config/locales/pl.yml b/config/locales/pl.yml
index 6cc39bfe30..60cdbcaadf 100644
--- a/config/locales/pl.yml
+++ b/config/locales/pl.yml
@@ -84,6 +84,9 @@ pl:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: Opublikowano
+ updated: Zaktualizowano
nations:
england-and-wales:
england-and-wales_for:
@@ -301,14 +304,14 @@ pl:
name:
few:
many:
- one:
- other:
+ one: Raport korporacyjny
+ other: Raporty korporacyjne
correspondence:
name:
few:
many:
- one:
- other:
+ one: Korespondencja
+ other: Korespondencje
countryside_stewardship_grant:
name:
few:
@@ -319,8 +322,8 @@ pl:
name:
few:
many:
- one:
- other:
+ one: Decyzja
+ other: Decyzje
detailed_guide:
name:
few:
@@ -390,14 +393,14 @@ pl:
name:
few:
many:
- one:
- other:
+ one: Informacja zgodnie z ustawą o wolnosci informacji
+ other: Informacje zgodnie z ustawą o wolności informacji
form:
name:
few:
many:
- one:
- other:
+ one: Formularz
+ other: Formularze
get_involved:
civil_service:
civil_service_quarterly:
@@ -446,17 +449,29 @@ pl:
name:
few:
many:
- one:
- other:
+ one: Wskazówki
+ other: Wskazówki
guide:
pages_in_guide: Strony w tym przewodniku
skip_contents:
- impact_assessment:
+ html_publication:
name:
few:
many:
one:
other:
+ print_meta_data:
+ available_at: Ta publikacja jest dostępna pod adresem %{url}
+ copyright: "© Właścicielem praw autorskich jest Korona %{year}"
+ isbn: 'ISBN:'
+ licence_html: 'Niniejsza publikacja jest objęta licencją Open Government Licence v3.0, chyba że zaznaczono inaczej. Aby zapoznać się z tą licencją, odwiedź nationalarchives.gov.uk/doc/open-government-licence/version/3 lub napisz do Zespołu ds. Polityki Informacyjnej, Archiwum Narodowe, Kew, Londyn TW9 4DU, lub wyślij wiadomość e-mail: psi@nationalarchives.gov.uk.'
+ third_party: W przypadku, gdy podano jakiekolwiek informacje o prawach autorskich stron trzecich, musisz uzyskać pozwolenie od stosownych właścicieli praw autorskich.
+ impact_assessment:
+ name:
+ few:
+ many:
+ one: Ocena oddziaływania
+ other: Oceny oddziaływania
imported:
name:
few:
@@ -467,8 +482,8 @@ pl:
name:
few:
many:
- one:
- other:
+ one: Niezależny raport
+ other: Niezależne raporty
international_development_fund:
name:
few:
@@ -479,8 +494,8 @@ pl:
name:
few:
many:
- one:
- other:
+ one: Traktat międzynarodowy
+ other: Traktaty międzynarodowe
licence:
change:
local_transaction:
@@ -562,8 +577,8 @@ pl:
name:
few:
many:
- one:
- other:
+ one: Mapa
+ other: Mapy
medical_safety_alert:
name:
few:
@@ -580,8 +595,8 @@ pl:
name:
few:
many:
- one:
- other:
+ one: Statystyki - statystyki narodowe
+ other: Statystyki - statystyki narodowe
national_statistics_announcement:
name:
few:
@@ -604,8 +619,8 @@ pl:
name:
few:
many:
- one:
- other:
+ one: Powiadomienie
+ other: Powiadomienia
official:
name:
few:
@@ -616,8 +631,8 @@ pl:
name:
few:
many:
- one:
- other:
+ one: Statystyki
+ other: Statystyki
official_statistics_announcement:
name:
few:
@@ -657,8 +672,8 @@ pl:
name:
few:
many:
- one:
- other:
+ one: Dokument programowy
+ other: Dokumenty programowe
press_release:
name:
few:
@@ -681,8 +696,8 @@ pl:
name:
few:
many:
- one:
- other:
+ one: Materiał promocyjny
+ other: Materiał promocyjny
publication:
details: Szczegóły
documents:
@@ -705,14 +720,14 @@ pl:
name:
few:
many:
- one:
- other:
+ one: Rozporządzenie
+ other: Rozporządzenia
research:
name:
few:
many:
- one:
- other:
+ one: Badania i analiza
+ other: Badania i analiza
residential_property_tribunal_decision:
name:
few:
@@ -761,8 +776,8 @@ pl:
name:
few:
many:
- one:
- other:
+ one: Standard
+ other: Standardy
start_now:
statement_to_parliament:
name:
@@ -792,8 +807,8 @@ pl:
name:
few:
many:
- one:
- other:
+ one: Wytyczne ustawowe
+ other: Wytyczne ustawowe
tax_tribunal_decision:
name:
few:
@@ -817,8 +832,8 @@ pl:
name:
few:
many:
- one:
- other:
+ one: Dane o transparentności
+ other: Dane o transparentności
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: FCO odradza wszelkie podróże do niektórych części kraju, z wyjątkiem tych niezbędnych.
diff --git a/config/locales/ps.yml b/config/locales/ps.yml
index c9342623ec..1ea39c01f9 100644
--- a/config/locales/ps.yml
+++ b/config/locales/ps.yml
@@ -84,6 +84,9 @@ ps:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: خپور شوی
+ updated: تازه شوی
nations:
england-and-wales:
england-and-wales_for:
@@ -271,20 +274,20 @@ ps:
welsh_language_scheme_html: "%{link} ته زموږ د ژمنتیا په اړه معلومات ترلاسه کړئ."
corporate_report:
name:
- one:
- other:
+ one: د کارپوریټ راپور
+ other: د شرکت راپورونه
correspondence:
name:
- one:
- other:
+ one: لیکنه
+ other: لیکنې
countryside_stewardship_grant:
name:
one:
other:
decision:
name:
- one:
- other:
+ one: پریکړه
+ other: پریکړې
detailed_guide:
name:
one: لارښود
@@ -334,12 +337,12 @@ ps:
valid_postcode_no_locations:
foi_release:
name:
- one:
- other:
+ one: د د معلوماتو د آزادۍ قانون خوشې کول
+ other: د معلوماتو د آزادۍ قانون خپروي
form:
name:
- one:
- other:
+ one: فورمه
+ other: فورمې
get_involved:
civil_service:
civil_service_quarterly:
@@ -384,31 +387,41 @@ ps:
other: د حکومت غبرګون
guidance:
name:
- one:
- other:
+ one: لارښود
+ other: لارښود
guide:
pages_in_guide: په دې لارښود کې پاڼې
skip_contents:
- impact_assessment:
+ html_publication:
name:
one:
other:
+ print_meta_data:
+ available_at: دا خپرونه په%{url} کې شتون لري
+ copyright: "© {year}% کراون د چاپ حق"
+ isbn: 'ISBN:'
+ licence_html: 'دا نشریه د حکومت د آزاد جواز د قوانینو v3.0 مطابق دغه نشریه د حکومت د آزاد جواز د شرائطو v3.0 مطابق دقانوي جواز لرونکې نشریه ده،مګر په هغه صورت کې چې پروړاندې یې د بل ضد قانون یاونه شویې وي. که غواړئ دغه جواز وګورئ، نو nationalarchives.gov.uk/doc/open-government-licence/version/3 ته مراجعه وکړئ یا د معلوماتو د پالیسۍ ټیم ته چې په The National Archives, Kew, London TW9 4DU یا دغه آدرس ته ایمېل وکړئ: psi@nationalarchives.gov.uk.کې موقعیت لري لیک واستوئ'
+ third_party: چیرې چې موږ د دریمې ډلې د چاپ حق معلومات پیژندلي تاسو به اړتیا ولرئ د اړونده کاپي حق لرونکو څخه اجازه ترلاسه کړئ.
+ impact_assessment:
+ name:
+ one: د اغیز ارزونه
+ other: د اغیزو ارزونه
imported:
name:
one:
other:
independent_report:
name:
- one:
- other:
+ one: خپلواک راپور
+ other: خپلواک راپورونه
international_development_fund:
name:
one:
other:
international_treaty:
name:
- one:
- other:
+ one: نړیوال تړون
+ other: نړیوال تړونونه
licence:
change:
local_transaction:
@@ -486,8 +499,8 @@ ps:
updates_title:
map:
name:
- one:
- other:
+ one: نقشه
+ other: نقشې
medical_safety_alert:
name:
one:
@@ -498,8 +511,8 @@ ps:
other:
national_statistics:
name:
- one:
- other:
+ one: ملي احصایې
+ other: ملي احصایې
national_statistics_announcement:
name:
one:
@@ -514,16 +527,16 @@ ps:
other: د خبرونو کیسې
notice:
name:
- one:
- other:
+ one: خبرتیا
+ other: خبرتیاوې
official:
name:
one:
other:
official_statistics:
name:
- one:
- other:
+ one: رسمي احصایې
+ other: رسمي احصایې
official_statistics_announcement:
name:
one:
@@ -551,8 +564,8 @@ ps:
other:
policy_paper:
name:
- one:
- other:
+ one: د پالیسۍ پاڼه
+ other: د پالیسۍ ڼې
press_release:
name:
one: مطبوعاتي اعلامیه
@@ -567,8 +580,8 @@ ps:
other:
promotional:
name:
- one:
- other:
+ one: تشویقي مواد
+ other: تشویقي مواد
publication:
details: جزیات
documents:
@@ -583,12 +596,12 @@ ps:
other:
regulation:
name:
- one:
- other:
+ one: مقررات
+ other: مقررات
research:
name:
- one:
- other:
+ one: څیړنه او تحلیل
+ other: څیړنه او تحلیل
residential_property_tribunal_decision:
name:
one:
@@ -625,8 +638,8 @@ ps:
written_on: باندې لیکل شوی
standard:
name:
- one:
- other:
+ one: معیاري
+ other: معیارونه
start_now:
statement_to_parliament:
name:
@@ -646,8 +659,8 @@ ps:
other:
statutory_guidance:
name:
- one:
- other:
+ one: قانوني لارښود
+ other: قانوني لارښود
tax_tribunal_decision:
name:
one:
@@ -665,8 +678,8 @@ ps:
other:
transparency:
name:
- one:
- other:
+ one: د شفافیت معلومات
+ other: د شفافیت معلومات
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: The FCO د هیواد برخو ته د لازمي سفر پرته ټولو ته مشوره ورکوي.
diff --git a/config/locales/pt.yml b/config/locales/pt.yml
index 97e44f305d..3b48baed6d 100644
--- a/config/locales/pt.yml
+++ b/config/locales/pt.yml
@@ -84,6 +84,9 @@ pt:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: Publicado em
+ updated: Atualizado em
nations:
england-and-wales:
england-and-wales_for:
@@ -271,20 +274,20 @@ pt:
welsh_language_scheme_html: Saiba mais sobre o nosso compromisso para com %{link}.
corporate_report:
name:
- one:
- other:
+ one: Relatório empresarial
+ other: Relatórios empresariais
correspondence:
name:
- one:
- other:
+ one: Correspondência
+ other: Correspondências
countryside_stewardship_grant:
name:
one:
other:
decision:
name:
- one:
- other:
+ one: Decisão
+ other: Decisões
detailed_guide:
name:
one: Orientação
@@ -334,12 +337,12 @@ pt:
valid_postcode_no_locations:
foi_release:
name:
- one:
- other:
+ one: Comunicado de Liberdade de Informação
+ other: Comunicados de Liberdade de Informação
form:
name:
- one:
- other:
+ one: Formulário
+ other: Formulários
get_involved:
civil_service:
civil_service_quarterly:
@@ -384,31 +387,41 @@ pt:
other: Respostas do governo
guidance:
name:
- one:
- other:
+ one: Orientação
+ other: Orientação
guide:
pages_in_guide: Páginas neste guia
skip_contents:
- impact_assessment:
+ html_publication:
name:
one:
other:
+ print_meta_data:
+ available_at: Esta publicação está disponível em %{url}
+ copyright: "© Crown copyright %{year}"
+ isbn: 'ISBN:'
+ licence_html: 'Esta publicação é licenciada nos termos da Licença de Governo Aberto v3.0, salvo indicação em contrário. Para ver esta licença, visite nationalarchives.gov.uk/doc/open-government-licence/version/3 escreva para Equipa de Política de Informação, The National Archives, Kew, London TW9 4DU, ou envie-nos um e-mail para: psi@nationalarchives.gov.uk.'
+ third_party: Quando tivermos identificado qualquer informação sobre direitos de autor de terceiros, será necessário obter permissão dos detentores dos direitos de autor em questão.
+ impact_assessment:
+ name:
+ one: Avaliação de impacto
+ other: Avaliações de impacto
imported:
name:
one:
other:
independent_report:
name:
- one:
- other:
+ one: Relatório independente
+ other: Relatórios independentes
international_development_fund:
name:
one:
other:
international_treaty:
name:
- one:
- other:
+ one: Tratado internacional
+ other: Tratados internacionais
licence:
change:
local_transaction:
@@ -486,8 +499,8 @@ pt:
updates_title:
map:
name:
- one:
- other:
+ one: Mapa
+ other: Mapas
medical_safety_alert:
name:
one:
@@ -498,8 +511,8 @@ pt:
other:
national_statistics:
name:
- one:
- other:
+ one: Estatísticas Nacionais
+ other: Estatísticas Nacionais
national_statistics_announcement:
name:
one:
@@ -514,16 +527,16 @@ pt:
other: Reportagens
notice:
name:
- one:
- other:
+ one: Aviso
+ other: Avisos
official:
name:
one:
other:
official_statistics:
name:
- one:
- other:
+ one: Estatísticas Oficiais
+ other: Estatísticas Oficiais
official_statistics_announcement:
name:
one:
@@ -551,8 +564,8 @@ pt:
other:
policy_paper:
name:
- one:
- other:
+ one: Documento de política
+ other: Documentos de políticas
press_release:
name:
one: Comunicado de imprensa
@@ -567,8 +580,8 @@ pt:
other:
promotional:
name:
- one:
- other:
+ one: Material promocional
+ other: Material promocional
publication:
details: Detalhes
documents:
@@ -583,12 +596,12 @@ pt:
other:
regulation:
name:
- one:
- other:
+ one: Regulamento
+ other: Regulamentos
research:
name:
- one:
- other:
+ one: Investigação e análise
+ other: Investigação e análise
residential_property_tribunal_decision:
name:
one:
@@ -625,8 +638,8 @@ pt:
written_on: Escrito em
standard:
name:
- one:
- other:
+ one: Norma
+ other: Normas
start_now:
statement_to_parliament:
name:
@@ -646,8 +659,8 @@ pt:
other:
statutory_guidance:
name:
- one:
- other:
+ one: Orientação estatutária
+ other: Orientação estatutária
tax_tribunal_decision:
name:
one:
@@ -665,8 +678,8 @@ pt:
other:
transparency:
name:
- one:
- other:
+ one: Dados de transparência
+ other: Dados de transparência
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: O FCO desaconselha todas as viagens, exceto as essenciais, a algumas zonas do país.
diff --git a/config/locales/ro.yml b/config/locales/ro.yml
index c07238c450..154589b08d 100644
--- a/config/locales/ro.yml
+++ b/config/locales/ro.yml
@@ -84,6 +84,9 @@ ro:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: Publicat
+ updated: Actualizat
nations:
england-and-wales:
england-and-wales_for:
@@ -286,13 +289,13 @@ ro:
corporate_report:
name:
few:
- one:
- other:
+ one: Raport de companie
+ other: Rapoarte de companie
correspondence:
name:
few:
- one:
- other:
+ one: Corespondență
+ other: Corespondențe
countryside_stewardship_grant:
name:
few:
@@ -301,8 +304,8 @@ ro:
decision:
name:
few:
- one:
- other:
+ one: Decizie
+ other: Decizii
detailed_guide:
name:
few:
@@ -362,13 +365,13 @@ ro:
foi_release:
name:
few:
- one:
- other:
+ one: Document eliberat privind libertatea informației
+ other: Documente eliberate privind libertatea informației
form:
name:
few:
- one:
- other:
+ one: Formular
+ other: Formulare
get_involved:
civil_service:
civil_service_quarterly:
@@ -415,16 +418,27 @@ ro:
guidance:
name:
few:
- one:
- other:
+ one: Orientări
+ other: Orientări
guide:
pages_in_guide: Paginile din acest ghid
skip_contents:
- impact_assessment:
+ html_publication:
name:
few:
one:
other:
+ print_meta_data:
+ available_at: Această publicație este disponibilă la %{url}
+ copyright: "© Crown copyright %{year}"
+ isbn: 'ISBN:'
+ licence_html: 'Această publicație este licență conform condițiilor Open Government Licence v3.0, cu excepția cazurilor în care se specifică contrariul. Pentru a vedea licența, accesați nationalarchives.gov.uk/doc/open-government-licence/version/3 sau scrieți echipei Information Policy, The National Archives, Kew, Londra TW9 4DU, sau trimiteți e-mail la: psi@nationalarchives.gov.uk.'
+ third_party: Acolo unde am identificat informații de terță parte cu drept de autor, va trebui să obțineți permisiunea de la deținătorii drepturilor de autor în cauză.
+ impact_assessment:
+ name:
+ few:
+ one: Evaluarea impactului
+ other: Evaluările impactului
imported:
name:
few:
@@ -433,8 +447,8 @@ ro:
independent_report:
name:
few:
- one:
- other:
+ one: Raport independent
+ other: Rapoarte independente
international_development_fund:
name:
few:
@@ -443,8 +457,8 @@ ro:
international_treaty:
name:
few:
- one:
- other:
+ one: Tratat internațional
+ other: Tratate internaționale
licence:
change:
local_transaction:
@@ -524,8 +538,8 @@ ro:
map:
name:
few:
- one:
- other:
+ one: Hartă
+ other: Hărți
medical_safety_alert:
name:
few:
@@ -539,8 +553,8 @@ ro:
national_statistics:
name:
few:
- one:
- other:
+ one: Statistică națională
+ other: Statistică națională
national_statistics_announcement:
name:
few:
@@ -559,8 +573,8 @@ ro:
notice:
name:
few:
- one:
- other:
+ one: Notificare
+ other: Notificări
official:
name:
few:
@@ -569,8 +583,8 @@ ro:
official_statistics:
name:
few:
- one:
- other:
+ one: Statistică oficială
+ other: Statistică oficială
official_statistics_announcement:
name:
few:
@@ -604,8 +618,8 @@ ro:
policy_paper:
name:
few:
- one:
- other:
+ one: Document de politică
+ other: Documente de politică
press_release:
name:
few:
@@ -624,8 +638,8 @@ ro:
promotional:
name:
few:
- one:
- other:
+ one: Material promoțional
+ other: Material promoțional
publication:
details: Detalii
documents:
@@ -644,13 +658,13 @@ ro:
regulation:
name:
few:
- one:
- other:
+ one: Reglementare
+ other: Reglementări
research:
name:
few:
- one:
- other:
+ one: Cercetare și analiză
+ other: Cercetare și analiză
residential_property_tribunal_decision:
name:
few:
@@ -693,8 +707,8 @@ ro:
standard:
name:
few:
- one:
- other:
+ one: Standard
+ other: Standarde
start_now:
statement_to_parliament:
name:
@@ -719,8 +733,8 @@ ro:
statutory_guidance:
name:
few:
- one:
- other:
+ one: Orientări privind dispozițiile legale
+ other: Orientări privind dispozițiile legale
tax_tribunal_decision:
name:
few:
@@ -741,8 +755,8 @@ ro:
transparency:
name:
few:
- one:
- other:
+ one: Date privind transparența
+ other: Date privind transparența
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: FCO nu recomandă călătoriile neesențiale în anumite părți ale țării.
diff --git a/config/locales/ru.yml b/config/locales/ru.yml
index 02185294fb..b7717e44cd 100644
--- a/config/locales/ru.yml
+++ b/config/locales/ru.yml
@@ -84,6 +84,9 @@ ru:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: Опубликовано
+ updated: обновлено
nations:
england-and-wales:
england-and-wales_for:
@@ -301,14 +304,14 @@ ru:
name:
few:
many:
- one:
- other:
+ one: Корпоративный отчет
+ other: Корпоративные отчеты
correspondence:
name:
few:
many:
- one:
- other:
+ one: Корреспонденция
+ other: Корреспонденция
countryside_stewardship_grant:
name:
few:
@@ -319,8 +322,8 @@ ru:
name:
few:
many:
- one:
- other:
+ one: Решение
+ other: Решения
detailed_guide:
name:
few:
@@ -390,14 +393,14 @@ ru:
name:
few:
many:
- one:
- other:
+ one: Новая редакция Закона о Свободе Распространения Информации
+ other: Новые редакции Закона о Свободе Распространения Информации
form:
name:
few:
many:
- one:
- other:
+ one: Форма
+ other: Формы
get_involved:
civil_service:
civil_service_quarterly:
@@ -446,17 +449,29 @@ ru:
name:
few:
many:
- one:
- other:
+ one: Руководство
+ other: Руководство
guide:
pages_in_guide: Страница в руководстве
skip_contents:
- impact_assessment:
+ html_publication:
name:
few:
many:
one:
other:
+ print_meta_data:
+ available_at: Данная публикация доступна на %{url}
+ copyright: "© Авторское право короны %{year}"
+ isbn: 'Международный Стандартный Книжный Номер:'
+ licence_html: 'Данная публикация лицензирована по условиям Открытой государственной лицензии v3.0, за исключением тех случаев, где указано иное. для просмотра лицензии, посетите nationalarchives.gov.uk/doc/open-government-licence/version/3 либо обратитесь к Команде по Информационной политике, в Национальный Архив, по адресу Кью, Лондон TW9 4DU, либо по электронной почте: psi@nationalarchives.gov.uk.'
+ third_party: 'В случае обнаружения нами информации авторского права третьей стороны, Вам будет необходимо получить разрешение владельцев авторского права, имеющих к ней отношение. '
+ impact_assessment:
+ name:
+ few:
+ many:
+ one: Оценка воздействия
+ other: Оценки воздействия
imported:
name:
few:
@@ -467,8 +482,8 @@ ru:
name:
few:
many:
- one:
- other:
+ one: Независимый отчет
+ other: Независимые отчеты
international_development_fund:
name:
few:
@@ -479,8 +494,8 @@ ru:
name:
few:
many:
- one:
- other:
+ one: Международное соглашение
+ other: Международные соглашения
licence:
change:
local_transaction:
@@ -562,8 +577,8 @@ ru:
name:
few:
many:
- one:
- other:
+ one: Карта
+ other: Карты
medical_safety_alert:
name:
few:
@@ -580,8 +595,8 @@ ru:
name:
few:
many:
- one:
- other:
+ one: Национальная статистика
+ other: Национальная статистика
national_statistics_announcement:
name:
few:
@@ -604,8 +619,8 @@ ru:
name:
few:
many:
- one:
- other:
+ one: Заметка
+ other: Заметки
official:
name:
few:
@@ -616,8 +631,8 @@ ru:
name:
few:
many:
- one:
- other:
+ one: Официальная Статистика
+ other: Официальная Статистика
official_statistics_announcement:
name:
few:
@@ -657,8 +672,8 @@ ru:
name:
few:
many:
- one:
- other:
+ one: Директивный документ
+ other: Директивные документы
press_release:
name:
few:
@@ -681,8 +696,8 @@ ru:
name:
few:
many:
- one:
- other:
+ one: Рекламный материал
+ other: Рекламные материалы
publication:
details: Детали
documents:
@@ -705,14 +720,14 @@ ru:
name:
few:
many:
- one:
- other:
+ one: Требование
+ other: Требования
research:
name:
few:
many:
- one:
- other:
+ one: Исследования и аналитика
+ other: Исследования и аналитика
residential_property_tribunal_decision:
name:
few:
@@ -761,8 +776,8 @@ ru:
name:
few:
many:
- one:
- other:
+ one: Стандарт
+ other: Стандарты
start_now:
statement_to_parliament:
name:
@@ -792,8 +807,8 @@ ru:
name:
few:
many:
- one:
- other:
+ one: Официальные рекомендации
+ other: Официальные рекомендации
tax_tribunal_decision:
name:
few:
@@ -817,8 +832,8 @@ ru:
name:
few:
many:
- one:
- other:
+ one: Прозрачность данных
+ other: Прозрачность данных
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: The FCO Все поездки не реккомендуются, за исключением необходимых в части страны.
diff --git a/config/locales/si.yml b/config/locales/si.yml
index d98ed29d29..822b03cd42 100644
--- a/config/locales/si.yml
+++ b/config/locales/si.yml
@@ -84,6 +84,9 @@ si:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: පළ කළේ
+ updated: යාවත්කාලීන කෙරිණි
nations:
england-and-wales:
england-and-wales_for:
@@ -271,20 +274,20 @@ si:
welsh_language_scheme_html: "%{link} සඳහා අපේ කැපවීම ගැන සොයා බලන්න."
corporate_report:
name:
- one:
- other:
+ one: ආයතනික වාර්තාව
+ other: ආයතනික වාර්තා
correspondence:
name:
- one:
- other:
+ one: ලිපි හුවමාරුව
+ other: ලිපි හුවමාරු
countryside_stewardship_grant:
name:
one:
other:
decision:
name:
- one:
- other:
+ one: තීරණය
+ other: තීරණ
detailed_guide:
name:
one: මාර්ගෝපදේශය
@@ -334,12 +337,12 @@ si:
valid_postcode_no_locations:
foi_release:
name:
- one:
- other:
+ one: FOI නිකුත් කිරීම
+ other: FOI නිකුත් කිරීම්
form:
name:
- one:
- other:
+ one: ආකෘති පත්රය
+ other: ආකෘති පත්ර
get_involved:
civil_service:
civil_service_quarterly:
@@ -384,31 +387,41 @@ si:
other: රජයේ ප්රතිචාර
guidance:
name:
- one:
- other:
+ one: මාර්ගෝපදේශය
+ other: මාර්ගෝපදේශය
guide:
pages_in_guide: මෙම මාර්ගෝපදේශයෙහි තුළ පිටු
skip_contents:
- impact_assessment:
+ html_publication:
name:
one:
other:
+ print_meta_data:
+ available_at: මෙම ප්රකාශනය %{url} වෙතින් ලබා ගත හැකිය
+ copyright: "© රාජ්ය කතුහිමිකම %{year}"
+ isbn: 'ISBN:'
+ licence_html: මෙම ප්රකාශනයට වෙනත් ආකාරයකින් සඳහන් කර ඇති අවස්ථාවන්හි හැර විවෘත රාජ්ය බලපත්ර v3.0 හි නියමයන් යටතේ බලපත්ර ලබා දී ඇත. මෙම බලපත්රය බැලීමට, nationalarchives.gov.uk/doc/open-government-licence/version/3 වෙත පිවිසෙන්න නැතහොත් The Information Policy Team, The National Archives, Kew, London TW9 4DU වෙත ලියන්න නැතහොත් psi@nationalarchives.gov.uk වෙත විද්යුත් තැපෑලක් එවන්න.
+ third_party: අපි යම් තෙවන පාර්ශවීය ප්රකාශන හිමිකම් තොරතුරු හඳුනාගෙන ඇති අවස්ථාවක ඔබ අදාළ ප්රකාශන හිමිකම් හිමියන්ගෙන් අවසර ලබා ගත යුතුය.
+ impact_assessment:
+ name:
+ one: බලපෑම තක්සේරුව
+ other: බලපෑම තක්සේරු
imported:
name:
one:
other:
independent_report:
name:
- one:
- other:
+ one: ස්වාධීන වාර්තාව
+ other: ස්වාධීන වාර්තා
international_development_fund:
name:
one:
other:
international_treaty:
name:
- one:
- other:
+ one: ජාත්යන්තර ගිවිසුම
+ other: ජාත්යන්තර ගිවිසුම්
licence:
change:
local_transaction:
@@ -486,8 +499,8 @@ si:
updates_title:
map:
name:
- one:
- other:
+ one: සිතියම
+ other: සිතියම්
medical_safety_alert:
name:
one:
@@ -498,8 +511,8 @@ si:
other:
national_statistics:
name:
- one:
- other:
+ one: ජාතික සංඛ්යාලේඛන
+ other: ජාතික සංඛ්යාලේඛන
national_statistics_announcement:
name:
one:
@@ -514,16 +527,16 @@ si:
other: පුවත් කතා
notice:
name:
- one:
- other:
+ one: දැන්වීම
+ other: දැන්වීම්
official:
name:
one:
other:
official_statistics:
name:
- one:
- other:
+ one: නිල සංඛ්යාලේඛන
+ other: නිල සංඛ්යාලේඛන
official_statistics_announcement:
name:
one:
@@ -551,8 +564,8 @@ si:
other:
policy_paper:
name:
- one:
- other:
+ one: ප්රතිපත්ති පත්රිකාව
+ other: ප්රතිපත්ති පත්රිකා
press_release:
name:
one: මාධ්ය නිවේදනය
@@ -567,8 +580,8 @@ si:
other:
promotional:
name:
- one:
- other:
+ one: ප්රවර්ධන ද්රව්ය
+ other: ප්රවර්ධන ද්රව්ය
publication:
details: විස්තර
documents:
@@ -583,12 +596,12 @@ si:
other:
regulation:
name:
- one:
- other:
+ one: නියාමනය
+ other: නියාමන
research:
name:
- one:
- other:
+ one: පර්යේෂණය සහ විශ්ලේෂණය
+ other: පර්යේෂණය සහ විශ්ලේෂණය
residential_property_tribunal_decision:
name:
one:
@@ -625,8 +638,8 @@ si:
written_on: ලියන ලද දිනය
standard:
name:
- one:
- other:
+ one: ප්රමිතිය
+ other: ප්රමිති
start_now:
statement_to_parliament:
name:
@@ -646,8 +659,8 @@ si:
other:
statutory_guidance:
name:
- one:
- other:
+ one: ව්යවස්ථාපිත මඟ පෙන්වීම
+ other: ව්යවස්ථාපිත මඟ පෙන්වීම
tax_tribunal_decision:
name:
one:
@@ -665,8 +678,8 @@ si:
other:
transparency:
name:
- one:
- other:
+ one: විනිවිදභාව දත්ත
+ other: විනිවිදභාව දත්ත
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: FCO රටේ කොටස් වලට සියලු සංචාරවලට එරෙහිව උපදෙස් ලබා දෙන නමුත් අත්යවශ්ය සංවාරයක යෙදිය හැකිය.
diff --git a/config/locales/sk.yml b/config/locales/sk.yml
index 8e9e249ef4..4002a4bb1e 100644
--- a/config/locales/sk.yml
+++ b/config/locales/sk.yml
@@ -84,6 +84,9 @@ sk:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: Zverejnené na
+ updated: Aktualizované
nations:
england-and-wales:
england-and-wales_for:
@@ -286,13 +289,13 @@ sk:
corporate_report:
name:
few:
- one:
- other:
+ one: Podniková správa
+ other: Podnikové správy
correspondence:
name:
few:
- one:
- other:
+ one: Korešpondencia
+ other: Korešpondencie
countryside_stewardship_grant:
name:
few:
@@ -301,8 +304,8 @@ sk:
decision:
name:
few:
- one:
- other:
+ one: Rozhodnutie
+ other: Rozhodnutia
detailed_guide:
name:
few:
@@ -362,13 +365,13 @@ sk:
foi_release:
name:
few:
- one:
- other:
+ one: Zverejnenie slobody informácií
+ other: Zverejnenia slobody informácií
form:
name:
few:
- one:
- other:
+ one: Formulár
+ other: Formuláre
get_involved:
civil_service:
civil_service_quarterly:
@@ -415,16 +418,27 @@ sk:
guidance:
name:
few:
- one:
- other:
+ one: Poradenstvo
+ other: Poradenstvo
guide:
pages_in_guide: Stránky v tejto príručke
skip_contents:
- impact_assessment:
+ html_publication:
name:
few:
one:
other:
+ print_meta_data:
+ available_at: Táto publikácia je k dispozícii na %{url}
+ copyright: Korunné autorské právo %{year}
+ isbn: 'ISBN:'
+ licence_html: 'Táto publikácia je licencovaná podľa podmienok Open Government Licence v3.0, pokiaľ nie je uvedené inak. Ak si chcete pozrieť túto licenciu, navštívte nationalarchives.gov.uk/doc/open-government-licence/version/3 alebo napíšte na adresu: Information Policy Team, The National Archives, Kew, London TW9 4DU, alebo pošlite e-mail: psi@nationalarchives.gov.uk.'
+ third_party: Ak sme identifikovali akékoľvek informácie o autorských právach tretích strán, budete musieť získať povolenie od príslušných držiteľov autorských práv.
+ impact_assessment:
+ name:
+ few:
+ one: Posúdenie vplyvu
+ other: Posúdenia vplyvu
imported:
name:
few:
@@ -433,8 +447,8 @@ sk:
independent_report:
name:
few:
- one:
- other:
+ one: Nezávislá správa
+ other: Nezávislé správy
international_development_fund:
name:
few:
@@ -443,8 +457,8 @@ sk:
international_treaty:
name:
few:
- one:
- other:
+ one: Medzinárodná zmluva
+ other: Medzinárodné zmluvy
licence:
change:
local_transaction:
@@ -524,8 +538,8 @@ sk:
map:
name:
few:
- one:
- other:
+ one: Mapa
+ other: Mapy
medical_safety_alert:
name:
few:
@@ -539,8 +553,8 @@ sk:
national_statistics:
name:
few:
- one:
- other:
+ one: Národné štatistiky
+ other: Národné štatistiky
national_statistics_announcement:
name:
few:
@@ -559,8 +573,8 @@ sk:
notice:
name:
few:
- one:
- other:
+ one: Oznámenie
+ other: Oznámenia
official:
name:
few:
@@ -569,8 +583,8 @@ sk:
official_statistics:
name:
few:
- one:
- other:
+ one: Oficiálne štatistiky
+ other: Oficiálne štatistiky
official_statistics_announcement:
name:
few:
@@ -604,8 +618,8 @@ sk:
policy_paper:
name:
few:
- one:
- other:
+ one: Strategický dokument
+ other: Strategické dokumenty
press_release:
name:
few:
@@ -624,8 +638,8 @@ sk:
promotional:
name:
few:
- one:
- other:
+ one: Propagačné materiály
+ other: Propagačné materiály
publication:
details: Podrobnosti na
documents:
@@ -644,13 +658,13 @@ sk:
regulation:
name:
few:
- one:
- other:
+ one: Nariadenie
+ other: Nariadenia
research:
name:
few:
- one:
- other:
+ one: Výskum a analýza
+ other: Výskum a analýza
residential_property_tribunal_decision:
name:
few:
@@ -693,8 +707,8 @@ sk:
standard:
name:
few:
- one:
- other:
+ one: Štandard
+ other: Štandardy
start_now:
statement_to_parliament:
name:
@@ -719,8 +733,8 @@ sk:
statutory_guidance:
name:
few:
- one:
- other:
+ one: Zákonné usmernenia
+ other: Zákonné usmernenia
tax_tribunal_decision:
name:
few:
@@ -741,8 +755,8 @@ sk:
transparency:
name:
few:
- one:
- other:
+ one: Údaje o transparentnosti
+ other: Údaje o transparentnosti
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: Ministerstvo zahraničných vecí a Commonwealthu FCO neodporúča cestovať do niektorých častí krajiny okrem nevyhnutných prípadov.
diff --git a/config/locales/sl.yml b/config/locales/sl.yml
index fdd1e6eb41..96d73b6e67 100644
--- a/config/locales/sl.yml
+++ b/config/locales/sl.yml
@@ -84,6 +84,9 @@ sl:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: Objavljeno
+ updated: Posodobljeno
nations:
england-and-wales:
england-and-wales_for:
@@ -300,14 +303,14 @@ sl:
corporate_report:
name:
few:
- one:
- other:
+ one: Poročilo podjetja
+ other: Poročila podjetja
two:
correspondence:
name:
few:
- one:
- other:
+ one: Korespondenca
+ other: Korespondenca
two:
countryside_stewardship_grant:
name:
@@ -318,8 +321,8 @@ sl:
decision:
name:
few:
- one:
- other:
+ one: Odločitev
+ other: Odločitve
two:
detailed_guide:
name:
@@ -389,14 +392,14 @@ sl:
foi_release:
name:
few:
- one:
- other:
+ one: Izjava o svobodi informacij
+ other: Izjave o svobodi informacij
two:
form:
name:
few:
- one:
- other:
+ one: Oblika
+ other: Oblike
two:
get_involved:
civil_service:
@@ -445,18 +448,30 @@ sl:
guidance:
name:
few:
- one:
- other:
+ one: Smernice
+ other: Smernice
two:
guide:
pages_in_guide: Strani v tem vodiču
skip_contents:
- impact_assessment:
+ html_publication:
name:
few:
one:
other:
two:
+ print_meta_data:
+ available_at: Ta publikacija je na voljo na %{url}
+ copyright: Avtorske pravice © Crown %{year}
+ isbn: 'ISBN:'
+ licence_html: 'Ta publikacija ima licenco pod pogoji licence Open Government License v3.0, razen kjer je navedeno drugače. Za ogled licence obiščite nationalarchives.gov.uk/doc/open-government-licence/version/3 ali pišite skupini za informacijsko politiko Information Policy Team, The National Archives, Kew, London TW9 4DU ali napišite e-sporočilo: psi@nationalarchives.gov.uk.'
+ third_party: Če ugotovimo kakršne koli podatke o avtorskih pravicah tretjih oseb, boste morali pridobiti dovoljenje zadevnih imetnikov avtorskih pravic.
+ impact_assessment:
+ name:
+ few:
+ one: Presoja vpliva
+ other: Presoje vpliva
+ two:
imported:
name:
few:
@@ -466,8 +481,8 @@ sl:
independent_report:
name:
few:
- one:
- other:
+ one: neodvisno poročilo
+ other: neodvisna poročila
two:
international_development_fund:
name:
@@ -478,8 +493,8 @@ sl:
international_treaty:
name:
few:
- one:
- other:
+ one: Mednarodni sporazum
+ other: Mednarodni sporazumi
two:
licence:
change:
@@ -561,8 +576,8 @@ sl:
map:
name:
few:
- one:
- other:
+ one: Zemljevid
+ other: Zemljevidi
two:
medical_safety_alert:
name:
@@ -579,8 +594,8 @@ sl:
national_statistics:
name:
few:
- one:
- other:
+ one: Državna statistika
+ other: Državna statistika
two:
national_statistics_announcement:
name:
@@ -603,8 +618,8 @@ sl:
notice:
name:
few:
- one:
- other:
+ one: Obvestilo
+ other: Obvestila
two:
official:
name:
@@ -615,8 +630,8 @@ sl:
official_statistics:
name:
few:
- one:
- other:
+ one: Uradna statistika
+ other: Uradna statistika
two:
official_statistics_announcement:
name:
@@ -656,8 +671,8 @@ sl:
policy_paper:
name:
few:
- one:
- other:
+ one: Politični dokument
+ other: Politični dokumenti
two:
press_release:
name:
@@ -680,8 +695,8 @@ sl:
promotional:
name:
few:
- one:
- other:
+ one: Promocijski material
+ other: Promocijski material
two:
publication:
details: Podrobnosti
@@ -704,14 +719,14 @@ sl:
regulation:
name:
few:
- one:
- other:
+ one: Uredba
+ other: Uredbe
two:
research:
name:
few:
- one:
- other:
+ one: Raziskovanje in analiza
+ other: Raziskovanje in analiza
two:
residential_property_tribunal_decision:
name:
@@ -760,8 +775,8 @@ sl:
standard:
name:
few:
- one:
- other:
+ one: Standard
+ other: Standardi
two:
start_now:
statement_to_parliament:
@@ -791,8 +806,8 @@ sl:
statutory_guidance:
name:
few:
- one:
- other:
+ one: Zakonski napotki
+ other: Zakonski napotki
two:
tax_tribunal_decision:
name:
@@ -816,8 +831,8 @@ sl:
transparency:
name:
few:
- one:
- other:
+ one: Podatki o preglednosti
+ other: Podatki o preglednosti
two:
travel_advice:
alert_status:
diff --git a/config/locales/so.yml b/config/locales/so.yml
index ffb9e39f25..373b0ef413 100644
--- a/config/locales/so.yml
+++ b/config/locales/so.yml
@@ -84,6 +84,9 @@ so:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: Daabacaada
+ updated: La cusboonaysiiyay
nations:
england-and-wales:
england-and-wales_for:
@@ -271,20 +274,20 @@ so:
welsh_language_scheme_html: Raadi waxyaabaha ku saabsan ka go'naanshahayaga %{link}.
corporate_report:
name:
- one:
- other:
+ one: Warbixinta shirkada
+ other: Warbixinaha shirkada
correspondence:
name:
- one:
- other:
+ one: Xidhiidhka
+ other: Xidhiidhada
countryside_stewardship_grant:
name:
one:
other:
decision:
name:
- one:
- other:
+ one: Go'aan
+ other: Go'aamo
detailed_guide:
name:
one: Tilmaam
@@ -334,12 +337,12 @@ so:
valid_postcode_no_locations:
foi_release:
name:
- one:
- other:
+ one: Baahinta FOI
+ other: Warbixinaha FOI
form:
name:
- one:
- other:
+ one: Foomka
+ other: Foomamka
get_involved:
civil_service:
civil_service_quarterly:
@@ -384,31 +387,41 @@ so:
other: Jawaabaha dawlada
guidance:
name:
- one:
- other:
+ one: Tilmaam
+ other: Tilmaam
guide:
pages_in_guide: Bogaga tilmaamahan
skip_contents:
- impact_assessment:
+ html_publication:
name:
one:
other:
+ print_meta_data:
+ available_at: Daabacaadan waxa laga heli karaa %{url}
+ copyright: "© Crown copyright %{year}"
+ isbn: 'ISBN:'
+ licence_html: 'Daabacaadani waxay ku diwaangashantahay xeerarka kujira Liisanka Furan ee Dawlada v3.0 marka laga reebo halka kuwo kale lagu xusay. Si aad dib ugu dheehato, booqo nationalarchives.gov.uk/doc/open-government-licence/version/3 ama qor Macluumaadka Kooxda Siyaasada, The National Archives, Kew, London TW9 4DU, ama iimayl u dir: psi@nationalarchives.gov.uk.'
+ third_party: Halkaas oo aan aqoonsanay macluumaad kasta oo gacan sadexaad xaq u leedahay waxaad u baahan doontaa inaad hesho ogolaansho la xidhiidha qofka xuquuqda iska leh.
+ impact_assessment:
+ name:
+ one: Qiimeynta Saamenta
+ other: Qiimeynta Saamaynaha
imported:
name:
one:
other:
independent_report:
name:
- one:
- other:
+ one: Warbixin madax banaan
+ other: Warbixino madax banaan
international_development_fund:
name:
one:
other:
international_treaty:
name:
- one:
- other:
+ one: Heshiis caalamiya
+ other: Heshiisyo caalamiya
licence:
change:
local_transaction:
@@ -486,8 +499,8 @@ so:
updates_title:
map:
name:
- one:
- other:
+ one: Maab
+ other: Maabab
medical_safety_alert:
name:
one:
@@ -498,8 +511,8 @@ so:
other:
national_statistics:
name:
- one:
- other:
+ one: Tirokoobka qaranka
+ other: Tirokoobka qaranka
national_statistics_announcement:
name:
one:
@@ -514,16 +527,16 @@ so:
other: Warar
notice:
name:
- one:
- other:
+ one: Ogeysiis
+ other: Ogeysiisyo
official:
name:
one:
other:
official_statistics:
name:
- one:
- other:
+ one: Tirokoobka rasmiga ah
+ other: Tirokoobka rasmiga ah
official_statistics_announcement:
name:
one:
@@ -551,8 +564,8 @@ so:
other:
policy_paper:
name:
- one:
- other:
+ one: Warqada siyaasada
+ other: Waraaqaha siyaasada
press_release:
name:
one: War-saxaafadeed
@@ -567,8 +580,8 @@ so:
other:
promotional:
name:
- one:
- other:
+ one: Agab xayeysiis
+ other: Agab xayeysiis
publication:
details: Faah-faahin
documents:
@@ -583,12 +596,12 @@ so:
other:
regulation:
name:
- one:
- other:
+ one: Sharci
+ other: Shuruuc
research:
name:
- one:
- other:
+ one: Cilmi-baadhis iyo falanqeyn
+ other: Cilmi-baadhis iyo falanqeyn
residential_property_tribunal_decision:
name:
one:
@@ -625,8 +638,8 @@ so:
written_on: Lagu qoray
standard:
name:
- one:
- other:
+ one: Heerka
+ other: Heerarka
start_now:
statement_to_parliament:
name:
@@ -646,8 +659,8 @@ so:
other:
statutory_guidance:
name:
- one:
- other:
+ one: Tilmaamta sharciga
+ other: Tilmaamta sharciga
tax_tribunal_decision:
name:
one:
@@ -665,8 +678,8 @@ so:
other:
transparency:
name:
- one:
- other:
+ one: Xog daah furan
+ other: Xog daah furan
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: The FCO talo dhamaan kasoo wada horjeeda lakin socdaal muhiim ah oo qaybaha dalka oo dhan ah.
diff --git a/config/locales/sq.yml b/config/locales/sq.yml
index 1b8cd86fd1..f78722cadb 100644
--- a/config/locales/sq.yml
+++ b/config/locales/sq.yml
@@ -84,6 +84,9 @@ sq:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: Publikuar
+ updated: Përditësuar
nations:
england-and-wales:
england-and-wales_for:
@@ -271,20 +274,20 @@ sq:
welsh_language_scheme_html: Mësoni rreth angazhimit tonë ndaj %{link}.
corporate_report:
name:
- one:
- other:
+ one: Raport i organizatës
+ other: Raporte te organizatës
correspondence:
name:
- one:
- other:
+ one: Korrespondencë
+ other: Korrespondencat
countryside_stewardship_grant:
name:
one:
other:
decision:
name:
- one:
- other:
+ one: Vendimi
+ other: Vendimet
detailed_guide:
name:
one: Udhëzim
@@ -334,12 +337,12 @@ sq:
valid_postcode_no_locations:
foi_release:
name:
- one:
- other:
+ one: Njoftim mbi Lirinë e Informacionit
+ other: Njoftime mbi Lirinë e Informacionit
form:
name:
- one:
- other:
+ one: Formular
+ other: Formularë
get_involved:
civil_service:
civil_service_quarterly:
@@ -384,31 +387,41 @@ sq:
other: Reagime qeveritare
guidance:
name:
- one:
- other:
+ one: Udhëzime
+ other: Udhëzime
guide:
pages_in_guide: Faqet në këtë udhëzim
skip_contents:
- impact_assessment:
+ html_publication:
name:
one:
other:
+ print_meta_data:
+ available_at: Ky publikim është i disponueshëm në %{url}
+ copyright: "© Crown e drejta e autorit %{year}"
+ isbn: 'ISBN:'
+ licence_html: 'Ky publikim është i licencuar sipas kushteve të Licencës së Qeverisë së Hapur v3.0, përveç rasteve kur përcaktohet ndryshe. Për të parë këtë licencë, vizitoni nationalarchives.gov.uk/doc/open-government-licence/version/3 ose i shkruani Ekipit të Politikave të Informacionit, Arkivave Kombëtare, Kew, London TW9 4DU, ose email: psi@nationalarchives.gov.uk.'
+ third_party: Aty ku kemi identifikuar ndonjë informacion të palës së tretë për të drejtën e autorit, do t'ju duhet të merrni leje nga mbajtësit e të drejtave të autorit në fjalë.
+ impact_assessment:
+ name:
+ one: Vlerësim i ndikimit
+ other: Vlerësime te ndikimit
imported:
name:
one:
other:
independent_report:
name:
- one:
- other:
+ one: Raport i pavarur
+ other: Raporte të pavarur
international_development_fund:
name:
one:
other:
international_treaty:
name:
- one:
- other:
+ one: Traktat ndërkombëtar
+ other: Traktate ndërkombëtare
licence:
change:
local_transaction:
@@ -486,8 +499,8 @@ sq:
updates_title:
map:
name:
- one:
- other:
+ one: Hartë
+ other: Harta
medical_safety_alert:
name:
one:
@@ -498,8 +511,8 @@ sq:
other:
national_statistics:
name:
- one:
- other:
+ one: Statistikat Kombëtare
+ other: Statistikat Kombëtare
national_statistics_announcement:
name:
one:
@@ -514,16 +527,16 @@ sq:
other: Ngjarje
notice:
name:
- one:
- other:
+ one: Njoftim
+ other: Njoftime
official:
name:
one:
other:
official_statistics:
name:
- one:
- other:
+ one: Statistikat Zyrtare
+ other: Statistikat Zyrtare
official_statistics_announcement:
name:
one:
@@ -551,8 +564,8 @@ sq:
other:
policy_paper:
name:
- one:
- other:
+ one: Dokument politikash
+ other: Dokumente politikash
press_release:
name:
one: Njoftimi shtypi
@@ -567,8 +580,8 @@ sq:
other:
promotional:
name:
- one:
- other:
+ one: Material promovues
+ other: Material promovues
publication:
details: Detajet
documents:
@@ -583,12 +596,12 @@ sq:
other:
regulation:
name:
- one:
- other:
+ one: Rregullore
+ other: Rregulloret
research:
name:
- one:
- other:
+ one: Kërkime dhe analiza
+ other: Kërkime dhe analiza
residential_property_tribunal_decision:
name:
one:
@@ -625,8 +638,8 @@ sq:
written_on: Shkruar në
standard:
name:
- one:
- other:
+ one: Standardi
+ other: Standarde
start_now:
statement_to_parliament:
name:
@@ -646,8 +659,8 @@ sq:
other:
statutory_guidance:
name:
- one:
- other:
+ one: Udhëzim ligjor
+ other: Udhëzim ligjor
tax_tribunal_decision:
name:
one:
@@ -665,8 +678,8 @@ sq:
other:
transparency:
name:
- one:
- other:
+ one: Të dhëna për transparencën
+ other: Të dhëna për transparencën
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: The FCO këshillon kundër të gjitha udhëtimeve përveçse thelbësore në pjesë të vendit.
diff --git a/config/locales/sr.yml b/config/locales/sr.yml
index f2386e8e6f..d233d907f0 100644
--- a/config/locales/sr.yml
+++ b/config/locales/sr.yml
@@ -84,6 +84,9 @@ sr:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: Objavljeno
+ updated: Ažurirano
nations:
england-and-wales:
england-and-wales_for:
@@ -286,13 +289,13 @@ sr:
corporate_report:
name:
few:
- one:
- other:
+ one: Organizacioni izveštaj
+ other: Organizacioni izveštaji
correspondence:
name:
few:
- one:
- other:
+ one: Prepiska
+ other: Prepiske
countryside_stewardship_grant:
name:
few:
@@ -301,8 +304,8 @@ sr:
decision:
name:
few:
- one:
- other:
+ one: Odluka
+ other: Odluke
detailed_guide:
name:
few:
@@ -362,13 +365,13 @@ sr:
foi_release:
name:
few:
- one:
- other:
+ one: Odgovor na zahtev za pristup informacijama od javnog značaja
+ other: Odgovori na zahteve za pristup informacijama od javnog značaja
form:
name:
few:
- one:
- other:
+ one: Formular
+ other: Obrasci
get_involved:
civil_service:
civil_service_quarterly:
@@ -415,16 +418,27 @@ sr:
guidance:
name:
few:
- one:
- other:
+ one: Detaljno uputstvo
+ other: Detaljno uputstvo
guide:
pages_in_guide: Stranice u ovom vodiču
skip_contents:
- impact_assessment:
+ html_publication:
name:
few:
one:
other:
+ print_meta_data:
+ available_at: Ova publikacija je dostupna na adresi %{url}
+ copyright: "© Crown copyright %{year}"
+ isbn: 'ISBN:'
+ licence_html: 'Ova publikacija je licencirana prema uslovima licence Open Government Licence v3.0 osim ukoliko je drugačije naznačeno. Da biste videli ovu licencu, otvorite nationalarchives.gov.uk/doc/open-government-licence/version/3 ili se obratite Timu za politiku o podacima, The National Archives, Kew, London TW9 4DU, ili pošaljite e-poruku na: psi@nationalarchives.gov.uk.'
+ third_party: Ako utvrdimo da postoje informacije pod autorskim pravima trećeg lica, moraćete da dobijete dozvolu od dotičnih nosilaca autorskih prava.
+ impact_assessment:
+ name:
+ few:
+ one: Procena efekta
+ other: Procene efekata
imported:
name:
few:
@@ -433,8 +447,8 @@ sr:
independent_report:
name:
few:
- one:
- other:
+ one: Nezavisni izveštaj
+ other: Nezavisni izveštaji
international_development_fund:
name:
few:
@@ -443,8 +457,8 @@ sr:
international_treaty:
name:
few:
- one:
- other:
+ one: Međunarodni sporazum
+ other: Međunarodni sporazumi
licence:
change:
local_transaction:
@@ -524,8 +538,8 @@ sr:
map:
name:
few:
- one:
- other:
+ one: Mapa
+ other: Mape
medical_safety_alert:
name:
few:
@@ -539,8 +553,8 @@ sr:
national_statistics:
name:
few:
- one:
- other:
+ one: Državna statistika
+ other: Državna statistika
national_statistics_announcement:
name:
few:
@@ -559,8 +573,8 @@ sr:
notice:
name:
few:
- one:
- other:
+ one: Obaveštenje
+ other: Obaveštenja
official:
name:
few:
@@ -569,8 +583,8 @@ sr:
official_statistics:
name:
few:
- one:
- other:
+ one: Zvanična statistika
+ other: Zvanična statistika
official_statistics_announcement:
name:
few:
@@ -604,8 +618,8 @@ sr:
policy_paper:
name:
few:
- one:
- other:
+ one: Predlog politike
+ other: Predlozi politike
press_release:
name:
few:
@@ -624,8 +638,8 @@ sr:
promotional:
name:
few:
- one:
- other:
+ one: Promotivni materijal
+ other: Promotivni materijal
publication:
details: Detalji
documents:
@@ -644,13 +658,13 @@ sr:
regulation:
name:
few:
- one:
- other:
+ one: Propis
+ other: Propisi
research:
name:
few:
- one:
- other:
+ one: Istraživanje i analiza
+ other: Istraživanje i analiza
residential_property_tribunal_decision:
name:
few:
@@ -693,8 +707,8 @@ sr:
standard:
name:
few:
- one:
- other:
+ one: Standard
+ other: Standardi
start_now:
statement_to_parliament:
name:
@@ -719,8 +733,8 @@ sr:
statutory_guidance:
name:
few:
- one:
- other:
+ one: Zakonska uputstva
+ other: Zakonska uputstva
tax_tribunal_decision:
name:
few:
@@ -741,8 +755,8 @@ sr:
transparency:
name:
few:
- one:
- other:
+ one: Podaci o transparentnosti
+ other: Podaci o transparentnosti
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: FCO ne preporučuje putovanja koja nisu esencijalna za delove zemlje.
diff --git a/config/locales/sv.yml b/config/locales/sv.yml
index faaddef6e8..db79eeaa22 100644
--- a/config/locales/sv.yml
+++ b/config/locales/sv.yml
@@ -84,6 +84,9 @@ sv:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: Publicerad
+ updated: Uppdaterad
nations:
england-and-wales:
england-and-wales_for:
@@ -271,20 +274,20 @@ sv:
welsh_language_scheme_html: Ta reda på vårt åtagande om %{link}.
corporate_report:
name:
- one:
- other:
+ one: Företagsrapport
+ other: Företagsrapporter
correspondence:
name:
- one:
- other:
+ one: Korrespondens
+ other: Korrespondens
countryside_stewardship_grant:
name:
one:
other:
decision:
name:
- one:
- other:
+ one: Beslut
+ other: Beslut
detailed_guide:
name:
one: Vägledning
@@ -334,12 +337,12 @@ sv:
valid_postcode_no_locations:
foi_release:
name:
- one:
- other:
+ one: FOI-utlämnande
+ other: FOI-meddelanden
form:
name:
- one:
- other:
+ one: Formulär
+ other: Formulär
get_involved:
civil_service:
civil_service_quarterly:
@@ -384,31 +387,41 @@ sv:
other: Regeringens svar
guidance:
name:
- one:
- other:
+ one: Vägledning
+ other: Vägledning
guide:
pages_in_guide: Sidor i den här guiden
skip_contents:
- impact_assessment:
+ html_publication:
name:
one:
other:
+ print_meta_data:
+ available_at: Den här publikationen finns på %{url}
+ copyright: "© Crown copyright %{year}"
+ isbn: 'ISBN:'
+ licence_html: 'Denna publikation är licensierad enligt villkoren i Open Government Licence v3.0, om inget annat anges. För att se licensen, besök nationalarchives.gov.uk/doc/open-government-licence/version/3 eller skriv till Information Policy Team, The National Archives, The National Archives, Kew, London TW9 4DU, eller skicka e-post: psi@nationalarchives.gov.uk.'
+ third_party: Om vi har identifierat upphovsrättslig information från tredje part måste du få tillstånd från de berörda upphovsrättsinnehavarna.
+ impact_assessment:
+ name:
+ one: Konsekvensbedömning
+ other: Konsekvensbedömningar
imported:
name:
one:
other:
independent_report:
name:
- one:
- other:
+ one: Oberoende rapport
+ other: Oberoende rapporter
international_development_fund:
name:
one:
other:
international_treaty:
name:
- one:
- other:
+ one: Internationellt fördrag
+ other: Internationella fördrag
licence:
change:
local_transaction:
@@ -486,8 +499,8 @@ sv:
updates_title:
map:
name:
- one:
- other:
+ one: Karta
+ other: Kartor
medical_safety_alert:
name:
one:
@@ -498,8 +511,8 @@ sv:
other:
national_statistics:
name:
- one:
- other:
+ one: Nationell statistik
+ other: Nationell statistik
national_statistics_announcement:
name:
one:
@@ -514,16 +527,16 @@ sv:
other: Nyheter
notice:
name:
- one:
- other:
+ one: Meddelande
+ other: Meddelanden
official:
name:
one:
other:
official_statistics:
name:
- one:
- other:
+ one: Officiell statistik
+ other: Officiell statistik
official_statistics_announcement:
name:
one:
@@ -551,8 +564,8 @@ sv:
other:
policy_paper:
name:
- one:
- other:
+ one: Policydokument
+ other: Policydokument
press_release:
name:
one: Pressmeddelande
@@ -567,8 +580,8 @@ sv:
other:
promotional:
name:
- one:
- other:
+ one: Material för marknadsföring
+ other: Material för marknadsföring
publication:
details: Detaljer
documents:
@@ -583,12 +596,12 @@ sv:
other:
regulation:
name:
- one:
- other:
+ one: Förordning
+ other: Förordningar
research:
name:
- one:
- other:
+ one: Forskning och analys
+ other: Forskning och analys
residential_property_tribunal_decision:
name:
one:
@@ -625,8 +638,8 @@ sv:
written_on: Skrivet på
standard:
name:
- one:
- other:
+ one: Standard
+ other: Standarder
start_now:
statement_to_parliament:
name:
@@ -646,8 +659,8 @@ sv:
other:
statutory_guidance:
name:
- one:
- other:
+ one: Lagstadgad vägledning
+ other: Lagstadgad vägledning
tax_tribunal_decision:
name:
one:
@@ -665,8 +678,8 @@ sv:
other:
transparency:
name:
- one:
- other:
+ one: Öppenhetsuppgifter
+ other: Öppenhetsuppgifter
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: FCO avråder från alla utom nödvändiga resor till delar av landet.
diff --git a/config/locales/sw.yml b/config/locales/sw.yml
index d8e752e574..4a751aa060 100644
--- a/config/locales/sw.yml
+++ b/config/locales/sw.yml
@@ -84,6 +84,9 @@ sw:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: Ilichapishwa
+ updated: Ilisasishwa
nations:
england-and-wales:
england-and-wales_for:
@@ -271,20 +274,20 @@ sw:
welsh_language_scheme_html: Pata maelezo kuhusu wajibu wetu wa %{link}.
corporate_report:
name:
- one:
- other:
+ one: Ripoti ya shirika
+ other: Ripoti za shirika
correspondence:
name:
- one:
- other:
+ one: Mawasiliano
+ other: Mawasiliano
countryside_stewardship_grant:
name:
one:
other:
decision:
name:
- one:
- other:
+ one: Uamuzi
+ other: Maamuzi
detailed_guide:
name:
one: Mwongozo
@@ -334,12 +337,12 @@ sw:
valid_postcode_no_locations:
foi_release:
name:
- one:
- other:
+ one: Taarifa ya FOI
+ other: Taarifa za FOI
form:
name:
- one:
- other:
+ one: Fomu
+ other: Fomu
get_involved:
civil_service:
civil_service_quarterly:
@@ -384,31 +387,41 @@ sw:
other: Hatua zilizochukuliwa na serikali
guidance:
name:
- one:
- other:
+ one: Mwongozo
+ other: Mwongozo
guide:
pages_in_guide: Kurasa za mwongozo huu
skip_contents:
- impact_assessment:
+ html_publication:
name:
one:
other:
+ print_meta_data:
+ available_at: Chapisho hili linapatikana katika %{url}
+ copyright: "© Hakimiliki ya Crown %{year}"
+ isbn: 'ISBN:'
+ licence_html: 'Chapisho hili limepewa leseni chini ya sheria na masharti ya Open Government Licence v3.0 isipokuwa ibainishwe vinginevyo. Ili uone leseni, tembelea nationalarchives.gov.uk/doc/open-government-licence/version/3 au andika barua kwa Information Policy Team, The National Archives, Kew, London TW9 4DU au tuma barua pepe: psi@nationalarchives.gov.uk.'
+ third_party: Tukitambua maelezo yoyote ya hakimiliki ya watu wengine, utahitaji kupata ruhusa kutoka kwa wamiliki wa hakimiliki husika.
+ impact_assessment:
+ name:
+ one: Utathmini wa athari
+ other: Tathmini za athari
imported:
name:
one:
other:
independent_report:
name:
- one:
- other:
+ one: Ripoti huru
+ other: Ripoti huru
international_development_fund:
name:
one:
other:
international_treaty:
name:
- one:
- other:
+ one: Mkataba wa kimataifa
+ other: Mikataba ya kimataifa
licence:
change:
local_transaction:
@@ -486,8 +499,8 @@ sw:
updates_title:
map:
name:
- one:
- other:
+ one: Ramani
+ other: Ramani
medical_safety_alert:
name:
one:
@@ -498,8 +511,8 @@ sw:
other:
national_statistics:
name:
- one:
- other:
+ one: Takwimu za Kitaifa
+ other: Takwimu za Kitaifa
national_statistics_announcement:
name:
one:
@@ -514,16 +527,16 @@ sw:
other: Taarifa za habari
notice:
name:
- one:
- other:
+ one: Notisi
+ other: Notisi
official:
name:
one:
other:
official_statistics:
name:
- one:
- other:
+ one: Takwimu Rasmi
+ other: Takwimu Rasmi
official_statistics_announcement:
name:
one:
@@ -551,8 +564,8 @@ sw:
other:
policy_paper:
name:
- one:
- other:
+ one: Hati ya sera
+ other: Hati za sera
press_release:
name:
one: Taarifa kwa vyombo vya habari
@@ -567,8 +580,8 @@ sw:
other:
promotional:
name:
- one:
- other:
+ one: Nyenzo ya matangazo
+ other: Nyenzo ya matangazo
publication:
details: Maelezo
documents:
@@ -583,12 +596,12 @@ sw:
other:
regulation:
name:
- one:
- other:
+ one: Kanuni
+ other: Kanuni
research:
name:
- one:
- other:
+ one: Utafiti na uchanganuzi
+ other: Utafiti na uchanganuzi
residential_property_tribunal_decision:
name:
one:
@@ -625,8 +638,8 @@ sw:
written_on: Iliandikwa mnamo
standard:
name:
- one:
- other:
+ one: Kiwango
+ other: Viwango
start_now:
statement_to_parliament:
name:
@@ -646,8 +659,8 @@ sw:
other:
statutory_guidance:
name:
- one:
- other:
+ one: Mwongozo wa kisheria
+ other: Mwongozo wa kisheria
tax_tribunal_decision:
name:
one:
@@ -665,8 +678,8 @@ sw:
other:
transparency:
name:
- one:
- other:
+ one: Data ya uwazi
+ other: Data ya uwazi
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: Ushauri wa FCO dhidi ya usafiri wote isipokuwa usafiri muhimu katika sehemu fulani za nchi.
diff --git a/config/locales/ta.yml b/config/locales/ta.yml
index a42043822b..c91d174722 100644
--- a/config/locales/ta.yml
+++ b/config/locales/ta.yml
@@ -84,6 +84,9 @@ ta:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: வெளியிடப்பட்டது
+ updated: புதுப்பிக்கப்பட்டது
nations:
england-and-wales:
england-and-wales_for:
@@ -271,20 +274,20 @@ ta:
welsh_language_scheme_html: "%{link}-க்கு எங்கள் கடப்பாடு குறித்துக் கண்டறியுங்கள்."
corporate_report:
name:
- one:
- other:
+ one: குழும அறிக்கை
+ other: குழும அறிக்கைகள்
correspondence:
name:
- one:
- other:
+ one: கடிதத் தொடர்பு
+ other: கடிதத் தொடர்புகள்
countryside_stewardship_grant:
name:
one:
other:
decision:
name:
- one:
- other:
+ one: முடிவு
+ other: முடிவுகள்
detailed_guide:
name:
one: வழிகாட்டுதல்
@@ -334,12 +337,12 @@ ta:
valid_postcode_no_locations:
foi_release:
name:
- one:
- other:
+ one: தகவல் சுதந்திர வெளியீடு
+ other: தகவல் சுதந்திர வெளியீடுகள்
form:
name:
- one:
- other:
+ one: படிவம்
+ other: படிவங்கள்
get_involved:
civil_service:
civil_service_quarterly:
@@ -384,31 +387,41 @@ ta:
other: அரசாங்க பதில்கள்
guidance:
name:
- one:
- other:
+ one: வழிகாட்டுதல்
+ other: வழிகாட்டுதல்
guide:
pages_in_guide: இந்த வழிகாட்டுதலில் உள்ள பக்கங்கள்
skip_contents:
- impact_assessment:
+ html_publication:
name:
one:
other:
+ print_meta_data:
+ available_at: "%{url}-ல் இந்த வெளியீடு உள்ளது"
+ copyright: "© Crown காப்புரிமை %{year}"
+ isbn: 'ISBN:'
+ licence_html: 'வேறு வகையில் குறிப்பிடப்படாதவரையில் இந்த வெளியீடானது திறந்த அரசு உரிமம் v3.0-வின் விதிமுறைகளின்கீழ் உரிமம் பெற்றது. இந்த உரிமத்தைப் பார்வையிட nationalarchives.gov.uk/doc/open-government-licence/version/3 பக்கத்துக்கு வருகைதாருங்கள் அல்லது தகவல் கொள்கைக் குழுவுக்கு The National Archives, Kew, London TW9 4DU என்ற முகவரிக்கு எழுதுங்கள் அல்லது பின்வரும் முகவரிக்கு மின்னஞ்சல் செய்யுங்கள்: psi@nationalarchives.gov.uk.'
+ third_party: தொடர்புடைய காப்புரிமைதாரர்களிடமிருந்து அனுமதி பெறுவதற்கு உங்களுக்குத் தேவையான ஏதேனும் மூன்றாம் நபர் காப்புரிமைத் தகவல்கள் நாங்கள் அடையாளம் காணுமிடத்தில்.
+ impact_assessment:
+ name:
+ one: தாக்க மதிப்பீடு
+ other: தாக்க மதிப்பீடுகள்
imported:
name:
one:
other:
independent_report:
name:
- one:
- other:
+ one: தற்சார்பு அறிக்கை
+ other: தற்சார்பு அறிக்கைகள்
international_development_fund:
name:
one:
other:
international_treaty:
name:
- one:
- other:
+ one: சர்வதேச உடன்படிக்கை
+ other: சர்வதேச உடன்படிக்கைகள்
licence:
change:
local_transaction:
@@ -486,8 +499,8 @@ ta:
updates_title:
map:
name:
- one:
- other:
+ one: வரைபடம்
+ other: வரைபடங்கள்
medical_safety_alert:
name:
one:
@@ -498,8 +511,8 @@ ta:
other:
national_statistics:
name:
- one:
- other:
+ one: தேசிய புள்ளியியல்
+ other: தேசிய புள்ளியியல்
national_statistics_announcement:
name:
one:
@@ -514,16 +527,16 @@ ta:
other: செய்திகள்
notice:
name:
- one:
- other:
+ one: அறிவிப்பு
+ other: அறிவிப்புகள்
official:
name:
one:
other:
official_statistics:
name:
- one:
- other:
+ one: அதிகாரப்பூர்வ புள்ளியியல்
+ other: அதிகாரப்பூர்வ புள்ளியியல்
official_statistics_announcement:
name:
one:
@@ -551,8 +564,8 @@ ta:
other:
policy_paper:
name:
- one:
- other:
+ one: கொள்கை ஆவணம்
+ other: கொள்கை ஆவணங்கள்
press_release:
name:
one: செய்திக் குறிப்பு
@@ -567,8 +580,8 @@ ta:
other:
promotional:
name:
- one:
- other:
+ one: விளம்பரப் பொருள்
+ other: விளம்பரப் பொருள்
publication:
details: விபரங்கள்
documents:
@@ -583,12 +596,12 @@ ta:
other:
regulation:
name:
- one:
- other:
+ one: ஒழுங்குமுறை
+ other: ஒழுங்குமுறைகள்
research:
name:
- one:
- other:
+ one: ஆராய்ச்சி மற்றும் பகுப்பாய்வு
+ other: ஆராய்ச்சி மற்றும் பகுப்பாய்வு
residential_property_tribunal_decision:
name:
one:
@@ -625,8 +638,8 @@ ta:
written_on: எழுதப்பட்ட தேதி
standard:
name:
- one:
- other:
+ one: தரநிலை
+ other: தரநிலைகள்
start_now:
statement_to_parliament:
name:
@@ -646,8 +659,8 @@ ta:
other:
statutory_guidance:
name:
- one:
- other:
+ one: சட்டப்பூர்வ வழிகாட்டுதல்
+ other: சட்டப்பூர்வ வழிகாட்டுதல்
tax_tribunal_decision:
name:
one:
@@ -665,8 +678,8 @@ ta:
other:
transparency:
name:
- one:
- other:
+ one: வெளிப்படையான தரவு
+ other: வெளிப்படையான தரவு
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: அயல்நாடு, காமன்வெல்த் அலுவலகம் நாட்டின் பகுதிகளுக்கு அத்தியாவசிய பயணம் செய்வது குறித்து அனைவருக்குமான ஆலோசனை தருகிறது.
diff --git a/config/locales/th.yml b/config/locales/th.yml
index a162510559..fd15ad9041 100644
--- a/config/locales/th.yml
+++ b/config/locales/th.yml
@@ -84,6 +84,9 @@ th:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: เผยแพร่แล้ว
+ updated: ปรับปรุงแล้ว
nations:
england-and-wales:
england-and-wales_for:
@@ -257,16 +260,16 @@ th:
welsh_language_scheme_html: ดูข้อมูลเพิ่มเติมเกี่ยวกับพันธกิจของเราสำหรับ %{link}
corporate_report:
name:
- other:
+ other: รายงานของบริษัท
correspondence:
name:
- other:
+ other: จดหมายโต้ตอบ
countryside_stewardship_grant:
name:
other:
decision:
name:
- other:
+ other: การตัดสินใจ
detailed_guide:
name:
other: คำแนะนำ
@@ -307,10 +310,10 @@ th:
valid_postcode_no_locations:
foi_release:
name:
- other:
+ other: การออก FOI
form:
name:
- other:
+ other: แบบฟอร์ม
get_involved:
civil_service:
civil_service_quarterly:
@@ -354,25 +357,34 @@ th:
other: คำตอบของรัฐบาล
guidance:
name:
- other:
+ other: คำแนะนำ
guide:
pages_in_guide: หน้าในคู่มือนี้
skip_contents:
- impact_assessment:
+ html_publication:
name:
other:
+ print_meta_data:
+ available_at: สิ่งพิมพ์นี้สามารถดูได้ที่ %{url}
+ copyright: ลิขสิทธิ์ © Crown %{year}
+ isbn: 'ISBN:'
+ licence_html: 'สิ่งพิมพ์นี้ได้รับอนุญาตภายใต้ข้อกำหนดของ Open Government License v3.0 เว้นแต่จะระบุไว้เป็นอย่างอื่น เพื่อดูใบอนุญาตนี้ โปรดไปที่ nationalarchives.gov.uk/doc/open-government-licence/version/3 หรือส่งจดหมายถึงInformation Policy Team, The National Archives, Kew, London TW9 4DU หรือส่งอีเมลไปที่: psi@nationalarchives.gov.uk'
+ third_party: ในกรณีที่เราพบข้อมูลลิขสิทธิ์ของบุคคลที่สามใดๆ คุณจะต้องขอรับการอนุญาตจากผู้ถือลิขสิทธิ์ที่เกี่ยวข้องนั้นๆ
+ impact_assessment:
+ name:
+ other: การประเมินผลกระทบ
imported:
name:
other:
independent_report:
name:
- other:
+ other: รายงานอิสระ
international_development_fund:
name:
other:
international_treaty:
name:
- other:
+ other: สนธิสัญญาระหว่างประเทศ
licence:
change:
local_transaction:
@@ -449,7 +461,7 @@ th:
updates_title:
map:
name:
- other:
+ other: แผนที่
medical_safety_alert:
name:
other:
@@ -458,7 +470,7 @@ th:
other:
national_statistics:
name:
- other:
+ other: สถิติแห่งชาติ
national_statistics_announcement:
name:
other:
@@ -470,13 +482,13 @@ th:
other: เนื้อหาข่าว
notice:
name:
- other:
+ other: ประกาศ
official:
name:
other:
official_statistics:
name:
- other:
+ other: สถิติของราชการ
official_statistics_announcement:
name:
other:
@@ -499,7 +511,7 @@ th:
other:
policy_paper:
name:
- other:
+ other: เอกสารนโยบาย
press_release:
name:
other: ข่าวประชาสัมพันธ์
@@ -511,7 +523,7 @@ th:
other:
promotional:
name:
- other:
+ other: สื่อวัสดุส่งเสริมการขาย
publication:
details: รายละเอียด
documents:
@@ -523,10 +535,10 @@ th:
other:
regulation:
name:
- other:
+ other: ระเบียบข้อบังคับ
research:
name:
- other:
+ other: การวิจัยและการวิเคราะห์
residential_property_tribunal_decision:
name:
other:
@@ -558,7 +570,7 @@ th:
written_on: เขียนเมื่อ
standard:
name:
- other:
+ other: มาตรฐาน
start_now:
statement_to_parliament:
name:
@@ -574,7 +586,7 @@ th:
other:
statutory_guidance:
name:
- other:
+ other: คำแนะนำทางกฎหมาย
tax_tribunal_decision:
name:
other:
@@ -590,7 +602,7 @@ th:
other:
transparency:
name:
- other:
+ other: ข้อมูลความโปร่งใส
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: FCO ไม่แนะนำให้เดินทางไปยังบางส่วนของประเทศ นอกจากมีเหตุจำเป็น
diff --git a/config/locales/ti.yml b/config/locales/ti.yml
index f1588c89a5..274bc1870f 100644
--- a/config/locales/ti.yml
+++ b/config/locales/ti.yml
@@ -84,6 +84,9 @@ ti:
email_and_print_link: 'ነዚ ገጽ ፕሪንት ንምባል ወይ ውን ንኢመይላት ተመዝገቡ '
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: ተሓቲሙ
+ updated: ዝተመሓየሸ
nations:
england-and-wales:
england-and-wales_for:
@@ -334,8 +337,8 @@ ti:
valid_postcode_no_locations:
foi_release:
name:
- one: 'ምዝርጋሕ ናይ ኤፍ.ኦ.አይ/(FOI) '
- other: 'ምዝርጋሕ ናይ ኤፍ.ኦ.አይ/(FOI) '
+ one: ምዝርጋሕ ናይ ኤፍ.ኦ.አይ/(FOI)
+ other: ምዝርጋሕ ናይ ኤፍ.ኦ.አይ/(FOI)
form:
name:
one: ቅጥዒ
@@ -389,6 +392,16 @@ ti:
guide:
pages_in_guide: ገጻት ኣብዚ መምርሒ
skip_contents: ትሕዝቶታት ዝለል
+ html_publication:
+ name:
+ one:
+ other:
+ print_meta_data:
+ available_at: እዚ ሕታም እዚ ኣብ %{url} ይርከብ።
+ copyright: "© መሰል ቅዳሕ ዘውዲ %{year}"
+ isbn: 'ኣይ.ኤስ.ቢ.ኤን/ISBN:'
+ licence_html: እዚ ሕታም እዚ ብዘይካ እቲ ዝተገልጸ ብመሰረት ውዕላት ፍቓድ ክፉት መንግስቲ/ኦፐን ጋቨርመምት ቪ/v3.0 ፍቓድ ተዋሂብዎ ኣሎ። ነዚ ፍቓድ ንምርኣይ፡ ኣብ nationalarchives.gov.uk/doc/open-government-licence/version/3 ተወከሱ ወይ ድማ ናብ ጉጅለ ፖሊሲ ሓበሬታ፡ ወይ ናብ ሃገራዊ ማህደር/ናሽናል ኣርካይቭስ፡ ኪው፡ ለንደን ቲ.ደብሊዩ9 4ዲ.ዩ/TW9 4DU፡ ወይ ብኢመይል ጽሓፉ፡ psi@nationalarchives.gov.uk.
+ third_party: ዝኾነ ናይ ሳልሳይ ወገን መሰል ቅዳሕ ሓበሬታ ኣብ ዘለለናሉ እዋን ፣ ካብቶም ዝምልከቶም ወነንቲ መሰል ቅዳሕ ፍቓድ ክትረኽቡ ከድልየኩም እዩ።
impact_assessment:
name:
one: ናይ ጽልዋ ገምጋም
diff --git a/config/locales/tk.yml b/config/locales/tk.yml
index b6a8ec2062..c86c2c1aae 100644
--- a/config/locales/tk.yml
+++ b/config/locales/tk.yml
@@ -84,6 +84,9 @@ tk:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: Çap edilen
+ updated: Täzelenen
nations:
england-and-wales:
england-and-wales_for:
@@ -271,20 +274,20 @@ tk:
welsh_language_scheme_html: Niýetimiz barada %{link}-da okaň.
corporate_report:
name:
- one:
- other:
+ one: Korperatiw hasabat
+ other: Korperatiw hasabatlar
correspondence:
name:
- one:
- other:
+ one: Gabat gelme
+ other: Gabat gelmeler
countryside_stewardship_grant:
name:
one:
other:
decision:
name:
- one:
- other:
+ one: Karar
+ other: Kararlar
detailed_guide:
name:
one: Gözkezme
@@ -334,12 +337,12 @@ tk:
valid_postcode_no_locations:
foi_release:
name:
- one:
- other:
+ one: FOI goýberilişi
+ other: FOI goýberişleri
form:
name:
- one:
- other:
+ one: Forma
+ other: Formalar
get_involved:
civil_service:
civil_service_quarterly:
@@ -384,31 +387,41 @@ tk:
other: Hökümetiň jogaplary
guidance:
name:
- one:
- other:
+ one: Gözkezme
+ other: Gözkezme
guide:
pages_in_guide: Bu gollanmadaky sahypalar
skip_contents:
- impact_assessment:
+ html_publication:
name:
one:
other:
+ print_meta_data:
+ available_at: Bu neşir %{url} -da elýeterlidir
+ copyright: "© Crown awtorlyk hukugy %{year}"
+ isbn: 'ISBN:'
+ licence_html: 'Bu neşir başgaça bellenilip geçilmese açyk hökümet ygtyýarnamasy v3.0 şertlerinde ygtyýarlandyrylýar. Bu ygtyýarnamany görmek üçin nationalarchives.gov.uk/doc/open-government-licence/version/3 girip görüň ýa-da Maglumat syýasaty toparyna, Milli arhiw, Kew, London TW9 4DU ýa-da e-poçta ýazyň: psi@nationalarchives.gov.uk.'
+ third_party: Haýsydyr bir üçünji tarapyň awtorlyk hukugy baradaky maglumatlary kesgitlän ýerimizde, degişli awtorlyk hukugynyň eýelerinden rugsat almaly bolarsyňyz.
+ impact_assessment:
+ name:
+ one: Täsir bahalandyrmasy
+ other: Täsir bahalandyrmalary
imported:
name:
one:
other:
independent_report:
name:
- one:
- other:
+ one: Garaşsyz hasabat
+ other: Garaşsyz hasabatlar
international_development_fund:
name:
one:
other:
international_treaty:
name:
- one:
- other:
+ one: Halkara şertnama
+ other: Halkara şertnamalar
licence:
change:
local_transaction:
@@ -486,8 +499,8 @@ tk:
updates_title:
map:
name:
- one:
- other:
+ one: Karta
+ other: Kartalar
medical_safety_alert:
name:
one:
@@ -498,8 +511,8 @@ tk:
other:
national_statistics:
name:
- one:
- other:
+ one: Milli statistika
+ other: Milli statistika
national_statistics_announcement:
name:
one:
@@ -514,16 +527,16 @@ tk:
other: Habarlar
notice:
name:
- one:
- other:
+ one: Bellik
+ other: Bellikler
official:
name:
one:
other:
official_statistics:
name:
- one:
- other:
+ one: Resmi statistika
+ other: Resmi statistika
official_statistics_announcement:
name:
one:
@@ -551,8 +564,8 @@ tk:
other:
policy_paper:
name:
- one:
- other:
+ one: Syýasat kagyzy
+ other: Syýasat kagyzlary
press_release:
name:
one: Goýberiliş neşiri
@@ -567,8 +580,8 @@ tk:
other:
promotional:
name:
- one:
- other:
+ one: Mahabat materialy
+ other: Mahabat materialy
publication:
details: Içgin maglumatlar
documents:
@@ -583,12 +596,12 @@ tk:
other:
regulation:
name:
- one:
- other:
+ one: Düzgünnama
+ other: Düzgünnamalar
research:
name:
- one:
- other:
+ one: Gözleg we derňew
+ other: Gözleg we derňew
residential_property_tribunal_decision:
name:
one:
@@ -625,8 +638,8 @@ tk:
written_on: 'Ýazylan:'
standard:
name:
- one:
- other:
+ one: Standart
+ other: Standartlar
start_now:
statement_to_parliament:
name:
@@ -646,8 +659,8 @@ tk:
other:
statutory_guidance:
name:
- one:
- other:
+ one: Kanun boýunça görkezme
+ other: Kanun boýunça görkezme
tax_tribunal_decision:
name:
one:
@@ -665,8 +678,8 @@ tk:
other:
transparency:
name:
- one:
- other:
+ one: Aç-açanlyk maglumatlar
+ other: Aç-açanlyk maglumatlar
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: FCO ýurduň käbir ýerlerine zerur syýahatdan başga-da maslahat berýär.
diff --git a/config/locales/tr.yml b/config/locales/tr.yml
index 15f8c8d85d..84a189abf6 100644
--- a/config/locales/tr.yml
+++ b/config/locales/tr.yml
@@ -84,6 +84,9 @@ tr:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: Yayınlanan
+ updated: Güncelleme
nations:
england-and-wales:
england-and-wales_for:
@@ -271,20 +274,20 @@ tr:
welsh_language_scheme_html: "%{link} bağlantısına taahhüdümüzü okuyun."
corporate_report:
name:
- one:
- other:
+ one: Kurumsal rapor
+ other: Kurumsal raporlar
correspondence:
name:
- one:
- other:
+ one: Yazışma
+ other: Yazışmalar
countryside_stewardship_grant:
name:
one:
other:
decision:
name:
- one:
- other:
+ one: Karar
+ other: Kararlar
detailed_guide:
name:
one: Rehberlik
@@ -334,12 +337,12 @@ tr:
valid_postcode_no_locations:
foi_release:
name:
- one:
- other:
+ one: Bilgi Özgürlüğü duyurusu
+ other: Bilgi Özgürlüğü duyuruları
form:
name:
- one:
- other:
+ one: Form
+ other: Formlar
get_involved:
civil_service:
civil_service_quarterly:
@@ -384,31 +387,41 @@ tr:
other: Devletin yanıtları
guidance:
name:
- one:
- other:
+ one: Rehberlik
+ other: Rehberlik
guide:
pages_in_guide: Bu kılavuzdaki sayfalar
skip_contents:
- impact_assessment:
+ html_publication:
name:
one:
other:
+ print_meta_data:
+ available_at: Bu yayına %{url} üzerinden ulaşılabilir
+ copyright: "© Crown telif hakkı %{year}"
+ isbn: 'ISBN:'
+ licence_html: 'Aksi ifade edilmedikçe, bu yayın Açık Hükümet Lisansı v3.0 hükümleri kapsamında lisanslıdır. Bu lisansı görüntülemek için, nationalarchives.gov.uk/doc/open-government-licence/version/3 adresini ziyaret edin veya The National Archives, Kew, London TW9 4DU adresindeki Bilgi Politikası Ekibine yazın ya da şuraya e-posta gönderin: psi@nationalarchives.gov.uk.'
+ third_party: Üçüncü taraf telif hakkı bilgilerini tespit etmemiz halinde, ilgili telif hakkı sahiplerinden izin almanız gerekir.
+ impact_assessment:
+ name:
+ one: Etki değerlendirmesi
+ other: Etki değerlendirmeleri
imported:
name:
one:
other:
independent_report:
name:
- one:
- other:
+ one: Bağımsız rapor
+ other: Bağımsız raporlar
international_development_fund:
name:
one:
other:
international_treaty:
name:
- one:
- other:
+ one: Uluslararası anlaşma
+ other: Uluslararası anlaşmalar
licence:
change:
local_transaction:
@@ -486,8 +499,8 @@ tr:
updates_title:
map:
name:
- one:
- other:
+ one: Harita
+ other: Haritalar
medical_safety_alert:
name:
one:
@@ -498,8 +511,8 @@ tr:
other:
national_statistics:
name:
- one:
- other:
+ one: Ulusal İstatistikler
+ other: Ulusal İstatistikler
national_statistics_announcement:
name:
one:
@@ -514,16 +527,16 @@ tr:
other: Haber hikayeleri
notice:
name:
- one:
- other:
+ one: Bildirim
+ other: Bildirimler
official:
name:
one:
other:
official_statistics:
name:
- one:
- other:
+ one: Resmi İstatistikler
+ other: Resmi İstatistikler
official_statistics_announcement:
name:
one:
@@ -551,8 +564,8 @@ tr:
other:
policy_paper:
name:
- one:
- other:
+ one: Politika belgesi
+ other: Politika belgeleri
press_release:
name:
one: Basın duyurusu
@@ -567,8 +580,8 @@ tr:
other:
promotional:
name:
- one:
- other:
+ one: Promosyon malzemesi
+ other: Promosyon malzemesi
publication:
details: Ayrıntılar
documents:
@@ -583,12 +596,12 @@ tr:
other:
regulation:
name:
- one:
- other:
+ one: Düzenleme
+ other: Düzenlemeler
research:
name:
- one:
- other:
+ one: Arama ve analiz
+ other: Arama ve analiz
residential_property_tribunal_decision:
name:
one:
@@ -625,8 +638,8 @@ tr:
written_on: 'Yazılma tarihi:'
standard:
name:
- one:
- other:
+ one: Standart
+ other: Standartlar
start_now:
statement_to_parliament:
name:
@@ -646,8 +659,8 @@ tr:
other:
statutory_guidance:
name:
- one:
- other:
+ one: Mevzuat rehberi
+ other: Mevzuat rehberi
tax_tribunal_decision:
name:
one:
@@ -665,8 +678,8 @@ tr:
other:
transparency:
name:
- one:
- other:
+ one: Şeffaflık verileri
+ other: Şeffaflık verileri
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: FCO ülkenin bazı bölgelerine zorunlu seyahatler haricinde seyahat edilmemesini tavsiye etmektedir.
diff --git a/config/locales/uk.yml b/config/locales/uk.yml
index b48d8d6c52..d6a6e76a32 100644
--- a/config/locales/uk.yml
+++ b/config/locales/uk.yml
@@ -84,6 +84,9 @@ uk:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: Опубліковано
+ updated: Оновлено
nations:
england-and-wales:
england-and-wales_for:
@@ -301,14 +304,14 @@ uk:
name:
few:
many:
- one:
- other:
+ one: Звіт про діяльність корпорації
+ other: Звіти про діяльність корпорації
correspondence:
name:
few:
many:
- one:
- other:
+ one: Кореспонденція
+ other: Кореспонденція
countryside_stewardship_grant:
name:
few:
@@ -319,8 +322,8 @@ uk:
name:
few:
many:
- one:
- other:
+ one: Рішення
+ other: Рішення
detailed_guide:
name:
few:
@@ -390,14 +393,14 @@ uk:
name:
few:
many:
- one:
- other:
+ one: Випуск закону про свободу інформації
+ other: Випуски закону про свободу інформації
form:
name:
few:
many:
- one:
- other:
+ one: Форма
+ other: Форми
get_involved:
civil_service:
civil_service_quarterly:
@@ -446,17 +449,29 @@ uk:
name:
few:
many:
- one:
- other:
+ one: Довідник
+ other: Довідник
guide:
pages_in_guide: Сторінки цього посібника
skip_contents:
- impact_assessment:
+ html_publication:
name:
few:
many:
one:
other:
+ print_meta_data:
+ available_at: Ця публікація доступна за адресою %{url}
+ copyright: "© Авторське право належить короні %{year}"
+ isbn: 'ISBN:'
+ licence_html: 'Ця публікація ліцензована на умовах Відкритої державної ліцензії v3.0, якщо не зазначено інше. Щоб переглянути цю ліцензію, відвідайте nationalarchives.gov.uk/doc/open-government-licence/version/3 або надішліть запит Команді з політики роботи з інформацією, Національний архів, Кью, Лондон TW9 4DU, або надішліть електронною поштою: psi@nationalarchives.gov.uk.'
+ third_party: Якщо ми виявимо будь-яку інформацію про авторські права третіх сторін, вам необхідно буде отримати дозвіл від відповідних правовласників.
+ impact_assessment:
+ name:
+ few:
+ many:
+ one: Оцінка впливу
+ other: Оцінки впливу
imported:
name:
few:
@@ -467,8 +482,8 @@ uk:
name:
few:
many:
- one:
- other:
+ one: Незалежний звіт
+ other: Незалежні звіти
international_development_fund:
name:
few:
@@ -479,8 +494,8 @@ uk:
name:
few:
many:
- one:
- other:
+ one: Міжнародний договір
+ other: Міжнародні договори
licence:
change:
local_transaction:
@@ -562,8 +577,8 @@ uk:
name:
few:
many:
- one:
- other:
+ one: Карта
+ other: Карти
medical_safety_alert:
name:
few:
@@ -580,8 +595,8 @@ uk:
name:
few:
many:
- one:
- other:
+ one: Національна статистика
+ other: Національна статистика
national_statistics_announcement:
name:
few:
@@ -604,8 +619,8 @@ uk:
name:
few:
many:
- one:
- other:
+ one: Повідомлення
+ other: Повідомлення
official:
name:
few:
@@ -616,8 +631,8 @@ uk:
name:
few:
many:
- one:
- other:
+ one: Офіційна статистика
+ other: Офіційна статистика
official_statistics_announcement:
name:
few:
@@ -657,8 +672,8 @@ uk:
name:
few:
many:
- one:
- other:
+ one: Програмний документ
+ other: Програмні документи
press_release:
name:
few:
@@ -681,8 +696,8 @@ uk:
name:
few:
many:
- one:
- other:
+ one: Рекламний матеріал
+ other: Рекламний матеріал
publication:
details: Деталі
documents:
@@ -705,14 +720,14 @@ uk:
name:
few:
many:
- one:
- other:
+ one: Норма
+ other: Норми
research:
name:
few:
many:
- one:
- other:
+ one: Дослідження та аналіз
+ other: Дослідження та аналіз
residential_property_tribunal_decision:
name:
few:
@@ -761,8 +776,8 @@ uk:
name:
few:
many:
- one:
- other:
+ one: Стандарт
+ other: Стандарти
start_now:
statement_to_parliament:
name:
@@ -792,8 +807,8 @@ uk:
name:
few:
many:
- one:
- other:
+ one: Нормативне керівництво
+ other: Нормативне керівництво
tax_tribunal_decision:
name:
few:
@@ -817,8 +832,8 @@ uk:
name:
few:
many:
- one:
- other:
+ one: Дані прозорості
+ other: Дані прозорості
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: Міністерство закордонних справ(FCO) забороняє будь-які поїздки, крім необхідних, до певних областей країни.
diff --git a/config/locales/ur.yml b/config/locales/ur.yml
index b8aed44b59..e8e1519608 100644
--- a/config/locales/ur.yml
+++ b/config/locales/ur.yml
@@ -84,6 +84,9 @@ ur:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: شائع کردہ
+ updated: اپ ڈیٹ کردہ
nations:
england-and-wales:
england-and-wales_for:
@@ -271,20 +274,20 @@ ur:
welsh_language_scheme_html: "%{link} کے ساتھ ہماری وابستگی کے بارے میں جانیں۔"
corporate_report:
name:
- one:
- other:
+ one: کارپوریٹ رپورٹ
+ other: کارپوریٹ رپورٹس
correspondence:
name:
- one:
- other:
+ one: خط و کتابت
+ other: خط و کتابت
countryside_stewardship_grant:
name:
one:
other:
decision:
name:
- one:
- other:
+ one: فیصلہ
+ other: فیصلے
detailed_guide:
name:
one: رہنمائی
@@ -334,12 +337,12 @@ ur:
valid_postcode_no_locations:
foi_release:
name:
- one:
- other:
+ one: رہائی تھی۔
+ other: رہائی تھی۔
form:
name:
- one:
- other:
+ one: فارم
+ other: فارمز
get_involved:
civil_service:
civil_service_quarterly:
@@ -384,31 +387,41 @@ ur:
other: حکومت کے جوابات
guidance:
name:
- one:
- other:
+ one: رہنمائی
+ other: رہنمائی
guide:
pages_in_guide: اس رہنما میں موجود صفحات
skip_contents:
- impact_assessment:
+ html_publication:
name:
one:
other:
+ print_meta_data:
+ available_at: یہ پبلیکیشن %{url} پر دستیاب ہے
+ copyright: "© Crown copyright %{year}"
+ isbn: 'ISBN:'
+ licence_html: 'یہ پبلیکیشن اوپن گورنمنٹ لائسنس v3.0 کے تحت لائسنس یافتہ ہے سوائے اس کے جو بصورت دیگر بیان کردہ ہے۔ لائسنس دیکھنے کے لیے، nationalarchives.gov.uk/doc/open-government-licence/version/3 کو ملاحظہ کریں یا معلوماتی پالیسی کی ٹیم، قومی آرکائیوز، کیو، لندن TW9 4DUپر پیغام بھیجیں، یا یہاں ای میل کریں: psi@nationalarchives.gov.uk.'
+ third_party: جہاں ہم کسی فریق ثالث کی کاپی رائٹ معلومات کی شناخت کی ہو آپ کو متعلقہ کاپی رائٹ ہولڈرز سے اجازت لینے کی ضرورت ہو گی۔
+ impact_assessment:
+ name:
+ one: اثر کی جانچ
+ other: اثر کی جانچیں
imported:
name:
one:
other:
independent_report:
name:
- one:
- other:
+ one: خودمختار رپورٹ
+ other: خودمختار رپورٹس
international_development_fund:
name:
one:
other:
international_treaty:
name:
- one:
- other:
+ one: عالمی معاہدہ
+ other: عالمی معاہدے
licence:
change:
local_transaction:
@@ -486,8 +499,8 @@ ur:
updates_title:
map:
name:
- one:
- other:
+ one: نقشہ
+ other: نقشے
medical_safety_alert:
name:
one:
@@ -498,8 +511,8 @@ ur:
other:
national_statistics:
name:
- one:
- other:
+ one: قومی شماریات
+ other: قومی شماریات
national_statistics_announcement:
name:
one:
@@ -514,16 +527,16 @@ ur:
other: خبروں کی کہانیاں
notice:
name:
- one:
- other:
+ one: نوٹس
+ other: نوٹسز
official:
name:
one:
other:
official_statistics:
name:
- one:
- other:
+ one: سرکاری شماریات
+ other: سرکاری شماریات
official_statistics_announcement:
name:
one:
@@ -551,8 +564,8 @@ ur:
other:
policy_paper:
name:
- one:
- other:
+ one: پالیسی کا کاغذ
+ other: پالیسی کے کاغذات
press_release:
name:
one: پریس ریلیز
@@ -567,8 +580,8 @@ ur:
other:
promotional:
name:
- one:
- other:
+ one: تشہیری مواد
+ other: تشہیری مواد
publication:
details: تفصیلات
documents:
@@ -583,12 +596,12 @@ ur:
other:
regulation:
name:
- one:
- other:
+ one: ضابطہ
+ other: ضابطے
research:
name:
- one:
- other:
+ one: تحقیق اور تجزیہ
+ other: تحقیق اور تجزیہ
residential_property_tribunal_decision:
name:
one:
@@ -625,8 +638,8 @@ ur:
written_on: تحریر کردہ بتاریخ
standard:
name:
- one:
- other:
+ one: معیار
+ other: معیارات
start_now:
statement_to_parliament:
name:
@@ -646,8 +659,8 @@ ur:
other:
statutory_guidance:
name:
- one:
- other:
+ one: قانونی رہنمائی
+ other: قانونی رہنمائی
tax_tribunal_decision:
name:
one:
@@ -665,8 +678,8 @@ ur:
other:
transparency:
name:
- one:
- other:
+ one: شفافیت کا ڈیٹا
+ other: شفافیت کا ڈیٹا
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: FCO سوائے ملک کے کچھ حصوں میں ضروری سفر کرنے کے ہر قسم کے سفر کے خلاف مشاورت فراہم کرتا ہے۔
diff --git a/config/locales/uz.yml b/config/locales/uz.yml
index b061d68bf3..48b710d4e8 100644
--- a/config/locales/uz.yml
+++ b/config/locales/uz.yml
@@ -84,6 +84,9 @@ uz:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: Нашр қилинган
+ updated: Янгиланган
nations:
england-and-wales:
england-and-wales_for:
@@ -271,20 +274,20 @@ uz:
welsh_language_scheme_html: "%{link} да бизнинг содиқлилигимиз ҳақида билиб олинг ."
corporate_report:
name:
- one:
- other:
+ one: Корпорация фаолияти тўғрисида ҳисобот
+ other: Корпорация фаолияти тўғрисида ҳисоботлар
correspondence:
name:
- one:
- other:
+ one: Ёзишма
+ other: Ёзишмалар
countryside_stewardship_grant:
name:
one:
other:
decision:
name:
- one:
- other:
+ one: Қарор
+ other: Қарорлар
detailed_guide:
name:
one: Қўлланма
@@ -334,12 +337,12 @@ uz:
valid_postcode_no_locations:
foi_release:
name:
- one:
- other:
+ one: Маълумот эркинлиги нашри
+ other: Маълумот эркинлиги нашрлари
form:
name:
- one:
- other:
+ one: Шакл
+ other: Шакллар
get_involved:
civil_service:
civil_service_quarterly:
@@ -384,31 +387,41 @@ uz:
other: Ҳукумат жавоблари
guidance:
name:
- one:
- other:
+ one: Қўлланма
+ other: Қўлланма
guide:
pages_in_guide: Ушбу қўлланмадаги саҳифалар
skip_contents:
- impact_assessment:
+ html_publication:
name:
one:
other:
+ print_meta_data:
+ available_at: Ушбу нашр этиш %{url} манзилда эришимли
+ copyright: "© Британия миллатлар ҳамдўстлигининг Муаллифлик ҳуқуқи %{year}"
+ isbn: 'Китобнинг халқаро стандарт рақами:'
+ licence_html: 'Ушбу нашр этиш 3.0 версиядаги Очиқ давлат лицензияси доирасида лицензияланган, агар бошқа шарт кўрсатилмаган бўлса. Лицензия билан танишиш учун nationalarchives.gov.uk/doc/open-government-licence/version/3 сайтларига ташриф буюринг ёки Ахборот сиёсати билан ишлаш бўйича гуруҳга, Миллий архив, Кью, Лондон TW9 4DU, ёки улар билан қуйидаги электрон почта бўйича боғланинг: psi@nationalarchives.gov.uk.'
+ third_party: Агар учинчи шахсларнинг муаллифлик ҳуқуқлари ҳақида бирон бир маълумот аниқланадиган бўлса, сизга мувофиқ ҳуқуқий ворислардан рухсатнома олишингиз зарур бўлади.
+ impact_assessment:
+ name:
+ one: Таъсир этиш баҳоси
+ other: Таъсир этиш баҳолари
imported:
name:
one:
other:
independent_report:
name:
- one:
- other:
+ one: Мустақил ҳисобот
+ other: Мустақил ҳисоботлар
international_development_fund:
name:
one:
other:
international_treaty:
name:
- one:
- other:
+ one: Халқаро шартнома
+ other: Халқаро шартномалар
licence:
change:
local_transaction:
@@ -486,8 +499,8 @@ uz:
updates_title:
map:
name:
- one:
- other:
+ one: Карта
+ other: Карталар
medical_safety_alert:
name:
one:
@@ -498,8 +511,8 @@ uz:
other:
national_statistics:
name:
- one:
- other:
+ one: Давлат статистик маълумотлар
+ other: Давлат статистик маълумотлар
national_statistics_announcement:
name:
one:
@@ -514,16 +527,16 @@ uz:
other: Янгилик сюжетлари
notice:
name:
- one:
- other:
+ one: Хабарнома
+ other: Хабарномалар
official:
name:
one:
other:
official_statistics:
name:
- one:
- other:
+ one: Расмий статистик маълумотлар
+ other: Расмий статистик маълумотлар
official_statistics_announcement:
name:
one:
@@ -551,8 +564,8 @@ uz:
other:
policy_paper:
name:
- one:
- other:
+ one: Сиёсат масалалари бўйича ҳужжат
+ other: Сиёсат масалалари бўйича ҳужжатлари
press_release:
name:
one: Матбуот-релизи
@@ -567,8 +580,8 @@ uz:
other:
promotional:
name:
- one:
- other:
+ one: Реклама материаллари
+ other: Реклама материаллари
publication:
details: Батафсил маълумотлар
documents:
@@ -583,12 +596,12 @@ uz:
other:
regulation:
name:
- one:
- other:
+ one: Низом
+ other: Низомлар
research:
name:
- one:
- other:
+ one: Тадқиқот ва таҳлил
+ other: Тадқиқот ва таҳлил
residential_property_tribunal_decision:
name:
one:
@@ -625,8 +638,8 @@ uz:
written_on: Ёзилган
standard:
name:
- one:
- other:
+ one: Стандарт
+ other: Стандартлар
start_now:
statement_to_parliament:
name:
@@ -646,8 +659,8 @@ uz:
other:
statutory_guidance:
name:
- one:
- other:
+ one: Норматив қўлланма
+ other: Норматив қўлланма
tax_tribunal_decision:
name:
one:
@@ -665,8 +678,8 @@ uz:
other:
transparency:
name:
- one:
- other:
+ one: Шаффоф маълумотлар
+ other: Шаффоф маълумотлар
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: The Ташқи ишлар ва Ҳамдўстлик ишлари бўйича вазирлиги ўта заруратсиз мамлакатнинг муайян минтақаларига сафарларни амалга оширишни тавсия этмайди.
diff --git a/config/locales/vi.yml b/config/locales/vi.yml
index 12734a5958..b49836fd3f 100644
--- a/config/locales/vi.yml
+++ b/config/locales/vi.yml
@@ -84,6 +84,9 @@ vi:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: Đã xuất bản
+ updated: Đã cập nhật
nations:
england-and-wales:
england-and-wales_for:
@@ -257,16 +260,16 @@ vi:
welsh_language_scheme_html: Tìm hiểu về cam kết của chúng tôi đối với %{link}.
corporate_report:
name:
- other:
+ other: Báo cáo của doanh nghiệp
correspondence:
name:
- other:
+ other: Thư từ
countryside_stewardship_grant:
name:
other:
decision:
name:
- other:
+ other: Quyết định
detailed_guide:
name:
other: Hướng dẫn
@@ -307,10 +310,10 @@ vi:
valid_postcode_no_locations:
foi_release:
name:
- other:
+ other: Công bố FOI
form:
name:
- other:
+ other: Biểu mẫu
get_involved:
civil_service:
civil_service_quarterly:
@@ -354,25 +357,34 @@ vi:
other: Phản hồi của chính phủ
guidance:
name:
- other:
+ other: Hướng dẫn
guide:
pages_in_guide: Các trang trong hướng dẫn này
skip_contents:
- impact_assessment:
+ html_publication:
name:
other:
+ print_meta_data:
+ available_at: Ấn phẩm này có sẵn tại %{url}
+ copyright: "© Bản quyền Crown %{year}"
+ isbn: 'ISBN:'
+ licence_html: 'Ấn phẩm này được cấp phép theo các điều khoản của Giấy phép Chính phủ Mở pb3.0 trừ khi có quy định khác. Để xem giấy phép này, hãy truy cập nationalarchives.gov.uk/doc/open-government-licence/version/3 hoặc gửi thư cho Nhóm Chính sách Thông tin, Cơ quan Lưu trữ Quốc gia, Kew, London TW9 4DU hoặc gửi email đến: psi@nationalarchives.gov.uk.'
+ third_party: Khi chúng tôi xác định được bất kỳ thông tin bản quyền nào của bên thứ ba, bạn sẽ cần phải xin phép chủ sở hữu bản quyền liên quan.
+ impact_assessment:
+ name:
+ other: Đánh giá tác động
imported:
name:
other:
independent_report:
name:
- other:
+ other: Báo cáo độc lập
international_development_fund:
name:
other:
international_treaty:
name:
- other:
+ other: Hiệp ước quốc tế
licence:
change:
local_transaction:
@@ -449,7 +461,7 @@ vi:
updates_title:
map:
name:
- other:
+ other: Bản đồ
medical_safety_alert:
name:
other:
@@ -458,7 +470,7 @@ vi:
other:
national_statistics:
name:
- other:
+ other: Thống kê Quốc gia
national_statistics_announcement:
name:
other:
@@ -470,13 +482,13 @@ vi:
other: Bài phóng sự
notice:
name:
- other:
+ other: Thông báo
official:
name:
other:
official_statistics:
name:
- other:
+ other: Thống kê Chính thức
official_statistics_announcement:
name:
other:
@@ -499,7 +511,7 @@ vi:
other:
policy_paper:
name:
- other:
+ other: Tài liệu chính sách
press_release:
name:
other: Thông cáo báo chí
@@ -511,7 +523,7 @@ vi:
other:
promotional:
name:
- other:
+ other: Tài liệu quảng cáo
publication:
details: Chi tiết
documents:
@@ -523,10 +535,10 @@ vi:
other:
regulation:
name:
- other:
+ other: Quy định
research:
name:
- other:
+ other: Nghiên cứu và phân tích
residential_property_tribunal_decision:
name:
other:
@@ -558,7 +570,7 @@ vi:
written_on: Ngày viết
standard:
name:
- other:
+ other: Tiêu chuẩn
start_now:
statement_to_parliament:
name:
@@ -574,7 +586,7 @@ vi:
other:
statutory_guidance:
name:
- other:
+ other: Hướng dẫn theo luật định
tax_tribunal_decision:
name:
other:
@@ -590,7 +602,7 @@ vi:
other:
transparency:
name:
- other:
+ other: Dữ liệu về tính minh bạch
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: FCO khuyến cáo chỉ nên đi đến một số nơi ở quốc gia này khi thật cần thiết.
diff --git a/config/locales/yi.yml b/config/locales/yi.yml
index e3dbe8791c..13e3450439 100644
--- a/config/locales/yi.yml
+++ b/config/locales/yi.yml
@@ -84,6 +84,9 @@ yi:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published:
+ updated:
nations:
england-and-wales:
england-and-wales_for:
@@ -384,11 +387,21 @@ yi:
other:
guidance:
name:
- one:
+ one: גיידאַנס
other:
guide:
pages_in_guide:
skip_contents:
+ html_publication:
+ name:
+ one:
+ other:
+ print_meta_data:
+ available_at:
+ copyright:
+ isbn:
+ licence_html:
+ third_party:
impact_assessment:
name:
one:
diff --git a/config/locales/zh-hk.yml b/config/locales/zh-hk.yml
index a562a920d8..4ebb06a34b 100644
--- a/config/locales/zh-hk.yml
+++ b/config/locales/zh-hk.yml
@@ -84,6 +84,9 @@ zh-hk:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: 已發布
+ updated: 已更新
nations:
england-and-wales:
england-and-wales_for:
@@ -257,16 +260,16 @@ zh-hk:
welsh_language_scheme_html: 查閱我們在 %{link} 的發佈承諾。
corporate_report:
name:
- other:
+ other: 政府報告
correspondence:
name:
- other:
+ other: 通信
countryside_stewardship_grant:
name:
other:
decision:
name:
- other:
+ other: 決定
detailed_guide:
name:
other: 詳細指引
@@ -307,10 +310,10 @@ zh-hk:
valid_postcode_no_locations:
foi_release:
name:
- other:
+ other: 資訊自由(FOI)資訊發布
form:
name:
- other:
+ other: 表格
get_involved:
civil_service:
civil_service_quarterly:
@@ -354,25 +357,34 @@ zh-hk:
other: 政府回應
guidance:
name:
- other:
+ other: 指引
guide:
pages_in_guide: 本指引之頁面
skip_contents:
- impact_assessment:
+ html_publication:
name:
other:
+ print_meta_data:
+ available_at: 本出版品可在 %{url} 獲取
+ copyright: "© Crown 版權所有 %{year}"
+ isbn: ISBN:
+ licence_html: 本出版品依據 Open Government Licence v3.0 之條款授權,但另有說明者除外。要查閱此一許可證,請訪問 nationalarchives.gov.uk/doc/open-government-licence/version/3 或致函 Information Policy Team, The National Archives, Kew, London TW9 4DU,或寄電郵至: psi@nationalarchives.gov.uk。
+ third_party: 如我們發現任何第三方之版權資訊,您將需獲得有關版權人之許可。
+ impact_assessment:
+ name:
+ other: 影響評估
imported:
name:
other:
independent_report:
name:
- other:
+ other: 獨立報告
international_development_fund:
name:
other:
international_treaty:
name:
- other:
+ other: 國際條約
licence:
change:
local_transaction:
@@ -449,7 +461,7 @@ zh-hk:
updates_title:
map:
name:
- other:
+ other: 地圖
medical_safety_alert:
name:
other:
@@ -458,7 +470,7 @@ zh-hk:
other:
national_statistics:
name:
- other:
+ other: 國家統計數據
national_statistics_announcement:
name:
other:
@@ -470,13 +482,13 @@ zh-hk:
other: 新聞
notice:
name:
- other:
+ other: 通知
official:
name:
other:
official_statistics:
name:
- other:
+ other: 統計資料
official_statistics_announcement:
name:
other:
@@ -499,7 +511,7 @@ zh-hk:
other:
policy_paper:
name:
- other:
+ other: 政策文件
press_release:
name:
other: 新聞稿
@@ -511,7 +523,7 @@ zh-hk:
other:
promotional:
name:
- other:
+ other: 宣傳資料
publication:
details: 詳情
documents:
@@ -523,10 +535,10 @@ zh-hk:
other:
regulation:
name:
- other:
+ other: 規定
research:
name:
- other:
+ other: 研究與分析
residential_property_tribunal_decision:
name:
other:
@@ -558,7 +570,7 @@ zh-hk:
written_on: 記載於
standard:
name:
- other:
+ other: 標準
start_now:
statement_to_parliament:
name:
@@ -574,7 +586,7 @@ zh-hk:
other:
statutory_guidance:
name:
- other:
+ other: 法定指引
tax_tribunal_decision:
name:
other:
@@ -590,7 +602,7 @@ zh-hk:
other:
transparency:
name:
- other:
+ other: 透明化數據
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: FCO 建議,如非必要,請勿前往該國部份地區。
diff --git a/config/locales/zh-tw.yml b/config/locales/zh-tw.yml
index 7cc76eb2a9..c83b33b34f 100644
--- a/config/locales/zh-tw.yml
+++ b/config/locales/zh-tw.yml
@@ -84,6 +84,9 @@ zh-tw:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: 發布
+ updated: 更新
nations:
england-and-wales:
england-and-wales_for:
@@ -257,16 +260,16 @@ zh-tw:
welsh_language_scheme_html: 了解我們對 %{link} 的承諾。
corporate_report:
name:
- other:
+ other: 企業報告
correspondence:
name:
- other:
+ other: 信函
countryside_stewardship_grant:
name:
other:
decision:
name:
- other:
+ other: 決定
detailed_guide:
name:
other: 指導
@@ -307,10 +310,10 @@ zh-tw:
valid_postcode_no_locations:
foi_release:
name:
- other:
+ other: 資訊自由發布
form:
name:
- other:
+ other: 形式
get_involved:
civil_service:
civil_service_quarterly:
@@ -354,25 +357,34 @@ zh-tw:
other: 政府回應
guidance:
name:
- other:
+ other: 指導
guide:
pages_in_guide: 本指南中的頁面
skip_contents:
- impact_assessment:
+ html_publication:
name:
other:
+ print_meta_data:
+ available_at: 該出版物可在 %{url} 取得
+ copyright: "© Crown copyright %{year}"
+ isbn: ISBN:
+ licence_html: 除非另有說明,否則本出版物獲得政府資料開放授權條款 v3.0 許可。查看此許可,請探訪nationalarchives.gov.uk/doc/open-government-licence/ version/3或寫信至倫敦,基尤,英國國家檔案館的資訊政策團隊,國家檔案館, TW9 4DU,或發送電子郵件:psi@nationalarchives.gov.uk.
+ third_party: 此處用以我們確定任何第三方版權資訊,你會需要獲得相關版權所有者的許可。
+ impact_assessment:
+ name:
+ other: 影響評估
imported:
name:
other:
independent_report:
name:
- other:
+ other: 獨立報告
international_development_fund:
name:
other:
international_treaty:
name:
- other:
+ other: 國際條約
licence:
change:
local_transaction:
@@ -449,7 +461,7 @@ zh-tw:
updates_title:
map:
name:
- other:
+ other: 地圖
medical_safety_alert:
name:
other:
@@ -458,7 +470,7 @@ zh-tw:
other:
national_statistics:
name:
- other:
+ other: 國家統計
national_statistics_announcement:
name:
other:
@@ -470,13 +482,13 @@ zh-tw:
other: 新聞報導
notice:
name:
- other:
+ other: 通知
official:
name:
other:
official_statistics:
name:
- other:
+ other: 官方統計
official_statistics_announcement:
name:
other:
@@ -499,7 +511,7 @@ zh-tw:
other:
policy_paper:
name:
- other:
+ other: 政策文件
press_release:
name:
other: 新聞稿
@@ -511,7 +523,7 @@ zh-tw:
other:
promotional:
name:
- other:
+ other: 宣傳資料
publication:
details: 細節
documents:
@@ -523,10 +535,10 @@ zh-tw:
other:
regulation:
name:
- other:
+ other: 法規
research:
name:
- other:
+ other: 研究與分析
residential_property_tribunal_decision:
name:
other:
@@ -558,7 +570,7 @@ zh-tw:
written_on: 寫在
standard:
name:
- other:
+ other: 標準
start_now:
statement_to_parliament:
name:
@@ -574,7 +586,7 @@ zh-tw:
other:
statutory_guidance:
name:
- other:
+ other: 法令指導
tax_tribunal_decision:
name:
other:
@@ -590,7 +602,7 @@ zh-tw:
other:
transparency:
name:
- other:
+ other: 透明數據
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: 外交和英聯邦事務部 建議非必要的旅行,不要前往該國部分地區。
diff --git a/config/locales/zh.yml b/config/locales/zh.yml
index 80559cb721..88f2f34d30 100644
--- a/config/locales/zh.yml
+++ b/config/locales/zh.yml
@@ -84,6 +84,9 @@ zh:
email_and_print_link:
extra_bank_holiday:
holiday_entitlement_html:
+ metadata:
+ published: 已发布
+ updated: 已更新
nations:
england-and-wales:
england-and-wales_for:
@@ -257,16 +260,16 @@ zh:
welsh_language_scheme_html: 查看我们对 %{link} 的承诺。
corporate_report:
name:
- other:
+ other: 公司报告
correspondence:
name:
- other:
+ other: 通信
countryside_stewardship_grant:
name:
other:
decision:
name:
- other:
+ other: 决策
detailed_guide:
name:
other: 指南
@@ -307,10 +310,10 @@ zh:
valid_postcode_no_locations:
foi_release:
name:
- other:
+ other: FOI 发布
form:
name:
- other:
+ other: 表格
get_involved:
civil_service:
civil_service_quarterly:
@@ -354,25 +357,34 @@ zh:
other: 政府回应
guidance:
name:
- other:
+ other: 指南
guide:
pages_in_guide: 本指南的页面
skip_contents:
- impact_assessment:
+ html_publication:
name:
other:
+ print_meta_data:
+ available_at: 本发表内容可在 %{url} 获取。
+ copyright: "© Crown 版权所有 %{year}"
+ isbn: ISBN:
+ licence_html: 除非另有说明,本发表内容根据开放政府许可证3.0版的条款授权。 要浏览此许可证,请访问 nationalarchives.gov.uk/doc/open-government-licence/version/3 或写信给资讯政策组,The National Archives, Kew, London TW9 4DU,或发送电子邮件:psi@nationalarchives.gov.uk.
+ third_party: '如果我们发现任何第三者的版权资料,您需要获得有关版权持有人的许可。 '
+ impact_assessment:
+ name:
+ other: 影响评估
imported:
name:
other:
independent_report:
name:
- other:
+ other: 独立报告
international_development_fund:
name:
other:
international_treaty:
name:
- other:
+ other: 国际条约
licence:
change:
local_transaction:
@@ -449,7 +461,7 @@ zh:
updates_title:
map:
name:
- other:
+ other: 地图
medical_safety_alert:
name:
other:
@@ -458,7 +470,7 @@ zh:
other:
national_statistics:
name:
- other:
+ other: 国家统计局
national_statistics_announcement:
name:
other:
@@ -470,13 +482,13 @@ zh:
other: 新闻故事
notice:
name:
- other:
+ other: 通知
official:
name:
other:
official_statistics:
name:
- other:
+ other: 官方统计
official_statistics_announcement:
name:
other:
@@ -499,7 +511,7 @@ zh:
other:
policy_paper:
name:
- other:
+ other: 政策文件
press_release:
name:
other: 新闻稿
@@ -511,7 +523,7 @@ zh:
other:
promotional:
name:
- other:
+ other: 宣传资料
publication:
details: 详细信息
documents:
@@ -523,10 +535,10 @@ zh:
other:
regulation:
name:
- other:
+ other: 条例
research:
name:
- other:
+ other: 研究和分析
residential_property_tribunal_decision:
name:
other:
@@ -558,7 +570,7 @@ zh:
written_on: 书写日期
standard:
name:
- other:
+ other: 标准
start_now:
statement_to_parliament:
name:
@@ -574,7 +586,7 @@ zh:
other:
statutory_guidance:
name:
- other:
+ other: 法定指南
tax_tribunal_decision:
name:
other:
@@ -590,7 +602,7 @@ zh:
other:
transparency:
name:
- other:
+ other: 透明度数据
travel_advice:
alert_status:
avoid_all_but_essential_travel_to_parts_html: 'FCO 建议除非必要,否则不要前往该国部分地区。 '
diff --git a/config/routes.rb b/config/routes.rb
index 1ebb54904a..af86c94041 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -195,6 +195,10 @@
get "*path", to: "flexible_page#show"
end
+ constraints FullPathFormatRoutingConstraint.new("html_publication") do
+ get "*path(.:locale)", to: "html_publication#show"
+ end
+
constraints FullPathFormatRoutingConstraint.new("landing_page") do
get "*path", to: "landing_page#show"
end
diff --git a/lib/services.rb b/lib/services.rb
new file mode 100644
index 0000000000..1237e8c46f
--- /dev/null
+++ b/lib/services.rb
@@ -0,0 +1,13 @@
+require "gds_api/content_store"
+
+module Services
+ def self.content_store
+ @content_store ||= GdsApi::ContentStore.new(
+ Plek.new.find("content-store"),
+ # Disable caching to avoid caching a stale max-age in the cache control
+ # headers, which would cause this app to set the wrong max-age on its
+ # own responses
+ disable_cache: true,
+ )
+ end
+end
diff --git a/spec/models/html_publication_spec.rb b/spec/models/html_publication_spec.rb
new file mode 100644
index 0000000000..2c78d43854
--- /dev/null
+++ b/spec/models/html_publication_spec.rb
@@ -0,0 +1,54 @@
+RSpec.describe HtmlPublication do
+ subject(:html_publication) { described_class.new(content_store_response) }
+
+ let(:content_store_response) { GovukSchemas::Example.find("html_publication", example_name: "published") }
+
+ it "returns a parent" do
+ expect(html_publication.parent.content_id).to eq("8b19c238-54e3-4e27-b0d7-60f8e2a677c9")
+ end
+
+ it "returns public timestamp" do
+ expect(html_publication.public_timestamp).to eq("2016-01-17T14:19:42.460Z")
+ end
+
+ it "returns first published version" do
+ expect(html_publication.first_published_version).to be(true)
+ end
+
+ it_behaves_like "it has historical government information", "html_publication", "published_with_history_mode"
+ it_behaves_like "it can be withdrawn", "html_publication", "withdrawn"
+ it_behaves_like "it can have national applicability", "html_publication", "national_applicability_alternative_url_html_publication"
+
+ context "when there are no headers" do
+ let(:content_store_response) { GovukSchemas::Example.find("html_publication", example_name: "prime_ministers_office") }
+
+ it "return an empty array" do
+ expect(described_class.new(content_store_response).headers.count).to eq(0)
+ end
+ end
+
+ context "when the page contains headers" do
+ let(:content_store_response) { GovukSchemas::Example.find("html_publication", example_name: "multiple_organisations") }
+
+ it "returns an array of headers" do
+ expect(described_class.new(content_store_response).headers.count).to eq(4)
+ expect(described_class.new(content_store_response).headers[3]["headers"].count).to eq(1)
+ end
+ end
+
+ it "returns copyright year" do
+ expect(described_class.new(content_store_response).copyright_year).to eq(2016)
+ end
+
+ context "when there is an isbn" do
+ let(:content_store_response) { GovukSchemas::Example.find("html_publication", example_name: "print_with_meta_data") }
+
+ it "returns isbn" do
+ expect(described_class.new(content_store_response).isbn).to eq("978-1-4098-4066-4")
+ end
+ end
+
+ it "returns the govspeak content" do
+ expect(described_class.new(content_store_response).body).to include("The Environment Agency has received a new bespoke application for an environmental permit under the Environmental Permitting (England and Wales) Regulations 2010 from Mr Derek Mears.")
+ end
+end
diff --git a/spec/presenter/html_publication_presenter_spec.rb b/spec/presenter/html_publication_presenter_spec.rb
new file mode 100644
index 0000000000..f55af11bc1
--- /dev/null
+++ b/spec/presenter/html_publication_presenter_spec.rb
@@ -0,0 +1,144 @@
+RSpec.describe HtmlPublicationPresenter do
+ subject(:html_publication_presenter) { described_class.new(HtmlPublication.new(content_store_response)) }
+
+ let(:content_store_response) { GovukSchemas::Example.find("html_publication", example_name: "long_form_and_automatically_numbered_headings") }
+
+ describe "#hide_from_search_engines?" do
+ it "returns false" do
+ expect(html_publication_presenter.hide_from_search_engines?).to be false
+ end
+
+ context "when the page is in the hide list" do
+ let(:content_store_response) do
+ GovukSchemas::Example.find(:html_publication, example_name: "long_form_and_automatically_numbered_headings").tap do |example|
+ example["links"]["parent"][0]["base_path"] = "/government/publications/govuk-app-testing-privacy-notice-how-we-use-your-data"
+ end
+ end
+
+ it "returns true" do
+ expect(html_publication_presenter.hide_from_search_engines?).to be true
+ end
+ end
+
+ context "when the page has no parent" do
+ let(:content_store_response) do
+ GovukSchemas::Example.find(:html_publication, example_name: "long_form_and_automatically_numbered_headings").tap do |example|
+ example["links"]["parent"] = nil
+ end
+ end
+
+ it "returns false" do
+ expect(html_publication_presenter.hide_from_search_engines?).to be false
+ end
+ end
+
+ context "when the page has an incomplete parent" do
+ let(:content_store_response) do
+ GovukSchemas::Example.find(:html_publication, example_name: "long_form_and_automatically_numbered_headings").tap do |example|
+ example["links"]["parent"][0] = {}
+ end
+ end
+
+ it "returns false" do
+ expect(html_publication_presenter.hide_from_search_engines?).to be false
+ end
+ end
+ end
+
+ describe "#organisation_logos" do
+ context "when there is one organisation" do
+ let(:content_store_response) do
+ GovukSchemas::Example.find(:html_publication, example_name: "arabic_translation")
+ end
+
+ it "returns the organisation details" do
+ expected = [
+ {
+ brand: "uk-trade-investment",
+ crest: "single-identity",
+ image: nil,
+ name: "UK Trade
& Investment",
+ url: "/government/organisations/uk-trade-investment",
+ },
+ ]
+ expect(html_publication_presenter.organisation_logos).to eq(expected)
+ end
+ end
+
+ context "when there are multiple organisations" do
+ let(:content_store_response) do
+ GovukSchemas::Example.find(:html_publication, example_name: "long_form_and_automatically_numbered_headings").tap do |example|
+ example["links"]["organisations"] << {
+ schema_name: "organisation",
+ document_type: "organisation",
+ title: "Environment Agency",
+ details: {
+ logo: {
+ formatted_title: "Environment Agency",
+ image: {
+ url: "https://assets.publishing.service.gov.uk/government/uploads/system/uploads/organisation/logo/199/EAlogo.png",
+ },
+ },
+ },
+ base_path: "/government/organisations/environment-agency",
+ }.deep_stringify_keys
+ end
+ end
+
+ it "returns the organisation details minus any images" do
+ expect(html_publication_presenter.organisation_logos[1][:name]).to eq("Environment Agency")
+ expect(html_publication_presenter.organisation_logos[1][:image]).to be_nil
+ end
+ end
+ end
+
+ describe "#last_changed" do
+ context "when this is the first published version" do
+ let(:content_store_response) do
+ GovukSchemas::Example.find(:html_publication, example_name: "published_with_history_mode")
+ end
+
+ it "gives the date when last updated" do
+ expect(html_publication_presenter.last_changed).to eq("Published 17 January 2016")
+ end
+ end
+
+ context "when this isn't the first published version" do
+ let(:content_store_response) do
+ GovukSchemas::Example.find(:html_publication, example_name: "published_with_history_mode").tap do |example|
+ example["details"]["first_published_version"] = false
+ end
+ end
+
+ it "gives the date when last updated" do
+ expect(html_publication_presenter.last_changed).to eq("Updated 17 January 2016")
+ end
+ end
+ end
+
+ describe "#format_sub_type" do
+ context "when the parent has a document type" do
+ let(:content_store_response) do
+ GovukSchemas::Example.find(:html_publication, example_name: "multiple_organisations").tap do |example|
+ example["links"]["parent"][0]["document_type"] = "example_document_type"
+ end
+ end
+
+ it "outputs the parent document type" do
+ expect(html_publication_presenter.format_sub_type).to eq("example_document_type")
+ end
+ end
+
+ context "when the parent does not exist" do
+ let(:content_store_response) do
+ GovukSchemas::Example.find(:html_publication, example_name: "multiple_organisations").tap do |example|
+ example["links"]["parent"] = nil
+ end
+ end
+
+ it "outputs the default document type" do
+ expect(html_publication_presenter.format_sub_type).to eq("publication")
+ end
+ end
+ end
+end
diff --git a/spec/requests/html_publication_spec.rb b/spec/requests/html_publication_spec.rb
new file mode 100644
index 0000000000..63f07a59b2
--- /dev/null
+++ b/spec/requests/html_publication_spec.rb
@@ -0,0 +1,24 @@
+RSpec.describe "HTML publication" do
+ describe "GET show" do
+ let(:content_item) { GovukSchemas::Example.find("html_publication", example_name: "long_form_and_automatically_numbered_headings") }
+ let(:base_path) { content_item.fetch("base_path") }
+
+ before do
+ stub_content_store_has_item(base_path, content_item)
+ parent_path = content_item["links"]["parent"].first["base_path"]
+ stub_content_store_has_item(parent_path, GovukSchemas::Example.find("publication", example_name: "publication"))
+ end
+
+ it "returns 200" do
+ get base_path
+
+ expect(response).to have_http_status(:ok)
+ end
+
+ it "renders the show template" do
+ get base_path
+
+ expect(response).to render_template("show")
+ end
+ end
+end
diff --git a/spec/system/html_publication_spec.rb b/spec/system/html_publication_spec.rb
new file mode 100644
index 0000000000..70cd896cdb
--- /dev/null
+++ b/spec/system/html_publication_spec.rb
@@ -0,0 +1,139 @@
+RSpec.describe "HTML publication" do
+ describe "GET //" do
+ let(:content_item) { GovukSchemas::Example.find(:html_publication, example_name: "published") }
+ let(:base_path) { content_item["base_path"] }
+
+ before do
+ stub_content_store_has_item(base_path, content_item)
+ parent_path = content_item["links"]["parent"].first["base_path"]
+ stub_content_store_has_item(parent_path, GovukSchemas::Example.find("publication", example_name: "publication"))
+
+ visit base_path
+ end
+
+ describe "when visiting a html publication" do
+ it "has expected elements and contents" do
+ visit base_path
+
+ within ".gem-c-inverse-header" do
+ format_sub_type = content_item["details"]["format_sub_type"]
+ expect(page).to have_text(format_sub_type) if format_sub_type.present?
+ expect(page).to have_text(content_item["title"])
+
+ expect(page).to have_text("Published 17 January 2016")
+ end
+
+ within "#contents" do
+ expect(page).to have_text("Contents")
+ expect(page).to have_css(".gem-c-contents-list")
+ end
+
+ expect(page).to have_text("The Environment Agency will normally put any responses it receives on the public register. This includes your name and contact details. Tell us if you don’t want your response to be public.")
+ end
+
+ it "renders back to contents elements" do
+ expect(page).to have_css(".gem-c-back-to-top-link[href='#contents']")
+ end
+ end
+
+ describe "when visiting a html publication with metadata" do
+ let(:content_item) { GovukSchemas::Example.find(:html_publication, example_name: "print_with_meta_data") }
+
+ it "has meta data" do
+ within ".print-metadata" do
+ expect(page).to have_text("© Crown copyright #{content_item['details']['public_timestamp'].to_date.year}")
+ expect(page).to have_text("ISBN: #{content_item['details']['isbn']}")
+ end
+ end
+ end
+
+ describe "a prime minister office organisation html publication" do
+ let(:content_item) { GovukSchemas::Example.find(:html_publication, example_name: "prime_ministers_office") }
+
+ it "has the right organisation logo" do
+ within(".organisation-logos__logo:nth-of-type(4)") do
+ expect(page).to have_css(".gem-c-organisation-logo.brand--cabinet-office")
+ end
+ end
+
+ it "shows no contents when headings are an empty list" do
+ within ".gem-c-inverse-header" do
+ expect(page).not_to have_text("Contents")
+ end
+ end
+ end
+
+ describe "an historically political html publication" do
+ let(:content_item) { GovukSchemas::Example.find(:html_publication, example_name: "published_with_history_mode") }
+
+ it "describes the relevant government" do
+ within ".govuk-notification-banner__content" do
+ expect(page).to have_text("This was published under the 2010 to 2015 Conservative and Liberal Democrat coalition government")
+ end
+ end
+ end
+
+ describe "a withdrawn html publication" do
+ let(:content_item) do
+ GovukSchemas::Example.find(:html_publication, example_name: "prime_ministers_office").tap do |example|
+ example["withdrawn_notice"] = {
+ 'explanation': "This is out of date",
+ 'withdrawn_at': "2014-08-09T11:39:05Z",
+ }
+ end
+ end
+
+ it "shows withdrawn details" do
+ expect(page).to have_css(".gem-c-notice__title", text: "This policy paper was withdrawn on 9 August 2014")
+ expect(page).to have_css(".gem-c-notice", text: "This is out of date")
+ end
+ end
+
+ describe "a withdrawn publication with no parent document_type" do
+ let(:content_item) do
+ GovukSchemas::Example.find(:html_publication, example_name: "prime_ministers_office").tap do |example|
+ example["links"]["parent"][0]["document_type"] = nil
+ example["withdrawn_notice"] = {
+ 'explanation': "This is out of date",
+ 'withdrawn_at': "2014-08-09T11:39:05Z",
+ }
+ end
+ end
+
+ it "shows withdrawn details with 'publication' as the type" do
+ expect(page).to have_css(".gem-c-notice__title", text: "This publication was withdrawn on 9 August 2014")
+ end
+ end
+
+ describe "does not render with the single page notification button" do
+ let(:content_item) { GovukSchemas::Example.find(:html_publication, example_name: "published") }
+
+ it "does not have the single page notification button" do
+ expect(page).not_to have_css(".gem-c-single-page-notification-button")
+ end
+ end
+
+ describe "a html publication that only applies to a set of nations, with alternative urls" do
+ let(:content_item) { GovukSchemas::Example.find(:html_publication, example_name: "national_applicability_alternative_url_html_publication") }
+
+ it "shows the devolved nations component" do
+ within(".gem-c-devolved-nations") do
+ expect(page).to have_text("Applies to England, Scotland and Wales")
+ expect(page).to have_link("Publication for Northern Ireland", href: "http://www.dardni.gov.uk/news-dard-pa022-a-13-new-procedure-for")
+ end
+ end
+ end
+
+ describe "when the page has a parent that should be hidden from search engines" do
+ let(:content_item) do
+ GovukSchemas::Example.find(:html_publication, example_name: "published").tap do |example|
+ example["links"]["parent"][0]["base_path"] = "/government/publications/govuk-app-testing-privacy-notice-how-we-use-your-data"
+ end
+ end
+
+ it "adds a noindex meta tag" do
+ expect(page).to have_css('meta[name="robots"][content="noindex"]', visible: :hidden)
+ end
+ end
+ end
+end