From 6e730dda9ed58a03c8e29823adbed88e588f413b Mon Sep 17 00:00:00 2001 From: Max Harden Date: Wed, 8 Dec 2021 08:28:59 +0000 Subject: [PATCH 1/2] Revert PRs #2238 and #2292 --- .../content_items/_context_and_title.html.erb | 26 ------------------- app/views/content_items/consultation.html.erb | 2 +- app/views/content_items/publication.html.erb | 6 ++++- config/locales/en.yml | 23 ---------------- .../attachments.html.erb_test.rb | 19 -------------- 5 files changed, 6 insertions(+), 70 deletions(-) delete mode 100644 app/views/content_items/_context_and_title.html.erb diff --git a/app/views/content_items/_context_and_title.html.erb b/app/views/content_items/_context_and_title.html.erb deleted file mode 100644 index c68512a07..000000000 --- a/app/views/content_items/_context_and_title.html.erb +++ /dev/null @@ -1,26 +0,0 @@ -<% - context_string = t("content_item.schema_name.#{@content_item.document_type}", count: 1); - context_inside = false; - %> - -<% @content_item&.featured_attachments.each do |fa| %> - <% return if !@content_item.attachment_details(fa).present? %> - <% if @content_item.attachment_details(fa)['title'] == @content_item.title %> - <% content_for :title do %> - <%= t("content_item.schema_name.#{@content_item.document_type}.overview", count: 1) %>: <%= @content_item.title %> - <% end %> - <% - context_string = t("content_item.schema_name.#{@content_item.document_type}.overview", count: 1) << ":" - context_inside = true - %> - <% break %> - <% end %> -<% end %> - -<%= render 'govuk_publishing_components/components/title', - context: context_string, - context_locale: t_locale_fallback("content_item.schema_name.#{@content_item.document_type}", count: 1), - context_inside: context_inside, - title: @content_item.title, - average_title_length: "long" - %> diff --git a/app/views/content_items/consultation.html.erb b/app/views/content_items/consultation.html.erb index a9a62231b..f92143163 100644 --- a/app/views/content_items/consultation.html.erb +++ b/app/views/content_items/consultation.html.erb @@ -6,7 +6,7 @@
- <%= render 'context_and_title' %> + <%= render 'govuk_publishing_components/components/title', @content_item.title_and_context %>
<%= render 'shared/translations' %>
diff --git a/app/views/content_items/publication.html.erb b/app/views/content_items/publication.html.erb index a3d944432..27c927ceb 100644 --- a/app/views/content_items/publication.html.erb +++ b/app/views/content_items/publication.html.erb @@ -8,7 +8,11 @@
- <%= render 'context_and_title' %> + <%= render 'govuk_publishing_components/components/title', + context: t("content_item.schema_name.#{@content_item.document_type}", count: 1), + context_locale: t_locale_fallback("content_item.schema_name.#{@content_item.document_type}", count: 1), + title: @content_item.title, + average_title_length: "long" %>
<%= render 'shared/translations' %> diff --git a/config/locales/en.yml b/config/locales/en.yml index c60fb932d..6eddaca39 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -84,7 +84,6 @@ en: closed_consultation: one: Closed consultation other: Closed consultations - overview: Closed consultation overview cma_case: one: Competition and Markets Authority case other: Competition and Markets Authority cases @@ -97,25 +96,21 @@ en: consultation_outcome: one: Consultation outcome other: Consultation outcomes - overview: Consultation outcome overview corporate_information_page: one: Information page other: Information pages corporate_report: one: Corporate report other: Corporate reports - overview: Corporate reports overview correspondence: one: Correspondence other: Correspondences - overview: Correspondence overview countryside_stewardship_grant: one: Countryside Stewardship grant other: Countryside Stewardship grants decision: one: Decision other: Decisions - overview: Decision overview detailed_guide: one: Guidance other: Guidance @@ -146,43 +141,36 @@ en: foi_release: one: FOI release other: FOI releases - overview: FOI release overview form: one: Form other: Forms - overview: Forms overview government_response: one: Government response other: Government responses guidance: one: Guidance other: Guidance - overview: Guidance overview impact_assessment: one: Impact assessment other: Impact assessments - overview: Impact assessment overview imported: one: imported - awaiting type other: imported - awaiting type independent_report: one: Independent report other: Independent reports - overview: Independent report overview international_development_fund: one: International development funding other: International development funding international_treaty: one: International treaty other: International treaties - overview: International treaty overview maib_report: one: Marine Accident Investigation Branch report other: Marine Accident Investigation Branch reports map: one: Map other: Maps - overview: Map overview medical_safety_alert: one: Alerts and recalls for drugs and medical devices other: Alerts and recalls for drugs and medical devices @@ -192,7 +180,6 @@ en: national_statistics: one: National statistics other: National statistics - overview: National statistics overview national_statistics_announcement: one: National statistics announcement other: National statistics announcements @@ -205,21 +192,18 @@ en: notice: one: Notice other: Notices - overview: Notice overview official: one: Official statistics announcement other: Official statistics announcements official_statistics: one: Official Statistics other: Official statistics - overview: Official statistics overview official_statistics_announcement: one: Official statistics announcement other: Official statistics announcements open_consultation: one: Open consultation other: Open consultations - overview: Open consultation overview oral_statement: one: Oral statement to Parliament other: Oral statements to Parliament @@ -229,14 +213,12 @@ en: policy_paper: one: Policy paper other: Policy papers - overview: Policy paper overview press_release: one: Press release other: Press releases promotional: one: Promotional material other: Promotional material - overview: Promotional material overview publication: one: Publication other: Publications @@ -246,11 +228,9 @@ en: regulation: one: Regulation other: Regulations - overview: Regulation overview research: one: Research and analysis other: Research and analysis - overview: Research and analysis overview residential_property_tribunal_decision: one: Residential property tribunal decision other: Residential property tribunal decisions @@ -269,7 +249,6 @@ en: standard: one: Standard other: Standards - overview: Standard overview statement_to_parliament: one: Statement to Parliament other: Statements to Parliament @@ -282,7 +261,6 @@ en: statutory_guidance: one: Statutory guidance other: Statutory guidance - overview: Statutory guidance overview take_part: one: Take part other: Take part @@ -295,7 +273,6 @@ en: transparency: one: Transparency data other: Transparency data - overview: Transparency data overview utaac_decision: one: Administrative appeals tribunal decision other: Administrative appeals tribunal decisions diff --git a/test/views/content_items/attachments.html.erb_test.rb b/test/views/content_items/attachments.html.erb_test.rb index 64aea883c..913d549ba 100644 --- a/test/views/content_items/attachments.html.erb_test.rb +++ b/test/views/content_items/attachments.html.erb_test.rb @@ -43,23 +43,4 @@ class ContentItemsAttachmentsTest < ActionView::TestCase assert_includes rendered, "gem-c-govspeak" assert_includes rendered, "some html" end - - test "renders overview title when attachment title matches parent" do - @content_item = PublicationPresenter.new( - { "document_type" => "correspondence", - "title" => "Matching", - "details" => { "attachments" => [{ "id" => "attachment_id", - "title" => "Matching", - "url" => "some/url" }], - "featured_attachments" => %w[attachment_id] } }, - "/publication", - ApplicationController.new.view_context, - ) - render( - partial: "content_items/context_and_title", - ) - - assert_includes rendered, "Correspondence overview:" - assert_select "h1 span" - end end From 49e1dc948baacbb6b9b76050e904ee13bddb094c Mon Sep 17 00:00:00 2001 From: Max Harden Date: Wed, 8 Dec 2021 11:22:06 +0000 Subject: [PATCH 2/2] Remove unused translations --- config/locales/ar.yml | 837 ++++++++++++++++++------------------- config/locales/az.yml | 239 +++++------ config/locales/be.yml | 539 ++++++++++++------------ config/locales/bg.yml | 239 +++++------ config/locales/bn.yml | 239 +++++------ config/locales/cs.yml | 389 +++++++++--------- config/locales/cy.yml | 839 ++++++++++++++++++-------------------- config/locales/da.yml | 239 +++++------ config/locales/de.yml | 239 +++++------ config/locales/dr.yml | 237 +++++------ config/locales/el.yml | 239 +++++------ config/locales/es-419.yml | 239 +++++------ config/locales/es.yml | 239 +++++------ config/locales/et.yml | 239 +++++------ config/locales/fa.yml | 237 +++++------ config/locales/fi.yml | 239 +++++------ config/locales/fr.yml | 239 +++++------ config/locales/gd.yml | 539 ++++++++++++------------ config/locales/he.yml | 237 +++++------ config/locales/hi.yml | 239 +++++------ config/locales/hr.yml | 539 ++++++++++++------------ config/locales/hu.yml | 239 +++++------ config/locales/hy.yml | 239 +++++------ config/locales/id.yml | 239 +++++------ config/locales/is.yml | 239 +++++------ config/locales/it.yml | 239 +++++------ config/locales/ja.yml | 239 +++++------ config/locales/kk.yml | 239 +++++------ config/locales/ko.yml | 239 +++++------ config/locales/lt.yml | 389 +++++++++--------- config/locales/lv.yml | 239 +++++------ config/locales/mt.yml | 539 ++++++++++++------------ config/locales/ne.yml | 239 +++++------ config/locales/nl.yml | 239 +++++------ config/locales/no.yml | 239 +++++------ config/locales/pa-pk.yml | 237 +++++------ config/locales/pa.yml | 239 +++++------ config/locales/pl.yml | 539 ++++++++++++------------ config/locales/ps.yml | 237 +++++------ config/locales/si.yml | 239 +++++------ config/locales/so.yml | 239 +++++------ config/locales/sq.yml | 239 +++++------ config/locales/sr.yml | 539 ++++++++++++------------ config/locales/sv.yml | 239 +++++------ config/locales/sw.yml | 239 +++++------ config/locales/ta.yml | 239 +++++------ config/locales/th.yml | 239 +++++------ config/locales/tk.yml | 239 +++++------ config/locales/tr.yml | 239 +++++------ config/locales/uk.yml | 539 ++++++++++++------------ config/locales/uz.yml | 239 +++++------ config/locales/vi.yml | 239 +++++------ config/locales/yi.yml | 745 ++++++++++++++++----------------- config/locales/zh-hk.yml | 239 +++++------ config/locales/zh-tw.yml | 239 +++++------ config/locales/zh.yml | 239 +++++------ 56 files changed, 8095 insertions(+), 9383 deletions(-) diff --git a/config/locales/ar.yml b/config/locales/ar.yml index 1c02e6dc1..5c566abee 100644 --- a/config/locales/ar.yml +++ b/config/locales/ar.yml @@ -41,7 +41,7 @@ ar: feedback_received: التعليق المستلم is_being: يتم حاليًا not_open_yet: هذه الاستشارة لم تُفتح بعد - 'on': + 'on': opens: تفتح هذه الاستشارة original_consultation: الاستشارة الأصلية ran_from: أجريت هذه الاستشارة من @@ -64,546 +64,523 @@ ar: updated: تاريخ التحديث schema_name: aaib_report: - few: - many: + few: + many: one: تقرير شعبة التحقيق في الحوادث الجوية other: تقارير شعبة التحقيق في الحوادث الجوية - two: - zero: + two: + zero: announcement: - few: - many: + few: + many: one: إعلان other: إعلانات - two: - zero: + two: + zero: asylum_support_decision: - few: - many: + few: + many: one: قرار محكمة دعم اللجوء other: قرارات محكمة دعم اللجوء - two: - zero: + two: + zero: authored_article: - few: - many: + few: + many: one: مقال مؤلَّف other: مقالات مؤلَّفة - two: - zero: + two: + zero: business_finance_support_scheme: - few: - many: + few: + many: one: مخطط دعم تمويل الأعمال other: مخططات دعم تمويل الأعمال - two: - zero: + two: + zero: case_study: - few: - many: + few: + many: one: دراسة الحالة other: دراسات الحالة - two: - zero: + two: + zero: closed_consultation: - few: - many: + few: + many: one: استشارة مغلقة other: استشارات مغلقة - overview: - two: - zero: + two: + zero: cma_case: - few: - many: + few: + many: one: قضية لدى هيئة المنافسة والأسواق other: قضايا لدى هيئة المنافسة والأسواق - two: - zero: + two: + zero: coming_soon: - few: - many: + few: + many: one: قريبًا other: قريبًا - two: - zero: + two: + zero: consultation: - few: - many: + few: + many: one: استشارة other: استشارات - two: - zero: + two: + zero: consultation_outcome: - few: - many: + few: + many: one: نتيجة الاستشارة other: نتائج الاستشارة - overview: - two: - zero: + two: + zero: corporate_information_page: - few: - many: + few: + many: one: صفحة المعلومات other: صفحات المعلومات - two: - zero: + two: + zero: corporate_report: - few: - many: + few: + many: one: تقرير الشركة other: تقارير الشركة - overview: - two: - zero: + two: + zero: correspondence: - few: - many: + few: + many: one: مراسلة other: مراسلات - overview: - two: - zero: + two: + zero: countryside_stewardship_grant: - few: - many: + few: + many: one: منحة رعاية المناطق الريفية other: منح رعاية المناطق الريفية - two: - zero: + two: + zero: decision: - few: - many: + few: + many: one: قرار other: قرارات - overview: - two: - zero: + two: + zero: detailed_guide: - few: - many: + few: + many: one: توجيه other: توجيه - two: - zero: + two: + zero: dfid_research_output: - few: - many: + few: + many: one: البحث من أجل مخرج التنمية other: البحث من أجل مخرجات التنمية - two: - zero: + two: + zero: document_collection: - few: - many: + few: + many: one: مجموعة other: مجموعات - two: - zero: + two: + zero: draft_text: - few: - many: + few: + many: one: مشروع النص other: مشاريع النصوص - two: - zero: + two: + zero: drug_safety_update: - few: - many: + few: + many: one: تحديث سلامة الدواء other: تحديثات سلامة الدواء - two: - zero: + two: + zero: employment_appeal_tribunal_decision: - few: - many: + few: + many: one: قرار محكمة استئناف العمل other: قرارات محكمة استئناف العمل - two: - zero: + two: + zero: employment_tribunal_decision: - few: - many: + few: + many: one: قرار محكمة العمل other: قرارات محكمة العمل - two: - zero: + two: + zero: esi_fund: - few: - many: + few: + many: one: الصندوق الهيكلي والاستثماري الأوروبي (ESIF) other: الصناديق الهيكلية والاستثمارية الأوروبية (ESIF) - two: - zero: + two: + zero: fatality_notice: - few: - many: + few: + many: one: إشعار حول الوفيات other: إشعارات حول الوفيات - two: - zero: + two: + zero: foi_release: - few: - many: + few: + many: one: إصدار حرية تداول المعلومات other: إصدارات حرية تداول المعلومات - overview: - two: - zero: + two: + zero: form: - few: - many: + few: + many: one: نموذج other: نماذج - overview: - two: - zero: + two: + zero: government_response: - few: - many: + few: + many: one: استجابة الحكومة other: استجابات الحكومة - two: - zero: + two: + zero: guidance: - few: - many: + few: + many: one: توجيه other: توجيه - overview: - two: - zero: + two: + zero: impact_assessment: - few: - many: + few: + many: one: تقييم الأثر other: تقييمات الأثر - overview: - two: - zero: + two: + zero: imported: - few: - many: + few: + many: one: مستورد - في انتظار النوع other: مستورد - في انتظار النوع - two: - zero: + two: + zero: independent_report: - few: - many: + few: + many: one: تقرير مستقل other: تقارير مستقلة - overview: - two: - zero: + two: + zero: international_development_fund: - few: - many: + few: + many: one: تمويل التنمية الدولية other: تمويل التنمية الدولية - two: - zero: + two: + zero: international_treaty: - few: - many: + few: + many: one: معاهدة دولية other: معاهدات دولية - overview: - two: - zero: + two: + zero: maib_report: - few: - many: + few: + many: one: تقرير شعبة التحقيق في الحوادث البحرية other: تقارير شعبة التحقيق في الحوادث البحرية - two: - zero: + two: + zero: map: - few: - many: + few: + many: one: خريطة other: خرائط - overview: - two: - zero: + two: + zero: medical_safety_alert: - few: - many: + few: + many: one: تنبيهات واستدعاءات للأدوية والأجهزة الطبية other: تنبيهات واستدعاءات للأدوية والأجهزة الطبية - two: - zero: + two: + zero: national: - few: - many: + few: + many: one: إعلان للإحصاءات الوطنية other: إعلانات للإحصاءات الوطنية - two: - zero: + two: + zero: national_statistics: - few: - many: + few: + many: one: الإحصاءات الوطنية other: الإحصاءات الوطنية - overview: - two: - zero: + two: + zero: national_statistics_announcement: - few: - many: + few: + many: one: إعلان للإحصاءات الوطنية other: إعلانات للإحصاءات الوطنية - two: - zero: + two: + zero: news_article: - few: - many: + few: + many: one: مقال إخباري other: مقالات إخبارية - two: - zero: + two: + zero: news_story: - few: - many: + few: + many: one: قصة إخبارية other: قصص إخبارية - two: - zero: + two: + zero: notice: - few: - many: + few: + many: one: إشعار other: إشعارات - overview: - two: - zero: + two: + zero: official: - few: - many: + few: + many: one: إعلان للإحصاءات الرسمية other: إعلانات للإحصاءات الرسمية - two: - zero: + two: + zero: official_statistics: - few: - many: + few: + many: one: الإحصاءات الرسمية other: الإحصاءات الرسمية - overview: - two: - zero: + two: + zero: official_statistics_announcement: - few: - many: + few: + many: one: إعلان للإحصاءات الرسمية other: إعلانات للإحصاءات الرسمية - two: - zero: + two: + zero: open_consultation: - few: - many: + few: + many: one: استشارة مفتوحة other: استشارات مفتوحة - overview: - two: - zero: + two: + zero: oral_statement: - few: - many: + few: + many: one: بيان شفوي للبرلمان other: بيانات شفوية للبرلمان - two: - zero: + two: + zero: policy: - few: - many: + few: + many: one: سياسة other: سياسات - two: - zero: + two: + zero: policy_paper: - few: - many: + few: + many: one: ورقة السياسة other: أوراق السياسة - overview: - two: - zero: + two: + zero: press_release: - few: - many: + few: + many: one: بيان صحفي other: بيانات صحفية - two: - zero: + two: + zero: promotional: - few: - many: + few: + many: one: مادة ترويجية other: مادة ترويجية - overview: - two: - zero: + two: + zero: publication: - few: - many: + few: + many: one: منشور other: منشورات - two: - zero: + two: + zero: raib_report: - few: - many: + few: + many: one: تقرير شعبة التحقيق في حوادث السكك الحديدية other: تقارير شعبة التحقيق في حوادث السكك الحديدية - two: - zero: + two: + zero: regulation: - few: - many: + few: + many: one: لائحة other: لوائح - overview: - two: - zero: + two: + zero: research: - few: - many: + few: + many: one: البحث والتحليل other: البحث والتحليل - overview: - two: - zero: + two: + zero: residential_property_tribunal_decision: - few: - many: + few: + many: one: قرار محكمة الممتلكات السكنية other: قرارات محكمة الممتلكات السكنية - two: - zero: + two: + zero: service_sign_in: - few: - many: + few: + many: one: تسجيل الدخول إلى الخدمة other: تسجيل الدخول إلى الخدمة - two: - zero: + two: + zero: service_standard_report: - few: - many: + few: + many: one: تقرير موحد للخدمة other: تقارير موحدة للخدمة - two: - zero: + two: + zero: speaking_notes: - few: - many: + few: + many: one: ملاحظات تحضيرية للخطاب other: ملاحظات تحضيرية للخطاب - two: - zero: + two: + zero: speech: - few: - many: + few: + many: one: خطاب other: خطابات - two: - zero: + two: + zero: standard: - few: - many: + few: + many: one: معيار other: معايير - overview: - two: - zero: + two: + zero: statement_to_parliament: - few: - many: + few: + many: one: بيان إلى البرلمان other: بيانات إلى البرلمان - two: - zero: + two: + zero: statistical_data_set: - few: - many: + few: + many: one: مجموعة بيانات إحصائية other: مجموعات بيانات إحصائية - two: - zero: + two: + zero: statistics_announcement: - few: - many: + few: + many: one: إعلان إصدار الإحصائيات other: إعلانات إصدار الإحصائيات - two: - zero: + two: + zero: statutory_guidance: - few: - many: + few: + many: one: التوجيه القانوني other: التوجيه القانوني - overview: - two: - zero: + two: + zero: take_part: - few: - many: + few: + many: one: شارك other: شارك - two: - zero: + two: + zero: tax_tribunal_decision: - few: - many: + few: + many: one: قرار محكمة الضرائب ودائرة القضاء العليا other: قرارات محكمة الضرائب ودائرة القضاء العليا - two: - zero: + two: + zero: transcript: - few: - many: + few: + many: one: نص other: نصوص - two: - zero: + two: + zero: transparency: - few: - many: + few: + many: one: بيانات الشفافية other: بيانات الشفافية - overview: - two: - zero: + two: + zero: utaac_decision: - few: - many: + few: + many: one: قرار محكمة الاستئناف الإدارية other: قرارات محكمة الاستئناف الإدارية - two: - zero: + two: + zero: world_location_news_article: - few: - many: + few: + many: one: مقال إخباري other: مقالات إخبارية - two: - zero: + two: + zero: world_news_story: - few: - many: + few: + many: one: قصة إخبارية عالمية other: قصص إخبارية عالمية - two: - zero: + two: + zero: written_statement: - few: - many: + few: + many: one: بيان خطي للبرلمان other: بيانات خطية للبرلمان - two: - zero: + two: + zero: corporate_information_page: about_our_services_html: تعرف على %{link}. corporate_information: معلومات الشركة @@ -612,54 +589,54 @@ ar: social_media_use_html: اقرأ سياستنا على %{link}. welsh_language_scheme_html: تعرف على التزامنا بشأن %{link}. email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: شعار وزارة الدفاع field_of_operation: ساحة العمليات operations_in: العمليات الدائرة في %{location} get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: لم تعد متاحة published_in_error: تمت إزالة المعلومات الموجودة في هذه الصفحة لأنها قد نُشِرت عن طريق الخطأ. @@ -678,71 +655,71 @@ ar: direction: rtl language_names: ar: العربيَّة - az: - be: - bg: - bn: - cs: - cy: - da: - de: - dr: - el: - en: - es: - es-419: - et: - fa: - fi: - fr: - gd: - gu: - he: - hi: - hr: - hu: - hy: - id: - is: - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: - th: - tk: - tr: - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + az: + be: + bg: + bn: + cs: + cy: + da: + de: + dr: + el: + en: + es: + es-419: + et: + fa: + fi: + fr: + gd: + gu: + he: + hi: + hr: + hu: + hy: + id: + is: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: + th: + tk: + tr: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: التالي previous_page: السابق @@ -750,12 +727,12 @@ ar: publication: details: التفاصيل documents: - few: - many: + few: + many: one: المستند other: المستندات - two: - zero: + two: + zero: service_sign_in: continue: متابعة error: diff --git a/config/locales/az.yml b/config/locales/az.yml index f77b60d17..d819f01ac 100644 --- a/config/locales/az.yml +++ b/config/locales/az.yml @@ -41,7 +41,7 @@ az: feedback_received: Alınmış rəy is_being: mərhələsindədir not_open_yet: Bu məsləhətləşmə hələ açıq deyildir - 'on': + 'on': opens: Bu məsləhətləşmə açılır original_consultation: İlkin məsləhətləşmə ran_from: Bu məsləhətləşmə başlayır @@ -84,7 +84,6 @@ az: closed_consultation: one: Qapalı məsləhətləşmə other: Qapalı məsləhətləşmələr - overview: cma_case: one: Rəqabət və Bazar üzrə səlahiyyət məsələsi other: Rəqabət və Bazar üzrə səlahiyyət məsələləri @@ -97,25 +96,21 @@ az: consultation_outcome: one: Məsləhətləşmə nəticəsi other: Məsləhətləşmə nəticələri - overview: corporate_information_page: one: Məlumat səhifəsi other: Məlumat səhifələri corporate_report: one: Şirkətin fəaliyyəti üzrə hesabat other: Şirkətin fəaliyyəti üzrə hesabatlar - overview: correspondence: one: Yazışma other: Yazışmalar - overview: countryside_stewardship_grant: one: Kənddə idarəetmə üçün maliyyə təşviqi other: Kənddə idarəetmə üçün maliyyə təşviqləri decision: one: Qərar other: Qərarlar - overview: detailed_guide: one: Göstəriş other: Göstəriş @@ -146,43 +141,36 @@ az: foi_release: one: Məlumat əldə etmə azadlığı buraxılışı other: Məlumat əldə etmə azadlığı buraxılışları - overview: form: one: Forma other: Formalar - overview: government_response: one: Hökumətin reaksiyası other: Hökumətin reaksiyaları guidance: one: Göstəriş other: Göstəriş - overview: impact_assessment: one: Təsirin dəyərləndirilməsi other: Təsirin dəyərləndirilmələri - overview: imported: one: idxal edilmiş - gözlənilən növ other: idxal edilmiş - gözlənilən növ independent_report: one: Müstəqil hesabat other: Müstəqil hesabatlar - overview: international_development_fund: one: İnkişaf üçün beynəlxalq fondlar other: İnkişaf üçün beynəlxalq fondlar international_treaty: one: Beynəlxalq saziş other: Beynəlxalq sazişlər - overview: maib_report: one: Dəniz qəzalarının araşdırılması üzrə şöbə hesabatı other: Dəniz qəzalarının araşdırılması üzrə şöbə hesabatları map: one: Xəritə other: Xəritələr - overview: medical_safety_alert: one: Dərman və tibbi avadanlıq üçün xəbərdarlıq bildirişləri və geri çağırmalar other: Dərman və tibbi avadanlıq üçün xəbərdarlıq bildirişləri və geri çağırmalar @@ -192,7 +180,6 @@ az: national_statistics: one: Milli statistika other: Milli statistika - overview: national_statistics_announcement: one: Milli statistika elanı other: Milli statistika elanları @@ -205,21 +192,18 @@ az: notice: one: Bildiriş other: Bildirişlər - overview: official: one: Rəsmi statistika elanı other: Rəsmi statistika elanları official_statistics: one: Rəsmi statistika other: Rəsmi statistika - overview: official_statistics_announcement: one: Rəsmi statistika elanı other: Rəsmi statistika elanları open_consultation: one: Açıq məsləhətləşmə other: Açıq məsləhətləşmələr - overview: oral_statement: one: Parlamentə şifahi müraciət other: Parlamentə şifahi müraciətlər @@ -229,14 +213,12 @@ az: policy_paper: one: Siyasət sənədi other: Siyasət sənədləri - overview: press_release: one: Press-reliz other: Press-relizlər promotional: one: Reklam materialı other: Reklam materialı - overview: publication: one: Nəşr other: Nəşrlər @@ -246,11 +228,9 @@ az: regulation: one: Tənzimləmə other: Tənzimləmələr - overview: research: one: Araşdırma və təhlil other: Araşdırma və təhlil - overview: residential_property_tribunal_decision: one: Yaşayış üçün istifadə edilən mülk üzrə məhkəmə kollegiyası qərarı other: Yaşayış üçün istifadə edilən mülk üzrə məhkəmə kollegiyası qərarları @@ -269,7 +249,6 @@ az: standard: one: Standart other: Standartlar - overview: statement_to_parliament: one: Parlamentə müraciət other: Parlamentə müraciətlər @@ -282,7 +261,6 @@ az: statutory_guidance: one: Normativ göstərişlər other: Normativ göstərişlər - overview: take_part: one: İştirak edin other: İştirak edin @@ -295,7 +273,6 @@ az: transparency: one: Məlumatla bağlı şəffaflıq other: Məlumatla bağlı şəffaflıq - overview: utaac_decision: one: İnzibati şikayətlər üzrə məhkəmə kollegiyası qərarı other: İnzibati şikayətlər üzrə məhkəmə kollegiyası qərarları @@ -316,54 +293,54 @@ az: social_media_use_html: "%{link}-də siyasətmizi oxuyun." welsh_language_scheme_html: "%{link} ilə bağlı öhdəliyimiz barədə öyrənin." email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: Müdafiə nazirliyinin emblemi field_of_operation: Əməliyyat sahəsi operations_in: "%{location}-də olan əməliyyatlar" get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: Artıq mövcud deyildir published_in_error: Bu səhifədəki məlumat səhvən dərc edilmiş olduğuna görə silinmişdir. @@ -379,74 +356,74 @@ az: 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. i18n: - direction: + direction: language_names: - ar: + ar: az: Azeri - be: - bg: - bn: - cs: - cy: - da: - de: - dr: - el: - en: - es: - es-419: - et: - fa: - fi: - fr: - gd: - gu: - he: - hi: - hr: - hu: - hy: - id: - is: - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: - th: - tk: - tr: - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + be: + bg: + bn: + cs: + cy: + da: + de: + dr: + el: + en: + es: + es-419: + et: + fa: + fi: + fr: + gd: + gu: + he: + hi: + hr: + hu: + hy: + id: + is: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: + th: + tk: + tr: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: Sonrakı previous_page: Əvvəlki diff --git a/config/locales/be.yml b/config/locales/be.yml index a306a5226..143bd6f5a 100644 --- a/config/locales/be.yml +++ b/config/locales/be.yml @@ -41,7 +41,7 @@ be: feedback_received: Водгукі атрыманы is_being: з'яўляцца not_open_yet: Гэта кансультацыя яшчэ не адкрыта - 'on': + 'on': opens: Гэта кансультацыя адкрываецца original_consultation: Арыгінальная кансультацыя ran_from: Кансультацыя доўжылася з @@ -64,396 +64,373 @@ be: updated: Адноўлена schema_name: aaib_report: - few: - many: + few: + many: one: Справаздача Аддзела па расследаванні авіяцыйных здарэнняў other: Справаздачы Аддзела па расследаванні авіяцыйных здарэнняў announcement: - few: - many: + few: + many: one: Аб'ява other: Аб'явы asylum_support_decision: - few: - many: + few: + many: one: Пастанова трыбунала пра падаванне сховішча other: Пастановы трыбунала пра падаванне сховішча authored_article: - few: - many: + few: + many: one: Аўтарскі артыкул other: Аўтарскія артыкулы business_finance_support_scheme: - few: - many: + few: + many: one: Схема падтрымкі фінансавання бізнесу other: Схемы падтрымкі фінансавання бізнесу case_study: - few: - many: + few: + many: one: Тэматычнае даследаванне other: Тэматычныя даследаванні closed_consultation: - few: - many: + few: + many: one: Закрытая кансультацыя other: Закрытыя кансультацыі - overview: cma_case: - few: - many: + few: + many: one: Справа Кіравання па канкурэнцыі і рынках other: Справы Кіравання па канкурэнцыі і рынках coming_soon: - few: - many: + few: + many: one: Хуткім часам other: Хуткім часам consultation: - few: - many: + few: + many: one: Кансультацыя other: Кансультацыі consultation_outcome: - few: - many: + few: + many: one: Вынік кансультацыі other: Вынікі кансультацыі - overview: corporate_information_page: - few: - many: + few: + many: one: Iнфармацыйная старонка other: Iнфармацыйная старонкi corporate_report: - few: - many: + few: + many: one: Карпаратыўная справаздача other: Карпаратыўныя справаздачы - overview: correspondence: - few: - many: + few: + many: one: Перапіска other: Перапіска - overview: countryside_stewardship_grant: - few: - many: + few: + many: one: Грант на кіраванне сельскай мясцовасцю other: Гранты на кіраванне сельскай мясцовасцю decision: - few: - many: + few: + many: one: Пастанова other: Пастановы - overview: detailed_guide: - few: - many: + few: + many: one: Кіраўніцтва other: Кіраўніцтва dfid_research_output: - few: - many: + few: + many: one: Даследаванні з мэтай развіцця other: Даследаванні з мэтамi развіцця document_collection: - few: - many: + few: + many: one: Серыя other: Серыi draft_text: - few: - many: + few: + many: one: Чарнавік other: Чарнавікі drug_safety_update: - few: - many: + few: + many: one: Абнаўленне інфармацыі пра бяспеку лекаў other: Абнаўленнi інфармацыі пра бяспеку лекаў employment_appeal_tribunal_decision: - few: - many: + few: + many: one: Пастанова апеляцыйнага трыбунала па працоўных спрэчках other: Пастановы апеляцыйнага трыбунала па працоўных спрэчках employment_tribunal_decision: - few: - many: + few: + many: one: Пастанова суда па працоўных спрэчках other: Пастановы суда па працоўных спрэчках esi_fund: - few: - many: + few: + many: one: Еўрапейскі структурны і інвестыцыйны фонд (ESIF) other: Еўрапейскія структурныя і інвестыцыйныя фонды (ESIF) fatality_notice: - few: - many: + few: + many: one: Паведамлення аб смерці other: Паведамлення аб смерці foi_release: - few: - many: + few: + many: one: Рэліз у межах Закона аб свабодзе інфармацыі other: Рэлізы ў межах Закона аб свабодзе інфармацыі - overview: form: - few: - many: + few: + many: one: Форма other: Формы - overview: government_response: - few: - many: + few: + many: one: Адказ ўрада other: Адказы ўрада guidance: - few: - many: + few: + many: one: Кіраўніцтва other: Кіраўніцтва - overview: impact_assessment: - few: - many: + few: + many: one: Ацэнка ўплыву other: Ацэнкі ўплыву - overview: imported: - few: - many: + few: + many: one: імпартавана - чаканне тыпу other: імпартавана - чаканне тыпу independent_report: - few: - many: + few: + many: one: Незалежная справаздача other: Незалежныя справаздачы - overview: international_development_fund: - few: - many: + few: + many: one: Фінансаванне міжнароднага развіцця other: Фінансаванне міжнароднага развіцця international_treaty: - few: - many: + few: + many: one: Міжнароднае пагадненне other: Міжнародныя пагадненнi - overview: maib_report: - few: - many: + few: + many: one: Справаздача Аддзела па расследаванні марскіх здарэнняў other: Справаздачы Аддзела па расследаванні марскіх здарэнняў map: - few: - many: + few: + many: one: Карта other: Карты - overview: medical_safety_alert: - few: - many: + few: + many: one: Папярэджанні і водгукі лекаў і медычных вырабаў other: Папярэджанні і водгукі лекаў і медычных вырабаў national: - few: - many: + few: + many: one: Аб'ява пра нацыянальную статыстыку other: Аб'явы пра нацыянальную статыстыку national_statistics: - few: - many: + few: + many: one: Нацыянальная статыстыка other: Нацыянальная статыстыка - overview: national_statistics_announcement: - few: - many: + few: + many: one: Аб'ява пра нацыянальную статыстыку other: Аб'явы пра нацыянальную статыстыку news_article: - few: - many: + few: + many: one: Артыкул other: Артыкулы news_story: - few: - many: + few: + many: one: Навіна other: Навіны notice: - few: - many: + few: + many: one: Паведамленне other: Паведамленні - overview: official: - few: - many: + few: + many: one: Аб'ява пра афiцыйную статыстыку other: Аб'явы пра афiцыйную статыстыку official_statistics: - few: - many: + few: + many: one: Афіцыйная статыстыка other: Афіцыйная статыстыка - overview: official_statistics_announcement: - few: - many: + few: + many: one: Аб'ява пра афiцыйную статыстыку other: Аб'явы пра афiцыйную статыстыку open_consultation: - few: - many: + few: + many: one: Адкрытая кансультацыя other: Адкрытыя кансультацыі - overview: oral_statement: - few: - many: + few: + many: one: Вусная заява ў парламенце other: Вусныя даклады ў парламенце policy: - few: - many: + few: + many: one: Напрамак дзейнасці other: Напрамкі дзейнасці policy_paper: - few: - many: + few: + many: one: Праграмны дакумент other: Праграмныя дакументы - overview: press_release: - few: - many: + few: + many: one: Прэс-рэліз other: Прэс-рэлізы promotional: - few: - many: + few: + many: one: Рэкламны матэрыял other: Рэкламны матэрыял - overview: publication: - few: - many: + few: + many: one: Публікацыя other: Публікацыі raib_report: - few: - many: + few: + many: one: Справаздача аддзела па расследаванні чыгуначных здарэнняў other: Справаздачы аддзела па расследаванні чыгуначных здарэнняў regulation: - few: - many: + few: + many: one: Тэзіс other: Тэзісы - overview: research: - few: - many: + few: + many: one: Даследаванні і аналіз other: Даследаванні і аналіз - overview: residential_property_tribunal_decision: - few: - many: + few: + many: one: Пастанова трыбунала па жылой нерухомасці other: Пастановы трыбунала па жылой нерухомасці service_sign_in: - few: - many: + few: + many: one: Уваход у сістэму абслугоўвання other: Уваход у сістэму абслугоўвання service_standard_report: - few: - many: + few: + many: one: Справаздача пра стандарты абслугоўвання other: Справаздачы пра стандарты абслугоўвання speaking_notes: - few: - many: + few: + many: one: Нататкі да выступу other: Нататкі да выступу speech: - few: - many: + few: + many: one: Выступ other: Выступы standard: - few: - many: + few: + many: one: Стандарт other: Стандарты - overview: statement_to_parliament: - few: - many: + few: + many: one: Заява ў парламенце other: Заявы ў парламенце statistical_data_set: - few: - many: + few: + many: one: Статыстычныя дадзеныя other: Статыстычныя дадзеныя statistics_announcement: - few: - many: + few: + many: one: Аб'ява пра выпуск статыстычных дадзеных other: Аб'явы пра выпуск статыстычных дадзеных statutory_guidance: - few: - many: + few: + many: one: Заканадаўчае кіраўніцтва other: Заканадаўчае кіраўніцтва - overview: take_part: - few: - many: + few: + many: one: Прыняць удзел other: Прыняць удзел tax_tribunal_decision: - few: - many: + few: + many: one: Пастанова падатковага і канцылярскага трыбунала other: Пастановы падатковага і канцылярскага трыбунала transcript: - few: - many: + few: + many: one: Поўны тэкст other: Поўныя тэксты transparency: - few: - many: + few: + many: one: Адкрытыя дадзеныя other: Адкрытыя дадзеныя - overview: utaac_decision: - few: - many: + few: + many: one: Пастанова адміністрацыйнага апеляцыйнага трыбунала other: Пастановы адміністрацыйнага апеляцыйнага трыбунала world_location_news_article: - few: - many: + few: + many: one: Артыкул other: Артыкулы world_news_story: - few: - many: + few: + many: one: Сусветная навіна other: Сусветныя навіны written_statement: - few: - many: + few: + many: one: Пісьмовая заява ў парламенце other: Пісьмовыя заявы ў парламенце corporate_information_page: @@ -464,54 +441,54 @@ be: social_media_use_html: Прачытайце пра нашу палітыку датычна %{link}. welsh_language_scheme_html: Даведайцеся аб нашых абавязках да публікацыі ў %{link}. email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: Герб Міністэрства абароны field_of_operation: Сфера дзейнасці operations_in: Дзейнасць у %{location} get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: Больш няма ў наяўнасці published_in_error: Інфармацыя на гэтай старонцы была выдалена, бо была апублікавана з памылкай. @@ -527,74 +504,74 @@ be: 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: Калі мы выявілі інфармацыю пра аўтарскія правы трэціх асоб, вам патрэбна атрымаць дазвол ад адпаведных праваўладальнікаў. i18n: - direction: + direction: language_names: - ar: - az: + ar: + az: be: Беларуская - bg: - bn: - cs: - cy: - da: - de: - dr: - el: - en: - es: - es-419: - et: - fa: - fi: - fr: - gd: - gu: - he: - hi: - hr: - hu: - hy: - id: - is: - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: - th: - tk: - tr: - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + bg: + bn: + cs: + cy: + da: + de: + dr: + el: + en: + es: + es-419: + et: + fa: + fi: + fr: + gd: + gu: + he: + hi: + hr: + hu: + hy: + id: + is: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: + th: + tk: + tr: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: Далей previous_page: Папярэдні @@ -602,8 +579,8 @@ be: publication: details: Дэталi documents: - few: - many: + few: + many: one: Дакумент other: Дакументы service_sign_in: diff --git a/config/locales/bg.yml b/config/locales/bg.yml index f55b2c5f8..38a723fdb 100644 --- a/config/locales/bg.yml +++ b/config/locales/bg.yml @@ -41,7 +41,7 @@ bg: feedback_received: Получената обратна връзка is_being: е not_open_yet: Тази консултация все още не е открита - 'on': + 'on': opens: Тази консултация се отваря original_consultation: Първоначална консултация ran_from: Тази консултация се управлява от @@ -84,7 +84,6 @@ bg: closed_consultation: one: Закрита консултация other: Закрити консултации - overview: cma_case: one: Дело на Органа за защита на конкуренцията и пазарите other: Дела на Органа за защита на конкуренцията и пазарите @@ -97,25 +96,21 @@ bg: consultation_outcome: one: Резултат от консултацията other: Резултати от консултацията - overview: corporate_information_page: one: Информационна страница other: Информационни страници corporate_report: one: Фирмен доклад other: Фирмени доклади - overview: correspondence: one: Кореспонденция other: Кореспонденции - overview: countryside_stewardship_grant: one: Безвъзмездна финансова помощ за управление на селските райони other: Безвъзмездни финансови помощи за управление на селските райони decision: one: Решение other: Решения - overview: detailed_guide: one: Насока other: Насока @@ -146,43 +141,36 @@ bg: foi_release: one: Свобода на информацията издание other: Свобода на информацията издания - overview: form: one: Формуляр other: Формуляри - overview: government_response: one: Отговор на правителството other: Отговори на правителството guidance: one: Насока other: Насока - overview: impact_assessment: one: Оценка на въздействието other: Оценки на въздействието - overview: imported: one: импортиран - очакващ тип other: импортиран - очакващ тип independent_report: one: Независим доклад other: Независими доклади - overview: international_development_fund: one: Финансиране за международно развитие other: Финансиране за международно развитие international_treaty: one: Международен договор other: Международни договори - overview: maib_report: one: Доклад на Отдела за разследване на морски произшествия other: Доклади на Отдела за разследване на морски произшествия map: one: Карта other: Карти - overview: medical_safety_alert: one: Предупреждения и изтегляния на лекарства и медицински изделия other: Предупреждения и изтегляния на лекарства и медицински изделия @@ -192,7 +180,6 @@ bg: national_statistics: one: Национална статистика other: Национална статистика - overview: national_statistics_announcement: one: Съобщение от националната статистика other: Съобщения от националните статистики @@ -205,21 +192,18 @@ bg: notice: one: Известие other: Известия - overview: official: one: Съобщение от официалната статистика other: Съобщения от официалните статистики official_statistics: one: Официална статистика other: Официална статистика - overview: official_statistics_announcement: one: Съобщение от официалната статистика other: Съобщения от официалните статистики open_consultation: one: Открита консултация other: Открити консултации - overview: oral_statement: one: Устно изявление в Парламента other: Устни изявления в Парламента @@ -229,14 +213,12 @@ bg: policy_paper: one: Политически документ other: Политически документи - overview: press_release: one: Съобщение за пресата other: Съобщения за пресата promotional: one: Рекламен материал other: Рекламен материал - overview: publication: one: Публикация other: Публикации @@ -246,11 +228,9 @@ bg: regulation: one: Наредба other: Наредби - overview: research: one: Проучване и анализ other: Проучване и анализ - overview: residential_property_tribunal_decision: one: Съдебно решение за жилищни имоти other: Съдебни решения за жилищни имоти @@ -269,7 +249,6 @@ bg: standard: one: Стандарт other: Стандарти - overview: statement_to_parliament: one: Изявление пред Парламента other: Изявления пред Парламента @@ -282,7 +261,6 @@ bg: statutory_guidance: one: Законови указания other: Законови указания - overview: take_part: one: Вземете участие other: Вземете участие @@ -295,7 +273,6 @@ bg: transparency: one: Данни за прозрачност other: Данни за прозрачност - overview: utaac_decision: one: Решение на административния апелативен съд other: Решения на апелативния съд по трудови спорове @@ -316,54 +293,54 @@ bg: social_media_use_html: Прочетете нашите правила на %{link}. welsh_language_scheme_html: Научете повече за нашия ангажимент към %{link}. email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: Герб на Министерството на отбраната field_of_operation: Област на действие operations_in: Операции в %{location} get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: Вече не е налична published_in_error: Информацията е премахната от тази страница, тъй като е била погрешно публикувана. @@ -379,74 +356,74 @@ bg: 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: Когато идентифицираме информация за авторски права на трети страни, ще трябва да получите разрешение от съответните носители на авторските права. i18n: - direction: + direction: language_names: - ar: - az: - be: + ar: + az: + be: bg: Bulgarian - bn: - cs: - cy: - da: - de: - dr: - el: - en: - es: - es-419: - et: - fa: - fi: - fr: - gd: - gu: - he: - hi: - hr: - hu: - hy: - id: - is: - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: - th: - tk: - tr: - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + bn: + cs: + cy: + da: + de: + dr: + el: + en: + es: + es-419: + et: + fa: + fi: + fr: + gd: + gu: + he: + hi: + hr: + hu: + hy: + id: + is: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: + th: + tk: + tr: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: Следваща previous_page: Предишна diff --git a/config/locales/bn.yml b/config/locales/bn.yml index e604e3b97..122183669 100644 --- a/config/locales/bn.yml +++ b/config/locales/bn.yml @@ -41,7 +41,7 @@ bn: feedback_received: ফিডব্যাক গৃহীত হয়েছে is_being: হয়েছে not_open_yet: এই পরামর্শটি এখনও চালু হয়নি - 'on': + 'on': opens: এই পরামর্শটি চালু হচ্ছে original_consultation: মূল পরামর্শ ran_from: এই পরামর্শটি যেখান থেকে চলেছে @@ -84,7 +84,6 @@ bn: closed_consultation: one: ক্লোজড কনসাল্টেশন other: ক্লোজড কনসাল্টেশন - overview: cma_case: one: প্রতিযোগিতা এবং বাজার কর্তৃপক্ষ কেস other: প্রতিযোগিতা এবং বাজার কর্তৃপক্ষ কেসসমূহ @@ -97,25 +96,21 @@ bn: consultation_outcome: one: পরামর্শের ফলাফল other: পরামর্শের ফলাফল - overview: corporate_information_page: one: তথ্য পেইজ other: তথ্য পেইজসমূহ corporate_report: one: কর্পোরেট রিপোর্ট other: কর্পোরেট রিপোর্টসমূহ - overview: correspondence: one: যোগাযোগ other: যোগাযোগ - overview: countryside_stewardship_grant: one: কান্ট্রিসাইড স্টুয়ার্ডশিপ গ্রান্ট other: কান্ট্রিসাইড স্টুয়ার্ডশিপ গ্রান্টস decision: one: সিদ্ধান্ত other: সিদ্ধান্তসমূহ - overview: detailed_guide: one: পরিচালনা other: পরিচালনা @@ -146,43 +141,36 @@ bn: foi_release: one: FOI ছাড়পত্র other: FOI ছাড়পত্রসমূহ - overview: form: one: ফর্ম other: ফর্মসমূহ - overview: government_response: one: সরকারের সাড়া other: সরকারের সাড়া guidance: one: পরিচালনা other: পরিচালনা - overview: impact_assessment: one: প্রভাব মূল্যায়ন other: প্রভাব মূল্যায়ন - overview: imported: one: ইমপোর্ট করা - প্রকারের জন্য অপেক্ষমাণ other: ইমপোর্ট করা - প্রকারের জন্য অপেক্ষমাণ independent_report: one: স্বতন্ত্র রিপোর্ট other: স্বতন্ত্র রিপোর্টসমূহ - overview: international_development_fund: one: আন্তর্জাতিক উন্নয়ন অর্থায়ন other: আন্তর্জাতিক উন্নয়ন অর্থায়ন international_treaty: one: ইন্টারন্যাশনাল চুক্তি other: ইন্টারন্যাশনাল চুক্তিসমূহ - overview: maib_report: one: সামুদ্রিক দুর্ঘটনা তদন্ত শাখা প্রতিবেদন other: সামুদ্রিক দুর্ঘটনা তদন্ত শাখা প্রতিবেদনসমূহ map: one: মানচিত্র other: মানচিত্রসমূহ - overview: medical_safety_alert: one: ঔষধপত্র ও মেডিক্যাল ডিভাইস সম্পর্কে অ্যালার্ট ও রিকল other: ঔষধপত্র ও মেডিক্যাল ডিভাইস সম্পর্কে অ্যালার্ট ও রিকল @@ -192,7 +180,6 @@ bn: national_statistics: one: জাতীয় পরিসংখ্যান other: জাতীয় পরিসংখ্যান - overview: national_statistics_announcement: one: জাতীয় পরিসংখ্যানের ঘোষণা other: জাতীয় পরিসংখ্যানের ঘোষণাসমূহ @@ -205,21 +192,18 @@ bn: notice: one: বিজ্ঞপ্তি other: বিজ্ঞপ্তিসমূহ - overview: official: one: দাপ্তরিক পরিসংখ্যানের ঘোষণা other: দাপ্তরিক পরিসংখ্যানের ঘোষণাসমূহ official_statistics: one: দাপ্তরিক পরিসংখ্যান other: দাপ্তরিক পরিসংখ্যান - overview: official_statistics_announcement: one: দাপ্তরিক পরিসংখ্যানের ঘোষণা other: দাপ্তরিক পরিসংখ্যানের ঘোষণাসমূহ open_consultation: one: উম্মুক্ত পরামর্শ other: উম্মুক্ত পরামর্শসমূহ - overview: oral_statement: one: সংসদে মৌখিক বিবৃতি other: সংসদে মৌখিক বিবৃতিসমূহ @@ -229,14 +213,12 @@ bn: policy_paper: one: পলিসি পেপার other: পলিসি পেপারসমূহ - overview: press_release: one: প্রেস বিজ্ঞপ্তি other: প্রেস বিজ্ঞপ্তিসমূহ promotional: one: প্রোমোশন সম্পর্কিত উপকরণ other: প্রোমোশন সম্পর্কিত উপকরণ - overview: publication: one: প্রকাশনা other: প্রকাশনাসমূহ @@ -246,11 +228,9 @@ bn: regulation: one: বিধিবিধান other: বিধিবিধান - overview: research: one: গবেষণা ও বিশ্লেষণ other: গবেষণা ও বিশ্লেষণ - overview: residential_property_tribunal_decision: one: আবাসিক সম্পত্তির ট্রাইব্যুনালের সিদ্ধান্ত other: আবাসিক সম্পত্তির ট্রাইব্যুনালের সিদ্ধান্তসমূহ @@ -269,7 +249,6 @@ bn: standard: one: স্ট্যান্ডার্ড other: স্ট্যান্ডার্ডসমূহ - overview: statement_to_parliament: one: সংসদে বিবৃতি other: সংসদে বিবৃতিসমূহ @@ -282,7 +261,6 @@ bn: statutory_guidance: one: বিধিবদ্ধ নির্দেশনা other: বিধিবদ্ধ নির্দেশনা - overview: take_part: one: অংশ নিন other: অংশ নিন @@ -295,7 +273,6 @@ bn: transparency: one: স্বচ্ছতার তথ্য other: স্বচ্ছতার তথ্য - overview: utaac_decision: one: প্রশাসনিক আপীল ট্রাইব্যুনালের সিদ্ধান্ত other: প্রশাসনিক আপীল ট্রাইব্যুনালের সিদ্ধান্তসমূহ @@ -316,54 +293,54 @@ bn: social_media_use_html: "%{link}-এ আমাদের নীতিমালা পড়ুন।" welsh_language_scheme_html: "%{link}-এ আপনার আমাদের অঙ্গীকার সম্পর্কে জানুন।" email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: প্রতিরক্ষা মন্ত্রণালয়ের ক্রেস্ট field_of_operation: কার্যক্রমের ক্ষেত্র operations_in: "%{location}-এ পরিচালনা" get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: আর উপলভ্য নেই published_in_error: এই পেজের তথ্য সরিয়ে নেওয়া হয়েছে, কারণ এটি ভুলক্রমে প্রকাশিত হয়েছিল। @@ -379,74 +356,74 @@ bn: 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: আমরা যখন কোনো তৃতীয় পক্ষের কপিরাইটের তথ্য শনাক্ত করবো, তখন আপনাকে সংশ্লিষ্ট কপিরাইট ধারকের কাছ থেকে অনুমতি নিতে হবে। i18n: - direction: + direction: language_names: - ar: - az: - be: - bg: + ar: + az: + be: + bg: bn: বাংলা - cs: - cy: - da: - de: - dr: - el: - en: - es: - es-419: - et: - fa: - fi: - fr: - gd: - gu: - he: - hi: - hr: - hu: - hy: - id: - is: - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: - th: - tk: - tr: - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + cs: + cy: + da: + de: + dr: + el: + en: + es: + es-419: + et: + fa: + fi: + fr: + gd: + gu: + he: + hi: + hr: + hu: + hy: + id: + is: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: + th: + tk: + tr: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: পরবর্তী previous_page: পূর্ববর্তী diff --git a/config/locales/cs.yml b/config/locales/cs.yml index 29ef21d78..74daa7066 100644 --- a/config/locales/cs.yml +++ b/config/locales/cs.yml @@ -41,7 +41,7 @@ cs: feedback_received: Obdržená zpětná vazba is_being: je not_open_yet: Tato konzultace ještě není otevřena - 'on': + 'on': opens: Tato konzultace zahajuje original_consultation: Původní konzultace ran_from: Tato konzultace probíhala od @@ -64,322 +64,299 @@ cs: updated: Aktualizováno schema_name: aaib_report: - few: + few: one: Zpráva Oddělení pro vyšetřování leteckých nehod other: Zprávy Oddělení pro vyšetřování leteckých nehod announcement: - few: + few: one: Oznámení other: Oznámení asylum_support_decision: - few: + few: one: Rozhodnutí tribunálu pro azylovou podporu other: Rozhodnutí tribunálu pro azylovou podporu authored_article: - few: + few: one: Autorský článek other: Autorské články business_finance_support_scheme: - few: + few: one: Režim podpory financování podniků other: Režimy podpory financování podniků case_study: - few: + few: one: Případová studie other: Případové studie closed_consultation: - few: + few: one: Uzavřená konzultace other: Uzavřené konzultace - overview: cma_case: - few: + few: one: Případ Úřadu pro hospodářskou soutěž a trhy other: Případy Úřadu pro hospodářskou soutěž a trhy coming_soon: - few: + few: one: Již brzy other: Již brzy consultation: - few: + few: one: Konzultace other: Konzultace consultation_outcome: - few: + few: one: Výsledek konzultace other: Výsledky konzultací - overview: corporate_information_page: - few: + few: one: Informační stránka other: Informační stránky corporate_report: - few: + few: one: Podniková zpráva other: Podnikové zprávy - overview: correspondence: - few: + few: one: Korespondence other: Korespondence - overview: countryside_stewardship_grant: - few: + few: one: Grant na správu krajiny other: Granty na správu krajiny decision: - few: + few: one: Rozhodnutí other: Rozhodnutí - overview: detailed_guide: - few: + few: one: Směrnice other: Směrnice dfid_research_output: - few: + few: one: Výstup výzkumu pro rozvoj other: Výstupy výzkumu pro rozvoj document_collection: - few: + few: one: Sbírka other: Sbírky draft_text: - few: + few: one: Návrh textu other: Návrhy textů drug_safety_update: - few: + few: one: Aktuální informace o bezpečnosti léčiv other: Aktuální informace o bezpečnosti léčiv employment_appeal_tribunal_decision: - few: + few: one: Rozhodnutí odvolacího pracovního soudu other: Rozhodnutí odvolacího pracovního soudu employment_tribunal_decision: - few: + few: one: Rozhodnutí pracovního soudu other: Rozhodnutí pracovního soudu esi_fund: - few: + few: one: Evropský strukturální a investiční fond (ESIF) other: Evropské strukturální a investiční fondy (ESIF) fatality_notice: - few: + few: one: Oznámení o úmrtí other: Oznámení o úmrtí foi_release: - few: + few: one: Zveřejnění informací other: Zveřejnění informací - overview: form: - few: + few: one: Formulář other: Formuláře - overview: government_response: - few: + few: one: Reakce vlády other: Reakce vlády guidance: - few: + few: one: Směrnice other: Směrnice - overview: impact_assessment: - few: + few: one: Posouzení dopadu other: Posouzení dopadů - overview: imported: - few: + few: one: importované - čekající na typ other: importované - čekající na typ independent_report: - few: + few: one: Nezávislá zpráva other: Nezávislé zprávy - overview: international_development_fund: - few: + few: one: Financování mezinárodního rozvoje other: Financování mezinárodního rozvoje international_treaty: - few: + few: one: Mezinárodní smlouva other: Mezinárodní smlouvy - overview: maib_report: - few: + few: one: Zpráva oddělení pro vyšetřování námořních nehod other: Zprávy oddělení pro vyšetřování námořních nehod map: - few: + few: one: Mapa other: Mapy - overview: medical_safety_alert: - few: + few: one: Upozornění a stahování léčiv a zdravotnických prostředků z trhu other: Upozornění a stahování léčiv a zdravotnických prostředků z trhu national: - few: + few: one: Oznámení národních statistik other: Oznámení národních statistik national_statistics: - few: + few: one: Národní statistiky other: Národní statistiky - overview: national_statistics_announcement: - few: + few: one: Oznámení národních statistik other: Oznámení národních statistik news_article: - few: + few: one: Zpravodajský článek other: Zpravodajské články news_story: - few: + few: one: Zpravodajský příběh other: Zpravodajské příběhy notice: - few: + few: one: Oznámení other: Oznámení - overview: official: - few: + few: one: Oficiální statistické oznámení other: Oficiální statistická oznámení official_statistics: - few: + few: one: Oficiální statistiky other: Oficiální statistiky - overview: official_statistics_announcement: - few: + few: one: Oficiální statistické oznámení other: Oficiální statistická oznámení open_consultation: - few: + few: one: Otevřená konzultace other: Otevřené konzultace - overview: oral_statement: - few: + few: one: Ústní prohlášení pro Parlament other: Ústní prohlášení pro Parlament policy: - few: + few: one: Politika other: Politik policy_paper: - few: + few: one: Politický dokument other: Politické dokumenty - overview: press_release: - few: + few: one: Tisková zpráva other: Tiskové zprávy promotional: - few: + few: one: Propagační materiály other: Propagační materiály - overview: publication: - few: + few: one: Publikace other: Publikace raib_report: - few: + few: one: Zpráva Oddělení pro vyšetřování železničních nehod other: Zprávy Oddělení pro vyšetřování železničních nehod regulation: - few: + few: one: Nařízení other: nařízení - overview: research: - few: + few: one: Výzkum a analýza other: Výzkum a analýza - overview: residential_property_tribunal_decision: - few: + few: one: Rozhodnutí tribunálu pro obytné nemovitosti other: Rozhodnutí tribunálu pro obytné nemovitosti service_sign_in: - few: + few: one: Přihlášení do služby other: Přihlášení do služby service_standard_report: - few: + few: one: Zpráva o standardu služby other: Zprávy o standardu služby speaking_notes: - few: + few: one: Poznámky k mluvení other: Poznámky k mluvení speech: - few: + few: one: Projev other: Projevy standard: - few: + few: one: Standardní other: Standardy - overview: statement_to_parliament: - few: + few: one: Prohlášení pro Parlament other: Prohlášení pro Parlament statistical_data_set: - few: + few: one: Soubor statistických údajů. other: Soubory statistických údajů. statistics_announcement: - few: + few: one: Oznámení o zveřejnění statistik other: Oznámení o zveřejnění statistik statutory_guidance: - few: + few: one: Zákonné směrnice other: Zákonné směrnice - overview: take_part: - few: + few: one: Zúčastněte se other: Zúčastněte se tax_tribunal_decision: - few: + few: one: Rozhodnutí daňového a ekvitního soudu other: Rozhodnutí daňového a ekvitního soudu transcript: - few: + few: one: Přepis other: Přepisy transparency: - few: + few: one: Údaje o transparentnosti other: Údaje o transparentnosti - overview: utaac_decision: - few: + few: one: Rozhodnutí odvolacího správního soudu other: Rozhodnutí odvolacího správního soudu world_location_news_article: - few: + few: one: Zpravodajský článek other: Zpravodajské články world_news_story: - few: + few: one: Zprávy ze světa other: Zprávy ze světa written_statement: - few: + few: one: Písemné prohlášení pro Parlament other: Písemná prohlášení pro Parlament corporate_information_page: @@ -390,54 +367,54 @@ cs: social_media_use_html: Přečtěte si naše zásady na %{link}. welsh_language_scheme_html: Přečtěte si o našem závazku k %{link}. email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: Ministerstvo obrany field_of_operation: Oblast provozu operations_in: Operace v %{location} get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: Již není k dispozici published_in_error: Informace na této stránce byly odstraněny, protože byly zveřejněny omylem. @@ -453,74 +430,74 @@ cs: 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. i18n: - direction: + direction: language_names: - ar: - az: - be: - bg: - bn: + ar: + az: + be: + bg: + bn: cs: Čeština - cy: - da: - de: - dr: - el: - en: - es: - es-419: - et: - fa: - fi: - fr: - gd: - gu: - he: - hi: - hr: - hu: - hy: - id: - is: - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: - th: - tk: - tr: - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + cy: + da: + de: + dr: + el: + en: + es: + es-419: + et: + fa: + fi: + fr: + gd: + gu: + he: + hi: + hr: + hu: + hy: + id: + is: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: + th: + tk: + tr: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: Další previous_page: Předchozí @@ -528,7 +505,7 @@ cs: publication: details: Podrobnosti documents: - few: + few: one: Odkaz na dokument other: Dokumenty service_sign_in: diff --git a/config/locales/cy.yml b/config/locales/cy.yml index 517dd0465..0f3da6a33 100644 --- a/config/locales/cy.yml +++ b/config/locales/cy.yml @@ -41,7 +41,7 @@ cy: feedback_received: Adborth wedi dod i law is_being: yn cael ei not_open_yet: Nid yw'r ymgynghoriad hwn wedi agor eto - 'on': + 'on': opens: Mae'r ymgynghoriad hwn yn agor original_consultation: Ymgynghoriad gwreiddiol ran_from: Roedd yr ymgynghoriad hwn yn rhedeg o @@ -64,546 +64,523 @@ cy: updated: Diweddarwyd schema_name: aaib_report: - few: - many: + few: + many: one: Adroddiad y Gangen Ymchwilio i Ddamweiniau Awyr other: Adroddiad y Gangen Ymchwilio i Ddamweiniau Awyr - two: - zero: + two: + zero: announcement: - few: - many: + few: + many: one: Cyhoeddiad other: Cyhoeddiadau - two: - zero: + two: + zero: asylum_support_decision: - few: - many: + few: + many: one: Penderfyniad y tribiwnlys cymorth lloches other: Penderfyniadau'r tribiwnlys cymorth lloches - two: - zero: + two: + zero: authored_article: - few: - many: + few: + many: one: Erthygl ag awdur wedi'i enwi other: Erthyglau ag awdur wedi'i enwi - two: - zero: + two: + zero: business_finance_support_scheme: - few: - many: + few: + many: one: Cynllun cymorth cyllid busnes other: Cynlluniau cymorth cyllid busnes - two: - zero: + two: + zero: case_study: - few: - many: + few: + many: one: Astudiaeth achos other: Astudiaethau achos - two: - zero: + two: + zero: closed_consultation: - few: - many: + few: + many: one: Ymgynghoriad caeedig other: Ymgynghoriadau caeedig - overview: - two: - zero: + two: + zero: cma_case: - few: - many: + few: + many: one: Achos yr Awdurdod Cystadleuaeth a Marchnadoedd other: Achosion yr Awdurdod Cystadleuaeth a Marchnadoedd - two: - zero: + two: + zero: coming_soon: - few: - many: + few: + many: one: I ddod yn fuan other: I ddod yn fuan - two: - zero: + two: + zero: consultation: - few: - many: + few: + many: one: Ymgynghoriad other: Ymgynghoriadau - two: - zero: + two: + zero: consultation_outcome: - few: - many: + few: + many: one: Canlyniad yr ymgynghoriad other: Canlyniadau'r ymgynghoriad - overview: - two: - zero: + two: + zero: corporate_information_page: - few: - many: + few: + many: one: Tudalen wybodaeth other: Tudalennau gwybodaeth - two: - zero: + two: + zero: corporate_report: - few: - many: + few: + many: one: Adroddiad corfforaethol other: Adroddiadau corfforaethol - overview: - two: - zero: + two: + zero: correspondence: - few: - many: + few: + many: one: Gohebiaeth other: Gohebiaethau - overview: - two: - zero: + two: + zero: countryside_stewardship_grant: - few: - many: + few: + many: one: Grant Stiwardiaeth Cefn Gwlad other: Grantiau Stiwardiaeth Cefn Gwlad - two: - zero: + two: + zero: decision: - few: - many: + few: + many: one: Penderfyniad other: Penderfyniadau - overview: - two: - zero: + two: + zero: detailed_guide: - few: - many: + few: + many: one: Canllawiau other: Canllawiau - two: - zero: + two: + zero: dfid_research_output: - few: - many: + few: + many: one: Allbwn Ymchwil er Datblygiad other: Allbynnau Ymchwil er Datblygiad - two: - zero: + two: + zero: document_collection: - few: - many: + few: + many: one: Casgliad other: Casgliadau - two: - zero: + two: + zero: draft_text: - few: - many: + few: + many: one: Testun drafft other: Testunau drafft - two: - zero: + two: + zero: drug_safety_update: - few: - many: + few: + many: one: Diweddariad Diogelwch Cyffuriau other: Diweddariadau Diogelwch Cyffuriau - two: - zero: + two: + zero: employment_appeal_tribunal_decision: - few: - many: + few: + many: one: Penderfyniad y tribiwnlys apêl cyflogaeth other: Penderfyniadau'r tribiwnlys apêl cyflogaeth - two: - zero: + two: + zero: employment_tribunal_decision: - few: - many: + few: + many: one: Penderfyniad y tribiwnlys cyflogaeth other: Penderfyniadau'r tribiwnlys cyflogaeth - two: - zero: + two: + zero: esi_fund: - few: - many: + few: + many: one: Cronfa Strwythurol a Buddsoddi Ewropeaidd (ESIF) other: Cronfeydd Strwythurol a Buddsoddi Ewropeaidd (ESIF) - two: - zero: + two: + zero: fatality_notice: - few: - many: + few: + many: one: Hysbysiad o farwolaeth other: Hysbysiadau o farwolaeth - two: - zero: + two: + zero: foi_release: - few: - many: + few: + many: one: Gwybodaeth a ryddhawyd o dan FOI other: Gwybodaeth a ryddhawyd o dan FOI - overview: - two: - zero: + two: + zero: form: - few: - many: + few: + many: one: Ffurflen other: Ffurflenni - overview: - two: - zero: + two: + zero: government_response: - few: - many: + few: + many: one: Ymateb y llywodraeth other: Ymatebion y llywodraeth - two: - zero: + two: + zero: guidance: - few: - many: + few: + many: one: Canllawiau other: Canllawiau - overview: - two: - zero: + two: + zero: impact_assessment: - few: - many: + few: + many: one: Asesiad o effaith other: Asesiadau o effaith - overview: - two: - zero: + two: + zero: imported: - few: - many: + few: + many: one: wedi'i fewnforio - yn aros am y math other: wedi'i fewnforio - yn aros am y math - two: - zero: + two: + zero: independent_report: - few: - many: + few: + many: one: Adroddiad annibynnol other: Adroddiadau annibynnol - overview: - two: - zero: + two: + zero: international_development_fund: - few: - many: + few: + many: one: Cyllid datblygu rhyngwladol other: Cyllid datblygu rhyngwladol - two: - zero: + two: + zero: international_treaty: - few: - many: + few: + many: one: Cytuniad rhyngwladol other: Cytuniadau rhyngwladol - overview: - two: - zero: + two: + zero: maib_report: - few: - many: + few: + many: one: Adroddiad y Gangen Ymchwilio i Ddamweiniau Morol other: Adroddiadau'r Gangen Ymchwilio i Ddamweiniau Morol - two: - zero: + two: + zero: map: - few: - many: + few: + many: one: Map other: Mapiau - overview: - two: - zero: + two: + zero: medical_safety_alert: - few: - many: + few: + many: one: Rhybuddion ac adalwadau ar gyfer cyffuriau a dyfeisiau meddygol other: Rhybuddion ac adalwadau ar gyfer cyffuriau a dyfeisiau meddygol - two: - zero: + two: + zero: national: - few: - many: + few: + many: one: Cyhoeddiad o ystadegau gwladol other: Cyhoeddiadau o ystadegau gwladol - two: - zero: + two: + zero: national_statistics: - few: - many: + few: + many: one: Ystadegau Gwladol other: Ystadegau Gwladol - overview: - two: - zero: + two: + zero: national_statistics_announcement: - few: - many: + few: + many: one: Cyhoeddiad o ystadegau gwladol other: Cyhoeddiadau o ystadegau gwladol - two: - zero: + two: + zero: news_article: - few: - many: + few: + many: one: Erthygl newyddion other: Erthyglau newyddion - two: - zero: + two: + zero: news_story: - few: - many: + few: + many: one: Stori newyddion other: Straeon newyddion - two: - zero: + two: + zero: notice: - few: - many: + few: + many: one: Hysbysiad other: Hysbysiadau - overview: - two: - zero: + two: + zero: official: - few: - many: + few: + many: one: Cyhoeddiad o ystadegau swyddogol other: Cyhoeddiadau o ystadegau swyddogol - two: - zero: + two: + zero: official_statistics: - few: - many: + few: + many: one: Ystadegau Swyddogol other: Ystadegau Swyddogol - overview: - two: - zero: + two: + zero: official_statistics_announcement: - few: - many: + few: + many: one: Cyhoeddiad o ystadegau swyddogol other: Cyhoeddiadau o ystadegau swyddogol - two: - zero: + two: + zero: open_consultation: - few: - many: + few: + many: one: Ymgynghoriad agored other: Ymgynghoriadau agored - overview: - two: - zero: + two: + zero: oral_statement: - few: - many: + few: + many: one: Datganiad llafar i'r Senedd other: Datganiadau llafar i'r Senedd - two: - zero: + two: + zero: policy: - few: - many: + few: + many: one: Polisi other: Polisïau - two: - zero: + two: + zero: policy_paper: - few: - many: + few: + many: one: Papur polisi other: Papurau polisi - overview: - two: - zero: + two: + zero: press_release: - few: - many: + few: + many: one: Datganiad i'r wasg other: Datganiadau i'r wasg - two: - zero: + two: + zero: promotional: - few: - many: + few: + many: one: Deunydd hyrwyddo other: Deunyddiau hyrwyddo - overview: - two: - zero: + two: + zero: publication: - few: - many: + few: + many: one: Cyhoeddiad other: Cyhoeddiadau - two: - zero: + two: + zero: raib_report: - few: - many: + few: + many: one: Adroddiad y Gangen Ymchwilio i Ddamweiniau Rheilffordd other: Adroddiadau'r Gangen Ymchwilio i Ddamweiniau Rheilffordd - two: - zero: + two: + zero: regulation: - few: - many: + few: + many: one: Rheoliad other: Rheoliadau - overview: - two: - zero: + two: + zero: research: - few: - many: + few: + many: one: Ymchwil a dadansoddi other: Ymchwil a dadansoddi - overview: - two: - zero: + two: + zero: residential_property_tribunal_decision: - few: - many: + few: + many: one: Penderfyniad y tribiwnlys eiddo preswyl other: Penderfyniadau'r tribiwnlys eiddo preswyl - two: - zero: + two: + zero: service_sign_in: - few: - many: + few: + many: one: Mewngofnodi i'r gwasanaeth other: Mewngofnodi i'r gwasanaeth - two: - zero: + two: + zero: service_standard_report: - few: - many: + few: + many: one: Adroddiad ar Safon Gwasanaeth other: Adroddiadau ar Safon Gwasanaeth - two: - zero: + two: + zero: speaking_notes: - few: - many: + few: + many: one: Nodiadau annerch other: Nodiadau annerch - two: - zero: + two: + zero: speech: - few: - many: + few: + many: one: Anerchiad other: Anerchiadau - two: - zero: + two: + zero: standard: - few: - many: + few: + many: one: Safon other: Safonau - overview: - two: - zero: + two: + zero: statement_to_parliament: - few: - many: + few: + many: one: Datganiad i'r Senedd other: Datganiadau i'r Senedd - two: - zero: + two: + zero: statistical_data_set: - few: - many: + few: + many: one: Set ddata ystadegol other: Setiau data ystadegol - two: - zero: + two: + zero: statistics_announcement: - few: - many: + few: + many: one: Cyhoeddiad am ryddhau ystadegau other: Cyhoeddiadau am ryddhau ystadegau - two: - zero: + two: + zero: statutory_guidance: - few: - many: + few: + many: one: Canllawiau statudol other: Canllawiau statudol - overview: - two: - zero: + two: + zero: take_part: - few: - many: + few: + many: one: Cymryd rhan other: Cymryd rhan - two: - zero: + two: + zero: tax_tribunal_decision: - few: - many: + few: + many: one: Penderfyniad y tribiwnlys Trethi a'r Siawnsri other: Penderfyniadau'r tribiwnlys Trethi a'r Siawnsri - two: - zero: + two: + zero: transcript: - few: - many: + few: + many: one: Trawsgrifiad other: Trawsgrifiadau - two: - zero: + two: + zero: transparency: - few: - many: + few: + many: one: Data tryloywder other: Data tryloywder - overview: - two: - zero: + two: + zero: utaac_decision: - few: - many: + few: + many: one: Penderfyniad y tribiwnlys apeliadau gweinyddol other: Penderfyniadau'r tribiwnlys apeliadau gweinyddol - two: - zero: + two: + zero: world_location_news_article: - few: - many: + few: + many: one: Erthygl newyddion other: Erthyglau newyddion - two: - zero: + two: + zero: world_news_story: - few: - many: + few: + many: one: Stori newyddion byd-eang other: Straeon newyddion byd-eang - two: - zero: + two: + zero: written_statement: - few: - many: + few: + many: one: Datganiad ysgrifenedig i'r Senedd other: Datganiadau ysgrifenedig i'r Senedd - two: - zero: + two: + zero: corporate_information_page: about_our_services_html: Dysgu %{link}. corporate_information: Gwybodaeth gorfforaethol @@ -612,54 +589,54 @@ cy: social_media_use_html: Darllenwch ein polisi ar %{link}. welsh_language_scheme_html: Dysgwch am ein hymrwymiad i %{link}. email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: Arwyddlun y Weinyddiaeth Amddiffyn field_of_operation: Maes gweithredu operations_in: Gweithrediadau yn %{location} get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: Ddim ar gael mwyach published_in_error: Mae'r wybodaeth ar y dudalen hon wedi'i thynnu am ei bod wedi'i chyhoeddi ar gam. @@ -675,74 +652,74 @@ cy: 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. i18n: - direction: + direction: language_names: - ar: - az: - be: - bg: - bn: - cs: + ar: + az: + be: + bg: + bn: + cs: cy: Cymraeg - da: - de: - dr: - el: - en: - es: - es-419: - et: - fa: - fi: - fr: - gd: - gu: - he: - hi: - hr: - hu: - hy: - id: - is: - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: - th: - tk: - tr: - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + da: + de: + dr: + el: + en: + es: + es-419: + et: + fa: + fi: + fr: + gd: + gu: + he: + hi: + hr: + hu: + hy: + id: + is: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: + th: + tk: + tr: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: Nesaf previous_page: Blaenorol @@ -750,12 +727,12 @@ cy: publication: details: Manylion documents: - few: - many: + few: + many: one: Dogfen other: Dogfennau - two: - zero: + two: + zero: service_sign_in: continue: Parhau error: diff --git a/config/locales/da.yml b/config/locales/da.yml index 0dec0b6b3..6223b2824 100644 --- a/config/locales/da.yml +++ b/config/locales/da.yml @@ -41,7 +41,7 @@ da: feedback_received: Feedback modtaget is_being: er ved at blive not_open_yet: Denne høring er ikke åben endnu - 'on': + 'on': opens: Denne konsultation åbner original_consultation: original konsultation ran_from: Denne konsultation løb fra @@ -84,7 +84,6 @@ da: closed_consultation: one: Lukket konsultation other: Lukkede konsultationer - overview: cma_case: one: Konkurrence- og markedsmyndighedens sag other: Konkurrence- og markedsmyndighedens sager @@ -97,25 +96,21 @@ da: consultation_outcome: one: Resultatet af høringen other: Resultater af høringen - overview: corporate_information_page: one: Informationsside other: Informationssider corporate_report: one: Virksomhedsrapport other: Virksomhedsrapporter - overview: correspondence: one: Korrespondance other: Korrespondancer - overview: countryside_stewardship_grant: one: Countryside Stewardship tilskud other: Countryside Stewardship -tilskud decision: one: Beslutning other: Beslutninger - overview: detailed_guide: one: Vejledning other: Vejledning @@ -154,43 +149,36 @@ da: foi_release: one: FOI frigivelse other: FOI frigivelser - overview: form: one: Formular other: Formularer - overview: government_response: one: Regeringens reaktion other: Regeringens reaktioner guidance: one: Vejledning other: Vejledning - overview: impact_assessment: one: Konsekvensanalyse other: Konsekvensanalyser - overview: imported: one: importeret - afventer type other: importeret - afventer type independent_report: one: Uafhængig rapport other: Uafhængige rapporter - overview: international_development_fund: one: International udviklingsfinansiering other: International udviklingsfinansiering international_treaty: one: International traktat other: Internationale traktater - overview: maib_report: one: Rapport fra afdelingen for undersøgelse af flyulykker other: Rapporter fra afdelingen for undersøgelse af flyulykker map: one: Kort other: Kort - overview: medical_safety_alert: one: Advarsler og tilbagekaldelser af lægemidler og medicinsk udstyr other: Advarsler og tilbagekaldelser af lægemidler og medicinsk udstyr @@ -200,7 +188,6 @@ da: national_statistics: one: Nationale statistikker other: Nationale statistikker - overview: national_statistics_announcement: one: Nationale statistikmeddelelse other: Nationale statistikmeddelelser @@ -213,21 +200,18 @@ da: notice: one: Meddelelse other: Meddelelser - overview: official: one: Officielle statistikmeddelelse other: Officielle statistikmeddelelser official_statistics: one: Officielle statistikker other: Officielle statistikker - overview: official_statistics_announcement: one: Officielle statistikmeddelelse other: Officielle statistikmeddelelser open_consultation: one: Åben konsultation other: Åbne konsultationer - overview: oral_statement: one: Mundtlig erklæring til Parlamentet other: Mundtlige erklæring til Parlamentet @@ -237,14 +221,12 @@ da: policy_paper: one: Politikdokument other: Politikdokumenter - overview: press_release: one: Pressemeddelelse other: Pressemeddelelser promotional: one: Reklamemateriale other: Reklamemateriale - overview: publication: one: Publikation other: Publikationer @@ -254,11 +236,9 @@ da: regulation: one: Forordning other: Forordninger - overview: research: one: Forskning og analyse other: Forskning og analyse - overview: residential_property_tribunal_decision: one: Afgørelse fra domstolene om boligejendomme other: Afgørelser fra domstolene om boligejendomme @@ -277,7 +257,6 @@ da: standard: one: Standard other: Standarder - overview: statement_to_parliament: one: Erklæring til Parlamentet other: Erklæringer til Parlamentet @@ -290,7 +269,6 @@ da: statutory_guidance: one: Lovpligtig vejledning other: Lovpligtig vejledning - overview: take_part: one: Deltage other: Deltage @@ -303,7 +281,6 @@ da: transparency: one: Data om gennemsigtighed other: Data om gennemsigtighed - overview: utaac_decision: one: |- Afgørelse om forvaltningsappelsager @@ -328,54 +305,54 @@ da: social_media_use_html: Læs vores politik om %{link}. welsh_language_scheme_html: Learn more about our commitment to% {link}. email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: Forsvarsministeriets kam field_of_operation: Operationsområde operations_in: Handlinger i %{location} get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: Ikke længere tilgængelig published_in_error: Oplysningerne på denne side er blevet fjernet, fordi de er udgivet ved en fejl. @@ -391,74 +368,74 @@ da: 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. i18n: - direction: + direction: language_names: - ar: - az: - be: - bg: - bn: - cs: - cy: + ar: + az: + be: + bg: + bn: + cs: + cy: da: Dansk - de: - dr: - el: - en: - es: - es-419: - et: - fa: - fi: - fr: - gd: - gu: - he: - hi: - hr: - hu: - hy: - id: - is: - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: - th: - tk: - tr: - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + de: + dr: + el: + en: + es: + es-419: + et: + fa: + fi: + fr: + gd: + gu: + he: + hi: + hr: + hu: + hy: + id: + is: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: + th: + tk: + tr: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: Næste previous_page: Forrige diff --git a/config/locales/de.yml b/config/locales/de.yml index 9ea9fbacf..23af3b2e9 100644 --- a/config/locales/de.yml +++ b/config/locales/de.yml @@ -41,7 +41,7 @@ de: feedback_received: Erhaltene Rückmeldungen is_being: wird not_open_yet: Diese Anhörung ist noch nicht eröffnet - 'on': + 'on': opens: Diese Anhörung wird eröffnet original_consultation: Originale Anhörung ran_from: Diese Anhörung lief ab @@ -84,7 +84,6 @@ de: closed_consultation: one: Abgeschlossene Beratung other: Abgeschlossene Beratungen - overview: cma_case: one: Rechtsfall der Behörde für Wettbewerb und Märkte other: Rechtsfälle der Behörde für Wettbewerb und Märkte @@ -97,25 +96,21 @@ de: consultation_outcome: one: Beratungsergebnis other: Beratungsergebnisse - overview: corporate_information_page: one: Informationsseite other: Informationsseiten corporate_report: one: Unternehmensbericht other: Unternehmensberichte - overview: correspondence: one: Korrespondenz other: Korrespondenzen - overview: countryside_stewardship_grant: one: Zuschuss zur Landschaftspflege other: Zuschüsse zur Landschaftspflege decision: one: Entscheidung other: Entscheidungen - overview: detailed_guide: one: Detaillierte Hinweise other: Detaillierte Hinweise @@ -146,43 +141,36 @@ de: foi_release: one: Freigabe gemäß Informationsfreiheitsgesetz other: Freigaben gemäß Informationsfreiheitsgesetz - overview: form: one: Formular other: Formulare - overview: government_response: one: Antwort der Regierung other: Antworten der Regierung guidance: one: Detaillierte Hinweise other: Detaillierte Hinweise - overview: impact_assessment: one: Folgenabschätzung other: Folgenabschätzungen - overview: imported: one: importiert - Warten auf Dokumententyp other: importiert - Warten auf Dokumententyp independent_report: one: Unabhängiger Bericht other: Unabhängige Berichte - overview: international_development_fund: one: Internationale Entwicklungsfinanzierung other: Internationale Entwicklungsfinanzierung international_treaty: one: Internationaler Vertrag other: Internationale Verträge - overview: maib_report: one: Untersuchungsbericht der Abteilung für Seeunfälle other: Untersuchungsberichte der Abteilung für Seeunfälle map: one: Karte other: Karten - overview: medical_safety_alert: one: Warnmeldungen und Rückrufaktionen für Arzneimittel und medizinische Geräte other: Warnmeldungen und Rückrufaktionen für Arzneimittel und medizinische Geräte @@ -192,7 +180,6 @@ de: national_statistics: one: Nationale Statistik other: Nationale Statistik - overview: national_statistics_announcement: one: Veröffentlichung der Nationalen Statistik other: Veröffentlichungen der Nationalen Statistik @@ -205,21 +192,18 @@ de: notice: one: Hinweis other: Hinweise - overview: official: one: Veröffentlichungen der Statistik other: Veröffentlichungen der Statistik official_statistics: one: Statistiken other: Statistiken - overview: official_statistics_announcement: one: Veröffentlichungen der Statistik other: Veröffentlichungen der Statistik open_consultation: one: Laufende Beratung other: Laufende Beratungen - overview: oral_statement: one: Mündliche Erklärung vor dem Parlament other: Mündliche Erklärungen vor dem Parlament @@ -229,14 +213,12 @@ de: policy_paper: one: Grundsatzpapier other: Grundsatzpapiere - overview: press_release: one: Pressemitteilung other: Pressemitteilungen promotional: one: Werbematerial other: Werbematerial - overview: publication: one: Veröffentlichung other: Veröffentlichungen @@ -246,11 +228,9 @@ de: regulation: one: Regulierung other: Regulierungen - overview: research: one: Forschung und Analyse other: Forschung und Analyse - overview: residential_property_tribunal_decision: one: Gerichtsentscheidung über Wohneigentum other: Gerichtsentscheidungen über Wohneigentum @@ -269,7 +249,6 @@ de: standard: one: Standard other: Standards - overview: statement_to_parliament: one: Erklärung vor dem Parlament other: Erklärungen vor dem Parlament @@ -282,7 +261,6 @@ de: statutory_guidance: one: Gesetzlicher Leitfaden other: Gesetzlicher Leitfaden - overview: take_part: one: Teilnehmen other: Teilnehmen @@ -295,7 +273,6 @@ de: transparency: one: Transparenzdaten other: Transparenzdaten - overview: utaac_decision: one: Entscheidung des Verwaltungsberufungsgerichts other: Entscheidungen des Verwaltungsberufungsgerichts @@ -316,54 +293,54 @@ de: social_media_use_html: Lesen Sie unsere Richtlinie zu %{link}. welsh_language_scheme_html: Informieren Sie sich über unser Engagement für %{link}. email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: Wappen des Verteidigungsministeriums field_of_operation: Tätigkeitsbereich operations_in: Tätigkeiten in %{location} get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: Nicht mehr verfügbar published_in_error: Die Informationen auf dieser Seite wurden entfernt, da sie fälschlich veröffentlicht wurden. @@ -379,74 +356,74 @@ de: 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. i18n: - direction: + direction: language_names: - ar: - az: - be: - bg: - bn: - cs: - cy: - da: + ar: + az: + be: + bg: + bn: + cs: + cy: + da: de: Deutsch - dr: - el: - en: - es: - es-419: - et: - fa: - fi: - fr: - gd: - gu: - he: - hi: - hr: - hu: - hy: - id: - is: - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: - th: - tk: - tr: - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + dr: + el: + en: + es: + es-419: + et: + fa: + fi: + fr: + gd: + gu: + he: + hi: + hr: + hu: + hy: + id: + is: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: + th: + tk: + tr: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: Weiter previous_page: Zurück diff --git a/config/locales/dr.yml b/config/locales/dr.yml index e868590d0..ddf2b85c1 100644 --- a/config/locales/dr.yml +++ b/config/locales/dr.yml @@ -41,7 +41,7 @@ dr: feedback_received: فیدبک دریافت گردید is_being: موجود not_open_yet: مشاوره تا هنوز شروع نشده است - 'on': + 'on': opens: مشاوره شروع میشود original_consultation: مشاورهء اصلی ran_from: این مشاوره اجرا میشود از @@ -84,7 +84,6 @@ dr: closed_consultation: one: مشاورهء متوقف شده other: مشاوره هایی متوقف شده - overview: cma_case: one: پروندهء رقابت و قدرت بازار other: پروندهء رقابت پ قدرت بازار @@ -97,25 +96,21 @@ dr: consultation_outcome: one: نتیجهء مشاوره other: نتایج مشاوره - overview: corporate_information_page: one: صفحه معلومات other: صفحات معلومات corporate_report: one: گزارش شرکت other: گزارشات شرکت - overview: correspondence: one: مکاتبه other: مکاتیب - overview: countryside_stewardship_grant: one: هزینهء معاونت روستایی other: هزینه هایی معاونت روستایی decision: one: تصمیم other: تصامیم - overview: detailed_guide: one: راهنمایی other: راهنمایی @@ -146,43 +141,36 @@ dr: foi_release: one: انتشار آزادی اطلاعات other: انتشارات آزادی اطلاعات - overview: form: one: فارم other: فارم ها - overview: government_response: one: پاسخ حکومت other: پاسخ هایی حکومت guidance: one: راهنمایی other: راهنمایی - overview: impact_assessment: one: ارزیابی تأثیر other: ارزیابی هایی تأثیر - overview: imported: one: وارد شده – بصورت معلق other: وارد شده – بصورت معلق independent_report: one: گزارش مستقل other: گزارشات مستقل - overview: international_development_fund: one: بودیجه توسعه بین المللی other: بودیجه توسعه بین المللی international_treaty: one: معاهده بین المللی other: معاهدات بین المللی - overview: maib_report: one: گزارش شعبهء بررسی حوادث بحری other: گزارشات شعبهء بررسی حوادث بحری map: one: نقشه other: نقشه ها - overview: medical_safety_alert: one: هشدار ها و فراخوانی برای دوا ها و تجهیزات طبی other: هشدار ها و فراخوانی دوا ها و تجهیرات طبی @@ -192,7 +180,6 @@ dr: national_statistics: one: آمار ملی other: آمار ملی - overview: national_statistics_announcement: one: اطلاعیه آمار ملی other: اطلاعیه آمار ملی @@ -205,21 +192,18 @@ dr: notice: one: اطلاعیه other: اطلاعیه ها - overview: official: one: اطلاعیه آمار رسمی other: اطلاعیه هایی آمار رسمی official_statistics: one: آمار رسمی other: آمار رسمی - overview: official_statistics_announcement: one: اطلاعیه آمار رسمی other: اطلاعیه آمار رسمی open_consultation: one: مشاوره آزاد other: مشاوره هایی آزاد - overview: oral_statement: one: بیانیهء شفاهی به پارلمان other: بیانیه هایی شفاهی به پارلمان @@ -229,14 +213,12 @@ dr: policy_paper: one: مقاله سیاست other: اوراق سیاست - overview: press_release: one: بیانیه مطبوعاتی other: بیانیه هایی مطبوعاتی promotional: one: مواد تبلیغاتی other: مواد تبلیغاتی - overview: publication: one: انتشار other: انتشارات @@ -246,11 +228,9 @@ dr: regulation: one: قانون other: قوانین - overview: research: one: تحقیق و تجزیه و تحلیل other: تحقیق و تجزیه و تحلیل - overview: residential_property_tribunal_decision: one: تصمیم دادگاه ملکیت مسکونی other: تصامیم دادگاه ملکیت مسکونی @@ -269,7 +249,6 @@ dr: standard: one: استندرد other: استندرد ها - overview: statement_to_parliament: one: بیانیه به پارلمان other: بیانیه های به پارلمان @@ -282,7 +261,6 @@ dr: statutory_guidance: one: راهنمایی قانونی other: راهنمایی قانونی - overview: take_part: one: سهم بگیرید other: سهم بگیرید @@ -295,7 +273,6 @@ dr: transparency: one: داده هایی شفافیت other: داده هایی شفافیت - overview: utaac_decision: one: تصمیم دادگاه استیناف اداری other: تصامیم دادگاه استیناف اداری @@ -316,54 +293,54 @@ dr: social_media_use_html: سیاست ما را در اینجا بخوانید%{link}. welsh_language_scheme_html: از تعهد ما به %{link} مطلع شوید. email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: وزارت دفاع field_of_operation: ساحهء عملیات operations_in: عملیات در%{location} get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: دیگر در دسترس نیست published_in_error: اطلاعات این صفحه حذف شده است چونکه اشتباهاً منتشر شده بود. @@ -384,72 +361,72 @@ dr: i18n: direction: rtl language_names: - ar: - az: - be: - bg: - bn: - cs: - cy: - da: - de: + ar: + az: + be: + bg: + bn: + cs: + cy: + da: + de: dr: بعدی - el: - en: - es: - es-419: - et: - fa: - fi: - fr: - gd: - gu: - he: - hi: - hr: - hu: - hy: - id: - is: - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: - th: - tk: - tr: - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + el: + en: + es: + es-419: + et: + fa: + fi: + fr: + gd: + gu: + he: + hi: + hr: + hu: + hy: + id: + is: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: + th: + tk: + tr: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: قبلی previous_page: قبلی diff --git a/config/locales/el.yml b/config/locales/el.yml index 54fc00c01..2cc0f120a 100644 --- a/config/locales/el.yml +++ b/config/locales/el.yml @@ -41,7 +41,7 @@ el: feedback_received: Λήφθηκαν σχόλια is_being: είναι not_open_yet: Αυτή η διαβούλευση δεν είναι ακόμη ανοιχτή - 'on': + 'on': opens: Αυτή η διαβούλευση ανοίγει original_consultation: Αρχική διαβούλευση ran_from: Αυτή η διαβούλευση ξεκίνησε από @@ -84,7 +84,6 @@ el: closed_consultation: one: Κλειστή διαβούλευση other: Κλειστές διαβουλεύσεις - overview: cma_case: one: Υπόθεση Αρχής Ανταγωνισμού και Αγορών other: Υποθέσεις Αρχής Ανταγωνισμού και Αγορών @@ -97,25 +96,21 @@ el: consultation_outcome: one: Αποτέλεσμα διαβούλευσης other: Αποτελέσματα διαβούλευσης - overview: corporate_information_page: one: Σελίδα πληροφοριών other: Σελίδες πληροφοριών corporate_report: one: Εταιρική έκθεση other: Εταιρικές εκθέσεις - overview: correspondence: one: Αλληλογραφία other: Αλληλογραφίες - overview: countryside_stewardship_grant: one: Οικονομικό κίνητρο Countryside Stewardship grant other: Οικονομικά κίνητρα Countryside Stewardship grants decision: one: Απόφαση other: Αποφάσεις - overview: detailed_guide: one: Οδηγία other: Οδηγία @@ -146,43 +141,36 @@ el: foi_release: one: Κυκλοφορία ελευθερία της πληροφόρησης other: Κυκλοφορίες ελευθερία της πληροφόρησης - overview: form: one: Φόρμα other: Φόρμες - overview: government_response: one: Κυβερνητική απάντηση other: Κυβερνητικές απαντήσεις guidance: one: Οδηγία other: Οδηγία - overview: impact_assessment: one: Εκτίμηση επίπτωσης other: Εκτιμήσεις επιπτώσεων - overview: imported: one: εισήχθη - σε αναμονή για τύπο other: εισήχθη - σε αναμονή για τύπο independent_report: one: Ανεξάρτητη έκθεση other: Ανεξάρτητες εκθέσεις - overview: international_development_fund: one: Διεθνής χρηματοδότηση ανάπτυξης other: Διεθνής χρηματοδότηση ανάπτυξης international_treaty: one: Διεθνής συνθήκη other: Διεθνείς συνθήκες - overview: maib_report: one: Έκθεση του τμήματος διερεύνησης θαλάσσιων ατυχημάτων other: Εκθέσεις του τμήματος διερεύνησης θαλάσσιων ατυχημάτων map: one: Χάρτης other: Χάρτες - overview: medical_safety_alert: one: Ειδοποιήσεις και ανακλήσεις για φάρμακα και ιατρικές συσκευές other: Ειδοποιήσεις και ανακλήσεις για φάρμακα και ιατρικές συσκευές @@ -192,7 +180,6 @@ el: national_statistics: one: Εθνική Στατιστική Υπηρεσία other: Εθνική Στατιστική Υπηρεσία - overview: national_statistics_announcement: one: Ανακοίνωση εθνικής στατιστικής υπηρεσίας other: Ανακοινώσεις εθνικής στατιστικής υπηρεσίας @@ -205,21 +192,18 @@ el: notice: one: Σημείωση other: Σημειώσεις - overview: official: one: Επίσημη ανακοίνωση στατιστικών other: Επίσημες ανακοινώσεις στατιστικών official_statistics: one: Επίσημη Στατιστικά Στοιχεία other: Επίσημη Στατιστικά Στοιχεία - overview: official_statistics_announcement: one: Επίσημη ανακοίνωση στατιστικών other: Επίσημες ανακοινώσεις στατιστικών open_consultation: one: Ανοιχτή διαβούλευση other: Ανοιχτές διαβουλεύσεις - overview: oral_statement: one: Προφορική δήλωση στη Βουλή other: Προφορικές δηλώσεις στη Βουλή @@ -229,14 +213,12 @@ el: policy_paper: one: Έγγραφο πολιτικής other: Έγγραφα πολιτικής - overview: press_release: one: Δελτίο τύπου other: Δελτία Τύπου promotional: one: Προωθητικό υλικό other: Προωθητικό υλικό - overview: publication: one: Δημοσίευση other: Δημοσιεύσεις @@ -246,11 +228,9 @@ el: regulation: one: Κανονισμός λειτουργίας other: Κανονισμοί λειτουργίας - overview: research: one: Έρευνα και ανάλυση other: Έρευνα και ανάλυση - overview: residential_property_tribunal_decision: one: Απόφαση δικαστηρίου διαφορών ιδιοκτησίας other: Αποφάσεις δικαστηρίου διαφορών ιδιοκτησίας @@ -269,7 +249,6 @@ el: standard: one: Πρότυπο other: Πρότυπα - overview: statement_to_parliament: one: Δήλωση στη Βουλή other: Δηλώσεις στη Βουλή @@ -282,7 +261,6 @@ el: statutory_guidance: one: Νομικές οδηγίες other: Νομικές οδηγίες - overview: take_part: one: Συμμετοχή other: Συμμετοχή @@ -295,7 +273,6 @@ el: transparency: one: Δεδομένα διαφάνειας other: Δεδομένα διαφάνειας - overview: utaac_decision: one: Απόφαση του δικαστηρίου διοικητικών προσφυγών other: Αποφάσεις του δικαστηρίου διοικητικών προσφυγών @@ -316,54 +293,54 @@ el: social_media_use_html: Διαβάστε την πολιτική μας στο %{link}. welsh_language_scheme_html: Μάθετε για τη δέσμευσή μας στο %{link}. email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: Οικόσημο Υπουργείου Άμυνας field_of_operation: Πεδίο λειτουργίας operations_in: Λειτουργίες στην τοποθεσία %{location} get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: Δεν είναι πλέον διαθέσιμο published_in_error: Οι πληροφορίες σε αυτήν τη σελίδα έχουν καταργηθεί επειδή δημοσιεύθηκαν κατά λάθος. @@ -379,74 +356,74 @@ el: 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: Όπου έχουμε εντοπίσει οποιαδήποτε στοιχεία πνευματικών δικαιωμάτων τρίτου μέρους, θα χρειαστεί να λάβετε άδεια από τους ενδιαφερόμενους κατόχους πνευματικών δικαιωμάτων. i18n: - direction: + direction: language_names: - ar: - az: - be: - bg: - bn: - cs: - cy: - da: - de: - dr: + ar: + az: + be: + bg: + bn: + cs: + cy: + da: + de: + dr: el: Ελληνικά - en: - es: - es-419: - et: - fa: - fi: - fr: - gd: - gu: - he: - hi: - hr: - hu: - hy: - id: - is: - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: - th: - tk: - tr: - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + en: + es: + es-419: + et: + fa: + fi: + fr: + gd: + gu: + he: + hi: + hr: + hu: + hy: + id: + is: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: + th: + tk: + tr: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: Επόμενο previous_page: Προηγούμενο diff --git a/config/locales/es-419.yml b/config/locales/es-419.yml index 1cbcc4547..cff5ffed7 100644 --- a/config/locales/es-419.yml +++ b/config/locales/es-419.yml @@ -41,7 +41,7 @@ es-419: feedback_received: Comentarios recibidos is_being: está siendo not_open_yet: Esta consulta aún no está abierta - 'on': + 'on': opens: Esta consulta abre original_consultation: Consulta inicial ran_from: Esta consulta se llevó a cabo desde @@ -84,7 +84,6 @@ es-419: closed_consultation: one: Consulta restringida other: Consultas restringidas - overview: cma_case: one: Asunto de la Autoridad de Competencia y Mercados other: Asuntos de la Autoridad de Competencia y Mercados @@ -97,25 +96,21 @@ es-419: consultation_outcome: one: Resultado de la consultoría other: Resultados de las consultorías - overview: corporate_information_page: one: Página de información other: Páginas de información corporate_report: one: Informe de la empresa other: Informes de la empresa - overview: correspondence: one: Correspondencia other: Correspondencias - overview: countryside_stewardship_grant: one: Subvención para la gestión del campo other: Subvenciones para la gestión del campo decision: one: Decisión other: Decisiones - overview: detailed_guide: one: Orientación other: Orientación @@ -146,43 +141,36 @@ es-419: foi_release: one: Publicación sobre Libertad de Información (FOI) other: Publicaciones sobre Libertad de Informacion (FOI) - overview: form: one: Formulario other: Formularios - overview: government_response: one: Respuesta gubernamental other: Respuestas gubernamentales guidance: one: Orientación other: Orientación - overview: impact_assessment: one: Análisis de impacto other: Evaluaciones de impacto - overview: imported: one: importado - en espera de tipo other: importado - en espera de tipo independent_report: one: Informe independiente other: Informes independientes - overview: international_development_fund: one: Financiación del desarrollo internacional other: Financiación del desarrollo internacional international_treaty: one: Tratado internacional other: Tratados internacionales - overview: maib_report: one: Informe de la División de Investigación de Accidentes Marítimos other: Informes de la División de Investigación de Accidentes Marítimos map: one: Mapa other: Mapas - overview: medical_safety_alert: one: Alertas y retiros de medicamentos y productos sanitarios other: Alertas y retiros de medicamentos y productos sanitarios @@ -192,7 +180,6 @@ es-419: national_statistics: one: Estadísticas nacionales other: Estadísticas nacionales - overview: national_statistics_announcement: one: Anuncio de estadísticas nacionales other: Anuncios de estadísticas nacionales @@ -205,21 +192,18 @@ es-419: notice: one: Aviso other: Avisos - overview: official: one: Anuncio de estadísticas oficiales other: Anuncios de estadísticas oficiales official_statistics: one: Estadísticas Oficiales other: Estadísticas Oficiales - overview: official_statistics_announcement: one: Anuncio de estadísticas oficiales other: Anuncios de estadísticas oficiales open_consultation: one: Consulta pública other: Consultas públicas - overview: oral_statement: one: Declaracion oral ante el Parlamento other: Declaraciones orales ante el Parlamento @@ -229,14 +213,12 @@ es-419: policy_paper: one: Documento normativo other: Documentos normativos - overview: press_release: one: Comunicado de prensa other: Comunicados de prensa promotional: one: Material promocional other: Material promocional - overview: publication: one: Publicación other: Publicaciones @@ -246,11 +228,9 @@ es-419: regulation: one: Regulación other: Regulaciones - overview: research: one: Investigación y análisis other: Investigación y análisis - overview: residential_property_tribunal_decision: one: Decisión del tribunal de bienes residenciales other: Decisiones del tribunal de bienes residenciales @@ -269,7 +249,6 @@ es-419: standard: one: Estándar other: Estándares - overview: statement_to_parliament: one: Declaración al Parlamento other: Declaraciónes al Parlamento @@ -282,7 +261,6 @@ es-419: statutory_guidance: one: Orientaciones reglamentarias other: Orientaciones reglamentarias - overview: take_part: one: Participe other: Participe @@ -295,7 +273,6 @@ es-419: transparency: one: Transparencia de datos other: Transparencia de datos - overview: utaac_decision: one: Decisión del tribunal de apelación administrativa other: Decisión del tribunal de apelación administrativa @@ -316,54 +293,54 @@ es-419: social_media_use_html: Lea nuestra normativa en %{link}. welsh_language_scheme_html: Conozca nuestro compromiso con %{link}. email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: Escudo del Ministerio de Defensa field_of_operation: Campo de operación operations_in: Operaciones en %{location} get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: No disponible published_in_error: La información de esta página se ha eliminado porque se publicó erróneamente. @@ -379,74 +356,74 @@ es-419: 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. i18n: - direction: + direction: language_names: - ar: - az: - be: - bg: - bn: - cs: - cy: - da: - de: - dr: - el: - en: - es: + ar: + az: + be: + bg: + bn: + cs: + cy: + da: + de: + dr: + el: + en: + es: es-419: Español de América Latina - et: - fa: - fi: - fr: - gd: - gu: - he: - hi: - hr: - hu: - hy: - id: - is: - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: - th: - tk: - tr: - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + et: + fa: + fi: + fr: + gd: + gu: + he: + hi: + hr: + hu: + hy: + id: + is: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: + th: + tk: + tr: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: Siguiente previous_page: Anterior diff --git a/config/locales/es.yml b/config/locales/es.yml index b72076bf3..bfa01cdc7 100644 --- a/config/locales/es.yml +++ b/config/locales/es.yml @@ -41,7 +41,7 @@ es: feedback_received: Comentarios recibidos is_being: es ser not_open_yet: Esta consulta no está abierta todavía - 'on': + 'on': opens: Se abre esta consulta original_consultation: Consulta original ran_from: Esta consulta fue de @@ -84,7 +84,6 @@ es: closed_consultation: one: Consulta cerrada other: Consultas cerradas - overview: cma_case: one: Caso de la autoridad de competencia y mercados other: Casos de la autoridad de competencia y mercados @@ -97,25 +96,21 @@ es: consultation_outcome: one: Resultado de la consulta other: Resultados de la consulta - overview: corporate_information_page: one: Página de información other: Páginas de información corporate_report: one: Informe corporativo other: Informes corporativos - overview: correspondence: one: Correspondencia other: Correspondencias - overview: countryside_stewardship_grant: one: Subsidio de administración rural other: Subsidios de administración rural decision: one: Decisión other: Decisiones - overview: detailed_guide: one: Orientación detallada other: Orientación detallada @@ -146,43 +141,36 @@ es: foi_release: one: Nota de prensa de Freedom of Information other: Boletines de FOI - overview: form: one: Formulario other: Formularios - overview: government_response: one: Respuesta gubernamental other: Respuestas gubernamentales guidance: one: Instrucciones other: Instrucciones - overview: impact_assessment: one: Evaluación del impacto other: Evaluaciones del impacto - overview: imported: one: Importado - esperando prototipo other: Importado - esperando prototipo independent_report: one: Informe independiente other: Informes independientes - overview: international_development_fund: one: Financiación internacional para el desarrollo other: Financiación internacional para el desarrollo international_treaty: one: Tratado internacional other: Tratados internacionales - overview: maib_report: one: Informe del organismo de investigación sobre accidentes marinos other: Informes del organismo de investigación sobre accidentes marinos map: one: Mapa other: Mapas - overview: medical_safety_alert: one: Alertas y retiradas de medicamentos y dispositivos médicos other: Alertas y retiradas de medicamentos y dispositivos médicos @@ -192,7 +180,6 @@ es: national_statistics: one: Estadísticas - cifras nacionales other: Estadísticas - cifras nacionales - overview: national_statistics_announcement: one: Anuncio de estadísticas nacionales other: Anuncios de estadísticas nacionales @@ -205,21 +192,18 @@ es: notice: one: Aviso other: Avisos - overview: official: one: Anuncio de estadísticas oficiales other: Anuncios de estadísticas oficiales official_statistics: one: Estadísticas other: Estadísticas - overview: official_statistics_announcement: one: Anuncio de estadísticas oficiales other: Anuncios de estadísticas oficiales open_consultation: one: Consulta abierta other: Consultas abiertas - overview: oral_statement: one: Declaración formulada oralmente other: Declaraciones formuladas oralmente @@ -229,14 +213,12 @@ es: policy_paper: one: Informe sobre políticas gubernamentales other: Informes sobre políticas gubernamentales - overview: press_release: one: Nota de prensa other: Notas de prensa promotional: one: Material de promoción other: Material de promoción - overview: publication: one: Publicación other: Publicaciones @@ -246,11 +228,9 @@ es: regulation: one: Reglamento other: Reglamentos - overview: research: one: Investigación y análisis other: Investigación y análisis - overview: residential_property_tribunal_decision: one: Decisión del tribunal de propiedad residencial other: Decisiones del tribunal de propiedad residencial @@ -269,7 +249,6 @@ es: standard: one: Estándar other: Estándares - overview: statement_to_parliament: one: Declaración ante el parlamento other: Declaraciones ante el parlamento @@ -282,7 +261,6 @@ es: statutory_guidance: one: Directrices estatutarias other: Directrices estatutarias - overview: take_part: one: Participar other: Participar @@ -295,7 +273,6 @@ es: transparency: one: Datos sobre transparencia other: Datos sobre transparencia - overview: utaac_decision: one: Decisión del tribunal de apelación administrativa other: Decisiones del tribunal de apelación administrativa @@ -316,54 +293,54 @@ es: social_media_use_html: Lea nuestra política en %{link} welsh_language_scheme_html: Encuentre más sobre nuestro compromiso de publicar en %{link}. email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: Escudo del Ministerio de Defensa field_of_operation: Campo de operación operations_in: Operaciones en %{location} get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: Ya no está disponible published_in_error: La información de esta página se ha eliminado porque se publicó por error. @@ -379,74 +356,74 @@ es: 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. i18n: - direction: + direction: language_names: - ar: - az: - be: - bg: - bn: - cs: - cy: - da: - de: - dr: - el: - en: + ar: + az: + be: + bg: + bn: + cs: + cy: + da: + de: + dr: + el: + en: es: Español - es-419: - et: - fa: - fi: - fr: - gd: - gu: - he: - hi: - hr: - hu: - hy: - id: - is: - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: - th: - tk: - tr: - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + es-419: + et: + fa: + fi: + fr: + gd: + gu: + he: + hi: + hr: + hu: + hy: + id: + is: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: + th: + tk: + tr: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: Siguiente previous_page: Anterior diff --git a/config/locales/et.yml b/config/locales/et.yml index 492f48cdf..efdb949e5 100644 --- a/config/locales/et.yml +++ b/config/locales/et.yml @@ -41,7 +41,7 @@ et: feedback_received: Tagasiside saadud is_being: 'on' not_open_yet: See konsultatsioon pole veel alanud - 'on': + 'on': opens: See konsultatsioon algab original_consultation: Algne konsultatsioon ran_from: See konsultatsioon kestis @@ -84,7 +84,6 @@ et: closed_consultation: one: Suletud konsultatsioon other: Suletud konsultatsioonid - overview: cma_case: one: Konkurentsi- ja turuameti juhtum other: Konkurentsi- ja turuameti juhtumid @@ -97,25 +96,21 @@ et: consultation_outcome: one: Konsultatsiooni tulemus other: Konsultatsiooni tulemused - overview: corporate_information_page: one: Teabeleht other: Teabelehed corporate_report: one: Ettevõtte aruanne other: Ettevõtte aruanded - overview: correspondence: one: Korrespondents other: Korrespondentsid - overview: countryside_stewardship_grant: one: Paikkondade alalhoidmise toetus other: Paikkondade alalhoidmise toetused decision: one: Otsus other: Otsused - overview: detailed_guide: one: Juhised other: Juhised @@ -146,43 +141,36 @@ et: foi_release: one: FOI väljaanne other: FOI väljaanded - overview: form: one: Vorm other: Vormid - overview: government_response: one: Valitsuse vastus other: Valitsuse vastused guidance: one: Juhised other: Juhised - overview: impact_assessment: one: Mõju hindamine other: Mõju hindamised - overview: imported: one: imporditud - ootel tüüp other: imporditud - ootel tüüp independent_report: one: Sõltumatu aruanne other: Sõltumatud aruanded - overview: international_development_fund: one: Rahvusvaheline arengu rahastamine other: Rahvusvaheline arengu rahastamine international_treaty: one: Rahvusvaheline leping other: Rahvusvahelised lepingud - overview: maib_report: one: Mereõnnetuste uurimise haru aruanne other: Mereõnnetuste uurimise haru aruanded map: one: Kaart other: Kaardid - overview: medical_safety_alert: one: Uimastite ja meditsiiniseadmete hoiatused ja tagasikutsumised other: Uimastite ja meditsiiniseadmete hoiatused ja tagasikutsumised @@ -192,7 +180,6 @@ et: national_statistics: one: Riiklik statistika other: Riiklik statistika - overview: national_statistics_announcement: one: Riiklik statistikateade other: Riiklikud statistikateated @@ -205,21 +192,18 @@ et: notice: one: Märkus other: Märkused - overview: official: one: Ametlik statistikateade other: Ametlikud statistikateated official_statistics: one: Ametlik statistika other: Ametlik statistika - overview: official_statistics_announcement: one: Ametlik statistikateade other: Ametlikud statistikateated open_consultation: one: Avatud konsultatsioon other: Avatud konsultatsioonid - overview: oral_statement: one: Suuline avaldus parlamendile other: Suulised avaldused parlamendile @@ -229,14 +213,12 @@ et: policy_paper: one: Eeskirjade dokument other: Eeskirjade dokumendid - overview: press_release: one: Pressiteade other: Pressiteated promotional: one: Reklaammaterjal other: Reklaammaterjal - overview: publication: one: Publikatsioon other: Publikatsioonid @@ -246,11 +228,9 @@ et: regulation: one: Määrus other: Määrused - overview: research: one: Uurimine ja analüüs other: Uurimine ja analüüs - overview: residential_property_tribunal_decision: one: Elamukinnisvara kohtuotsus other: Elamukinnisvara kohtuotsused @@ -269,7 +249,6 @@ et: standard: one: Standard other: Standardid - overview: statement_to_parliament: one: Avaldus parlamendile other: Avaldused parlamendile @@ -282,7 +261,6 @@ et: statutory_guidance: one: Seadusjärgsed juhised other: Seadusjärgsed juhised - overview: take_part: one: Osa võtma other: Osa võtma @@ -295,7 +273,6 @@ et: transparency: one: Läbipaistvuse andmed other: Läbipaistvuse andmed - overview: utaac_decision: one: Halduskaebuste kohtuotsus other: Halduskaebuste kohtuotsus @@ -316,54 +293,54 @@ et: social_media_use_html: Lugege meie eeskirju saidil %{link}. welsh_language_scheme_html: Lisateave meie pühendumuse kohta %{link}. email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: Kaitseministeeriumi teadus- ja tehnikauuringute komitee field_of_operation: Tegevusvaldkond operations_in: Toimingud asukohas %{location} get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: Ei ole enam saadaval published_in_error: Sellel lehel olev teave on eemaldatud, kuna see avaldati ekslikult. @@ -379,74 +356,74 @@ et: 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. i18n: - direction: + direction: language_names: - ar: - az: - be: - bg: - bn: - cs: - cy: - da: - de: - dr: - el: - en: - es: - es-419: + ar: + az: + be: + bg: + bn: + cs: + cy: + da: + de: + dr: + el: + en: + es: + es-419: et: Eesti - fa: - fi: - fr: - gd: - gu: - he: - hi: - hr: - hu: - hy: - id: - is: - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: - th: - tk: - tr: - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + fa: + fi: + fr: + gd: + gu: + he: + hi: + hr: + hu: + hy: + id: + is: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: + th: + tk: + tr: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: Edasi previous_page: Eelmine diff --git a/config/locales/fa.yml b/config/locales/fa.yml index 55497055e..0814a7f20 100644 --- a/config/locales/fa.yml +++ b/config/locales/fa.yml @@ -41,7 +41,7 @@ fa: feedback_received: بازخورد دریافت شد is_being: در حال not_open_yet: این مشاوره هنوز باز نشده است - 'on': + 'on': opens: این مشاوره باز می‌شود original_consultation: مشاوره اصلی ran_from: این مشاوره در حال اجرا است از @@ -84,7 +84,6 @@ fa: closed_consultation: one: مشاوره بسته other: مشاوره‌های بسته - overview: cma_case: one: پرونده نهاد ناظر بر رقابت و بازارها other: پرونده‌های نهاد ناظر بر رقابت و بازارها @@ -97,25 +96,21 @@ fa: consultation_outcome: one: نتیجه مشاوره other: نتایج مشاوره - overview: corporate_information_page: one: صفحه اطلاعاتی other: صفحات اطلاعاتی corporate_report: one: گزارش شرکتی other: گزارشات شرکتی - overview: correspondence: one: مکاتبه other: مکاتبات - overview: countryside_stewardship_grant: one: کمک‌هزینه حفاظت از مناطق خارج از شهر other: کمک‌هزینه‌های حفاظت از مناطق خارج از شهر decision: one: تصمیم other: تصمیمات - overview: detailed_guide: one: راهنمایی other: راهنمایی @@ -146,43 +141,36 @@ fa: foi_release: one: موارد انتشار آزادی اطلاعات other: موارد انتشار آزادی اطلاعات - overview: form: one: فرم other: فرم‌ها - overview: government_response: one: پاسخ دولتی other: پاسخ‌های دولتی guidance: one: راهنمایی other: راهنمایی - overview: impact_assessment: one: ارزیابی تأثیر other: ارزیابی‌های تأثیر - overview: imported: one: وارد شده - در انتظار نوع other: وارد شده - در انتظار نوع independent_report: one: گزارش مستقل other: گزارشات مستقل - overview: international_development_fund: one: منابع مالی توسعه بین‌المللی other: منابع مالی توسعه بین‌المللی international_treaty: one: معاهده بین‌المللی other: معاهدات بین‌المللی - overview: maib_report: one: گزارش شعبه تحقیقات حوادث دریایی other: گزارشات شعبه تحقیقات حوادث دریایی map: one: نقشه other: نقشه‌ها - overview: medical_safety_alert: one: هشدارها و یادآوری‌ها برای داروها و دستگاه‌های پزشکی other: هشدارها و یادآوری‌ها برای داروها و دستگاه‌های پزشکی @@ -192,7 +180,6 @@ fa: national_statistics: one: آمار ملی other: آمار ملی - overview: national_statistics_announcement: one: اطلاعیه آمار ملی other: اطلاعیه‌های آمار ملی @@ -205,21 +192,18 @@ fa: notice: one: اطلاعیه other: اطلاعیه‌ها - overview: official: one: اطلاعیه آمار رسمی other: اطلاعیه‌های آمار رسمی official_statistics: one: آمار رسمی other: آمار رسمی - overview: official_statistics_announcement: one: اطلاعیه آمار رسمی other: اطلاعیه‌های آمار رسمی open_consultation: one: مشاوره باز other: مشاوره‌های باز - overview: oral_statement: one: بیانیه شفاهی به پارلمان other: بیانیه‌های شفاهی به پارلمان @@ -229,14 +213,12 @@ fa: policy_paper: one: سند سیاست other: اسناد سیاست - overview: press_release: one: بیانیه مطبوعاتی other: بیانیه‌های مطبوعاتی promotional: one: محتوای تبلیغاتی other: محتوای تبلیغاتی - overview: publication: one: مورد منتشر شده other: موارد منتشر شده @@ -246,11 +228,9 @@ fa: regulation: one: قانون other: قوانین - overview: research: one: تحقیق و تحلیل other: تحقیق و تحلیل - overview: residential_property_tribunal_decision: one: حکم دادگاه املاک مسکونی other: احکام دادگاه املاک مسکونی @@ -269,7 +249,6 @@ fa: standard: one: استاندارد other: استانداردها - overview: statement_to_parliament: one: بیانیه به پارلمان other: بیانیه‌ها به پارلمان @@ -282,7 +261,6 @@ fa: statutory_guidance: one: راهنمای قانونی other: راهنمای قانونی - overview: take_part: one: مشارکت other: مشارکت @@ -295,7 +273,6 @@ fa: transparency: one: داده‌های شفافیت other: داده‌های شفافیت - overview: utaac_decision: one: حکم دادگاه تجدید نظر اداری other: احکام دادگاه تجدید نظر اداری @@ -316,54 +293,54 @@ fa: social_media_use_html: سیاست ما را درباره %{link} مطالعه کنید. welsh_language_scheme_html: درباره تعهد ما نسبت به %{link} اطلاعات کسب کنید. email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: تاج وزارت دفاع field_of_operation: زمینه فعالیت operations_in: فعالیت در %{location} get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: دیگر در دسترس نیست published_in_error: اطلاعات این صفحه حذف شده است زیرا به اشتباه منتشر شده بود. @@ -381,72 +358,72 @@ fa: i18n: direction: rtl language_names: - ar: - az: - be: - bg: - bn: - cs: - cy: - da: - de: - dr: - el: - en: - es: - es-419: - et: + ar: + az: + be: + bg: + bn: + cs: + cy: + da: + de: + dr: + el: + en: + es: + es-419: + et: fa: فارسی - fi: - fr: - gd: - gu: - he: - hi: - hr: - hu: - hy: - id: - is: - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: - th: - tk: - tr: - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + fi: + fr: + gd: + gu: + he: + hi: + hr: + hu: + hy: + id: + is: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: + th: + tk: + tr: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: بعدی previous_page: قبلی diff --git a/config/locales/fi.yml b/config/locales/fi.yml index a68842154..1cc221845 100644 --- a/config/locales/fi.yml +++ b/config/locales/fi.yml @@ -41,7 +41,7 @@ fi: feedback_received: Palaute Vastaanotettu is_being: osoitteessa not_open_yet: Tämä kuuleminen ei ole vielä auki - 'on': + 'on': opens: Tämä kuuleminen avautuu original_consultation: Alkuperäinen kuuleminen ran_from: Tämä kuuleminen kesti @@ -84,7 +84,6 @@ fi: closed_consultation: one: Suljettu kuuleminen other: Suljetut neuvottelut - overview: cma_case: one: Kilpailu- ja markkinaviranomaisen tapaus other: Kilpailu- ja markkinaviranomaisen tapaukset @@ -97,25 +96,21 @@ fi: consultation_outcome: one: Konsultoinnin tulos other: Konsultoinnin tulokset - overview: corporate_information_page: one: Tietosivu other: Tietosivut corporate_report: one: Yrityksen raportti other: Yritysraportit - overview: correspondence: one: Kirjeenvaihto other: Kirjeenvaihto - overview: countryside_stewardship_grant: one: Maaseudun apuraha other: Maaseudun apurahat decision: one: Päätös other: Päätökset - overview: detailed_guide: one: Ohjaus other: Ohjaus @@ -146,43 +141,36 @@ fi: foi_release: one: Tiedonvälityksen vapaus julkaisu other: Tiedonvälityksen vapaus julkaisut - overview: form: one: Lomake other: Lomakkeet - overview: government_response: one: Hallituksen vastaus other: Hallituksen vastaukset guidance: one: Ohjaus other: Ohjaus - overview: impact_assessment: one: Vaikutuksen arviointi other: Vaikutustenarvioinnit - overview: imported: one: tuotu - odottava tyyppi other: tuotu - odottava tyyppi independent_report: one: Riippumaton raportti other: Riippumattomat raportit - overview: international_development_fund: one: Kansainvälinen kehitysrahoitus other: Kansainvälinen kehitysrahoitus international_treaty: one: Kansainvälinen sopimus other: Kansainväliset sopimukset - overview: maib_report: one: Merionnettomuuksien tutkintaosaston raportti other: Merionnettomuuksien tutkintaosaston raportit map: one: Kartta other: Kartat - overview: medical_safety_alert: one: Lääkkeitä ja lääkinnällisiä laitteita koskevat varoitukset ja takaisinvedot other: Lääkkeitä ja lääkinnällisiä laitteita koskevat varoitukset ja takaisinvedot @@ -192,7 +180,6 @@ fi: national_statistics: one: Kansalliset tilastot other: Kansalliset tilastot - overview: national_statistics_announcement: one: Kansallinen tilastoilmoitus other: Kansalliset tilastoilmoitukset @@ -205,21 +192,18 @@ fi: notice: one: Ilmoitus other: Ilmoitukset - overview: official: one: Virallinen tilastoilmoitus other: Viralliset tilastotiedot official_statistics: one: Viralliset tilastot other: Viralliset tilastot - overview: official_statistics_announcement: one: Virallinen tilastoilmoitus other: Viralliset tilastotiedot open_consultation: one: Avoin kuuleminen other: Avoimet kuulemiset - overview: oral_statement: one: Suullinen lausuma parlamentille other: Suulliset lausumat parlamentille @@ -229,14 +213,12 @@ fi: policy_paper: one: Toimintapoliittinen asiakirja other: Toimintapoliittiset asiakirjat - overview: press_release: one: Lehdistötiedote other: Lehdistötiedotteet promotional: one: Myynninedistämismateriaali other: Myynninedistämismateriaali - overview: publication: one: Julkaisu other: Julkaisut @@ -246,11 +228,9 @@ fi: regulation: one: Asetus other: Asetukset - overview: research: one: Tutkimus ja analyysi other: Tutkimus ja analyysi - overview: residential_property_tribunal_decision: one: Asunto -omaisuuden tuomioistuimen päätös other: Asunto -omaisuuden tuomioistuimen päätökset @@ -269,7 +249,6 @@ fi: standard: one: Standardi other: Standardit - overview: statement_to_parliament: one: Lausuma parlamentille other: Lausumat parlamentille @@ -282,7 +261,6 @@ fi: statutory_guidance: one: Lakisääteiset ohjeet other: Lakisääteiset ohjeet - overview: take_part: one: Osallistu other: Osallistu @@ -295,7 +273,6 @@ fi: transparency: one: Avoimuustiedot other: Avoimuustiedot - overview: utaac_decision: one: Hallinnollisen muutoksenhakutuomioistuimen päätös other: Hallinnollisen muutoksenhakutuomioistuimen päätökset @@ -316,54 +293,54 @@ fi: social_media_use_html: Lue käytäntömme osoitteesta %{link}. welsh_language_scheme_html: Tutustu sitoumukseemme %{link}. email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: Puolustusministeriön vaakuna field_of_operation: Toiminta -alue operations_in: Toiminnot paikassa %{location} get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: Ei ole enää käytettävissä published_in_error: Tämän sivun tiedot on poistettu, koska ne on julkaistu virheellisesti. @@ -379,74 +356,74 @@ fi: 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. i18n: - direction: + direction: language_names: - ar: - az: - be: - bg: - bn: - cs: - cy: - da: - de: - dr: - el: - en: - es: - es-419: - et: - fa: + ar: + az: + be: + bg: + bn: + cs: + cy: + da: + de: + dr: + el: + en: + es: + es-419: + et: + fa: fi: Viimeiste - fr: - gd: - gu: - he: - hi: - hr: - hu: - hy: - id: - is: - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: - th: - tk: - tr: - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + fr: + gd: + gu: + he: + hi: + hr: + hu: + hy: + id: + is: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: + th: + tk: + tr: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: Seuraava previous_page: Edellinen diff --git a/config/locales/fr.yml b/config/locales/fr.yml index 430e17a41..326eb99a6 100644 --- a/config/locales/fr.yml +++ b/config/locales/fr.yml @@ -41,7 +41,7 @@ fr: feedback_received: Commentaire reçu is_being: est en train de not_open_yet: Cette consultation n'a pas encore débuté. - 'on': + 'on': opens: Cette consultation a débuté. original_consultation: Consultation originale ran_from: Cette consultation s'est tenue du @@ -84,7 +84,6 @@ fr: closed_consultation: one: Consultation fermée other: Consultations fermées - overview: cma_case: one: Affaire relative à l'autorité de la concurrence et des marchés other: Affaires relatives à l'autorité de la concurrence et des marchés @@ -97,25 +96,21 @@ fr: consultation_outcome: one: Résultat de la consultation other: Résultats de la consultation - overview: corporate_information_page: one: Page d'information other: Pages d'information corporate_report: one: Rapport de l'entreprise other: Rapports de l'entreprise - overview: correspondence: one: Correspondance other: Correspondances - overview: countryside_stewardship_grant: one: Subvention pour la gestion des zones rurales other: Subventions pour la gestion des zones rurales decision: one: Décision other: Décisions - overview: detailed_guide: one: Orientations other: Orientations @@ -146,43 +141,36 @@ fr: foi_release: one: Communiqué d'accès à l'information other: Communiqués d'accès à l'information - overview: form: one: Formulaire other: Formulaires - overview: government_response: one: Réponse du gouvernement other: Réponses du gouvernement guidance: one: Orientation other: Orientation - overview: impact_assessment: one: Évaluation de l'impact other: Évaluations de l'impact - overview: imported: one: importé - en attente du type other: importé - en attente du type independent_report: one: Rapport indépendant other: Rapports indépendants - overview: international_development_fund: one: Financement du développement international other: Financement du développement international international_treaty: one: Traité international other: Traités internationaux - overview: maib_report: one: Rapport de la division des enquêtes sur les accidents maritimes other: Rapports de la division des enquêtes sur les accidents maritimes map: one: Carte other: Cartes - overview: medical_safety_alert: one: Alertes et rappels de médicaments et de dispositifs médicaux other: Alertes et rappels de médicaments et de dispositifs médicaux @@ -192,7 +180,6 @@ fr: national_statistics: one: Statistiques nationales other: Statistiques nationales - overview: national_statistics_announcement: one: Annonce des statistiques nationales other: Annonces des statistiques nationales @@ -205,21 +192,18 @@ fr: notice: one: Notification other: Notifications - overview: official: one: Annonce des statistiques officielles other: Annonces des statistiques officielles official_statistics: one: Statistiques officielles other: Statistiques officielles - overview: official_statistics_announcement: one: Annonce des statistiques officielles other: Annonces des statistiques officielles open_consultation: one: Consultation ouverte other: Consultations ouvertes - overview: oral_statement: one: Déclaration orale au Parlement other: Déclarations orales au Parlement @@ -229,14 +213,12 @@ fr: policy_paper: one: Document de politique générale other: Documents de politique générale - overview: press_release: one: Communiqué de presse other: Communiqués de presse promotional: one: Matériel promotionnel other: Matériel promotionnel - overview: publication: one: Publication other: Publications @@ -246,11 +228,9 @@ fr: regulation: one: Règlement other: Règlements - overview: research: one: Recherche et analyse other: Recherche et analyse - overview: residential_property_tribunal_decision: one: Décision du tribunal chargé du logement résidentiel other: Décisions du tribunal chargé du logement résidentiel @@ -269,7 +249,6 @@ fr: standard: one: norme other: normes - overview: statement_to_parliament: one: Déclaration au parlement other: Déclarations au parlement @@ -282,7 +261,6 @@ fr: statutory_guidance: one: Orientation statutaire other: Orientation statutaire - overview: take_part: one: Participer other: Participer @@ -295,7 +273,6 @@ fr: transparency: one: Transparence des données other: Transparence des données - overview: utaac_decision: one: Décision du tribunal administratif d'appel other: Décisions du tribunal administratif d'appel @@ -316,54 +293,54 @@ fr: social_media_use_html: Lisez notre politique générale sur %{link}. welsh_language_scheme_html: Découvrez comment nous nous engageons sur %{link}. email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: Emblème du ministère de la défense field_of_operation: Champ d'opération operations_in: Opérations à %{location} get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: N'est plus disponible published_in_error: Les informations présentées sur cette page ont été supprimées car elles ont été publiées par erreur. @@ -379,74 +356,74 @@ fr: 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. i18n: - direction: + direction: language_names: - ar: - az: - be: - bg: - bn: - cs: - cy: - da: - de: - dr: - el: - en: - es: - es-419: - et: - fa: - fi: + ar: + az: + be: + bg: + bn: + cs: + cy: + da: + de: + dr: + el: + en: + es: + es-419: + et: + fa: + fi: fr: français - gd: - gu: - he: - hi: - hr: - hu: - hy: - id: - is: - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: - th: - tk: - tr: - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + gd: + gu: + he: + hi: + hr: + hu: + hy: + id: + is: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: + th: + tk: + tr: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: Suivant previous_page: Précédent diff --git a/config/locales/gd.yml b/config/locales/gd.yml index b5d4e1d0f..2fcbd7104 100644 --- a/config/locales/gd.yml +++ b/config/locales/gd.yml @@ -41,7 +41,7 @@ gd: feedback_received: Tráchtanna faighte is_being: ar siúl not_open_yet: Níl an teaglaim seo oscailte fós - 'on': + 'on': opens: Tá an chuid seo den chomhairliúchán oscailte original_consultation: Comhairliúchán bunaidh ran_from: Rinneadh an comhairliúchán seo ó @@ -64,398 +64,375 @@ gd: updated: Athnuachan schema_name: aaib_report: - few: + few: one: Tuarascáil ar Chosc Aeir de chuid Cigireacht Aer-Chruinnithe other: Tuarascálacha an Bhrainse um Imscrúdú ar Thimpistí Aeir - two: + two: announcement: - few: + few: one: Fógra other: Fógra - two: + two: asylum_support_decision: - few: + few: one: Tuarascáil ón mbinse athbhreithnithe ar thearmann other: Cinneadh na cúirte tacaíochta tearmainn - two: + two: authored_article: - few: + few: one: Ailt scríofa other: Téacsanna scríofa - two: + two: business_finance_support_scheme: - few: + few: one: Scéim tacaíochta maoinithe gnó other: Meicníochtaí tacaíochta do mhaoiniú gnó - two: + two: case_study: - few: + few: one: Cás-staidéir other: Tuarascálacha staidéir - two: + two: closed_consultation: - few: + few: one: Nós imeachta comhairliúcháin dúnta other: Téigh i gcomhairle go príobháideach - overview: - two: + two: cma_case: - few: + few: one: Iomaíocht agus margaí other: Gnóthaí an Údaráis Iomaíochta agus Margaí - two: + two: coming_soon: - few: + few: one: Ag oscailt go luath other: Ag oscailt go luath - two: + two: consultation: - few: + few: one: Comhairliúchán other: Téigh i gcomhairle - two: + two: consultation_outcome: - few: + few: one: Torthaí comhairliúcháin other: Torthaí comhairliúcháin - overview: - two: + two: corporate_information_page: - few: + few: one: Leathanach faisnéise other: Leathanaigh faisnéise - two: + two: corporate_report: - few: + few: one: Tuarascáil cuideachta other: Tuarascálacha cuideachta - overview: - two: + two: correspondence: - few: + few: one: Comhfhreagras other: Comhfhreagras - overview: - two: + two: countryside_stewardship_grant: - few: + few: one: Deontas Maoirseachta Tuaithe other: Deontais Maoirseachta Tuaithe - two: + two: decision: - few: + few: one: Cinneadh other: Cinntí - overview: - two: + two: detailed_guide: - few: + few: one: Treoshuíomh other: Treoshuíomh - two: + two: dfid_research_output: - few: + few: one: Torthaí taighde le haghaidh forbartha other: Torthaí taighde le haghaidh forbartha - two: + two: document_collection: - few: + few: one: Bailiúchán other: Bailiúcháin - two: + two: draft_text: - few: + few: one: Tionscadail téacs other: Dréacht-téacsanna - two: + two: drug_safety_update: - few: + few: one: Sábháilteacht drugaí a nuashonrú other: Sábháilteacht drugaí a nuashonrú - two: + two: employment_appeal_tribunal_decision: - few: + few: one: Cinneadh an bhinse achomhairc fostaíochta other: Cinntí an Bhinse Achomhairc Fostaíochta - two: + two: employment_tribunal_decision: - few: + few: one: Cinneadh na cúirte saothair other: Cinntí na cúirte saothair - two: + two: esi_fund: - few: + few: one: An Ciste Eorpach Struchtúrtha agus Infheistíochta (ESIF) other: Cistí Struchtúracha agus Infheistíochta na hEorpa (ESIF) - two: + two: fatality_notice: - few: + few: one: Obituary other: Obituary - two: + two: foi_release: - few: + few: one: Preasráiteas FAITH other: Scaoileadh Shaoráil Faisnéise - overview: - two: + two: form: - few: + few: one: Foirm other: Foirmeacha - overview: - two: + two: government_response: - few: + few: one: Freagra an Rialtais other: Freagraí an Rialtais - two: + two: guidance: - few: + few: one: Treoshuíomh other: Treoshuímh - overview: - two: + two: impact_assessment: - few: + few: one: Anailís tionchair other: Anailísí tionchair - overview: - two: + two: imported: - few: + few: one: allmhairithe - cineál ar feitheamh other: allmhairithe - cineál ar feitheamh - two: + two: independent_report: - few: + few: one: Tuarascáil neamhspleách other: Tuarascálacha neamhspleácha - overview: - two: + two: international_development_fund: - few: + few: one: Forbairt idirnáisiúnta a mhaoiniú other: Forbairt idirnáisiúnta a mhaoiniú - two: + two: international_treaty: - few: + few: one: Conradh idirnáisiúnta other: Conarthaí idirnáisiúnta - overview: - two: + two: maib_report: - few: + few: one: Tuarascáil ón mBrainse um Imscrúdú ar Thimpistí Mara other: Tuarascálacha an Bhrainse um Imscrúdú ar Thimpistí Mara - two: + two: map: - few: + few: one: Roghchlár other: Cártaí - overview: - two: + two: medical_safety_alert: - few: + few: one: Foláirimh agus meabhrúcháin ar dhrugaí agus ar fheistí leighis other: Foláirimh agus meabhrúcháin ar dhrugaí agus ar fheistí leighis - two: + two: national: - few: + few: one: Fógra staitisticí náisiúnta other: Fógraí staitisticí náisiúnta - two: + two: national_statistics: - few: + few: one: Staitisticí náisiúnta other: Staitisticí náisiúnta - overview: - two: + two: national_statistics_announcement: - few: + few: one: Fógra staitisticí náisiúnta other: Fógraí staitisticí náisiúnta - two: + two: news_article: - few: + few: one: Airteagal Nuachta other: Airteagal Nuachta - two: + two: news_story: - few: + few: one: Airteagal Nuachta other: Nua - two: + two: notice: - few: + few: one: Tuairim other: Tuairim - overview: - two: + two: official: - few: + few: one: Fógra staitisticí oifigiúla other: Fógraí staitisticí oifigiúla - two: + two: official_statistics: - few: + few: one: Staitisticí oifigiúla other: Staitisticí oifigiúla - overview: - two: + two: official_statistics_announcement: - few: + few: one: Fógra staitisticí oifigiúla other: Fógraí staitisticí oifigiúla - two: + two: open_consultation: - few: + few: one: Comhairliúcháin oscailte other: Comhairliúcháin oscailte - overview: - two: + two: oral_statement: - few: + few: one: Ráiteas ó bhéal don Pharlaimint other: Ráitis ó bhéal sa Pharlaimint - two: + two: policy: - few: + few: one: Polaitíocht other: Polasaithe - two: + two: policy_paper: - few: + few: one: Doiciméad beartais other: Doiciméid bheartais - overview: - two: + two: press_release: - few: + few: one: Preaseisiúint other: Preaseisiúintí - two: + two: promotional: - few: + few: one: Ábhar cur chun cinn other: Ábhar cur chun cinn - overview: - two: + two: publication: - few: + few: one: Foilsiú other: Foilseacháin - two: + two: raib_report: - few: + few: one: Tuarascáil an Bhrainse um Imscrúdú ar Thimpistí Iarnróid other: Tuarascálacha Brainse um Imscrúdú ar Thimpistí Iarnróid - two: + two: regulation: - few: + few: one: Rialacha other: Rialacháin - overview: - two: + two: research: - few: + few: one: Taighde agus anailís other: Taighde agus anailís - overview: - two: + two: residential_property_tribunal_decision: - few: + few: one: Rialú cúirte maoine cónaithe other: Cinntí cúirte eastáit réadaigh chónaithe - two: + two: service_sign_in: - few: + few: one: Ceangal seirbhíse other: Ceangal seirbhíse - two: + two: service_standard_report: - few: + few: one: Tuarascáil chaighdeánach seirbhíse other: Tuarascálacha caighdeánacha seirbhíse - two: + two: speaking_notes: - few: + few: one: Nótaí Labhairt other: Nótaí Labhairt - two: + two: speech: - few: + few: one: Óráid other: Óráid - two: + two: standard: - few: + few: one: Caighdeán other: Caighdeáin - overview: - two: + two: statement_to_parliament: - few: + few: one: Dearbhú don Pharlaimint other: Ráitis sa Pharlaimint - two: + two: statistical_data_set: - few: + few: one: Tacar sonraí staidrimh other: Tacair sonraí staidrimh - two: + two: statistics_announcement: - few: + few: one: Fógra maidir le scaoileadh staidrimh other: Fógraí scaipthe staidrimh - two: + two: statutory_guidance: - few: + few: one: Treoir reachtúil other: Treoir reachtúil - overview: - two: + two: take_part: - few: + few: one: Chun páirt a ghlacadh other: Chun páirt a ghlacadh - two: + two: tax_tribunal_decision: - few: + few: one: Cinneadh na cúirte cánach agus na seansaireachta other: Cinntí na cúirte cánach agus na seansaireachta - two: + two: transcript: - few: + few: one: Tras-scríobh other: Athscríbhinní - two: + two: transparency: - few: + few: one: Sonraí trédhearcachta other: Sonraí trédhearcachta - overview: - two: + two: utaac_decision: - few: + few: one: Cinneadh an Bhinse Achomhairc Riaracháin other: Cinntí na cúirte achomhairc riaracháin - two: + two: world_location_news_article: - few: + few: one: Airteagal Nuachta other: Airteagal Nuachta - two: + two: world_news_story: - few: + few: one: Alt nuachta domhanda other: Nuacht domhanda - two: + two: written_statement: - few: + few: one: Dearbhú i scríbhinn don Pharlaimint other: Ráitis i scríbhinn don Pharlaimint - two: + two: corporate_information_page: about_our_services_html: Amharc ar %{link}. corporate_information: Faisnéis cuideachta @@ -464,54 +441,54 @@ gd: social_media_use_html: Léigh ár mbeartas ar %{link}. welsh_language_scheme_html: Faigh amach ár gcomhréiteach ar an %{link}. email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: Suaitheantas rialtais Chónaidhme field_of_operation: Réimse oibríochta operations_in: Idirbhearta I %{location} get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: Níl sé ar fáil published_in_error: Baineadh an fhaisnéis ar an leathanach seo toisc gur cuireadh trí phost í trí dhearmad. @@ -527,74 +504,74 @@ gd: 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. i18n: - direction: + direction: language_names: - ar: - az: - be: - bg: - bn: - cs: - cy: - da: - de: - dr: - el: - en: - es: - es-419: - et: - fa: - fi: - fr: + ar: + az: + be: + bg: + bn: + cs: + cy: + da: + de: + dr: + el: + en: + es: + es-419: + et: + fa: + fi: + fr: gd: Gaeilge - gu: - he: - hi: - hr: - hu: - hy: - id: - is: - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: - th: - tk: - tr: - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + gu: + he: + hi: + hr: + hu: + hy: + id: + is: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: + th: + tk: + tr: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: Ag leanúint previous_page: Roimhe seo @@ -602,10 +579,10 @@ gd: publication: details: Sonraí documents: - few: + few: one: Tuarascáil other: Doiciméid - two: + two: service_sign_in: continue: Le leanúint ar aghaidh error: diff --git a/config/locales/he.yml b/config/locales/he.yml index 7b4e24e96..c5bf6d783 100644 --- a/config/locales/he.yml +++ b/config/locales/he.yml @@ -41,7 +41,7 @@ he: feedback_received: המשוב התקבל is_being: להיות not_open_yet: הדיון הזה עדיין לא פתוח - 'on': + 'on': opens: דיון זה נפתח original_consultation: דיון מקורי ran_from: דיון זו נערך מ- @@ -84,7 +84,6 @@ he: closed_consultation: one: דיון סגור other: דיונים סגורים - overview: cma_case: one: תיק רשות התחרות והשווקים other: תיקי רשות התחרות והשווקים @@ -97,25 +96,21 @@ he: consultation_outcome: one: תוצאות דיון other: תוצאות דיונים - overview: corporate_information_page: one: דף מידע other: דפי מידע corporate_report: one: דו"ח משותף other: דו"חות משותפים - overview: correspondence: one: תכתובת other: תכתובות - overview: countryside_stewardship_grant: one: מענק החזקה כפרית other: מענקי החזקה כפרית decision: one: החלטה other: החלטות - overview: detailed_guide: one: הדרכה other: הדרכה @@ -146,43 +141,36 @@ he: foi_release: one: פרסום חופש מידע other: פרסומי חופש מידע - overview: form: one: טופס other: טפסים - overview: government_response: one: תגובה ממשלתית other: תגובות ממשלתיות guidance: one: הדרכה other: הדרכה - overview: impact_assessment: one: הערכת השפעה other: הערכת השפעות - overview: imported: one: יבוא- המתנה לסוג other: יבוא- המתנה לסוג independent_report: one: דו"ח עצמאי other: דו"ות עצמאיים - overview: international_development_fund: one: מימון פיתוח בינלאומי other: מימון פיתוח בינלאומי international_treaty: one: אמנה בינלאומית other: אמנות בינלאומיות - overview: maib_report: one: דו"ח ענף חקירות תאונות ימיות other: דיווחים ענף חקירות תאונות ימיות map: one: מפה other: מפות - overview: medical_safety_alert: one: אזהרות וביקורות על תרופות ומכשירים רפואיים other: אזהרות וביקורות על תרופות ומכשירים רפואיים @@ -192,7 +180,6 @@ he: national_statistics: one: סטטיסטיקה לאומית other: סטטסטיקה לאומית - overview: national_statistics_announcement: one: הודעת סטטיסטיקה לאומית other: הודעות סטטיסטיות לאומיות @@ -205,21 +192,18 @@ he: notice: one: הודעה other: הודעות - overview: official: one: הודעה סטטיסטית רשמית other: הודעות סטטיסטיות רשמיות official_statistics: one: סטטיסטיקה רשמית other: סטטיסטיקה רשמית - overview: official_statistics_announcement: one: הודעה סטטיסטית רשמית other: הודעות סטטיסטיות רשמיות open_consultation: one: דיון פתוח other: דיונים פתוחים - overview: oral_statement: one: הצהרה בעל פה לפרלמנט other: הצהרות בעל פה לפרלמנט @@ -229,14 +213,12 @@ he: policy_paper: one: נייר מדיניות other: ניירות מדיניות - overview: press_release: one: הודעה לעיתונות other: הודעות לעיתונות promotional: one: חומר פרסומי other: חומר פרסומי - overview: publication: one: פרסום other: פרסומים @@ -246,11 +228,9 @@ he: regulation: one: תקנה other: תקנות - overview: research: one: מחקר וניתוח other: מחקר וניתוח - overview: residential_property_tribunal_decision: one: החלטת בית הדין לנכסים למגורים other: החלטות בית הדין לנכסים למגורים @@ -269,7 +249,6 @@ he: standard: one: תקן other: תקנים - overview: statement_to_parliament: one: הצהרה לפרלמנט other: הצהרות לפרלמנט @@ -282,7 +261,6 @@ he: statutory_guidance: one: הדרכה סטטוטורית other: הדרכה סטטוטורית - overview: take_part: one: קח חלק other: קח חלק @@ -295,7 +273,6 @@ he: transparency: one: שקיפות מידע other: שקיפות מידע - overview: utaac_decision: one: החלטת בית הדין לעררים מנהלית other: החלטות בית הדין לעררים מנהלית @@ -316,54 +293,54 @@ he: social_media_use_html: קרא/י אודות המדיניות שלנו %{link} welsh_language_scheme_html: מידע נוסף על המחויבות שלנו לפרסום %{link} email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: סמל משרד הביטחון field_of_operation: תחום הפעולה operations_in: פעולות ב- %{location} get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: כבר לא זמין published_in_error: המידע בדף זה הוסר מכיוון שהוא פורסם בטעות. @@ -381,72 +358,72 @@ he: i18n: direction: rtl language_names: - ar: - az: - be: - bg: - bn: - cs: - cy: - da: - de: - dr: - el: - en: - es: - es-419: - et: - fa: - fi: - fr: - gd: - gu: + ar: + az: + be: + bg: + bn: + cs: + cy: + da: + de: + dr: + el: + en: + es: + es-419: + et: + fa: + fi: + fr: + gd: + gu: he: עברית - hi: - hr: - hu: - hy: - id: - is: - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: - th: - tk: - tr: - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + hi: + hr: + hu: + hy: + id: + is: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: + th: + tk: + tr: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: הבא previous_page: הקודם diff --git a/config/locales/hi.yml b/config/locales/hi.yml index 516235b50..e86bd11ec 100644 --- a/config/locales/hi.yml +++ b/config/locales/hi.yml @@ -41,7 +41,7 @@ hi: feedback_received: फीडबैक प्राप्त हुआ is_being: हो रहा है not_open_yet: यह परामर्श अभी तक खोला नहीं गया है - 'on': + 'on': opens: यह परामर्श खुलता है original_consultation: असली परामर्श ran_from: यह परामर्श चला था @@ -84,7 +84,6 @@ hi: closed_consultation: one: बंद कमरे में परामर्श other: बंद कमरे में परामर्श - overview: cma_case: one: प्रतिस्पर्धा और बाज़ार प्राधिकरण मामला other: प्रतिस्पर्धा और बाज़ार प्राधिकरण मामले @@ -97,25 +96,21 @@ hi: consultation_outcome: one: परामर्श का नतीजा other: परामर्श के नतीजे - overview: corporate_information_page: one: सूचना का पेज other: सूचना के पेज corporate_report: one: कॉरपोरेट विवरण other: कॉरपोरेट विवरण - overview: correspondence: one: पत्र व्यवहार other: पत्र व्यवहार - overview: countryside_stewardship_grant: one: देहात प्रबंधन का अनुदान other: देहात प्रबंधन के अनुदान decision: one: फैसला other: फैसले - overview: detailed_guide: one: मार्गदर्शन other: मार्गदर्शन @@ -146,43 +141,36 @@ hi: foi_release: one: एफओआई की विज्ञप्ति other: एफओआई की विज्ञप्तियां - overview: form: one: प्रपत्र other: प्रपत्र - overview: government_response: one: सरकारी जवाब other: सरकारी जवाब guidance: one: मार्गदर्शन other: मार्गदर्शन - overview: impact_assessment: one: प्रभाव का आंकलन other: प्रभाव का आंकलन - overview: imported: one: आयातित - प्रतीक्षा का प्रकार other: आयातित - प्रतीक्षा का प्रकार independent_report: one: स्वतंत्र रिपोर्ट other: स्वतंत्र रिपोर्टें - overview: international_development_fund: one: अंतरराष्ट्रीय विकास निधि other: अंतरराष्ट्रीय विकास निधि international_treaty: one: अंतरराष्ट्रीय संधि other: अंतरराष्ट्रीय संधियां - overview: maib_report: one: समुद्री दुर्घटना जांच शाखा की रिपोर्ट other: समुद्री दुर्घटना जांच शाखा की रिपोर्टें map: one: मानचित्र other: मानचित्रों - overview: medical_safety_alert: one: दवाओं और चिकित्सा उपकरणों के लिए चेतावनियां और रिकॉल other: दवाओं और चिकित्सा उपकरणों के लिए चेतावनियां और रिकॉल @@ -192,7 +180,6 @@ hi: national_statistics: one: राष्ट्रीय सांख्यिकी other: राष्ट्रीय सांख्यिकी - overview: national_statistics_announcement: one: राष्ट्रीय सांख्यिकी की घोषणा other: राष्ट्रीय सांख्यिकी की घोषणाएं @@ -205,21 +192,18 @@ hi: notice: one: नोटिस other: नोटिस - overview: official: one: आधिकारिक सांख्यिकी की घोषणा other: आधिकारिक सांख्यिकी की घोषणाएं official_statistics: one: आधिकारिक सांख्यिकी other: आधिकारिक सांख्यिकी - overview: official_statistics_announcement: one: आधिकारिक सांख्यिकी की घोषणा other: आधिकारिक सांख्यिकी की घोषणाएं open_consultation: one: खुला परामर्श other: खुले परामर्श - overview: oral_statement: one: संसद में मौखिक बयान other: संसद में मौखिक बयान @@ -229,14 +213,12 @@ hi: policy_paper: one: नीति पत्र other: नीति पत्र - overview: press_release: one: प्रेस विज्ञप्ति other: प्रेस विज्ञप्तियां promotional: one: प्रचार सामग्री other: प्रचार सामग्री - overview: publication: one: प्रकाशन other: प्रकाशन @@ -246,11 +228,9 @@ hi: regulation: one: विनियमन other: विनियमों - overview: research: one: अनुसंधान एवं विश्लेषण other: अनुसंधान एवं विश्लेषण - overview: residential_property_tribunal_decision: one: आवासीय संपत्ति न्यायाधिकरण का फैसला other: आवासीय संपत्ति न्यायाधिकरण के फैसले @@ -269,7 +249,6 @@ hi: standard: one: मानक other: मानकों - overview: statement_to_parliament: one: संसद में बयान other: संसद में बयान @@ -282,7 +261,6 @@ hi: statutory_guidance: one: वैधानिक मार्गदर्शन other: वैधानिक मार्गदर्शन - overview: take_part: one: हिस्सा लें other: हिस्सा लें @@ -295,7 +273,6 @@ hi: transparency: one: पारदर्शिता आंकड़े other: पारदर्शिता आंकड़े - overview: utaac_decision: one: प्रशासनिक निवेदन न्यायाधिकरण का फैसला other: प्रशासनिक निवेदन न्यायाधिकरण के फैसले @@ -316,54 +293,54 @@ hi: social_media_use_html: इस बारे में हमारी नीतियां पढ़ें %{link} welsh_language_scheme_html: हमारी प्रकाशन के प्रति वचनबद्धता के बारे में जानें %(link)। email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: रक्षा मंत्रालय का क्रेस्ट field_of_operation: संचालन का क्षेत्र operations_in: "%{location} में संचालन" get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: अब उपलब्ध नहीं है published_in_error: इस पेज की जानकारी गलती से प्रकाशित होने की वज़ह से हटा दी गई है। @@ -379,74 +356,74 @@ hi: 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: जहां हमने किसी तीसरे पक्ष की कॉपीराइट जानकारी को मान्य किया हो, वहां आपको संबंधित कॉपीराइट धारकों से अनुमति लेनी होगी। i18n: - direction: + direction: language_names: - ar: - az: - be: - bg: - bn: - cs: - cy: - da: - de: - dr: - el: - en: - es: - es-419: - et: - fa: - fi: - fr: - gd: - gu: - he: + ar: + az: + be: + bg: + bn: + cs: + cy: + da: + de: + dr: + el: + en: + es: + es-419: + et: + fa: + fi: + fr: + gd: + gu: + he: hi: हिंदी - hr: - hu: - hy: - id: - is: - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: - th: - tk: - tr: - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + hr: + hu: + hy: + id: + is: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: + th: + tk: + tr: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: अगला previous_page: पिछला diff --git a/config/locales/hr.yml b/config/locales/hr.yml index 616219985..a21217703 100644 --- a/config/locales/hr.yml +++ b/config/locales/hr.yml @@ -41,7 +41,7 @@ hr: feedback_received: Primljene povratne informacije is_being: je not_open_yet: Ovo savjetovanje još nije otvoreno - 'on': + 'on': opens: Ovo savjetovanje se otvara original_consultation: Originalno savjetovanje ran_from: Ovo savjetovanje je trajalo od @@ -64,396 +64,373 @@ hr: updated: Ažurirano schema_name: aaib_report: - few: - many: + few: + many: one: Izvješće podružnice za istraživanje zračnih nesreća other: Izvješća Podružnice za istraživanje zračnih nesreća announcement: - few: - many: + few: + many: one: Obavijest other: Obavijesti asylum_support_decision: - few: - many: + few: + many: one: Odluka tribunala o azilu other: Odluke tribunala o azilu authored_article: - few: - many: + few: + many: one: Autorski članak other: Autorski članci business_finance_support_scheme: - few: - many: + few: + many: one: Shema potpore poslovnom financiranju other: Sheme potpore poslovnom financiranju case_study: - few: - many: + few: + many: one: Studija slučaja other: Studije slučaja closed_consultation: - few: - many: + few: + many: one: Zatvorena konzultacija other: Zatvorene konzultacije - overview: cma_case: - few: - many: + few: + many: one: Slučaj tijela za tržišno natjecanje i tržišta other: Slučajevi tijela za tržišno natjecanje i tržišta coming_soon: - few: - many: + few: + many: one: Dolazi uskoro other: Dolazi uskoro consultation: - few: - many: + few: + many: one: Konzultacija other: Konzultacije consultation_outcome: - few: - many: + few: + many: one: Ishod konzultacija other: Ishodi konzultacija - overview: corporate_information_page: - few: - many: + few: + many: one: Stranica s informacijama other: Stranice s informacijama corporate_report: - few: - many: + few: + many: one: Korporativno izvješće other: Korporativna izvješća - overview: correspondence: - few: - many: + few: + many: one: Prepiska other: Prepiske - overview: countryside_stewardship_grant: - few: - many: + few: + many: one: Potpora za upravu na selu other: Potpore za upravu na selu decision: - few: - many: + few: + many: one: Odluka other: Odluke - overview: detailed_guide: - few: - many: + few: + many: one: Upute other: Upute dfid_research_output: - few: - many: + few: + many: one: Istraživanje za razvojni rezultat other: Istraživanje za razvojne rezultate document_collection: - few: - many: + few: + many: one: Kolekcija other: Kolekcije draft_text: - few: - many: + few: + many: one: Nacrt teksta other: Nacrt tekstova drug_safety_update: - few: - many: + few: + many: one: Novost o sigurnosti lijekova other: Novosti o sigurnosti lijekova employment_appeal_tribunal_decision: - few: - many: + few: + many: one: Odluka žalbenog suda pri zapošljavanju other: Odluke žalbenog suda pri zapošljavanju employment_tribunal_decision: - few: - many: + few: + many: one: Odluka suda za zapošljavanje other: Odluke suda za zapošljavanje esi_fund: - few: - many: + few: + many: one: Europski strukturni i investicijski fond (ESIF) other: Europski strukturni i investicijski fondovi (ESIF) fatality_notice: - few: - many: + few: + many: one: Obavijest o smrtnom slučaju other: Obavijest o smrtnim slučajevima foi_release: - few: - many: + few: + many: one: Izdanje slobode informacija other: Izdanje slobode informacija - overview: form: - few: - many: + few: + many: one: Obrazac other: Obrasci - overview: government_response: - few: - many: + few: + many: one: Odgovor vlade other: Odgovori vlade guidance: - few: - many: + few: + many: one: Upute other: Upute - overview: impact_assessment: - few: - many: + few: + many: one: Procjena utjecaja other: Procjene utjecaja - overview: imported: - few: - many: + few: + many: one: uvezeno - čekajući tip other: uvezeno - čekajući tip independent_report: - few: - many: + few: + many: one: Nezavisno izvješće other: Nezavisna izvješća - overview: international_development_fund: - few: - many: + few: + many: one: Financiranje međunarodnog razvoja other: Financiranje međunarodnog razvoja international_treaty: - few: - many: + few: + many: one: Međunarodni ugovor other: Međunarodni ugovori - overview: maib_report: - few: - many: + few: + many: one: Izvješće Podružnice za istraživanje pomorskih nesreća other: Izvješća Podružnice za istraživanje pomorskih nesreća map: - few: - many: + few: + many: one: Karta other: Karte - overview: medical_safety_alert: - few: - many: + few: + many: one: Upozorenja i opozivi za lijekove i medicinska sredstva other: Upozorenja i opozivi za lijekove i medicinska sredstva national: - few: - many: + few: + many: one: Najava nacionalne statistike other: Najave nacionalne statistike national_statistics: - few: - many: + few: + many: one: Nacionalna statistika other: Nacionalna statistika - overview: national_statistics_announcement: - few: - many: + few: + many: one: Najava nacionalne statistike other: Najave nacionalne statistike news_article: - few: - many: + few: + many: one: Novinski članak other: Novinski članci news_story: - few: - many: + few: + many: one: Novosti other: Novosti notice: - few: - many: + few: + many: one: Obavijest other: Obavijesti - overview: official: - few: - many: + few: + many: one: Objava službene statistike other: Objave službene statistike official_statistics: - few: - many: + few: + many: one: Službena statistika other: Službena statistika - overview: official_statistics_announcement: - few: - many: + few: + many: one: Objava službene statistike other: Objave službene statistike open_consultation: - few: - many: + few: + many: one: Otvorena konzultacija other: Otvorene konzultacije - overview: oral_statement: - few: - many: + few: + many: one: Usmena izjava Parlamentu other: Usmene izjave Parlamentu policy: - few: - many: + few: + many: one: Pravilo other: Pravila policy_paper: - few: - many: + few: + many: one: Dokument o pravilima other: Dokumenti o pravilima - overview: press_release: - few: - many: + few: + many: one: Saopćenje za javnost other: Saopćenja za javnost promotional: - few: - many: + few: + many: one: Promidžbeni materijal other: Promidžbeni materijal - overview: publication: - few: - many: + few: + many: one: Izdanja other: Izdanje raib_report: - few: - many: + few: + many: one: Izvješće podružnice za istraživanje željezničkih nesreća other: Izvješća podružnice za istraživanje željezničkih nesreća regulation: - few: - many: + few: + many: one: Regulacija other: Regulacije - overview: research: - few: - many: + few: + many: one: Istraživanje i analiza other: Istraživanje i analiza - overview: residential_property_tribunal_decision: - few: - many: + few: + many: one: Odluka suda stambene imovine other: Odluke suda stambene imovine service_sign_in: - few: - many: + few: + many: one: Prijava na uslugu other: Prijava na uslugu service_standard_report: - few: - many: + few: + many: one: Standardno izvješće usluge other: Standardna izvješća usluge speaking_notes: - few: - many: + few: + many: one: Govorne bilješke other: Govorne bilješke speech: - few: - many: + few: + many: one: Govor other: Govori standard: - few: - many: + few: + many: one: Standard other: Standardi - overview: statement_to_parliament: - few: - many: + few: + many: one: Izjava Parlamentu other: Izjave Parlamentu statistical_data_set: - few: - many: + few: + many: one: Skup statističkih podataka other: Skupovi statističkih podataka statistics_announcement: - few: - many: + few: + many: one: Najava objavljivanja statistike other: Najave objavljivanja statistike statutory_guidance: - few: - many: + few: + many: one: Zakonske smjernice other: Zakonske smjernice - overview: take_part: - few: - many: + few: + many: one: Sudjelovati other: Sudjelovati tax_tribunal_decision: - few: - many: + few: + many: one: Odluka tribunala i poreznog suda other: Odluke tribunala i poreznog suda transcript: - few: - many: + few: + many: one: Prijepis other: Prijepisi transparency: - few: - many: + few: + many: one: Podaci o transparentnosti other: Podaci o transparentnosti - overview: utaac_decision: - few: - many: + few: + many: one: Odluka upravnog žalbenog suda other: Odluke upravnog žalbenog suda world_location_news_article: - few: - many: + few: + many: one: Novinski članak other: Novinski članci world_news_story: - few: - many: + few: + many: one: Vijest iz svijeta other: Vijesti iz svijeta written_statement: - few: - many: + few: + many: one: Pismena izjava Parlamentu other: Pismene izjave Parlamentu corporate_information_page: @@ -464,54 +441,54 @@ hr: social_media_use_html: Pročitajte naša pravila na %{link}. welsh_language_scheme_html: Saznajte o našoj predanosti %{link}. email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: Grb Ministarstva obrane field_of_operation: Područje djelovanja operations_in: Operacije u %{location} get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: Nedostupno published_in_error: Podaci na ovoj stranici uklonjeni su jer su pogrešno objavljeni. @@ -527,74 +504,74 @@ hr: 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. i18n: - direction: + direction: language_names: - ar: - az: - be: - bg: - bn: - cs: - cy: - da: - de: - dr: - el: - en: - es: - es-419: - et: - fa: - fi: - fr: - gd: - gu: - he: - hi: + ar: + az: + be: + bg: + bn: + cs: + cy: + da: + de: + dr: + el: + en: + es: + es-419: + et: + fa: + fi: + fr: + gd: + gu: + he: + hi: hr: Hrvatski - hu: - hy: - id: - is: - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: - th: - tk: - tr: - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + hu: + hy: + id: + is: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: + th: + tk: + tr: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: Sljedeće previous_page: Prethodno @@ -602,8 +579,8 @@ hr: publication: details: Detalji documents: - few: - many: + few: + many: one: Dokument other: Dokumenti service_sign_in: diff --git a/config/locales/hu.yml b/config/locales/hu.yml index 9385b6aee..20bf43193 100644 --- a/config/locales/hu.yml +++ b/config/locales/hu.yml @@ -41,7 +41,7 @@ hu: feedback_received: Visszajelzés kézbesítve is_being: folyamatban not_open_yet: A konzultáció még nem nyitott - 'on': + 'on': opens: A konzultáció megnyílik original_consultation: Eredeti konzultáció ran_from: 'A konzultáció kezdőidőpontja:' @@ -84,7 +84,6 @@ hu: closed_consultation: one: Lezárt konzultáció other: Lezárt konzultációk - overview: cma_case: one: Verseny- és Piachatósági eset other: Verseny- és Piachatósági esetek @@ -97,25 +96,21 @@ hu: consultation_outcome: one: Konzultációs eredmény other: Konzultációs eredmények - overview: corporate_information_page: one: Információs oldal other: Információs oldalak corporate_report: one: Testületi beszámoló other: Testületi beszámolók - overview: correspondence: one: Levelezés other: Levelezések - overview: countryside_stewardship_grant: one: Tájvédelmi segély other: Tájvédelmi segélyek decision: one: Döntés other: Döntések - overview: detailed_guide: one: Útmutató other: Útmutató @@ -146,43 +141,36 @@ hu: foi_release: one: Információhoz való joggal kapcsolatos közlemény other: Információhoz való joggal kapcsolatos közlemények - overview: form: one: Űrlap other: Űrlapok - overview: government_response: one: Kormányválasz other: Kormányválaszok guidance: one: Útmutató other: Útmutató - overview: impact_assessment: one: Hatásvizsgálat other: Hatásvizsgálatok - overview: imported: one: Importálva other: Importálva independent_report: one: Független beszámoló other: Független beszámolók - overview: international_development_fund: one: Nemzetközi fejlesztésfinanszírozás other: Nemzetközi fejlesztésfinanszírozás international_treaty: one: Nemzetközi egyezmény other: Nemzetközi egyezmények - overview: maib_report: one: A Tengeri Balesetek Kivizsgálásáért Felelős Részleg jelentése other: A Tengeri Balesetek Kivizsgálásáért Felelős Részleg jelentései map: one: Térkép other: Térképek - overview: medical_safety_alert: one: Gyógyszerekre és orvostechnikai eszközökre vonatkozó figyelmeztetések és visszahívások other: Gyógyszerekre és orvostechnikai eszközökre vonatkozó figyelmeztetések és visszahívások @@ -192,7 +180,6 @@ hu: national_statistics: one: Nemzeti statisztikák other: Nemzeti statisztikák - overview: national_statistics_announcement: one: Nemzeti statisztikai bejelentés other: Nemzeti statisztikai bejelentések @@ -205,21 +192,18 @@ hu: notice: one: Értesítés other: Értesítések - overview: official: one: Hivatalos statisztikai bejelentés other: Hivatalos statisztikai bejelentések official_statistics: one: Hivatalos statisztika other: Hivatalos statisztikák - overview: official_statistics_announcement: one: Hivatalos statisztikai bejelentés other: Hivatalos statisztikai bejelentések open_consultation: one: Nyílt konzultáció other: Nyílt konzultációk - overview: oral_statement: one: Parlamenti felszólalás other: Parlamenti felszólalások @@ -229,14 +213,12 @@ hu: policy_paper: one: Irányelvi dokumentum other: Irányelvi dokumentumok - overview: press_release: one: Sajtóközlemény other: Sajtóközlemények promotional: one: Promóciós anyag other: Promóciós anyagok - overview: publication: one: Kiadvány other: Kiadványok @@ -246,11 +228,9 @@ hu: regulation: one: Szabályozás other: Szabályozások - overview: research: one: Kutatás és elemzés other: Kutatás és elemzés - overview: residential_property_tribunal_decision: one: Lakóingatlannal kapcsolatos bírósági döntés other: Lakóingatlannal kapcsolatos bírósági döntések @@ -269,7 +249,6 @@ hu: standard: one: Szabvány other: Szabványok - overview: statement_to_parliament: one: Parlamenti nyilatkozat other: Parlamenti nyilatkozatok @@ -282,7 +261,6 @@ hu: statutory_guidance: one: Törvényi előírás other: Törvényi előírás - overview: take_part: one: Részvétel other: Részvétel @@ -295,7 +273,6 @@ hu: transparency: one: Átláthatósági adatok other: Átláthatósági adatok - overview: utaac_decision: one: Adminisztratív fellebbezéssel kapcsolatos bírósági ítélet other: Adminisztratív fellebbezéssel kapcsolatos bírósági ítéletek @@ -316,54 +293,54 @@ hu: social_media_use_html: 'Bővebb információk az alábbi témával kapcsolatban: %{link}' welsh_language_scheme_html: 'Tájékozódjon az információk közzétételével kapcsolatos elkötelezettségünkről: %{link}' email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: A Védelmi Minisztérium címere field_of_operation: Működési terület operations_in: 'Tevékenységek itt: %{location}' get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: Már nem elérhető published_in_error: Az ezen az oldalon található információ eltávolításra került, mivel közzététele hiba volt. @@ -379,74 +356,74 @@ hu: 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. i18n: - direction: + direction: language_names: - ar: - az: - be: - bg: - bn: - cs: - cy: - da: - de: - dr: - el: - en: - es: - es-419: - et: - fa: - fi: - fr: - gd: - gu: - he: - hi: - hr: + ar: + az: + be: + bg: + bn: + cs: + cy: + da: + de: + dr: + el: + en: + es: + es-419: + et: + fa: + fi: + fr: + gd: + gu: + he: + hi: + hr: hu: Magyar - hy: - id: - is: - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: - th: - tk: - tr: - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + hy: + id: + is: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: + th: + tk: + tr: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: Következő previous_page: Előző diff --git a/config/locales/hy.yml b/config/locales/hy.yml index 54629c986..398dc7043 100644 --- a/config/locales/hy.yml +++ b/config/locales/hy.yml @@ -41,7 +41,7 @@ hy: feedback_received: Ստացված արձագանքը is_being: ենթարկվում է not_open_yet: Այս խորհրդակցությունը դեռևս չի սկսվել - 'on': + 'on': opens: Այս խորհրդակցությունը կսկսվի original_consultation: Սկզբնական խորհրդակցություն ran_from: Այս խորհրդակցությունն իրականացվել է @@ -84,7 +84,6 @@ hy: closed_consultation: one: Փակ խորհրդակցություն other: Փակ խորհրդակցություններ - overview: cma_case: one: Մրցակցության և շուկայի կառավարման բաժնի դեպք other: Մրցակցության և շուկայի կառավարման բաժնի դեպքեր @@ -97,25 +96,21 @@ hy: consultation_outcome: one: Խորհրդակցության արդյունք other: Խորհրդակցության արդյունքներ - overview: corporate_information_page: one: Տեղեկատվական էջ other: Տեղեկատվական էջեր corporate_report: one: Կորպորատիվ զեկույց other: Կորպորատիվ զեկույցներ - overview: correspondence: one: Նամակագրություն other: Նամակագրություններ - overview: countryside_stewardship_grant: one: Գյուղատնտեսության կառավարման դրամաշնորհ other: Գյուղատնտեսության կառավարման դրամաշնորհներ decision: one: Որոշում other: Որոշումներ - overview: detailed_guide: one: Ուղեցույց other: Ուղեցույց @@ -146,43 +141,36 @@ hy: foi_release: one: Տեղեկատվության ազատության հրապարակում other: Տեղեկատվության ազատության հրապարակումներ - overview: form: one: Ձևաթուղթ other: Ձևաթղթեր - overview: government_response: one: Կառավարության արձագանք other: Կառավարության արձագանքներ guidance: one: Ուղեցույց other: Ուղեցույց - overview: impact_assessment: one: Ազդեցության գնահատում other: Ազդեցության գնահատումներ - overview: imported: one: ներմուծված - սպասման տեսակ other: ներմուծված - սպասման տեսակ independent_report: one: Անկախ զեկույց other: Անկախ զեկույցներ - overview: international_development_fund: one: Միջազգային զարգացման ֆինանսավորում other: Միջազգային զարգացման ֆինանսավորում international_treaty: one: Միջազգային պայմանագիր other: Միջազգային պայմանագրեր - overview: maib_report: one: Ծովային վթարների հետաքննության բաժանմունքի զեկույց other: Ծովային վթարների հետաքննության բաժանմունքի զեկույցներ map: one: Քարտեզ other: Քարտեզներ - overview: medical_safety_alert: one: Նախազգուշացումներ և հիշեցումներ դեղերի և բժշկական սարքավորումների համար other: Նախազգուշացումներ և հիշեցումներ դեղերի և բժշկական սարքավորումների համար @@ -192,7 +180,6 @@ hy: national_statistics: one: Ազգային վիճակագրություն other: Ազգային վիճակագրություն - overview: national_statistics_announcement: one: Ազգային վիճակագրական հայտարարություն other: Ազգային վիճակագրական հայտարարություններ @@ -205,21 +192,18 @@ hy: notice: one: Ծանուցում other: Ծանուցումներ - overview: official: one: Պաշտոնական վիճակագրական հայտարարություն other: Պաշտոնական վիճակագրական հայտարարություններ official_statistics: one: Պաշտոնական վիճակագրություն other: Պաշտոնական վիճակագրություն - overview: official_statistics_announcement: one: Պաշտոնական վիճակագրական հայտարարություն other: Պաշտոնական վիճակագրական հայտարարություններ open_consultation: one: Բաց խորհրդակցություն other: Բաց խորհրդակցություններ - overview: oral_statement: one: Խորհրդարանին ուղղված բանավոր հայտարարություն other: Խորհրդարանին ուղղված բանավոր հայտարարություններ @@ -229,14 +213,12 @@ hy: policy_paper: one: Քաղաքականության փաստաթուղթ other: Քաղաքականության փաստաթղթեր - overview: press_release: one: Կոմյունիկե other: Կոմյունիկեներ promotional: one: Գովազդային նյութ other: Գովազդային նյութ - overview: publication: one: Հրապարակում other: Հրապարակումներ @@ -246,11 +228,9 @@ hy: regulation: one: Կանոնադրություն other: Կանոնադրություններ - overview: research: one: Հետազոտություն և վերլուծություն other: Հետազոտություն և վերլուծություն - overview: residential_property_tribunal_decision: one: Անշարժ գույքի վերաբերյալ տրիբունալի որոշում other: Անշարժ գույքի վերաբերյալ տրիբունալի որոշումներ @@ -269,7 +249,6 @@ hy: standard: one: Ստանդարտ other: Ստանդարտներ - overview: statement_to_parliament: one: Հայտարարություն ուղղված խորհրդարանին other: Հայտարարություններ ուղղված խորհրդարանին @@ -282,7 +261,6 @@ hy: statutory_guidance: one: Կանոնադրական ուղեցույց other: Կանոնադրական ուղեցույց - overview: take_part: one: Մասնակցություն other: Մասնակցություն @@ -295,7 +273,6 @@ hy: transparency: one: Թափանցիկության տվյալներ other: Թափանցիկության տվյալներ - overview: utaac_decision: one: Վարչական բողոքների համար տրիբունալի որոշում other: Վարչական բողոքների համար տրիբունալի որոշումներ @@ -316,54 +293,54 @@ hy: social_media_use_html: 'Կարդալ մեր քաղաքականությունը %{link} հղումով:' welsh_language_scheme_html: 'Տեղեկանալ մեր աշխատանքի մասին %{link} հղումով:' email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: Պաշտպանության նախարարության զինանշան field_of_operation: Գործունեության ոլորտ operations_in: Գործունեություն % {location}-ում get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: Այլևս հասանելի չէ published_in_error: 'Այս էջի տեղեկությունը հեռացվել է, քանի որ սխալմամբ էր հրապարակվել:' @@ -379,74 +356,74 @@ hy: 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: Եթե բացահայտենք երրորդ կողմի հեղինակային իրավունքի որևէ տեղեկություն, ձեզնից կպահանջվի ստանալ թույլտվություն հեղինակային իրավունքի համապատասխան սեփականատերերից։ i18n: - direction: + direction: language_names: - ar: - az: - be: - bg: - bn: - cs: - cy: - da: - de: - dr: - el: - en: - es: - es-419: - et: - fa: - fi: - fr: - gd: - gu: - he: - hi: - hr: - hu: + ar: + az: + be: + bg: + bn: + cs: + cy: + da: + de: + dr: + el: + en: + es: + es-419: + et: + fa: + fi: + fr: + gd: + gu: + he: + hi: + hr: + hu: hy: Հայերեն - id: - is: - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: - th: - tk: - tr: - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + id: + is: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: + th: + tk: + tr: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: Հաջորդ previous_page: Նախորդ diff --git a/config/locales/id.yml b/config/locales/id.yml index ecaa20617..db1a0c1f3 100644 --- a/config/locales/id.yml +++ b/config/locales/id.yml @@ -41,7 +41,7 @@ id: feedback_received: Umpan balik yang diterima is_being: sedang not_open_yet: Konsultasi ini belum dibuka - 'on': + 'on': opens: Konsultasi ini sudah dibuka original_consultation: Konsultasi asli ran_from: Konsultasi ini berlangsung dari @@ -84,7 +84,6 @@ id: closed_consultation: one: Konsultasi tertutup other: Konsultasi tertutup - overview: cma_case: one: Kasus Otoritas Persaingan dan Pasar other: Kasus Otoritas Persaingan dan Pasar @@ -97,25 +96,21 @@ id: consultation_outcome: one: Hasil konsultasi other: Hasil konsultasi - overview: corporate_information_page: one: Halaman informasi other: Halaman informasi corporate_report: one: Laporan korporat other: Laporan korporat - overview: correspondence: one: Korespondensi other: Korespondensi - overview: countryside_stewardship_grant: one: Hibah Countryside Stewardship other: Hibah Countryside Stewardship decision: one: Keputusan other: Keputusan - overview: detailed_guide: one: Panduan other: Panduan @@ -146,43 +141,36 @@ id: foi_release: one: Rilis Kebebasan Informasi other: Rilis Kebebasan Informasi - overview: form: one: Formulir other: Formulir - overview: government_response: one: Respons pemerintah other: Respons pemerintah guidance: one: Panduan other: Panduan - overview: impact_assessment: one: Penilaian dampak other: Penilaian dampak - overview: imported: one: diimpor- menunggu jenis other: diimpor- menunggu jenis independent_report: one: Laporan independen other: Laporan independen - overview: international_development_fund: one: Pendanaan pembangunan internasional other: Pendanaan pembangunan internasional international_treaty: one: Pakta internasional other: Pakta internasional - overview: maib_report: one: Laporan Cabang Investigasi Kecelakaan Maritim other: Laporan Cabang Investigasi Kecelakaan Maritim map: one: Peta other: Peta - overview: medical_safety_alert: one: Peringatan dan panggilan ulang untuk obat-obatan dan perangkat medis other: Peringatan dan panggilan ulang untuk obat-obatan dan perangkat medis @@ -192,7 +180,6 @@ id: national_statistics: one: Statistik Nasional other: Statistik Nasional - overview: national_statistics_announcement: one: Pengumuman statistik nasional other: Pengumuman statistik nasional @@ -205,21 +192,18 @@ id: notice: one: Pemberitahuan other: Pemberitahuan - overview: official: one: Pengumuman statistik resmi other: Pengumuman statistik resmi official_statistics: one: Statistik Resmi other: Statistik Resmi - overview: official_statistics_announcement: one: Pengumuman statistik resmi other: Pengumuman statistik resmi open_consultation: one: Konsultasi terbuka other: Konsultasi terbuka - overview: oral_statement: one: Pernyataan lisan kepada Parlemen other: Pernyataan lisan kepada Parlemen @@ -229,14 +213,12 @@ id: policy_paper: one: Kertas kebijakan other: Kertas kebijakan - overview: press_release: one: Siaran pers other: Siaran pers promotional: one: Bahan promosi other: Bahan promosi - overview: publication: one: Publikasi other: Publikasi @@ -246,11 +228,9 @@ id: regulation: one: Regulasi other: Regulasi - overview: research: one: Riset dan analisis other: Riset dan analisis - overview: residential_property_tribunal_decision: one: Keputusan persidangan properti permukiman other: Keputusan persidangan properti permukiman @@ -269,7 +249,6 @@ id: standard: one: Standar other: Standar - overview: statement_to_parliament: one: Pernyataan kepada Parlemen other: Pernyataan kepada Parlemen @@ -282,7 +261,6 @@ id: statutory_guidance: one: Panduan perundang-undangan other: Panduan perundang-undangan - overview: take_part: one: Ikut serta other: Ikut serta @@ -295,7 +273,6 @@ id: transparency: one: Data transparansi other: Data transparansi - overview: utaac_decision: one: Keputusan persidangan banding administratif other: Keputusan persidangan banding administratif @@ -316,54 +293,54 @@ id: social_media_use_html: Baca kebijakan kami di %{link}. welsh_language_scheme_html: Cari tahu komitmen kami kepada %{link}. email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: Lambang Kementerian Pertahanan field_of_operation: Bidang operasi operations_in: Operasi di %{location} get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: Tidak lagi tersedia published_in_error: Informasi di halaman ini telah dihapus karena diterbitkan karena kesalahan. @@ -379,74 +356,74 @@ id: 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. i18n: - direction: + direction: language_names: - ar: - az: - be: - bg: - bn: - cs: - cy: - da: - de: - dr: - el: - en: - es: - es-419: - et: - fa: - fi: - fr: - gd: - gu: - he: - hi: - hr: - hu: - hy: + ar: + az: + be: + bg: + bn: + cs: + cy: + da: + de: + dr: + el: + en: + es: + es-419: + et: + fa: + fi: + fr: + gd: + gu: + he: + hi: + hr: + hu: + hy: id: Bahasa Indonesia - is: - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: - th: - tk: - tr: - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + is: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: + th: + tk: + tr: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: Selanjutnya previous_page: Sebelumnya diff --git a/config/locales/is.yml b/config/locales/is.yml index e9673b4b5..97c40e296 100644 --- a/config/locales/is.yml +++ b/config/locales/is.yml @@ -41,7 +41,7 @@ is: feedback_received: Endurgjöf móttekin is_being: er not_open_yet: Þessi ráðgjöf er ekki enn opin - 'on': + 'on': opens: Þessi ráðgjöf opnar original_consultation: Upprunaleg ráðgjöf ran_from: Þessi ráðgjöf stóð yfir frá @@ -84,7 +84,6 @@ is: closed_consultation: one: Lokuð ráðgjöf other: Lokaðar ráðgjafir - overview: cma_case: one: Mál Samkeppnis- og Markaðsstofu other: Mál Samkeppnis- og Markaðsstofu @@ -97,25 +96,21 @@ is: consultation_outcome: one: Útkoma ráðgjafar other: Útkomur ráðgjafar - overview: corporate_information_page: one: Upplýsingasíða other: Upplýsingasíður corporate_report: one: Skýrsla fyrirtækis other: Skýrslur fyrirtækja - overview: correspondence: one: Samskipti other: Samskipti - overview: countryside_stewardship_grant: one: Styrkur til umsýslu sveitar other: Styrkir til umsýslu sveitar decision: one: Ákvörðun other: Ákvarðanir - overview: detailed_guide: one: Leiðsögn other: Leiðsögn @@ -146,43 +141,36 @@ is: foi_release: one: Upplýsingafrelsi (FOI) útgáfa other: Upplýsingafrelsi (FOI) útgáfur - overview: form: one: Eyðublað other: Eyðublöð - overview: government_response: one: Viðbrögð stjórnvalda other: Viðbrögð stjórnvalda guidance: one: Leiðbeiningar other: Leiðbeiningar - overview: impact_assessment: one: Áhrifamat other: Áhrifamöt - overview: imported: one: hlaðið inn - bíð eftir gerð other: hlaðið inn - bíð eftir gerð independent_report: one: Óháð skýrsla other: Óháðar skýrslur - overview: international_development_fund: one: Fjármögnun alþjóðlegrar uppbyggingar other: Fjármögnun alþjóðlegrar uppbyggingar international_treaty: one: Alþjóðasamningur other: Alþjóðasamningar - overview: maib_report: one: Skýrsla Sjóslysanefndar other: Skýrslur Sjóslysanefndar map: one: Kort other: Kort - overview: medical_safety_alert: one: Viðvaranir og innköllun lyfja og lækningatækja other: Viðvaranir og innköllun lyfja og lækningatækja @@ -192,7 +180,6 @@ is: national_statistics: one: Hagstofa other: Hagstofa - overview: national_statistics_announcement: one: Tilkynning Hagstofu other: Tilkynningar Hagstofur @@ -205,21 +192,18 @@ is: notice: one: Tilkynning other: Tilkynningar - overview: official: one: Tilkynning um opinbera tölfræði other: Tilkynningar um opinbera tölfræði official_statistics: one: Opinber tölfræði other: Opinber tölfræði - overview: official_statistics_announcement: one: Tilkynning um opinbera tölfræði other: Tilkynningar um opinbera tölfræði open_consultation: one: Opin ráðgjöf other: Opnar ráðgjafir - overview: oral_statement: one: Munnleg yfirlýsing til Þingsins other: Munnlegar yfirlýsingar til Þingsins @@ -229,14 +213,12 @@ is: policy_paper: one: Stefnu ritgerð other: Stefnu ritgerðir - overview: press_release: one: Fréttatilkynning other: Fréttatilkynningar promotional: one: Kynningarefni other: Kynningarefni - overview: publication: one: Útgáfa other: Útgáfa @@ -246,11 +228,9 @@ is: regulation: one: Reglugerð other: Reglugerðir - overview: research: one: Rannsóknir og greining other: Rannsóknir og greining - overview: residential_property_tribunal_decision: one: Úrskurður dómstóls íbúðarhúsnæði other: Úrskurðir dómstóls íbúðarhúsnæði @@ -269,7 +249,6 @@ is: standard: one: Staðall other: Staðlar - overview: statement_to_parliament: one: Yfirlýsing til Þingsins other: Yfirlýsingar til Þingsins @@ -282,7 +261,6 @@ is: statutory_guidance: one: Lagalegar leiðbeiningar other: Lagalegar leiðbeiningar - overview: take_part: one: Taka þátt other: Taka þátt @@ -295,7 +273,6 @@ is: transparency: one: Gögn um gagnsæi other: Gögn um gagnsæi - overview: utaac_decision: one: Úrskurður stjórnsýslulegs áfrýjunardómstóls other: Úrskurðir stjórnsýslulegs áfrýjunardómstóls @@ -316,54 +293,54 @@ is: social_media_use_html: Lestu stefnuna okkar varðandi %{link}. welsh_language_scheme_html: Kynntu þér skuldbindingu okkar við %{link}. email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: Skjaldarmerki Varnarmálaráðuneytisins field_of_operation: Starfsvið operations_in: Starfsemi á %{location} get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: Ekki lengur aðgengileg published_in_error: Upplýsingarnar á þessari síðu hafa verið fjarlægðar vegna þess að þær voru birtar fyrir mistök. @@ -379,74 +356,74 @@ is: 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. i18n: - direction: + direction: language_names: - ar: - az: - be: - bg: - bn: - cs: - cy: - da: - de: - dr: - el: - en: - es: - es-419: - et: - fa: - fi: - fr: - gd: - gu: - he: - hi: - hr: - hu: - hy: - id: + ar: + az: + be: + bg: + bn: + cs: + cy: + da: + de: + dr: + el: + en: + es: + es-419: + et: + fa: + fi: + fr: + gd: + gu: + he: + hi: + hr: + hu: + hy: + id: is: Íslenska - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: - th: - tk: - tr: - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: + th: + tk: + tr: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: Næsta previous_page: Fyrri diff --git a/config/locales/it.yml b/config/locales/it.yml index 532b70b78..b0a6a8d75 100644 --- a/config/locales/it.yml +++ b/config/locales/it.yml @@ -41,7 +41,7 @@ it: feedback_received: Feedback ricevuto is_being: viene not_open_yet: Questa consultazione non è ancora aperta - 'on': + 'on': opens: Questa consultazione si apre original_consultation: Consultazione originale ran_from: Questa consultazione è partita da @@ -84,7 +84,6 @@ it: closed_consultation: one: Consultazione chiusa other: Consultazioni chiuse - overview: cma_case: one: Caso dell’Autorità Garante della Concorrenza e del Mercato other: Casi dell’Autorità Garante della Concorrenza e del Mercato @@ -97,25 +96,21 @@ it: consultation_outcome: one: Esito della consultazione other: Esiti della consultazione - overview: corporate_information_page: one: Pagina informativa other: Pagine informative corporate_report: one: Report aziendale other: Report aziendali - overview: correspondence: one: Corrispondenza other: Corrispondenze - overview: countryside_stewardship_grant: one: Sovvenzione per la gestione della campagna other: Sovvenzioni per la gestione della campagna decision: one: Decisione other: Decisioni - overview: detailed_guide: one: Guida other: Guida @@ -146,43 +141,36 @@ it: foi_release: one: Pubblicazione sulla libertà d’informazione (FOI) other: Pubblicazioni sulla libertà d’informazione (FOI) - overview: form: one: Modulo other: Moduli - overview: government_response: one: Risposta del governo other: Risposte del governo guidance: one: Guida other: Guida - overview: impact_assessment: one: Valutazione dell’impatto other: Valutazioni dell’impatto - overview: imported: one: importato - in attesa del tipo other: importato - in attesa del tipo independent_report: one: Report indipendente other: Report indipendenti - overview: international_development_fund: one: Finanziamenti per lo sviluppo internazionale other: Finanziamenti per lo sviluppo internazionale international_treaty: one: Trattato internazionale other: Trattati internazionali - overview: maib_report: one: Rapporto del ramo investigativo sugli incidenti marini other: Rapporti del ramo investigativo sugli incidenti marini map: one: Mappa other: Mappe - overview: medical_safety_alert: one: Avvisi e richiami per farmaci e dispositivi medici other: Avvisi e richiami per farmaci e dispositivi medici @@ -192,7 +180,6 @@ it: national_statistics: one: Statistiche nazionali other: Statistiche nazionali - overview: national_statistics_announcement: one: Annuncio statistico nazionale other: Annunci statistici nazionali @@ -205,21 +192,18 @@ it: notice: one: Avviso other: Avvisi - overview: official: one: Annuncio statistico ufficiale other: Annunci statistici ufficiali official_statistics: one: Statistiche ufficiali other: Statistiche ufficiali - overview: official_statistics_announcement: one: Annuncio statistico ufficiale other: Annunci statistici ufficiali open_consultation: one: Consultazione aperta other: Consultazioni aperte - overview: oral_statement: one: Dichiarazione orale al Parlamento other: Dichiarazioni orali al Parlamento @@ -229,14 +213,12 @@ it: policy_paper: one: Documento politico other: Documenti politici - overview: press_release: one: Comunicato stampa other: Comunicati stampa promotional: one: Materiale promozionale other: Materiale promozionale - overview: publication: one: Pubblicazione other: Pubblicazioni @@ -246,11 +228,9 @@ it: regulation: one: Regolamento other: Regolamenti - overview: research: one: Ricerca e analisi other: Ricerca e analisi - overview: residential_property_tribunal_decision: one: Decisione del tribunale sulla proprietà residenziale other: Decisioni del tribunale sulla proprietà residenziale @@ -269,7 +249,6 @@ it: standard: one: Standard other: Standard - overview: statement_to_parliament: one: Dichiarazione al parlamento other: Dichiarazioni al parlamento @@ -282,7 +261,6 @@ it: statutory_guidance: one: Guida statutaria other: Guida statutaria - overview: take_part: one: Prendere parte other: Prendere parte @@ -295,7 +273,6 @@ it: transparency: one: Dati sulla trasparenza other: Dati sulla trasparenza - overview: utaac_decision: one: Decisione del tribunale di appello amministrativo other: Decisioni del tribunale di appello amministrativo @@ -316,54 +293,54 @@ it: social_media_use_html: Leggi la nostra informativa su %{link}. welsh_language_scheme_html: Scopri il nostro impegno per %{link}. email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: Stemma del Ministero della Difesa field_of_operation: Campo operativo operations_in: Operazioni in %{location} get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: Non più disponibile published_in_error: Le informazioni in questa pagina sono state rimosse perché pubblicate per errore. @@ -379,74 +356,74 @@ it: 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. i18n: - direction: + direction: language_names: - ar: - az: - be: - bg: - bn: - cs: - cy: - da: - de: - dr: - el: - en: - es: - es-419: - et: - fa: - fi: - fr: - gd: - gu: - he: - hi: - hr: - hu: - hy: - id: - is: + ar: + az: + be: + bg: + bn: + cs: + cy: + da: + de: + dr: + el: + en: + es: + es-419: + et: + fa: + fi: + fr: + gd: + gu: + he: + hi: + hr: + hu: + hy: + id: + is: it: Italiano - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: - th: - tk: - tr: - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: + th: + tk: + tr: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: Avanti previous_page: Precedente diff --git a/config/locales/ja.yml b/config/locales/ja.yml index 2281e9ed8..69d4102ae 100644 --- a/config/locales/ja.yml +++ b/config/locales/ja.yml @@ -41,7 +41,7 @@ ja: feedback_received: フィードバックを受信しました is_being: 継続中 not_open_yet: この審議はまだ開かれていません - 'on': + 'on': opens: この審議が始まります original_consultation: 当初の審議 ran_from: この審議が始まった時間: @@ -84,7 +84,6 @@ ja: closed_consultation: one: 非公開審議 other: 非公開審議 - overview: cma_case: one: 競争市場庁の事例 other: 競争市場庁の事例 @@ -97,25 +96,21 @@ ja: consultation_outcome: one: 審議結果 other: 審議結果 - overview: corporate_information_page: one: 情報ページ other: 情報ページ corporate_report: one: 企業報告書 other: 企業報告書 - overview: correspondence: one: 対応 other: 対応 - overview: countryside_stewardship_grant: one: カントリーサイドスチュワードシップ助成金 other: カントリーサイドスチュワードシップ助成金 decision: one: 決定 other: 決定 - overview: detailed_guide: one: ガイダンス other: ガイダンス @@ -146,43 +141,36 @@ ja: foi_release: one: FOI(情報公開)発表 other: FOI(情報公開)発表 - overview: form: one: フォーム other: フォーム - overview: government_response: one: 政府の対応 other: 政府の対応 guidance: one: ガイダンス other: ガイダンス - overview: impact_assessment: one: 影響評価 other: 影響評価 - overview: imported: one: インポート済み - 待機中の種別 other: インポート済み - 待機中の種別 independent_report: one: 第三者による報告 other: 第三者による報告 - overview: international_development_fund: one: 国際開発資金 other: 国際開発資金 international_treaty: one: 国際条約 other: 国際条約 - overview: maib_report: one: 海難調査支部報告書 other: 海難調査支部報告書 map: one: 地図 other: 地図 - overview: medical_safety_alert: one: 医薬品・医療機器の注意喚起及び回収 other: 医薬品・医療機器の注意喚起及び回収 @@ -192,7 +180,6 @@ ja: national_statistics: one: 国家統計 other: 国家統計 - overview: national_statistics_announcement: one: 全国統計発表 other: 全国統計発表 @@ -205,21 +192,18 @@ ja: notice: one: お知らせ other: お知らせ - overview: official: one: 公式統計発表 other: 公式統計発表 official_statistics: one: 公式統計 other: 公式統計 - overview: official_statistics_announcement: one: 公式統計発表 other: 公式統計発表 open_consultation: one: 公開審議 other: 公開審議 - overview: oral_statement: one: 議会への口頭声明 other: 議会への口頭声明 @@ -229,14 +213,12 @@ ja: policy_paper: one: 方針書 other: 方針書 - overview: press_release: one: プレスリリース other: プレスリリース promotional: one: 販促資料 other: 販促資料 - overview: publication: one: 出版物 other: 出版物 @@ -246,11 +228,9 @@ ja: regulation: one: 規制 other: 規則 - overview: research: one: 調査と分析 other: 調査と分析 - overview: residential_property_tribunal_decision: one: 居住用財産審判所(Residential property tribunal)の決定 other: 居住用財産審判所(Residential property tribunal)の決定 @@ -269,7 +249,6 @@ ja: standard: one: 標準 other: 標準 - overview: statement_to_parliament: one: 議会への声明 other: 議会への声明 @@ -282,7 +261,6 @@ ja: statutory_guidance: one: 法定ガイダンス other: 法定ガイダンス - overview: take_part: one: 参加する other: 参加する @@ -295,7 +273,6 @@ ja: transparency: one: 透明性データ other: 透明性データ - overview: utaac_decision: one: 行政控訴審判所(Administrative appeals tribunal decision)の決定 other: 行政控訴審判所(Administrative appeals tribunal decision)の決定 @@ -316,54 +293,54 @@ ja: social_media_use_html: "%{link} に関する政策をご覧下さい。" welsh_language_scheme_html: 情報公開の詳細については %{link} をご覧下さい。 email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: 国防省の紋章 field_of_operation: 運用分野 operations_in: "%{location} での操作" get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: ご利用いただけません published_in_error: このページの情報は、誤って公開されたため削除されました。 @@ -379,74 +356,74 @@ ja: 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: 第三者の著作権情報を特定した場合は、関係する著作権所有者から許可を得る必要があります。 i18n: - direction: + direction: language_names: - ar: - az: - be: - bg: - bn: - cs: - cy: - da: - de: - dr: - el: - en: - es: - es-419: - et: - fa: - fi: - fr: - gd: - gu: - he: - hi: - hr: - hu: - hy: - id: - is: - it: + ar: + az: + be: + bg: + bn: + cs: + cy: + da: + de: + dr: + el: + en: + es: + es-419: + et: + fa: + fi: + fr: + gd: + gu: + he: + hi: + hr: + hu: + hy: + id: + is: + it: ja: 日本 - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: - th: - tk: - tr: - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: + th: + tk: + tr: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: 次へ previous_page: 前へ diff --git a/config/locales/kk.yml b/config/locales/kk.yml index cc9522258..77dd02297 100644 --- a/config/locales/kk.yml +++ b/config/locales/kk.yml @@ -41,7 +41,7 @@ kk: feedback_received: Алынған пікір is_being: жіберілуде not_open_yet: Бұл кеңес әлі ашылмаған - 'on': + 'on': opens: Бұл кеңес ашылды original_consultation: Бастапқы кеңес ran_from: Бұл кеңес мына жерден басталады @@ -84,7 +84,6 @@ kk: closed_consultation: one: Жабық кеңес other: Жабық кеңестер - overview: cma_case: one: Бәсекелестік және нарықтар бойынша басқарма ісі other: Бәсекелестік және нарықтар бойынша басқарма істері @@ -97,25 +96,21 @@ kk: consultation_outcome: one: Кеңес нәтижесі other: Кеңес нәтижелері - overview: corporate_information_page: one: Ақпараттық бет other: Ақпараттық беттер corporate_report: one: Корпоративтік есеп other: Корпоративтік есептер - overview: correspondence: one: Хат алмасу other: Хат алмасулар - overview: countryside_stewardship_grant: one: Countryside Stewardship гранты other: Countryside Stewardship гранттары decision: one: Шешім other: Шешімдер - overview: detailed_guide: one: Нұсқаулық other: Нұсқаулық @@ -146,43 +141,36 @@ kk: foi_release: one: FOI шығарылымы other: FOI шығарылымдары - overview: form: one: Форма other: Формалар - overview: government_response: one: Мемлекет жауабы other: Мемлекет жауаптары guidance: one: Нұсқаулық other: Нұсқаулық - overview: impact_assessment: one: Ықпалын бағалау other: Ықпалын бағалаулар - overview: imported: one: импортталған - күтілетін түрі other: импортталған - күтілетін түрі independent_report: one: Тәуелсіз есеп other: Тәуелсіз есептер - overview: international_development_fund: one: Халықаралық даму қоры other: Халықаралық даму қоры international_treaty: one: Халықаралық келісім other: Халықаралық келісімдер - overview: maib_report: one: Теңіз апаттарын тергеу бөлімінің есебі other: Теңіз апаттарын тергеу бөлімінің есептері map: one: Карта other: Карталар - overview: medical_safety_alert: one: Дәрі-дәрмектер мен медициналық құрылғылар бойынша пікірлер мен ескертулер other: Дәрі-дәрмектер мен медициналық құрылғылар бойынша пікірлер мен ескертулер @@ -192,7 +180,6 @@ kk: national_statistics: one: Ұлттық статистика other: Ұлттық статистика - overview: national_statistics_announcement: one: Ұлттық статистика хабарландыруы other: Ұлттық статистика хабарландырулары @@ -205,21 +192,18 @@ kk: notice: one: Ескертпе other: Ескертпелер - overview: official: one: Ресми статистика хабарландыруы other: Ресми статистика хабарландырулары official_statistics: one: Ресми статистика other: Ресми статистика - overview: official_statistics_announcement: one: Ресми статистика хабарландыруы other: Ресми статистика хабарландырулары open_consultation: one: Ашық кеңес other: Ашық кеңестер - overview: oral_statement: one: Парламентке ауызша мәлімдеме other: Парламентке ауызша мәлімдемелер @@ -229,14 +213,12 @@ kk: policy_paper: one: Саяси құжат other: Саяси құжаттар - overview: press_release: one: Пресс-релиз other: Пресс-релиздер promotional: one: Жарнамалық материал other: Жарнамалық материал - overview: publication: one: Жарияланым other: Жарияланымдар @@ -246,11 +228,9 @@ kk: regulation: one: Ереже other: Ережелер - overview: research: one: Зерттеу және талдау other: Зерттеу және талдау - overview: residential_property_tribunal_decision: one: Тұрғын үйге қатысты сот шешімі other: Тұрғын үйге қатысты сот шешімдері @@ -269,7 +249,6 @@ kk: standard: one: Стандарт other: Стандарттар - overview: statement_to_parliament: one: Парламент мәлімдемесі other: Парламент мәлімдемелері @@ -282,7 +261,6 @@ kk: statutory_guidance: one: Заң нұсқаулығы other: Заң нұсқаулығы - overview: take_part: one: Қатысу other: Қатысу @@ -295,7 +273,6 @@ kk: transparency: one: Ашықтық деректері other: Ашықтық деректері - overview: utaac_decision: one: Әкімшілік аппеляциялық сот шешімі other: Әкімшілік аппеляциялық сот шешімдері @@ -316,54 +293,54 @@ kk: social_media_use_html: "%{link} мекенжайындағы саясатымызды оқыңыз." welsh_language_scheme_html: "%{link} қосқан үлесіміз туралы оқыңыз." email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: Қорғаныс министрлігінің елтаңбасы field_of_operation: Жұмыс аймағы operations_in: "%{location} орнындағы жұмыстар" get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: Енді қолжетімді емес published_in_error: Осы беттегі ақпарат қате жарияланғандықтан алынып тасталды. @@ -379,74 +356,74 @@ kk: licence_html: 'Бұл жарияланым басқаша көрсетілмеген жағдайларды қоспағанда, v3.0 Ашық Үкімет лицензиясының шарттары бойынша лицензияланған. Осы лицензияны көру үшін, nationalarchives.gov.uk/doc/open-government-licence/version/3 веб-сайтына өтіңіз немесе немесе Ақпараттық саясат тобына, Ұлттық мұрағаттарға, Kew, London TW9 4DU жазыңыз немесе төмендегі мекенжайға электрондық хат жазыңыз: psi@nationalarchives.gov.uk.' third_party: Егер біз авторлық құқық туралы кез келген үшінші тарап ақпаратын анықтаған болсақ, сізге тиісті авторлық құқық иелерінен рұқсат алу қажет болады. i18n: - direction: + direction: language_names: - ar: - az: - be: - bg: - bn: - cs: - cy: - da: - de: - dr: - el: - en: - es: - es-419: - et: - fa: - fi: - fr: - gd: - gu: - he: - hi: - hr: - hu: - hy: - id: - is: - it: - ja: - ka: + ar: + az: + be: + bg: + bn: + cs: + cy: + da: + de: + dr: + el: + en: + es: + es-419: + et: + fa: + fi: + fr: + gd: + gu: + he: + hi: + hr: + hu: + hy: + id: + is: + it: + ja: + ka: kk: Қазақ - ko: - lt: - lv: - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: - th: - tk: - tr: - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + ko: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: + th: + tk: + tr: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: Келесі previous_page: Алдыңғы diff --git a/config/locales/ko.yml b/config/locales/ko.yml index 1493f668d..a0a81434b 100644 --- a/config/locales/ko.yml +++ b/config/locales/ko.yml @@ -41,7 +41,7 @@ ko: feedback_received: 받은 피드백 is_being: 존재함 not_open_yet: 이 상담이 아직 공개되지 않았습니다 - 'on': + 'on': opens: 이 상담이 공개되었습니다 original_consultation: 기존 상담 ran_from: 상담 실행 장소 @@ -84,7 +84,6 @@ ko: closed_consultation: one: 종결된 상담 other: 종결된 상담 - overview: cma_case: one: 경쟁 및 시장 감독 사례 other: 경쟁 및 시장 감독 사례 @@ -97,25 +96,21 @@ ko: consultation_outcome: one: 상담 결과 other: 상담 결과 - overview: corporate_information_page: one: 정보 페이지 other: 정보 페이지 corporate_report: one: 기업 보고서 other: 기업 보고서 - overview: correspondence: one: 통신 other: 통신 - overview: countryside_stewardship_grant: one: 농촌환경관리 보조금 other: 농촌환경관리 보조금 decision: one: 판결 other: 판결 - overview: detailed_guide: one: 지침 other: 지침 @@ -146,43 +141,36 @@ ko: foi_release: one: FOI 발표 other: FOI 발표 - overview: form: one: 양식 other: 양식 - overview: government_response: one: 정부 대응 other: 정부 대응 guidance: one: 지침 other: 지침 - overview: impact_assessment: one: 영향 평가 other: 영향 평가 - overview: imported: one: 수입 - 대기 유형 other: 수입 - 대기 유형 independent_report: one: 독립적 보고서 other: 독립적 보고서 - overview: international_development_fund: one: 국제 개발 자금 other: 국제 개발 자금 international_treaty: one: 국제 조약 other: 국제 조약 - overview: maib_report: one: 영국 해상사고조사위원회 보고서 other: 영국 해상사고조사위원회 보고서 map: one: 지도 other: 지도 - overview: medical_safety_alert: one: 의약품 및 의료기기에 대한 경고 및 리콜 other: 의약품 및 의료기기에 대한 경고 및 리콜 @@ -192,7 +180,6 @@ ko: national_statistics: one: 국내 통계 other: 국내 통계 - overview: national_statistics_announcement: one: 국내 통계 공지사항 other: 국내 통계 공지사항 @@ -205,21 +192,18 @@ ko: notice: one: 공지 other: 공지 - overview: official: one: 공식 통계 공지사항 other: 공식 통계 공지사항 official_statistics: one: 공식 통계 other: 공식 통계 - overview: official_statistics_announcement: one: 공식 통계 공지사항 other: 공식 통계 공지사항 open_consultation: one: 공개 상담 other: 공개 상담 - overview: oral_statement: one: 의회로 구두 성명 other: 의회로 구두 성명 @@ -229,14 +213,12 @@ ko: policy_paper: one: 정책 문서 other: 정책 문서 - overview: press_release: one: 보도자료 other: 보도자료 promotional: one: 홍보 자료 other: 홍보 자료 - overview: publication: one: 발행물 other: 발행물 @@ -246,11 +228,9 @@ ko: regulation: one: 규제 other: 규제 - overview: research: one: 조사 및 분석 other: 조사 및 분석 - overview: residential_property_tribunal_decision: one: 주거재산법원 판결 other: 주거재산법원 판결 @@ -269,7 +249,6 @@ ko: standard: one: 표준 other: 표준 - overview: statement_to_parliament: one: 의회로 성명 other: 의회로 성명 @@ -282,7 +261,6 @@ ko: statutory_guidance: one: 법정지도 other: 법정지도 - overview: take_part: one: 참여하기 other: 참여하기 @@ -295,7 +273,6 @@ ko: transparency: one: 투명성 데이터 other: 투명성 데이터 - overview: utaac_decision: one: 행정 항소심판 법원 판결 other: 행정 항소심판 법원 판결 @@ -316,54 +293,54 @@ ko: social_media_use_html: "%{link} 에서 정책 정보 확인" welsh_language_scheme_html: "%{link} 에서 정보 공개에 대한 내용." email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: 국방부 문장 field_of_operation: 운영 현장 operations_in: "%{Location} 내 운영" get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: 더 이상 이용할 수 없음 published_in_error: 이 페이지의 정보는 잘못된 내용이 발행되어서 삭제되었습니다. @@ -379,74 +356,74 @@ ko: 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: 서드파티 저작권 정보를 확인한 경우, 해당 저작권자의 허가를 받아야 합니다. i18n: - direction: + direction: language_names: - ar: - az: - be: - bg: - bn: - cs: - cy: - da: - de: - dr: - el: - en: - es: - es-419: - et: - fa: - fi: - fr: - gd: - gu: - he: - hi: - hr: - hu: - hy: - id: - is: - it: - ja: - ka: - kk: + ar: + az: + be: + bg: + bn: + cs: + cy: + da: + de: + dr: + el: + en: + es: + es-419: + et: + fa: + fi: + fr: + gd: + gu: + he: + hi: + hr: + hu: + hy: + id: + is: + it: + ja: + ka: + kk: ko: 한국어 - lt: - lv: - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: - th: - tk: - tr: - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: + th: + tk: + tr: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: 다음 previous_page: 이전 diff --git a/config/locales/lt.yml b/config/locales/lt.yml index f884314ea..f6c473aa8 100644 --- a/config/locales/lt.yml +++ b/config/locales/lt.yml @@ -41,7 +41,7 @@ lt: feedback_received: Atsiliepimas gautas is_being: yra not_open_yet: Ši konsultacija dar neprasidėjo - 'on': + 'on': opens: Ši konsultacija prasideda original_consultation: Pirminė konsultacija ran_from: Ši konsultacija tęsėsi nuo @@ -64,322 +64,299 @@ lt: updated: atnaujinta schema_name: aaib_report: - few: + few: one: Orlaivių avarijų tyrimo skyriaus ataskaita other: Orlaivių avarijų tyrimo skyriaus ataskaitos announcement: - few: + few: one: Pranešimas other: Pranešimai asylum_support_decision: - few: + few: one: Tribunolo sprendimas dėl prieglobsčio other: Tribunolo sprendimai dėl prieglobsčio authored_article: - few: + few: one: Autoriaus straipsnis other: Autorių straipsniai business_finance_support_scheme: - few: + few: one: Verslo finansų paramos planas other: Verslo finansų paramos planas case_study: - few: + few: one: Atvejo analizė other: Atvejų analizės closed_consultation: - few: + few: one: Pasibaigusi konsultacija other: Pasibaigusios konsultacijos - overview: cma_case: - few: + few: one: Konkurencijos ir rinkos institucijos byla other: Konkurencijos ir rinkos institucijos bylos coming_soon: - few: + few: one: Jau greitai other: Jau greitai consultation: - few: + few: one: Konsultacija other: Konsultacijos consultation_outcome: - few: + few: one: Konsultacijos rezultatas other: Konsultacijos rezultatai - overview: corporate_information_page: - few: + few: one: Informacinis puslapis other: Informaciniai puslapiai corporate_report: - few: + few: one: Bendra ataskaita other: Bendros ataskaitos - overview: correspondence: - few: + few: one: Korespondencija other: Korespondencija - overview: countryside_stewardship_grant: - few: + few: one: Kaimo priežiūros dotacija other: Kaimo priežiūros dotacijos decision: - few: + few: one: Sprendimas other: Sprendimai - overview: detailed_guide: - few: + few: one: Detalesnė informacija other: Detalesnė informacija dfid_research_output: - few: + few: one: Plėtros rezultato tyrimas other: Plėtros rezultatų tyrimas document_collection: - few: + few: one: Serijos other: Serijos draft_text: - few: + few: one: Pirminis teksto variantas other: Pirminiai teksto variantai drug_safety_update: - few: + few: one: Nauja informacija apie vaistų saugumą other: Nauja informacija apie vaistų saugumą employment_appeal_tribunal_decision: - few: + few: one: Darbo bylų apeliacijų tribunolo sprendimas other: Darbo bylų apeliacijų tribunolo sprendimai employment_tribunal_decision: - few: + few: one: Darbo teisės tribunolo sprendimas other: Darbo teisės tribunolo sprendimai esi_fund: - few: + few: one: Europos struktūrinis ir investicijų fondas other: Europos struktūriniai ir investicijų fondai fatality_notice: - few: + few: one: Pranešimas apie nelaimę other: Pranešimas apie nelaimes foi_release: - few: + few: one: 'Informacijos laisvė: pranešimas' other: 'Informacijos laisvė: pranešimai' - overview: form: - few: + few: one: Forma other: Formos - overview: government_response: - few: + few: one: Vyriausybės atsakas other: Vyriausybės atsakai guidance: - few: + few: one: Informacija other: Informacija - overview: impact_assessment: - few: + few: one: Poveikio įvertinimas other: Poveikio įvertinimai - overview: imported: - few: + few: one: Patalpinta - laukiama publikavimo other: Patalpinta - laukiama publikavimo independent_report: - few: + few: one: Nepriklausoma ataskaita other: Nepriklausomos ataskaitos - overview: international_development_fund: - few: + few: one: Tarptautinis plėtros finansavimas other: Tarptautinis plėtros finansavimas international_treaty: - few: + few: one: Tarptautinė sutartis other: Tarptautinės sutartys - overview: maib_report: - few: + few: one: Jūrų laivų avarijų tyrimo skyriaus ataskaita other: Jūrų laivų avarijų tyrimo skyriaus ataskaitos map: - few: + few: one: Žemėlapis other: Žemėlapiai - overview: medical_safety_alert: - few: + few: one: Įspėjimai dėl vaistų ir medicininių prietaisų, jų atšaukimas other: Įspėjimai dėl vaistų ir medicininių prietaisų, jų atšaukimas national: - few: + few: one: Nacionalinės statistikos pranešimas other: Nacionalinės statistikos pranešimai national_statistics: - few: + few: one: Statistika - nacionalinė statistika other: Statistika - nacionalinė statistika - overview: national_statistics_announcement: - few: + few: one: Nacionalinės statistikos pranešimas other: Nacionalinės statistikos pranešimai news_article: - few: + few: one: Straipsnis other: Straipsniai news_story: - few: + few: one: Naujiena other: Naujienos notice: - few: + few: one: Pranešimas other: Pranešimai - overview: official: - few: + few: one: Oficialios statistikos pranešimas other: Oficialios statistikos pranešimai official_statistics: - few: + few: one: Statistika other: Statistika - overview: official_statistics_announcement: - few: + few: one: Oficialios statistikos pranešimas other: Oficialios statistikos pranešimai open_consultation: - few: + few: one: Atvira konsultacija other: Atviros konsultacijos - overview: oral_statement: - few: + few: one: Žodinis kreipimasis į parlamentą other: Žodiniai kreipimaisi į parlamentą policy: - few: + few: one: Strategija other: Strategija policy_paper: - few: + few: one: Strategijos dokumentas other: Strategijų dokumentai - overview: press_release: - few: + few: one: Pranešimas spaudai other: Pranešimai spaudai promotional: - few: + few: one: Reklaminė medžiaga other: Reklaminė medžiaga - overview: publication: - few: + few: one: Leidinys other: Leidiniai raib_report: - few: + few: one: Traukinių avarijų tyrimo skyriaus ataskaita other: Traukinių avarijų tyrimo skyriaus ataskaitos regulation: - few: + few: one: Reglamentas other: Reglamentai - overview: research: - few: + few: one: Tyrimas ir analizė other: Tyrimai ir analizės - overview: residential_property_tribunal_decision: - few: + few: one: Gyvenamosios nuosavybės tribunolo sprendimas other: Gyvenamosios nuosavybės tribunolo sprendimai service_sign_in: - few: + few: one: Prisijungti prie paslaugos other: Prisijungti prie paslaugos service_standard_report: - few: + few: one: Standartinė paslaugos ataskaita other: Standartinės paslaugų ataskaitos speaking_notes: - few: + few: one: Kalbos santrauka other: Kalbos santrauka speech: - few: + few: one: Kalba other: Kalbos standard: - few: + few: one: Standartas other: Standartai - overview: statement_to_parliament: - few: + few: one: Kreipimasis į parlamentą other: Kreipimaisi į parlamentą statistical_data_set: - few: + few: one: Statistiniai duomenys other: Statistiniai duomenys statistics_announcement: - few: + few: one: Statistinių duomenų pranešimas other: Statistinių duomenų pranešimai statutory_guidance: - few: + few: one: Įstatyminė informacija other: Įstatyminė informacija - overview: take_part: - few: + few: one: Dalyvauti other: Dalyvauti tax_tribunal_decision: - few: + few: one: Mokesčių ir kanceliarijos tribunolo sprendimas other: Mokesčių ir kanceliarijos tribunolo sprendimai transcript: - few: + few: one: Kalbos tekstas other: Kalbų tekstai transparency: - few: + few: one: Skaidrumo informacija other: Skaidrumo informacija - overview: utaac_decision: - few: + few: one: Administracinių bylų apeliacijų tribunolo sprendimas other: Administracinių bylų apeliacijų tribunolo sprendimai world_location_news_article: - few: + few: one: Straipsnis other: Straipsniai world_news_story: - few: + few: one: Pasaulio naujienos other: Pasaulio naujienos written_statement: - few: + few: one: Rašytinis kreipimasis į parlamentą other: Rašytiniai kreipimaisi į parlamentą corporate_information_page: @@ -390,54 +367,54 @@ lt: social_media_use_html: Perskaitykite mūsų strategiją %{link}. welsh_language_scheme_html: Sužinokite apie mūsų įsipareigojimą skelbti %{link}. email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: Apsaugos ministerijos herbas field_of_operation: Veiklos sritis operations_in: Veikla vykdoma %{location} get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: Nebepasiekiama published_in_error: Šio puslapio informacija buvo pašalinta, kadangi ji buvo publikuota per klaidą. @@ -453,74 +430,74 @@ lt: 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ą. i18n: - direction: + direction: language_names: - ar: - az: - be: - bg: - bn: - cs: - cy: - da: - de: - dr: - el: - en: - es: - es-419: - et: - fa: - fi: - fr: - gd: - gu: - he: - hi: - hr: - hu: - hy: - id: - is: - it: - ja: - ka: - kk: - ko: + ar: + az: + be: + bg: + bn: + cs: + cy: + da: + de: + dr: + el: + en: + es: + es-419: + et: + fa: + fi: + fr: + gd: + gu: + he: + hi: + hr: + hu: + hy: + id: + is: + it: + ja: + ka: + kk: + ko: lt: Lietuvių - lv: - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: - th: - tk: - tr: - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: + th: + tk: + tr: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: Kitas previous_page: Ankstesnis @@ -528,7 +505,7 @@ lt: publication: details: Informacija documents: - few: + few: one: Dokumentas other: Dokumentai service_sign_in: diff --git a/config/locales/lv.yml b/config/locales/lv.yml index da8511f20..ec793488a 100644 --- a/config/locales/lv.yml +++ b/config/locales/lv.yml @@ -41,7 +41,7 @@ lv: feedback_received: Atsauksme saņemta is_being: tiek not_open_yet: Šī konsultācija vēl nav atvērta - 'on': + 'on': opens: Šī konsultācija tiek atvērta original_consultation: Oriģinālā konsultācija ran_from: Šī konsultācija @@ -84,7 +84,6 @@ lv: closed_consultation: one: Slēgta tipa konsultācija other: Slēgta tipa konsultācijas - overview: cma_case: one: Konkurences un tirgus iestādes lieta other: Konkurences un tirgus iestādes lietas @@ -97,25 +96,21 @@ lv: consultation_outcome: one: Konsultāciju rezultāts other: Konsultāciju rezultāti - overview: corporate_information_page: one: Informācijas lapa other: Informācijas lapas corporate_report: one: Korporatīvais ziņojums other: Korporatīvie ziņojumi - overview: correspondence: one: Sarakste other: Sarakstes - overview: countryside_stewardship_grant: one: Lauku vides pārvaldības grants other: Lauku vides pārvaldības granti decision: one: Lēmums other: Lēmumi - overview: detailed_guide: one: Detalizētas norādes other: Detalizētas norādes @@ -146,43 +141,36 @@ lv: foi_release: one: Informācijas atklātības datu publicēšana other: Informācijas atklātības datu publicēšana - overview: form: one: Forma other: Formas - overview: government_response: one: Valdības atbilde other: Valdības atbildes guidance: one: Norādes other: Norādes - overview: impact_assessment: one: Ietekmes novērtējums other: Ietekmes novērtējumi - overview: imported: one: importēts-gaidīšanas režīmā other: importēts-gaidīšanas režīmā independent_report: one: Neatkarīgs ziņojums other: Neatkarīgi ziņojumi - overview: international_development_fund: one: Starptautiskās attīstības finansējums other: Starptautiskās attīstības finansējums international_treaty: one: Starptautiskais līgums other: Starptautiskie līgumi - overview: maib_report: one: Kuģniecības negadījumu izmeklēšanas nodaļas ziņojums other: Kuģniecības negadījumu izmeklēšanas nodaļas ziņojumi map: one: Karte other: Kartes - overview: medical_safety_alert: one: Brīdinājumi un zāļu un medicīnas ierīču atsaukšana other: Brīdinājumi un zāļu un medicīnas ierīču atsaukšana @@ -192,7 +180,6 @@ lv: national_statistics: one: Statistika - valsts dati other: Statistika - valsts dati - overview: national_statistics_announcement: one: Paziņojums par valsts statistiku other: Paziņojumi par valsts statistiku @@ -205,21 +192,18 @@ lv: notice: one: Paziņojums other: Paziņojumi - overview: official: one: Paziņojums par oficiālo statistiku other: Paziņojumi par oficiālo statistiku official_statistics: one: Statistika other: Statistika - overview: official_statistics_announcement: one: Paziņojums par oficiālo statistiku other: Paziņojumi par oficiālo statistiku open_consultation: one: Atklāta konsultācija other: Atklātas konsultācijas - overview: oral_statement: one: Mutisks paziņojums parlamentam other: Mutiski paziņojumi parlamentam @@ -229,14 +213,12 @@ lv: policy_paper: one: Politikas dokuments other: Politikas dokumenti - overview: press_release: one: Paziņojums presei other: Paziņojumi presei promotional: one: Reklāmas materiāls other: Reklāmas materiāli - overview: publication: one: Publikācija other: Publikācijas @@ -246,11 +228,9 @@ lv: regulation: one: Regula other: Regulas - overview: research: one: Izpēte un analīze other: Izpēte un analīze - overview: residential_property_tribunal_decision: one: Mājokļu īpašuma lietu tiesas lēmums other: Mājokļu īpašuma lietu tiesas lēmumi @@ -269,7 +249,6 @@ lv: standard: one: Standarts other: Standarti - overview: statement_to_parliament: one: Ziņojums parlamentam other: Ziņojumi parlamentam @@ -282,7 +261,6 @@ lv: statutory_guidance: one: Saistošās vadlīnijas other: Saistošās vadlīnijas - overview: take_part: one: Piedalīties other: Piedalīties @@ -295,7 +273,6 @@ lv: transparency: one: Atklātības dati other: Atklātības dati - overview: utaac_decision: one: Administratīvo lietu apelācijas tiesas lēmums other: Administratīvo lietu apelācijas tiesas lēmumi @@ -316,54 +293,54 @@ lv: social_media_use_html: Iepazīsties ar mūsu nostāju par %{link}. welsh_language_scheme_html: Vairāk par mūsu apņemšanos nodrošināt informācijas pieejamību %{link}. email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: Aizsardzības ministrijas ģerbonis field_of_operation: Darbības joma operations_in: 'Darbības šeit: %{location}' get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: Vairs nav pieejams published_in_error: Informācija šajā lapā ir noņemta, jo tā tika publicēta kļūdas dēļ. @@ -379,74 +356,74 @@ lv: 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. i18n: - direction: + direction: language_names: - ar: - az: - be: - bg: - bn: - cs: - cy: - da: - de: - dr: - el: - en: - es: - es-419: - et: - fa: - fi: - fr: - gd: - gu: - he: - hi: - hr: - hu: - hy: - id: - is: - it: - ja: - ka: - kk: - ko: - lt: + ar: + az: + be: + bg: + bn: + cs: + cy: + da: + de: + dr: + el: + en: + es: + es-419: + et: + fa: + fi: + fr: + gd: + gu: + he: + hi: + hr: + hu: + hy: + id: + is: + it: + ja: + ka: + kk: + ko: + lt: lv: Latviešu - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: - th: - tk: - tr: - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: + th: + tk: + tr: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: Tālāk previous_page: Atpakaļ diff --git a/config/locales/mt.yml b/config/locales/mt.yml index 763073fb2..50430348a 100644 --- a/config/locales/mt.yml +++ b/config/locales/mt.yml @@ -41,7 +41,7 @@ mt: feedback_received: Feedback li wasal is_being: qed jiġi not_open_yet: Din il-konsultazzjoni għada m'hijiex miftuħa - 'on': + 'on': opens: Din il-konsultazzjoni tiftaħ original_consultation: Konsultazzjoni oriġinali ran_from: Din il-konsultazzjoni bdiet minn @@ -64,396 +64,373 @@ mt: updated: Aġġornat schema_name: aaib_report: - few: - many: + few: + many: one: Rapport tal-Fergħa dwar l-Investigazzjoni tal-Aċċidenti tal-Arju other: Rapporti tal-Fergħa dwar l-investigazzjoni tal-Aċċidenti tal-Arju announcement: - few: - many: + few: + many: one: Avviż other: Avviżi asylum_support_decision: - few: - many: + few: + many: one: Deċiżjoni tat-tribunal għall-għajnuna għall-ażil other: Deċiżjonijiet tat-tribunal għall-għajnuna għall-ażil authored_article: - few: - many: + few: + many: one: Artiklu miktub other: Artikli miktuba business_finance_support_scheme: - few: - many: + few: + many: one: Skema ta' għajnuna għall-finanzjament tan-negozju other: Skemi ta' għajnuna għall-finanzjament tan-negozju case_study: - few: - many: + few: + many: one: Studju ta' Każ other: Studju ta' Każijiet closed_consultation: - few: - many: + few: + many: one: Konsultazzjoni magħluqa other: Konsultazzjonijiet magħluqa - overview: cma_case: - few: - many: + few: + many: one: Każ tal-Awtorità għall-Kompetizzjoni u s-Swieq other: Każijiet tal-Awtorità għall-Kompetizzjoni u s-Swieq coming_soon: - few: - many: + few: + many: one: Ġejjin dalwaqt other: Ġejjin dalwaqt consultation: - few: - many: + few: + many: one: Konsultazzjoni other: Konsultazzjonijiet consultation_outcome: - few: - many: + few: + many: one: Riżultat tal-konsultazzjoni other: Riżultati tal-konsultazzjoni - overview: corporate_information_page: - few: - many: + few: + many: one: Paġna ta' informazzjoni other: Paġni ta' informazzjoni corporate_report: - few: - many: + few: + many: one: Rapport korporattiv other: Rapporti korporattivi - overview: correspondence: - few: - many: + few: + many: one: Korrispondenza other: Korrispondenzi - overview: countryside_stewardship_grant: - few: - many: + few: + many: one: Għotja ta' flus għall-Amministrazzjoni tal-Kampanja other: Għotjiet ta' flus għall-Amministrazzjoni tal-Kampanja decision: - few: - many: + few: + many: one: Deċiżjoni other: Deċiżjonijiet - overview: detailed_guide: - few: - many: + few: + many: one: Gwida other: Gwida dfid_research_output: - few: - many: + few: + many: one: Output għar-Riċerka tal-Iżvilupp other: Outputs għar-Riċerka tal-Iżvilupp document_collection: - few: - many: + few: + many: one: Kollezzjoni other: Kollezzjonijiet draft_text: - few: - many: + few: + many: one: Abbozz ta' test other: Abbozz ta' testijiet drug_safety_update: - few: - many: + few: + many: one: Aġġornament dwar is-Sigurtà tal-Mediċini other: Aġġornamenti dwar is-Sigurtà tal-Mediċini employment_appeal_tribunal_decision: - few: - many: + few: + many: one: Deċiżjoni ta' appell tat-tribunal għall-impjiegi other: Deċiżjonijiet ta' appell tat-tribunal għall-impjiegi employment_tribunal_decision: - few: - many: + few: + many: one: Deċiżjoni tat-tribunal għall-impjiegi other: Deċiżjonijiet tat-tribunal għall-impjiegi esi_fund: - few: - many: + few: + many: one: Fond Ewropew Strutturali u għall-Investiment (ESIF) other: Fondi Ewropew Strutturali u għall-Investiment (ESIF) fatality_notice: - few: - many: + few: + many: one: Avviż dwar fatalità other: Avviżi dwar fatalitajiet foi_release: - few: - many: + few: + many: one: Stqarrija tal-Libertà għall-Informazzjoni other: Stqarrijiet tal-Libertà għall-Informazzjoni - overview: form: - few: - many: + few: + many: one: Formola other: Formoli - overview: government_response: - few: - many: + few: + many: one: Risposta tal-Gvern other: Risposti tal-Gvern guidance: - few: - many: + few: + many: one: Gwida other: Gwida - overview: impact_assessment: - few: - many: + few: + many: one: Assessjar tal-impatt other: Assessjar tal-impatt - overview: imported: - few: - many: + few: + many: one: importat - tip mistenni other: importat - tip mistenni independent_report: - few: - many: + few: + many: one: Rapport indipendenti other: Rapporti indipendenti - overview: international_development_fund: - few: - many: + few: + many: one: Fondi għall-Iżvilupp internazzjonali other: Fondi għall-Iżvilupp internazzjonali international_treaty: - few: - many: + few: + many: one: Trattat internazzjonali other: Trattati internazzjonali - overview: maib_report: - few: - many: + few: + many: one: Rapport tal-Fergħa dwar l-Investigazzjoni tal-Aċċidenti marittimi other: Rapporti tal-Fergħa dwar l-Investigazzjoni tal-Aċċidenti tal-Arju map: - few: - many: + few: + many: one: Mappa other: Mapep - overview: medical_safety_alert: - few: - many: + few: + many: one: Twissijiet u sejħiet lura għal mediċina u tagħmir ta' mediku other: Twissijiet u sejħiet lura għal mediċina u tagħmir ta' mediku national: - few: - many: + few: + many: one: Avviż dwar statistiċi nazzjonali other: Avviżi dwar statistiċi nazzjonali national_statistics: - few: - many: + few: + many: one: Statistiċi nazzjonali other: Statistiċi nazzjonali - overview: national_statistics_announcement: - few: - many: + few: + many: one: Avviż tal-istatistiċi nazzjonali other: Avviżi tal-istatistiċi nazzjonali news_article: - few: - many: + few: + many: one: Artiklu bl-aħbarijiet other: Artikli bl-aħbarijiet news_story: - few: - many: + few: + many: one: Storja aħbar other: Stejjer aħbar notice: - few: - many: + few: + many: one: Avviż other: Avviżi - overview: official: - few: - many: + few: + many: one: Avviż dwar statistiċi uffiċjali other: Avviżi dwar statistiċi uffiċjali official_statistics: - few: - many: + few: + many: one: Statistiċi uffiċjali other: Statistiċi uffiċjali - overview: official_statistics_announcement: - few: - many: + few: + many: one: Avviż dwar l-istatistiċi uffiċjali other: Avviżi dwar l-istatistiċi uffiċjali open_consultation: - few: - many: + few: + many: one: Konsultazzjoni miftuħa other: Konsultazzjonijiet miftuħa - overview: oral_statement: - few: - many: + few: + many: one: Dikjarazzjoni verbali lill-Parlament other: Dikjarazzjonijiet verbali lill-Parlament policy: - few: - many: + few: + many: one: Politika other: Politiċi policy_paper: - few: - many: + few: + many: one: Dokument tal-Politika other: Dokumenti tal-Politika - overview: press_release: - few: - many: + few: + many: one: Stqarrija għall-istampa other: Stqarrijiet għall-istampa promotional: - few: - many: + few: + many: one: Materjal promozzjonali other: Materjal promozzjonali - overview: publication: - few: - many: + few: + many: one: Pubblikazzjoni other: Pubblikazzjonijiet raib_report: - few: - many: + few: + many: one: Rapport tal-fergħa dwar investigazzjoni ta' aċċident bil-ferrovija other: Rapporti tal-fergħa dwar investigazzjoni ta' aċċident bil-ferrovija regulation: - few: - many: + few: + many: one: Regolament other: Regolamenti - overview: research: - few: - many: + few: + many: one: Riċerka u analiżi other: Riċerka u analiżi - overview: residential_property_tribunal_decision: - few: - many: + few: + many: one: Deċiżjoni tat-tribunal dwar propjetà residenzjali other: Deċiżjonijiet tat-tribunal dwar propjetà residenzjali service_sign_in: - few: - many: + few: + many: one: Sign in tas-servizz other: Sign in tas-servizz service_standard_report: - few: - many: + few: + many: one: Rapport standard tas-servizz other: Rapporti standard tas-servizz speaking_notes: - few: - many: + few: + many: one: Noti għad-diskors other: Noti għad-diskors speech: - few: - many: + few: + many: one: Diskors other: Diskorsi standard: - few: - many: + few: + many: one: Standard other: Standards - overview: statement_to_parliament: - few: - many: + few: + many: one: Dikjarazzjoni lill-Parlament other: Dikjarazzjonijiet lill-Parlament statistical_data_set: - few: - many: + few: + many: one: Sett tad-dejta bl-istatistika other: Settijiet tad-dejta bl-istatistika statistics_announcement: - few: - many: + few: + many: one: Avviż dwar ir-rilaxx ta' statistika other: Avviżi dwar ir-rilaxx ta' statistika statutory_guidance: - few: - many: + few: + many: one: Gwida statutorja other: Gwida statutorja - overview: take_part: - few: - many: + few: + many: one: Ħu sehem other: Ħu sehem tax_tribunal_decision: - few: - many: + few: + many: one: Deċiżjoni tat-Tribunal dwar taxxa u kanċellerija other: Deċiżjonijiet tat-tribunal dwar taxxa u kanċellerija transcript: - few: - many: + few: + many: one: Transkript other: Transkripts transparency: - few: - many: + few: + many: one: Dejta dwar it-trasparenza other: Dejta dwar it-trasparenza - overview: utaac_decision: - few: - many: + few: + many: one: Deċiżjoni tal-qorti dwar appelli amministrattivi other: Deċiżjonijiet tal-qorti dwar appelli amministrattivi world_location_news_article: - few: - many: + few: + many: one: Artiklu bl-aħbarijiet other: Artikli bl-aħbarijiet world_news_story: - few: - many: + few: + many: one: Storja b'aħbarijiet mid-dinja other: Stejjer b'aħbarijiet mid-dinja written_statement: - few: - many: + few: + many: one: Dikjarazzjoni bil-miktub lill-Parlament other: Dikjarazzjonijiet bil-miktub lill-Parlament corporate_information_page: @@ -464,54 +441,54 @@ mt: social_media_use_html: Aqra l-politika tagħna fuq %{link}. welsh_language_scheme_html: Kun af dwar l-impenn tagħna lejn %{link}. email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: Il-Ministeru tad-Difiża field_of_operation: Qasam tal-operazzjoni operations_in: Operazzjonijiet fil- %{location} get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: Mhuwiex iktar disponibbli published_in_error: L-informazzjoni fuq din il-paġna tneħħiet għax ġiet ippubblikata bi żball. @@ -527,74 +504,74 @@ mt: 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. i18n: - direction: + direction: language_names: - ar: - az: - be: - bg: - bn: - cs: - cy: - da: - de: - dr: - el: - en: - es: - es-419: - et: - fa: - fi: - fr: - gd: - gu: - he: - hi: - hr: - hu: - hy: - id: - is: - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: + ar: + az: + be: + bg: + bn: + cs: + cy: + da: + de: + dr: + el: + en: + es: + es-419: + et: + fa: + fi: + fr: + gd: + gu: + he: + hi: + hr: + hu: + hy: + id: + is: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: mt: Malti - ne: - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: - th: - tk: - tr: - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + ne: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: + th: + tk: + tr: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: Li jmiss previous_page: Ta' qabel @@ -602,8 +579,8 @@ mt: publication: details: Dettalji documents: - few: - many: + few: + many: one: Dokument other: Dokumenti tal-Politika service_sign_in: diff --git a/config/locales/ne.yml b/config/locales/ne.yml index 4f245ea4e..5c6bb6fd9 100644 --- a/config/locales/ne.yml +++ b/config/locales/ne.yml @@ -41,7 +41,7 @@ ne: feedback_received: प्रतिक्रिया प्राप्त भयो is_being: हुँदैछ not_open_yet: यो परामर्श अझै खुलेको छैन - 'on': + 'on': opens: यो परामर्श खुल्छ original_consultation: मूल परामर्श ran_from: यो परामर्श बाट चलेको हो @@ -84,7 +84,6 @@ ne: closed_consultation: one: बन्द परामर्श other: बन्द परामर्शहरू - overview: cma_case: one: प्रतिस्पर्धा र बजार प्राधिकरण मामिला other: प्रतिस्पर्धा र बजार प्राधिकरण मामिलाहरु @@ -97,25 +96,21 @@ ne: consultation_outcome: one: परामर्श परिणाम other: परामर्श परिणामहरू - overview: corporate_information_page: one: जानकारी पृष्ठ other: जानकारी पृष्ठहरू corporate_report: one: निगम प्रतिवेदन other: निगम प्रतिवेदनहरू - overview: correspondence: one: पत्राचार other: पत्राचारहरू - overview: countryside_stewardship_grant: one: ग्रामीण क्षेत्र संचालन अनुदान other: ग्रामीण क्षेत्र संचालन अनुदानहरू decision: one: निर्णय other: निर्णयहरु - overview: detailed_guide: one: मार्गदर्शन other: मार्गदर्शन @@ -146,43 +141,36 @@ ne: foi_release: one: जानकारीको स्वतन्त्रता विज्ञप्ति other: जानकारीको स्वतन्त्रता विज्ञप्तिहरू - overview: form: one: फारम other: फारमहरु - overview: government_response: one: सरकारको प्रतिक्रिया other: सरकारको प्रतिक्रियाहरू guidance: one: मार्गदर्शन other: मार्गदर्शन - overview: impact_assessment: one: प्रभाव मूल्यांकन other: प्रभाव मूल्यांकनहरू - overview: imported: one: आयातित - प्रतीक्षा प्रकार other: आयातित - प्रतीक्षा प्रकार independent_report: one: स्वतन्त्र प्रतिवेदन other: स्वतन्त्र प्रतिवेदनहरू - overview: international_development_fund: one: अन्तर्राष्ट्रिय विकास कोष other: अन्तर्राष्ट्रिय विकास कोष international_treaty: one: अन्तर्राष्ट्रिय सन्धि other: अन्तर्राष्ट्रिय सन्धिहरु - overview: maib_report: one: समुद्री दुर्घटना अनुसन्धान शाखा प्रतिवेदन other: समुद्री दुर्घटना अनुसन्धान शाखा प्रतिवेदनहरू map: one: नक्शा other: नक्साहरू - overview: medical_safety_alert: one: औषधि र चिकित्सा उपकरणहरुको लागी चेतावनी र फिर्तीहरू other: औषधि र चिकित्सा उपकरणहरुको लागी चेतावनी र फिर्तीहरू @@ -192,7 +180,6 @@ ne: national_statistics: one: राष्ट्रिय तथ्याङ्क other: राष्ट्रिय तथ्याङ्क - overview: national_statistics_announcement: one: राष्ट्रिय तथ्याङ्क घोषणा other: राष्ट्रिय तथ्याङ्क घोषणाहरू @@ -205,21 +192,18 @@ ne: notice: one: सूचना other: सूचनाहरु - overview: official: one: आधिकारिक तथ्याङ्क घोषणा other: आधिकारिक तथ्याङ्क घोषणाहरु official_statistics: one: आधिकारिक तथ्याङ्क other: आधिकारिक तथ्याङ्क - overview: official_statistics_announcement: one: आधिकारिक तथ्याङ्क घोषणा other: आधिकारिक तथ्याङ्क घोषणाहरु open_consultation: one: खुला परामर्श other: खुला परामर्शहरू - overview: oral_statement: one: संसदमा मौखिक वक्तव्य other: 'संसदमा मौखिक वक्तव्यहरू ' @@ -229,14 +213,12 @@ ne: policy_paper: one: नीति पत्र other: नीति पत्रहरू - overview: press_release: one: प्रेस विज्ञप्ति other: प्रेस विज्ञप्तिहरू promotional: one: प्रचार सामग्री other: प्रचार सामग्री - overview: publication: one: प्रकाशन other: प्रकाशनहरु @@ -246,11 +228,9 @@ ne: regulation: one: नियम other: नियमहरु - overview: research: one: अनुसन्धान र विश्लेषण other: अनुसन्धान र विश्लेषण - overview: residential_property_tribunal_decision: one: आवासीय सम्पत्ति न्यायाधिकरण निर्णय other: आवासीय सम्पत्ति न्यायाधिकरण निर्णयहरू @@ -269,7 +249,6 @@ ne: standard: one: मानक other: मानकहरू - overview: statement_to_parliament: one: संसदको वक्तव्य other: संसदमा वक्तव्यहरू @@ -282,7 +261,6 @@ ne: statutory_guidance: one: वैधानिक मार्गदर्शन other: वैधानिक मार्गदर्शन - overview: take_part: one: सहभागी हुनु other: सहभागी हुनु @@ -295,7 +273,6 @@ ne: transparency: one: पारदर्शिता जानकारी other: पारदर्शिता जानकारी - overview: utaac_decision: one: प्रशासनिक अपील न्यायाधिकरण निर्णय other: प्रशासनिक अपील न्यायाधिकरण निर्णयहरू @@ -316,54 +293,54 @@ ne: social_media_use_html: "%{link} मा हाम्रो नीति पढ्नुहोस्।" welsh_language_scheme_html: "%{link} को हाम्रो प्रतिबद्धताको बारेमा जानकारी पाउनुहोस्।" email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: रक्षा मन्त्रालय क्रेस्ट field_of_operation: सञ्चालन क्षेत्र operations_in: "%{location} मा सञ्चालन" get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: अब उपलब्ध छैन published_in_error: यस पृष्ठमा रहेको जानकारी हटाइएको छ किनभने त्यो त्रुटीपूर्ण तरिकाले प्रकाशित भएको थियो। @@ -379,74 +356,74 @@ ne: licence_html: 'यो प्रकाशन कुनै ठाउँमा तोकिएको बाहेक खुला सरकार इजाजतपत्र v3.0 को शर्तहरु अन्तर्गत इजाजतपत्र प्राप्त छ। यो इजाजतपत्र हेर्नको लागी nationalarchives.gov.uk/doc/open-government-licence/version/3 मा जानुहोस् वा सूचना नीति टोलि, राष्ट्रिय अभिलेखालय, किउ, लन्डन TW9 4DU मा पत्र लेख्नुहोस् वा ईमेल पठाउनुहोस्: psi@nationalarchives.gov.uk.' third_party: यदि हामीले कुनै तेस्रो पक्ष प्रतिलिपि अधिकार जानकारीको पहिचान गरेका छौं भने तपाईंले सम्बन्धित प्रतिलिपि अधिकार धारकहरु बाट अनुमति प्राप्त गर्न आवश्यक छ। i18n: - direction: + direction: language_names: - ar: - az: - be: - bg: - bn: - cs: - cy: - da: - de: - dr: - el: - en: - es: - es-419: - et: - fa: - fi: - fr: - gd: - gu: - he: - hi: - hr: - hu: - hy: - id: - is: - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: + ar: + az: + be: + bg: + bn: + cs: + cy: + da: + de: + dr: + el: + en: + es: + es-419: + et: + fa: + fi: + fr: + gd: + gu: + he: + hi: + hr: + hu: + hy: + id: + is: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: ne: नेपाली - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: - th: - tk: - tr: - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: + th: + tk: + tr: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: अर्को previous_page: अघिल्लो diff --git a/config/locales/nl.yml b/config/locales/nl.yml index 6a4bc83d9..12369948f 100644 --- a/config/locales/nl.yml +++ b/config/locales/nl.yml @@ -41,7 +41,7 @@ nl: feedback_received: Ontvangen feedback is_being: wordt not_open_yet: Deze raadpleging is nog niet geopend - 'on': + 'on': opens: Deze raadpleging wordt geopend original_consultation: Oorspronkelijke raadpleging ran_from: Deze raadpleging liep van @@ -84,7 +84,6 @@ nl: closed_consultation: one: Gesloten overleg other: Gesloten raadplegingen - overview: cma_case: one: Mededingings- en marktautoriteit zaak other: Mededinging en Markten Autoriteit zaken @@ -97,25 +96,21 @@ nl: consultation_outcome: one: Uitkomsten raadpleging other: Overleg uitkomsten - overview: corporate_information_page: one: Informatie pagina other: Informatie pagina's corporate_report: one: Ondernemingsverslag other: Bedrijfsverslagen - overview: correspondence: one: Correspondentie other: Correspondentie - overview: countryside_stewardship_grant: one: Subsidie voor Countryside Stewardship other: Subsidies in het kader van het Countryside Stewardship decision: one: Besluit other: Besluiten - overview: detailed_guide: one: Richtsnoer other: Begeleiding @@ -146,43 +141,36 @@ nl: foi_release: one: Vrijheid van informatie-vrijgave other: Vrijheid van informatie-vrijgaven - overview: form: one: Formulier other: Formulieren - overview: government_response: one: Overheidsantwoord other: Overheidsantwoorden guidance: one: Richtlijn other: Richtlijn - overview: impact_assessment: one: Effectbeoordeling other: Effectbeoordelingen - overview: imported: one: ingevoerd - in afwachting van type other: ingevoerd - in afwachting van type independent_report: one: Onafhankelijk rapport other: Onafhankelijke rapporten - overview: international_development_fund: one: Internationale ontwikkelingsfinanciering other: Internationale ontwikkelingsfinanciering international_treaty: one: Internationaal verdrag other: Internationale verdragen - overview: maib_report: one: Marine ongevallen onderzoek branch rapport other: Marine ongevallen onderzoek branch rapporten map: one: Kaart other: Kaarten - overview: medical_safety_alert: one: Waarschuwingen en terugroepingen voor geneesmiddelen en medische hulpmiddelen other: Waarschuwingen en terugroepingen voor geneesmiddelen en medische hulpmiddelen @@ -192,7 +180,6 @@ nl: national_statistics: one: Nationale statistieken other: Nationale statistieken - overview: national_statistics_announcement: one: Aankondigingen nationale statistieken other: Aankondigingen nationale statistieken @@ -205,21 +192,18 @@ nl: notice: one: Mededeling other: Mededelingen - overview: official: one: Officiële statistieken aankondiging other: Officiële statistieken aankondigingen official_statistics: one: Officiële statistieken other: Officiële statistieken - overview: official_statistics_announcement: one: Aankondiging van officiële statistieken other: Aankondigingen van officiële statistieken open_consultation: one: Open raadpleging other: Open raadplegingen - overview: oral_statement: one: Mondelinge verklaring voor het Parlement other: Mondelinge verklaringen aan het Parlement @@ -229,14 +213,12 @@ nl: policy_paper: one: Beleidsnota other: Beleidsnota's - overview: press_release: one: Persbericht other: Persberichten promotional: one: Promotiemateriaal other: Promotiemateriaal - overview: publication: one: Publicatie other: Publicaties @@ -246,11 +228,9 @@ nl: regulation: one: Regelgeving other: Regelgeving - overview: research: one: Onderzoek en analyse other: Onderzoek en analyse - overview: residential_property_tribunal_decision: one: Beslissing van de rechtbank voor woningen other: Beslissingen van de rechtbank voor woningen @@ -269,7 +249,6 @@ nl: standard: one: Standaard other: Standaarden - overview: statement_to_parliament: one: Verklaring voor het Parlement other: Verklaringen voor het Parlement @@ -282,7 +261,6 @@ nl: statutory_guidance: one: Statutaire richtsnoeren other: Statutaire richtsnoeren - overview: take_part: one: Neem deel other: Deelnemen @@ -295,7 +273,6 @@ nl: transparency: one: Transparantiegegevens other: Transparantiegegevens - overview: utaac_decision: one: Beslissing van de rechtbank voor administratief beroep other: Beslissingen van de rechtbank voor administratief beroep @@ -316,54 +293,54 @@ nl: social_media_use_html: Lees ons beleid inzake %{link}. welsh_language_scheme_html: Lees meer over onze inzet voor %{link}. email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: Wapen van het ministerie van Defensie field_of_operation: Gebied van operatie operations_in: Operaties in %{location} get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: Niet langer beschikbaar published_in_error: De informatie op deze pagina is verwijderd omdat deze abusievelijk is gepubliceerd. @@ -379,74 +356,74 @@ nl: 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. i18n: - direction: + direction: language_names: - ar: - az: - be: - bg: - bn: - cs: - cy: - da: - de: - dr: - el: - en: - es: - es-419: - et: - fa: - fi: - fr: - gd: - gu: - he: - hi: - hr: - hu: - hy: - id: - is: - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: + ar: + az: + be: + bg: + bn: + cs: + cy: + da: + de: + dr: + el: + en: + es: + es-419: + et: + fa: + fi: + fr: + gd: + gu: + he: + hi: + hr: + hu: + hy: + id: + is: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: nl: Nederlands - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: - th: - tk: - tr: - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: + th: + tk: + tr: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: Volgende previous_page: Vorige diff --git a/config/locales/no.yml b/config/locales/no.yml index 6b9b83737..dfb66123d 100644 --- a/config/locales/no.yml +++ b/config/locales/no.yml @@ -41,7 +41,7 @@ feedback_received: Tilbakemelding mottatt is_being: blir not_open_yet: Denne konsultasjonen er ikke åpen ennå - 'on': + 'on': opens: Denne konsultasjonen åpner original_consultation: Opprinnelig konsultasjon ran_from: Denne konsultasjonen varte fra @@ -84,7 +84,6 @@ closed_consultation: one: Lukket konsultasjon other: Lukkede konsultasjoner - overview: cma_case: one: Konkurranse- og markedstilsynsak other: Konkurranse- og markedstilsynsaker @@ -97,25 +96,21 @@ consultation_outcome: one: Konsultasjonsresultat other: Konsultasjonsresultater - overview: corporate_information_page: one: Informasjonsside other: Informasjonssider corporate_report: one: Bedriftsrapport other: Bedriftsrapporter - overview: correspondence: one: Korrespondanse other: Korrespondanser - overview: countryside_stewardship_grant: one: Countryside Stewardship-stipend other: Tilskudd fra Countryside Stewardship-stipend decision: one: Beslutning other: Beslutninger - overview: detailed_guide: one: Veiledning other: Veiledning @@ -146,43 +141,36 @@ foi_release: one: Informasjonsfrihetstillatelse other: Informasjonsfrihetstillatelser - overview: form: one: Skjema other: Skjemaer - overview: government_response: one: Myndighetenes svar other: Myndighetenes svar guidance: one: Veiledning other: Veiledning - overview: impact_assessment: one: Konsekvensutredning other: Konsekvensanalyser - overview: imported: one: importert - venter på type other: importert - venter på type independent_report: one: Uavhengig rapport other: Uavhengige rapporter - overview: international_development_fund: one: Finansiering for internasjonal utvikling other: Finansiering for internasjonal utvikling international_treaty: one: Internasjonal traktat other: Internasjonale traktater - overview: maib_report: one: Rapport fra havulykkeundersøkelsesavdelingen other: Rapporter fra havulykkeundersøkelsesavdelingen map: one: Kart other: Kart - overview: medical_safety_alert: one: Varsler og tilbakekallinger for medisiner og medisinsk utstyr other: Varsler og tilbakekallinger for medisiner og medisinsk utstyr @@ -192,7 +180,6 @@ national_statistics: one: Nasjonal statistikk other: Nasjonal statistikk - overview: national_statistics_announcement: one: Nasjonal statistikkmelding other: Nasjonale statistikkmeldinger @@ -205,21 +192,18 @@ notice: one: Merknad other: Merknader - overview: official: one: Kunngjøring om offisiell statistikk other: Kunngjøringer om offisiell statistikk official_statistics: one: Offisiell statistikk other: Offisiell statistikk - overview: official_statistics_announcement: one: Kunngjøring om offisiell statistikk other: Kunngjøringer om offisiell statistikk open_consultation: one: Åpen konsultasjon other: Åpne konsultasjoner - overview: oral_statement: one: Muntlig uttalelse til Stortinget other: Muntlige uttalelser til Stortinget @@ -229,14 +213,12 @@ policy_paper: one: Skriv om retningslinjer other: Skriv om retningslinjer - overview: press_release: one: Pressemelding other: Pressemeldinger promotional: one: Reklamemateriell other: Reklamemateriell - overview: publication: one: Publikasjoner other: Publikasjoner @@ -246,11 +228,9 @@ regulation: one: Forskrift other: Forskrifter - overview: research: one: Forskning og analyse other: Forskning og analyse - overview: residential_property_tribunal_decision: one: Beslutning fra boligeiendomsnemnda other: Beslutninger fra boligeiendomsnemnda @@ -269,7 +249,6 @@ standard: one: Standard other: Standarder - overview: statement_to_parliament: one: Erklæring til Stortinget other: Erklæringer til Stortinget @@ -282,7 +261,6 @@ statutory_guidance: one: Lovpålagt veiledning other: Lovpålagt veiledning - overview: take_part: one: Delta other: Delta @@ -295,7 +273,6 @@ transparency: one: Åpenhetsdata other: Åpenhetsdata - overview: utaac_decision: one: Administrativ ankenemndavgjørelse other: Administrative ankenemndavgjørelser @@ -316,54 +293,54 @@ social_media_use_html: Les retningslinjene våre på %{link}. welsh_language_scheme_html: Finn ut mer om vårt engasjement for %{link}. email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: Forsvarsdepartementets crest field_of_operation: Operasjonsfelt operations_in: Operasjoner i %{location} get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: Ikke lenger tilgjengelig published_in_error: Informasjonen på denne siden er fjernet fordi den ble publisert ved en feil. @@ -379,74 +356,74 @@ 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. i18n: - direction: + direction: language_names: - ar: - az: - be: - bg: - bn: - cs: - cy: - da: - de: - dr: - el: - en: - es: - es-419: - et: - fa: - fi: - fr: - gd: - gu: - he: - hi: - hr: - hu: - hy: - id: - is: - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: - nl: + ar: + az: + be: + bg: + bn: + cs: + cy: + da: + de: + dr: + el: + en: + es: + es-419: + et: + fa: + fi: + fr: + gd: + gu: + he: + hi: + hr: + hu: + hy: + id: + is: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: + nl: 'no': norsk - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: - th: - tk: - tr: - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: + th: + tk: + tr: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: Neste previous_page: Forrige diff --git a/config/locales/pa-pk.yml b/config/locales/pa-pk.yml index 62e3b73e7..2954748cb 100644 --- a/config/locales/pa-pk.yml +++ b/config/locales/pa-pk.yml @@ -41,7 +41,7 @@ pa-pk: feedback_received: جواب مل گیا is_being: ایہ وی not_open_yet: ایہ مشاورت ہلے نئیں کُھلی - 'on': + 'on': opens: ایہ مشاورت کُھل گئی اے original_consultation: اصلی مشاورت ran_from: ایہ مشاورت داچلایا ہویا فارم اے @@ -84,7 +84,6 @@ pa-pk: closed_consultation: one: مشاورت بند ہوئی other: مشاورت بند ہوئی - overview: cma_case: one: مقابلہ تے منڈی دے اختیار دا مقدمہ other: مقابلہ تے منڈی دے اختیار دے مقدمے @@ -97,25 +96,21 @@ pa-pk: consultation_outcome: one: مشورے دا نتیجہ other: مشورے دے نتائج - overview: corporate_information_page: one: خبراں دا ورقہ other: خبراں دا ورقے corporate_report: one: کاروبار دی رپورٹ other: کاروبار دیاں رپورٹاں - overview: correspondence: one: خط وکتابت other: خط وکتابت - overview: countryside_stewardship_grant: one: پنڈ دی چوکیداری لئی مدد other: پند دی چوکیداری لئی امداد decision: one: فیصلہ other: فیصلے - overview: detailed_guide: one: 'رہنمائی ' other: 'رہنمائی ' @@ -146,43 +141,36 @@ pa-pk: foi_release: one: فریڈم آف انفارمیشن جاری کرنا other: فریڈم آف انفارمیشن جاری کرنا - overview: form: one: 'فارم ' other: فارمز - overview: government_response: one: حکومت دا جواب other: حکومت دے جوابات guidance: one: رہنمائی other: 'رہنمائی ' - overview: impact_assessment: one: اثر دی جانچ other: اثر دی جانچ - overview: imported: one: درآمد شُدہ- انتظار کرن دی قسم other: درآمد شُدہ- انتظار کرن دی قسم independent_report: one: خودمُختار رپورٹ other: خودمُختار رپورٹس - overview: international_development_fund: one: بین الاقوامی ترقی دا فنڈنگ other: بین الاقوامی ترقی دا فنڈنگ international_treaty: one: بین الاقوامی معاہدہ other: بین الاقوامی معایدے - overview: maib_report: one: بحری حادثے دی تفتیش دی برانچ دی رپورٹ other: بحری حادثے دی تفتیش دی برانچ دیاں رپورٹاں map: one: نقشہ other: نقشے - overview: medical_safety_alert: one: طبی آلات تے ادویات بارے ہُشیاری تے واپسی other: طبی آلات تے ادویات بارے ہُشیاری تے واپسی @@ -192,7 +180,6 @@ pa-pk: national_statistics: one: قومی اعدادوشمار other: قومی اعدادوشمار - overview: national_statistics_announcement: one: قومی اعدادوشمار دا اعلان other: قومی اعدادوشمار دے اعلانات @@ -205,21 +192,18 @@ pa-pk: notice: one: نوٹس other: ںوٹسز - overview: official: one: سرکاری اعدادوشمار دا اعلان other: سرکاری اعدادوشمار دے اعلانات official_statistics: one: سرکاری اعدادوشمار other: سرکاری اعدادوشمار - overview: official_statistics_announcement: one: سرکاری اعدادوشمار دا اعلان other: سرکاری اعدادوشمار دے اعلانات open_consultation: one: 'کُھلی مشاورت ' other: 'کُھلی مشاورت ' - overview: oral_statement: one: قومی مجلس دے سامنے زبانی بیان other: قومی مجلس دے سامنے زبانی بیانات @@ -229,14 +213,12 @@ pa-pk: policy_paper: one: حکمت عملی دا کاغذ other: حکمتِ عملی دے کاغذات - overview: press_release: one: خبراں دینا other: خبراں دینا promotional: one: اشتہاری مواد other: اشتہاری مواد - overview: publication: one: مطبوعہ other: مطبوعات @@ -246,11 +228,9 @@ pa-pk: regulation: one: قانون other: قوانین - overview: research: one: 'کھوج تے تجزیہ ' other: 'کھوج تے تجزیہ ' - overview: residential_property_tribunal_decision: one: رہائشی جائیداد دی عدالت دا فیصلہ other: رہائشی جائیداد دی عدالت دے فیصلے @@ -269,7 +249,6 @@ pa-pk: standard: one: سٹینڈرڈ other: سٹینڈرڈز - overview: statement_to_parliament: one: قومی مجلس دے سامنے بیان other: قومی مجلس دے سامنے بیانات @@ -282,7 +261,6 @@ pa-pk: statutory_guidance: one: قانونی رہنمائی other: قانونی رہنمائی - overview: take_part: one: حصہ لوؤ other: حصہ لوؤ @@ -295,7 +273,6 @@ pa-pk: transparency: one: شفافیت دے اعدادوشمار other: شفافیت دے اعدادوشمار - overview: utaac_decision: one: انتظامی درخواست دی عدالت دا فیصلہ other: انتظامی درخواست دی عدالت دے فیصلے @@ -316,54 +293,54 @@ pa-pk: social_media_use_html: ایندے تے ساڈی حکمتِ عملی بارے پڑھو {link}%. welsh_language_scheme_html: ساڈی وابستگی دے بارے جانو {link}%. email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: وزارتِ دفاع کریسٹ field_of_operation: عمل کرن دا حلقہ operations_in: ایندے بارے عمل {location}% get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: ہون دستیاب نئیں published_in_error: ایس ورقے تے موجود خبراں ہٹا دتیاں گیا نیں کیو جے او غلطی نال چھپ گئے سن۔ @@ -381,72 +358,72 @@ pa-pk: i18n: direction: rtl language_names: - ar: - az: - be: - bg: - bn: - cs: - cy: - da: - de: - dr: - el: - en: - es: - es-419: - et: - fa: - fi: - fr: - gd: - gu: - he: - hi: - hr: - hu: - hy: - id: - is: - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: - nl: - 'no': - pa: + ar: + az: + be: + bg: + bn: + cs: + cy: + da: + de: + dr: + el: + en: + es: + es-419: + et: + fa: + fi: + fr: + gd: + gu: + he: + hi: + hr: + hu: + hy: + id: + is: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: pa-pk: پنجابی شاہ مُکھی - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: - th: - tk: - tr: - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: + th: + tk: + tr: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: اگلا previous_page: پچھلا diff --git a/config/locales/pa.yml b/config/locales/pa.yml index 893f1c161..d3da23552 100644 --- a/config/locales/pa.yml +++ b/config/locales/pa.yml @@ -41,7 +41,7 @@ pa: feedback_received: ਫੀਡਬੈਕ ਪ੍ਰਾਪਤ ਹੋਇਆ is_being: ਹੋ ਰਿਹਾ ਹੈ not_open_yet: ਇਹ ਸਲਾਹ -ਮਸ਼ਵਰਾ ਅਜੇ ਖੁੱਲ੍ਹਾ ਨਹੀਂ ਹੈ - 'on': + 'on': opens: ਇਹ ਸਲਾਹ ਮਸ਼ਵਰਾ ਖੁੱਲਦਾ ਹੈ original_consultation: ਮੂਲ ਸਲਾਹ ran_from: ਇਹ ਸਲਾਹ -ਮਸ਼ਵਰਾ ਇਸ ਤੋਂ ਚੱਲਿਆ @@ -84,7 +84,6 @@ pa: closed_consultation: one: ਬੰਦ ਸਲਾਹ -ਮਸ਼ਵਰਾ other: ਬੰਦ ਸਲਾਹ ਮਸ਼ਵਰੇ - overview: cma_case: one: ਮੁਕਾਬਲਾ ਅਤੇ ਮਾਰਕੇਟ ਅਥਾਰਟੀ ਕੇਸ other: ਮੁਕਾਬਲਾ ਅਤੇ ਮਾਰਕੇਟ ਅਥਾਰਟੀ ਕੇਸ @@ -97,25 +96,21 @@ pa: consultation_outcome: one: ਸਲਾਹ-ਮਸ਼ਵਰੇ ਦਾ ਨਤੀਜਾ other: ਸਲਾਹ-ਮਸ਼ਵਰੇ ਦੇ ਨਤੀਜੇ - overview: corporate_information_page: one: ਜਾਣਕਾਰੀ ਪੰਨਾ other: ਜਾਣਕਾਰੀ ਪੰਨੇ corporate_report: one: ਕਾਰਪੋਰੇਟ ਰਿਪੋਰਟ other: ਕਾਰਪੋਰੇਟ ਰਿਪੋਰਟਾਂ - overview: correspondence: one: ਪੱਤਰ -ਵਿਹਾਰ other: ਪੱਤਰ -ਵਿਹਾਰ - overview: countryside_stewardship_grant: one: ਦੇਸੀ ਇਲਾਕਿਆਂ ਦੀ ਨਿਗਰਾਨੀ ਗ੍ਰਾਂਟ other: ਦੇਸੀ ਇਲਾਕਿਆਂ ਦੀ ਨਿਗਰਾਨੀ ਗ੍ਰਾਂਟਾਂ decision: one: ਫੈਸਲਾ other: ਫੈਸਲੇ - overview: detailed_guide: one: ਸੇਧ other: ਸੇਧ @@ -146,43 +141,36 @@ pa: foi_release: one: FOI ਰਿਲੀਜ਼ other: FOI ਰਿਲੀਜ਼ - overview: form: one: ਫਾਰਮ other: ਫਾਰਮ - overview: government_response: one: ਸਰਕਾਰ ਦਾ ਜਵਾਬ other: ਸਰਕਾਰ ਦੇ ਜਵਾਬ guidance: one: ਸੇਧ other: ਸੇਧ - overview: impact_assessment: one: ਪ੍ਰਭਾਵ ਮੁਲਾਂਕਣ other: ਪ੍ਰਭਾਵ ਮੁਲਾਂਕਣ - overview: imported: one: ਆਯਾਤ - ਉਡੀਕ ਕੀਤੀ ਕਿਸਮ other: ਆਯਾਤ - ਉਡੀਕ ਕੀਤੀ ਕਿਸਮ independent_report: one: ਸੁਤੰਤਰ ਰਿਪੋਰਟ other: ਸੁਤੰਤਰ ਰਿਪੋਰਟਾਂ - overview: international_development_fund: one: ਅੰਤਰਰਾਸ਼ਟਰੀ ਵਿਕਾਸ ਫੰਡਿੰਗ other: ਅੰਤਰਰਾਸ਼ਟਰੀ ਵਿਕਾਸ ਫੰਡਿੰਗ international_treaty: one: ਅੰਤਰਰਾਸ਼ਟਰੀ ਸੰਧੀ other: ਅੰਤਰਰਾਸ਼ਟਰੀ ਸੰਧੀਆਂ - overview: maib_report: one: ਸਮੁੰਦਰੀ ਹਾਦਸੇ ਦੀ ਜਾਂਚ ਸ਼ਾਖਾ ਦੀ ਰਿਪੋਰਟ other: ਸਮੁੰਦਰੀ ਦੁਰਘਟਨਾ ਜਾਂਚ ਸ਼ਾਖਾ ਦੀਆਂ ਰਿਪੋਰਟਾਂ map: one: ਨਕਸ਼ਾ other: ਨਕਸ਼ੇ - overview: medical_safety_alert: one: ਦਵਾਈਆਂ ਅਤੇ ਮੈਡੀਕਲ ਉਪਕਰਣਾਂ ਲਈ ਚੇਤਾਵਨੀ ਅਤੇ ਰੀਕਾਲ other: ਦਵਾਈਆਂ ਅਤੇ ਮੈਡੀਕਲ ਉਪਕਰਣਾਂ ਲਈ ਚੇਤਾਵਨੀ ਅਤੇ ਰੀਕਾਲ @@ -192,7 +180,6 @@ pa: national_statistics: one: ਰਾਸ਼ਟਰੀ ਅੰਕੜੇ other: ਰਾਸ਼ਟਰੀ ਅੰਕੜੇ - overview: national_statistics_announcement: one: ਰਾਸ਼ਟਰੀ ਅੰਕੜੇ ਘੋਸ਼ਣਾ other: ਰਾਸ਼ਟਰੀ ਅੰਕੜੇ ਘੋਸ਼ਣਾਵਾਂ @@ -205,21 +192,18 @@ pa: notice: one: ਨੋਟਿਸ other: ਨੋਟਿਸ - overview: official: one: ਅਧਿਕਾਰਤ ਅੰਕੜਿਆਂ ਦਾ ਐਲਾਨ other: ਅਧਿਕਾਰਤ ਅੰਕੜੇ ਘੋਸ਼ਣਾਵਾਂ official_statistics: one: ਅਧਿਕਾਰਤ ਅੰਕੜੇ other: ਅਧਿਕਾਰਤ ਅੰਕੜੇ - overview: official_statistics_announcement: one: ਅਧਿਕਾਰਤ ਅੰਕੜਿਆਂ ਦਾ ਐਲਾਨ other: ਅਧਿਕਾਰਤ ਅੰਕੜੇ ਘੋਸ਼ਣਾਵਾਂ open_consultation: one: ਖੁੱਲ੍ਹਾ ਸਲਾਹ-ਮਸ਼ਵਰਾ other: ਖੁੱਲ੍ਹੇ ਸਲਾਹ-ਮਸ਼ਵਰੇ - overview: oral_statement: one: ਸੰਸਦ ਨੂੰ ਜ਼ਬਾਨੀ ਬਿਆਨ other: ਸੰਸਦ ਨੂੰ ਜ਼ਬਾਨੀ ਬਿਆਨ @@ -229,14 +213,12 @@ pa: policy_paper: one: ਨੀਤੀ ਪੇਪਰ other: ਨੀਤੀ ਦੇ ਕਾਗਜ਼ - overview: press_release: one: ਪੱਤਰਕਾਰਾਂ ਨੂੰ ਦਿੱਤੀ ਗਈ ਅਧਕਾਰਿਤ ਰਿਪੋਰਟ other: ਪ੍ਰੈਸ ਰਿਲੀਜ਼ promotional: one: ਪ੍ਰਚਾਰ ਸਮੱਗਰੀ other: ਪ੍ਰਚਾਰ ਸਮੱਗਰੀ - overview: publication: one: ਪ੍ਰਕਾਸ਼ਨ other: ਪ੍ਰਕਾਸ਼ਨ @@ -246,11 +228,9 @@ pa: regulation: one: ਨਿਯਮ other: ਨਿਯਮ - overview: research: one: ਖੋਜ ਅਤੇ ਵਿਸ਼ਲੇਸ਼ਣ other: ਖੋਜ ਅਤੇ ਵਿਸ਼ਲੇਸ਼ਣ - overview: residential_property_tribunal_decision: one: ਰਿਹਾਇਸ਼ੀ ਸੰਪਤੀ ਟ੍ਰਿਬਿਊਨਲ ਦਾ ਫੈਸਲਾ other: ਰਿਹਾਇਸ਼ੀ ਸੰਪਤੀ ਟ੍ਰਿਬਿਊਨਲ ਦੇ ਫੈਸਲੇ @@ -269,7 +249,6 @@ pa: standard: one: ਮਿਆਰੀ other: ਮਿਆਰ - overview: statement_to_parliament: one: ਸੰਸਦ ਨੂੰ ਬਿਆਨ other: ਸੰਸਦ ਨੂੰ ਬਿਆਨ @@ -282,7 +261,6 @@ pa: statutory_guidance: one: ਕਨੂੰਨੀ ਸੇਧ other: ਕਨੂੰਨੀ ਸੇਧ - overview: take_part: one: ਹਿੱਸਾ ਲੈਣਾ other: ਹਿੱਸਾ ਲੈਣਾ @@ -295,7 +273,6 @@ pa: transparency: one: ਪਾਰਦਰਸ਼ਤਾ ਡਾਟਾ other: ਪਾਰਦਰਸ਼ਤਾ ਡਾਟਾ - overview: utaac_decision: one: ਪ੍ਰਬੰਧਕੀ ਅਪੀਲ ਟ੍ਰਿਬਿਊਨਲ ਦਾ ਫੈਸਲਾ other: ਪ੍ਰਬੰਧਕੀ ਅਪੀਲ ਟ੍ਰਿਬਿਊਨਲ ਦੇ ਫੈਸਲੇ @@ -316,54 +293,54 @@ pa: social_media_use_html: "%{link} 'ਤੇ ਸਾਡੀ ਨੀਤੀ ਪੜ੍ਹੋ।" welsh_language_scheme_html: "%{link} ਪ੍ਰਤੀ ਸਾਡੀ ਵਚਨਬੱਧਤਾ ਬਾਰੇ ਜਾਣੋ।" email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: ਰੱਖਿਆ ਮੰਤਰਾਲਾ ਸਿਖਰ field_of_operation: ਕਾਰਜ ਖੇਤਰ operations_in: "%{location} ਵਿੱਚ ਕਾਰਜ" get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: ਹੁਣ ਉਪਲਬਧ ਨਹੀਂ ਹੈ published_in_error: ਇਸ ਪੰਨੇ 'ਤੇ ਜਾਣਕਾਰੀ ਨੂੰ ਹਟਾ ਦਿੱਤਾ ਗਿਆ ਹੈ ਕਿਉਂਕਿ ਇਹ ਗਲਤੀ ਨਾਲ ਪ੍ਰਕਾਸ਼ਤ ਕੀਤਾ ਗਿਆ ਸੀ। @@ -379,74 +356,74 @@ pa: licence_html: 'ਇਹ ਪ੍ਰਕਾਸ਼ਨ ਓਪਨ ਗਵਰਨਮੈਂਟ ਲਾਇਸੈਂਸ v3.0 ਦੀਆਂ ਸ਼ਰਤਾਂ ਦੇ ਅਧੀਨ ਲਾਇਸੈਂਸਸ਼ੁਦਾ ਹੈ, ਸਿਵਾਏ ਜਿੱਥੇ ਹੋਰ ਨਹੀਂ ਕਿਹਾ ਗਿਆ ਹੈ। ਇਸ ਲਾਇਸੈਂਸ ਨੂੰ ਦੇਖਣ ਲਈ, nationalarchives.gov.uk/doc/open-government-licence/version/3 ਜਾਂ ਸੂਚਨਾ ਨੀਤੀ ਟੀਮ, ਦਿ ਨੈਸ਼ਨਲ ਆਰਕਾਈਵਜ਼, ਕੇਵ, ਲੰਡਨ TW9 4DU, ਜਾਂ ਈਮੇਲ ਨੂੰ ਲਿਖੋ: psi@nationalarchives.gov.uk।' third_party: ਜਿੱਥੇ ਅਸੀਂ ਕਿਸੇ ਤੀਜੀ ਧਿਰ ਦੀ ਕਾਪੀਰਾਈਟ ਜਾਣਕਾਰੀ ਦੀ ਪਛਾਣ ਕੀਤੀ ਹੈ ਤੁਹਾਨੂੰ ਸਬੰਧਤ ਕਾਪੀਰਾਈਟ ਧਾਰਕਾਂ ਤੋਂ ਇਜਾਜ਼ਤ ਲੈਣ ਦੀ ਜ਼ਰੂਰਤ ਹੋਏਗੀ। i18n: - direction: + direction: language_names: - ar: - az: - be: - bg: - bn: - cs: - cy: - da: - de: - dr: - el: - en: - es: - es-419: - et: - fa: - fi: - fr: - gd: - gu: - he: - hi: - hr: - hu: - hy: - id: - is: - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: - nl: - 'no': + ar: + az: + be: + bg: + bn: + cs: + cy: + da: + de: + dr: + el: + en: + es: + es-419: + et: + fa: + fi: + fr: + gd: + gu: + he: + hi: + hr: + hu: + hy: + id: + is: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': pa: ਪੰਜਾਬੀ ਗੁਰਮੁਖੀ - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: - th: - tk: - tr: - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: + th: + tk: + tr: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: ਅਗਲਾ previous_page: ਪਿਛਲਾ diff --git a/config/locales/pl.yml b/config/locales/pl.yml index 46c05c914..0c8ab8350 100644 --- a/config/locales/pl.yml +++ b/config/locales/pl.yml @@ -41,7 +41,7 @@ pl: feedback_received: Otrzymane informacje zwrotne is_being: są not_open_yet: Te konsultacje jeszcze się nie rozpoczęły - 'on': + 'on': opens: Konsultacje rozpoczynają się original_consultation: Pierwotne konsultacje ran_from: Te konsultacje trwały od @@ -64,396 +64,373 @@ pl: updated: Zaktualizowano schema_name: aaib_report: - few: - many: + few: + many: one: Sprawozdanie Wydziału Badania Wypadków Lotniczych other: Sprawozdania Wydziału Badania Wypadków Lotniczych announcement: - few: - many: + few: + many: one: Ogłoszenie other: Ogłoszenia asylum_support_decision: - few: - many: + few: + many: one: Decyzja trybunału ds. wsparcia w zakresie polityki azylowej other: Decyzje trybunału ds. wsparcia w zakresie polityki azylowej authored_article: - few: - many: + few: + many: one: Dokument utworzony przez other: Dokumenty utworzone przez business_finance_support_scheme: - few: - many: + few: + many: one: Program wsparcia finansowego przedsiębiorstw other: Programy wsparcia finansowego przedsiębiorstw case_study: - few: - many: + few: + many: one: Studium przypadku other: Studia przypadku closed_consultation: - few: - many: + few: + many: one: Konsultacja zamknięta other: Konsultacje zamknięte - overview: cma_case: - few: - many: + few: + many: one: Sprawa Urzędu ds. Konkurencji i Rynków other: Sprawy Urzędu ds. Konkurencji i Rynków coming_soon: - few: - many: + few: + many: one: Już niedługo other: Już niedługo consultation: - few: - many: + few: + many: one: Konsultacja other: Konsultacje consultation_outcome: - few: - many: + few: + many: one: Wynik konsultacji other: Wyniki konsultacji - overview: corporate_information_page: - few: - many: + few: + many: one: Strona informacyjna other: Strony informacyjne corporate_report: - few: - many: + few: + many: one: Raport korporacyjny other: Raporty korporacyjne - overview: correspondence: - few: - many: + few: + many: one: Korespondencja other: Korespondencje - overview: countryside_stewardship_grant: - few: - many: + few: + many: one: Dotacja w ramach Programu Zarządzania Obszarami Wiejskimi other: Dotacje w ramach Programu Zarządzania Obszarami Wiejskimi decision: - few: - many: + few: + many: one: Decyzja other: Decyzje - overview: detailed_guide: - few: - many: + few: + many: one: Szczegółowe wskazówki other: Szczegółowe wskazówki dfid_research_output: - few: - many: + few: + many: one: Wynik badań na rzecz rozwoju other: Wyniki badań na rzecz rozwoju document_collection: - few: - many: + few: + many: one: Seria other: Serie draft_text: - few: - many: + few: + many: one: Tekst roboczy other: Teksty robocze drug_safety_update: - few: - many: + few: + many: one: Aktualne informacje na temat bezpieczeństwa leków other: Aktualne informacje na temat bezpieczeństwa leków employment_appeal_tribunal_decision: - few: - many: + few: + many: one: Decyzja trybunału apelacyjnego ds. zatrudnienia other: Decyzje trybunału apelacyjnego ds. zatrudnienia employment_tribunal_decision: - few: - many: + few: + many: one: Decyzja trybunału ds. zatrudnienia other: Decyzje trybunału ds. zatrudnienia esi_fund: - few: - many: + few: + many: one: Europejski Fundusz Strukturalny i Inwestycyjny (EFSI) other: Europejskie Fundusze Strukturalne i Inwestycyjne (EFSI) fatality_notice: - few: - many: + few: + many: one: Informacja o śmierci other: Informacje o śmierci foi_release: - few: - many: + few: + many: one: Informacja zgodnie z ustawą o wolnosci informacji other: Informacje zgodnie z ustawą o wolności informacji - overview: form: - few: - many: + few: + many: one: Formularz other: Formularze - overview: government_response: - few: - many: + few: + many: one: Odpowiedź rządu other: Odpowiedzi rządu guidance: - few: - many: + few: + many: one: Wskazówki other: Wskazówki - overview: impact_assessment: - few: - many: + few: + many: one: Ocena oddziaływania other: Oceny oddziaływania - overview: imported: - few: - many: + few: + many: one: Zaimportowany - oczekuje typu other: Zaimportowany - oczekuje typu independent_report: - few: - many: + few: + many: one: Niezależny raport other: Niezależne raporty - overview: international_development_fund: - few: - many: + few: + many: one: Międzynarodowe finansowanie rozwoju other: Międzynarodowe finansowanie rozwoju international_treaty: - few: - many: + few: + many: one: Traktat międzynarodowy other: Traktaty międzynarodowe - overview: maib_report: - few: - many: + few: + many: one: Sprawozdanie Wydziału Badania Wypadków Morskich other: Sprawozdania Wydziału Badania Wypadków Morskich map: - few: - many: + few: + many: one: Mapa other: Mapy - overview: medical_safety_alert: - few: - many: + few: + many: one: Informacje o wycofaniu i ostrzeżenia dot. leków i urządzeń medycznych other: Informacje o wycofaniu i ostrzeżenia dot. leków i urządzeń medycznych national: - few: - many: + few: + many: one: Komunikat dot. statystyk krajowych other: Komunikaty dot. statystyk krajowych national_statistics: - few: - many: + few: + many: one: Statystyki - statystyki narodowe other: Statystyki - statystyki narodowe - overview: national_statistics_announcement: - few: - many: + few: + many: one: Komunikat dot. statystyk krajowych other: Komunikaty dot. statystyk krajowych news_article: - few: - many: + few: + many: one: Artykuł prasowy other: Artykuły prasowe news_story: - few: - many: + few: + many: one: Aktualności other: Aktualności notice: - few: - many: + few: + many: one: Powiadomienie other: Powiadomienia - overview: official: - few: - many: + few: + many: one: Komunikat dot. oficjalnych statystyk other: Komunikaty dot. oficjalnych statystyk official_statistics: - few: - many: + few: + many: one: Statystyki other: Statystyki - overview: official_statistics_announcement: - few: - many: + few: + many: one: Komunikat dot. oficjalnych statystyk other: Komunikaty dot. oficjalnych statystyk open_consultation: - few: - many: + few: + many: one: Konsultacje otwarte other: Konsultacje otwarte - overview: oral_statement: - few: - many: + few: + many: one: Ustne oświadczenie przed parlamentem other: Ustne oświadczenia przed parlamentem policy: - few: - many: + few: + many: one: Polityka other: Polityki policy_paper: - few: - many: + few: + many: one: Dokument programowy other: Dokumenty programowe - overview: press_release: - few: - many: + few: + many: one: Informacja prasowa other: Informacje prasowe promotional: - few: - many: + few: + many: one: Materiał promocyjny other: Materiał promocyjny - overview: publication: - few: - many: + few: + many: one: Publikacja other: Publikacje raib_report: - few: - many: + few: + many: one: Sprawozdanie Wydziału Badania Wypadków Kolejowych other: Sprawozdania Wydziału Badania Wypadków Kolejowych regulation: - few: - many: + few: + many: one: Rozporządzenie other: Rozporządzenia - overview: research: - few: - many: + few: + many: one: Badania i analiza other: Badania i analiza - overview: residential_property_tribunal_decision: - few: - many: + few: + many: one: Decyzja trybunału ds. nieruchomości mieszkalnych other: Decyzje trybunału ds. nieruchomości mieszkalnych service_sign_in: - few: - many: + few: + many: one: Logowanie do serwisu other: Logowanie do serwisu service_standard_report: - few: - many: + few: + many: one: Sprawozdanie dot. standardów usług other: Sprawozdania dot. standardów usług speaking_notes: - few: - many: + few: + many: one: Notatki do prelekcji other: Notatki do prelekcji speech: - few: - many: + few: + many: one: Przemówienie other: Przemówienia standard: - few: - many: + few: + many: one: Standard other: Standardy - overview: statement_to_parliament: - few: - many: + few: + many: one: Wystapienie przed parlamentem other: Wystapienia przed parlamentem statistical_data_set: - few: - many: + few: + many: one: Zestaw danych statystycznych other: Zestawy danych statystycznych statistics_announcement: - few: - many: + few: + many: one: Komunikat o publikacji statystyk other: Komunikaty o publikacji statystyk statutory_guidance: - few: - many: + few: + many: one: Wytyczne ustawowe other: Wytyczne ustawowe - overview: take_part: - few: - many: + few: + many: one: Weź udział other: Weź udział tax_tribunal_decision: - few: - many: + few: + many: one: Decyzja Trybunału Podatkowego i Kanclerskiego other: Decyzje Trybunału Podatkowego i Kanclerskiego transcript: - few: - many: + few: + many: one: Transkrypcja other: Transkrypcje transparency: - few: - many: + few: + many: one: Dane o transparentności other: Dane o transparentności - overview: utaac_decision: - few: - many: + few: + many: one: Decyzja administracyjnego trybunału odwoławczego other: Decyzje administracyjnego trybunału odwoławczego world_location_news_article: - few: - many: + few: + many: one: Artykuł prasowy other: Artykuły prasowe world_news_story: - few: - many: + few: + many: one: Artykuł prasowy ze świata other: Artykuły prasowe ze świata written_statement: - few: - many: + few: + many: one: Pisemne oświadczenie przed parlamentem other: Pisemne oświadczenia przed parlamentem corporate_information_page: @@ -464,54 +441,54 @@ pl: social_media_use_html: Przeczytaj naszą politykę dotyczącą %{link}. welsh_language_scheme_html: Poznaj nasze zobowiązania związane z publikowaniem w %{link}. email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: Herb Ministerstwa Obrony field_of_operation: Zakres działania operations_in: Działania w %{location} get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: Już niedostępne published_in_error: Informacje na tej stronie zostały usunięte, ponieważ zostały błędnie opublikowane. @@ -527,74 +504,74 @@ pl: 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. i18n: - direction: + direction: language_names: - ar: - az: - be: - bg: - bn: - cs: - cy: - da: - de: - dr: - el: - en: - es: - es-419: - et: - fa: - fi: - fr: - gd: - gu: - he: - hi: - hr: - hu: - hy: - id: - is: - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: + ar: + az: + be: + bg: + bn: + cs: + cy: + da: + de: + dr: + el: + en: + es: + es-419: + et: + fa: + fi: + fr: + gd: + gu: + he: + hi: + hr: + hu: + hy: + id: + is: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: pl: Polski - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: - th: - tk: - tr: - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: + th: + tk: + tr: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: Następny previous_page: Poprzedni @@ -602,8 +579,8 @@ pl: publication: details: Szczegóły documents: - few: - many: + few: + many: one: Dokument other: Dokumenty service_sign_in: diff --git a/config/locales/ps.yml b/config/locales/ps.yml index cd173c69d..96eed40a7 100644 --- a/config/locales/ps.yml +++ b/config/locales/ps.yml @@ -41,7 +41,7 @@ ps: feedback_received: نظر ترلاسه شو is_being: کېږي not_open_yet: دا مشوره لاهم خلاص نده - 'on': + 'on': opens: دا مشوره خلاصیږي original_consultation: اصلي مشوره ran_from: دا مشوره له دې ځایه روانه وه @@ -84,7 +84,6 @@ ps: closed_consultation: one: له نيژدې مشوره other: له نيژدې مشورې - overview: cma_case: one: د سیالۍ او بازارونو ادارې قضیه other: د سیالۍ او بازارونو ادارې قضیې @@ -97,25 +96,21 @@ ps: consultation_outcome: one: د مشورې پایله other: د مشورې پایلې - overview: corporate_information_page: one: د معلوماتو پاڼه other: د معلوماتو پاڼې corporate_report: one: د کارپوریټ راپور other: د شرکت راپورونه - overview: correspondence: one: لیکنه other: لیکنې - overview: countryside_stewardship_grant: one: د کلیوالي چارو سرپرستي مرسته other: د کلیو د ساتنې بورسونه decision: one: پریکړه other: پریکړې - overview: detailed_guide: one: لارښود other: لارښود @@ -146,43 +141,36 @@ ps: foi_release: one: د د معلوماتو د آزادۍ قانون خوشې کول other: د معلوماتو د آزادۍ قانون خپروي - overview: form: one: فورمه other: فورمې - overview: government_response: one: د حکومت غبرګون other: د حکومت غبرګون guidance: one: لارښود other: لارښود - overview: impact_assessment: one: د اغیز ارزونه other: د اغیزو ارزونه - overview: imported: one: وارد شوی - په تمه ډول other: وارد شوی - په تمه ډول independent_report: one: خپلواک راپور other: خپلواک راپورونه - overview: international_development_fund: one: د نړیوالې پراختیا تمویل other: د نړیوالې پراختیا تمویل international_treaty: one: نړیوال تړون other: نړیوال تړونونه - overview: maib_report: one: د سمندري پیښو د تحقیقاتو د څانګې راپور other: د سمندري پېښو د تحقیقاتو څانګې راپورونه map: one: نقشه other: نقشې - overview: medical_safety_alert: one: د درملو او طبي وسایلو لپاره خبرتیا او بیا بلنه other: د درملو او طبي وسایلو لپاره خبرتیا او بیل بلنې @@ -192,7 +180,6 @@ ps: national_statistics: one: ملي احصایې other: ملي احصایې - overview: national_statistics_announcement: one: د ملي احصایې اعلان other: د ملي احصایې اعلانونه @@ -205,21 +192,18 @@ ps: notice: one: خبرتیا other: خبرتیاوې - overview: official: one: د رسمي احصایې اعلان other: د رسمي احصایې اعلانونه official_statistics: one: رسمي احصایې other: رسمي احصایې - overview: official_statistics_announcement: one: د رسمي احصایې اعلان other: د رسمي احصایې اعلانونه open_consultation: one: خلاص مشوره other: مشورې خلاص کړئ - overview: oral_statement: one: پارلماني غونډې ته وینا other: پارلمان ته شفاهي څرګندونې @@ -229,14 +213,12 @@ ps: policy_paper: one: د پالیسۍ پاڼه other: د پالیسۍ ڼې - overview: press_release: one: مطبوعاتي اعلامیه other: مطبوعاتي اعلامیې promotional: one: تشویقي مواد other: تشویقي مواد - overview: publication: one: خپرونه other: خپرونې @@ -246,11 +228,9 @@ ps: regulation: one: مقررات other: مقررات - overview: research: one: څیړنه او تحلیل other: څیړنه او تحلیل - overview: residential_property_tribunal_decision: one: د استوګنې د ملکیت د محکمې پریکړه other: د استوګنې د ملکیت د محکمې پریکړې @@ -269,7 +249,6 @@ ps: standard: one: معیاري other: معیارونه - overview: statement_to_parliament: one: پارلمان ته وینا other: پارلمان ته وینا @@ -282,7 +261,6 @@ ps: statutory_guidance: one: قانوني لارښود other: قانوني لارښود - overview: take_part: one: برخه واخلئ other: برخه واخلئ @@ -295,7 +273,6 @@ ps: transparency: one: د شفافیت معلومات other: د شفافیت معلومات - overview: utaac_decision: one: اداري استیناف د محکمې پریکړه other: د اداري استیناف د محکمې پریکړې @@ -316,54 +293,54 @@ ps: social_media_use_html: زموږ پالیسي په%{link} ولولئ. welsh_language_scheme_html: "%{link} ته زموږ د ژمنتیا په اړه معلومات ترلاسه کړئ." email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: د دفاع وزارت کریسټ field_of_operation: د عملیاتو ساحه operations_in: په%{location} کې عملیات get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: نور شتون نلري published_in_error: پدې پاڼه کې معلومات حذف شوي ځکه چې دا په غلطۍ کې خپور شوی. @@ -381,72 +358,72 @@ ps: i18n: direction: rtl language_names: - ar: - az: - be: - bg: - bn: - cs: - cy: - da: - de: - dr: - el: - en: - es: - es-419: - et: - fa: - fi: - fr: - gd: - gu: - he: - hi: - hr: - hu: - hy: - id: - is: - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: - pl: + ar: + az: + be: + bg: + bn: + cs: + cy: + da: + de: + dr: + el: + en: + es: + es-419: + et: + fa: + fi: + fr: + gd: + gu: + he: + hi: + hr: + hu: + hy: + id: + is: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: + pl: ps: جرمني - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: - th: - tk: - tr: - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: + th: + tk: + tr: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: بل previous_page: مخکینی diff --git a/config/locales/si.yml b/config/locales/si.yml index 688b1d139..9ac3a30dc 100644 --- a/config/locales/si.yml +++ b/config/locales/si.yml @@ -41,7 +41,7 @@ si: feedback_received: ලැබුණු ප්රතිපෝෂණය is_being: වෙමින් පවතී not_open_yet: මෙම උපදේශනය තවමත් විවෘත කර නැත - 'on': + 'on': opens: මෙම උපදේශනය විවෘත වේ original_consultation: මුල් උපදේශනය ran_from: මෙම උපදේශනය ක්‍රියාත්මක වුනේ @@ -84,7 +84,6 @@ si: closed_consultation: one: සංවෘත උපදේශනය other: සංවෘත උපදේශන - overview: cma_case: one: තරඟ සහ වෙළඳපළ අධිකාරිය නඩුව other: තරඟ සහ වෙළඳපළ අධිකාරිය නඩු @@ -97,25 +96,21 @@ si: consultation_outcome: one: උපදේශන ප්රතිඵලය other: උපදේශන ප්රතිඵල - overview: corporate_information_page: one: තොරතුරු පිටුව other: තොරතුරු පිටු corporate_report: one: ආයතනික වාර්තාව other: ආයතනික වාර්තා - overview: correspondence: one: ලිපි හුවමාරුව other: ලිපි හුවමාරු - overview: countryside_stewardship_grant: one: ගම්බද භාරකාරත්ව ප්රදානය other: ගම්බද භාරකාරත්ව ප්රදාන decision: one: තීරණය other: තීරණ - overview: detailed_guide: one: මාර්ගෝපදේශය other: මාර්ගෝපදේශය @@ -146,43 +141,36 @@ si: foi_release: one: FOI නිකුත් කිරීම other: FOI නිකුත් කිරීම් - overview: form: one: ආකෘති පත්‍රය other: ආකෘති පත්‍ර - overview: government_response: one: රජයේ ප්රතිචාරය other: රජයේ ප්රතිචාර guidance: one: මාර්ගෝපදේශය other: මාර්ගෝපදේශය - overview: impact_assessment: one: බලපෑම තක්සේරුව other: බලපෑම තක්සේරු - overview: imported: one: ආනයනය කරන ලද - අපේක්ෂිත වර්ගය other: ආනයනය කරන ලද - අපේක්ෂිත වර්ගය independent_report: one: ස්වාධීන වාර්තාව other: ස්වාධීන වාර්තා - overview: international_development_fund: one: ජාත්යන්තර සංවර්ධන මුදල් සැපයීම other: ජාත්යන්තර සංවර්ධන මුදල් සැපයීම international_treaty: one: ජාත්යන්තර ගිවිසුම other: ජාත්යන්තර ගිවිසුම් - overview: maib_report: one: නාවික අනතුරු විමර්ශන ශාඛා වාර්තාව other: නාවික අනතුරු විමර්ශන ශාඛා වාර්තා map: one: සිතියම other: සිතියම් - overview: medical_safety_alert: one: ඖෂධ සහ වෛද්ය උපකරණ සඳහා ඇඟවීම් සහ සිහිපත් කිරීම් other: ඖෂධ සහ වෛද්ය උපකරණ සඳහා ඇඟවීම් සහ සිහිපත් කිරීම් @@ -192,7 +180,6 @@ si: national_statistics: one: ජාතික සංඛ්යාලේඛන other: ජාතික සංඛ්යාලේඛන - overview: national_statistics_announcement: one: ජාතික සංඛ්යාලේඛන නිවේදනය other: ජාතික සංඛ්යාලේඛන නිවේදන @@ -205,21 +192,18 @@ si: notice: one: දැන්වීම other: දැන්වීම් - overview: official: one: නිල සංඛ්යාලේඛන නිවේදනය other: නිල සංඛ්යාලේඛන නිවේදන official_statistics: one: නිල සංඛ්යාලේඛන other: නිල සංඛ්යාලේඛන - overview: official_statistics_announcement: one: නිල සංඛ්යාලේඛන නිවේදනය other: නිල සංඛ්යාලේඛන නිවේදන open_consultation: one: විවෘත උපදේශනය other: විවෘත උපදේශන - overview: oral_statement: one: පාර්ලිමේන්තුව වෙත වාචික ප්රකාශයක් other: පාර්ලිමේන්තුව වෙත වාචික ප්රකාශ @@ -229,14 +213,12 @@ si: policy_paper: one: ප්රතිපත්ති පත්‍රිකාව other: ප්රතිපත්ති පත්‍රිකා - overview: press_release: one: මාධ්ය නිවේදනය other: මාධ්ය නිවේදන promotional: one: ප්රවර්ධන ද්රව්ය other: ප්රවර්ධන ද්රව්ය - overview: publication: one: ප්රකාශනය other: ප්රකාශන @@ -246,11 +228,9 @@ si: regulation: one: නියාමනය other: නියාමන - overview: research: one: පර්යේෂණය සහ විශ්ලේෂණය other: පර්යේෂණය සහ විශ්ලේෂණය - overview: residential_property_tribunal_decision: one: නේවාසික දේපළ විනිශ්චය මණ්ඩල තීරණය other: නේවාසික දේපළ විනිශ්චය මණ්ඩල තීරණ @@ -269,7 +249,6 @@ si: standard: one: ප්‍රමිතිය other: ප්‍රමිති - overview: statement_to_parliament: one: පාර්ලිමේන්තුව වෙත ප්රකාශය other: පාර්ලිමේන්තුව වෙත ප්රකාශ @@ -282,7 +261,6 @@ si: statutory_guidance: one: ව්යවස්ථාපිත මඟ පෙන්වීම other: ව්යවස්ථාපිත මඟ පෙන්වීම - overview: take_part: one: සහභාගී වන්න other: සහභාගී වන්න @@ -295,7 +273,6 @@ si: transparency: one: විනිවිදභාව දත්ත other: විනිවිදභාව දත්ත - overview: utaac_decision: one: පරිපාලන අභියාචනා විනිශ්චය මණ්ඩල තීරණය other: පරිපාලන අභියාචනා විනිශ්චය මණ්ඩල තීරණ @@ -316,54 +293,54 @@ si: social_media_use_html: අපේ ප්රතිපත්තිය කියවන්න %{link}. welsh_language_scheme_html: "%{link} සඳහා අපේ කැපවීම ගැන සොයා බලන්න." email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: ආරක්ෂක අමාත්යාංශ ලාංඡනය field_of_operation: මෙහෙයුම් ක්ෂේත්රය operations_in: "%{location} තුළ මෙහෙයුම්" get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: තව දුරටත් ලද නොහැක published_in_error: මෙම පිටුවේ ඇති තොරතුරු ඉවත් කර ඇත්තේ එය වැරදීමකින් ප්රකාශයට පත් කර ඇති බැවිනි. @@ -379,74 +356,74 @@ si: 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: අපි යම් තෙවන පාර්ශවීය ප්රකාශන හිමිකම් තොරතුරු හඳුනාගෙන ඇති අවස්ථාවක ඔබ අදාළ ප්රකාශන හිමිකම් හිමියන්ගෙන් අවසර ලබා ගත යුතුය. i18n: - direction: + direction: language_names: - ar: - az: - be: - bg: - bn: - cs: - cy: - da: - de: - dr: - el: - en: - es: - es-419: - et: - fa: - fi: - fr: - gd: - gu: - he: - hi: - hr: - hu: - hy: - id: - is: - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: + ar: + az: + be: + bg: + bn: + cs: + cy: + da: + de: + dr: + el: + en: + es: + es-419: + et: + fa: + fi: + fr: + gd: + gu: + he: + hi: + hr: + hu: + hy: + id: + is: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: si: සිංහල - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: - th: - tk: - tr: - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: + th: + tk: + tr: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: ඊළඟ previous_page: පෙර diff --git a/config/locales/so.yml b/config/locales/so.yml index 3da25c4ae..58b066d03 100644 --- a/config/locales/so.yml +++ b/config/locales/so.yml @@ -41,7 +41,7 @@ so: feedback_received: Falcelinta la helay is_being: waa not_open_yet: Latalinta aan wali furnayn - 'on': + 'on': opens: Latalintan waxay furantahay original_consultation: Latalinta asalka ah ran_from: Latalinta waxay ka timid @@ -84,7 +84,6 @@ so: closed_consultation: one: Latalin xidhan other: Latalino xidhan - overview: cma_case: one: Tartanka iyo kiiska Masuuliyada Suuqyada other: Tartanka iyo kiisas ka Masuuliyada Suuqyada @@ -97,25 +96,21 @@ so: consultation_outcome: one: Natiijada latalinta other: Natiijooyinka latalinta - overview: corporate_information_page: one: Boga macluumaadka other: Bogaga macluumaadka corporate_report: one: Warbixinta shirkada other: Warbixinaha shirkada - overview: correspondence: one: Xidhiidhka other: Xidhiidhada - overview: countryside_stewardship_grant: one: Maalgalinta Maamulka Miyiga other: Maalgalinaha Maamulka Miyiga decision: one: Go'aan other: Go'aamo - overview: detailed_guide: one: Tilmaam other: Tilmaam @@ -146,43 +141,36 @@ so: foi_release: one: Baahinta FOI other: Warbixinaha FOI - overview: form: one: Foomka other: Foomamka - overview: government_response: one: Jawaabta dawlada other: Jawaabaha dawlada guidance: one: Tilmaam other: Tilmaam - overview: impact_assessment: one: Qiimeynta Saamenta other: Qiimeynta Saamaynaha - overview: imported: one: lasoo-dajiyey - nooca sugitaanka other: lasoo-dajiyey - nooca sugitaanka independent_report: one: Warbixin madax banaan other: Warbixino madax banaan - overview: international_development_fund: one: Maalgalinta horumarinta calaamiga ah other: Maalgalinta horumarinta calaamiga ah international_treaty: one: Heshiis caalamiya other: Heshiisyo caalamiya - overview: maib_report: one: Warbixinta Qeybta Baadhitaanada Shilka Bada other: Warbixinaha Qeybta Baadhitaanada Shilalka Bada map: one: Maab other: Maabab - overview: medical_safety_alert: one: Wargelinaha iyo xasuusiyayaasha daroogooyinka iyo agabka caafimaad other: Wargelinaha iyo xasuusiyayaasha daroogooyinka iyo agabka caafimaad @@ -192,7 +180,6 @@ so: national_statistics: one: Tirokoobka qaranka other: Tirokoobka qaranka - overview: national_statistics_announcement: one: Ogeysiiska tirokoobka qaranka other: Ogeysiisyada tirokoobka qaranka @@ -205,21 +192,18 @@ so: notice: one: Ogeysiis other: Ogeysiisyo - overview: official: one: Ogeysiiska tirokoobka rasmiga ah other: Ogeysiisyada tirokoobka rasmiga ah official_statistics: one: Tirokoobka rasmiga ah other: Tirokoobka rasmiga ah - overview: official_statistics_announcement: one: Ogeysiiska tirokoobka rasmiga ah other: Ogeysiisyada tirokoobka rasmiga ah open_consultation: one: Latalin furan other: Latalino furan - overview: oral_statement: one: Bayaanka loogu talogalay Baarlamaanka other: Bayaanada loogu talogalay Baarlamaanka @@ -229,14 +213,12 @@ so: policy_paper: one: Warqada siyaasada other: Waraaqaha siyaasada - overview: press_release: one: War-saxaafadeed other: War-saxaafadeedyo promotional: one: Agab xayeysiis other: Agab xayeysiis - overview: publication: one: Daabacaad other: Daabacaado @@ -246,11 +228,9 @@ so: regulation: one: Sharci other: Shuruuc - overview: research: one: Cilmi-baadhis iyo falanqeyn other: Cilmi-baadhis iyo falanqeyn - overview: residential_property_tribunal_decision: one: Go'aanka maxkamada ee hantida guriga other: Go'aamada maxkamada ee hantida guriga @@ -269,7 +249,6 @@ so: standard: one: Heerka other: Heerarka - overview: statement_to_parliament: one: Bayaanka loogu talogalay Baarlamaanka other: Bayaanada loogu talogalay Baarlamaanka @@ -282,7 +261,6 @@ so: statutory_guidance: one: Tilmaamta sharciga other: Tilmaamta sharciga - overview: take_part: one: Ka qeybgal other: Ka qeybgal @@ -295,7 +273,6 @@ so: transparency: one: Xog daah furan other: Xog daah furan - overview: utaac_decision: one: Go'aanka rafcaanka maxkamada ee maamulka other: Go'aamada rafcaanka maxkamada ee maamulka @@ -316,54 +293,54 @@ so: social_media_use_html: Ka akhri siyaasadayahaga %{link}. welsh_language_scheme_html: Raadi waxyaabaha ku saabsan ka go'naanshahayaga %{link}. email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: Calaamada Wasaarada Difaaca field_of_operation: Hawalaha dibadaa operations_in: Hawalaha %{location} get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: Lama hali karo published_in_error: Macluumaadka kujiray bogan waa laga saaray waayo waxa loo daabacay si qaldan. @@ -379,74 +356,74 @@ so: 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. i18n: - direction: + direction: language_names: - ar: - az: - be: - bg: - bn: - cs: - cy: - da: - de: - dr: - el: - en: - es: - es-419: - et: - fa: - fi: - fr: - gd: - gu: - he: - hi: - hr: - hu: - hy: - id: - is: - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: + ar: + az: + be: + bg: + bn: + cs: + cy: + da: + de: + dr: + el: + en: + es: + es-419: + et: + fa: + fi: + fr: + gd: + gu: + he: + hi: + hr: + hu: + hy: + id: + is: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: so: Soomaali - sq: - sr: - sv: - sw: - ta: - th: - tk: - tr: - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + sq: + sr: + sv: + sw: + ta: + th: + tk: + tr: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: Ku xiga previous_page: Hore diff --git a/config/locales/sq.yml b/config/locales/sq.yml index 808e9b1d8..9ee015df3 100644 --- a/config/locales/sq.yml +++ b/config/locales/sq.yml @@ -41,7 +41,7 @@ sq: feedback_received: Reagimi i marrë is_being: është duke u not_open_yet: Ky konsultim nuk është hapur ende - 'on': + 'on': opens: Ky konsultim hapet original_consultation: Konsultimi origjinal ran_from: Ky konsultim filloi nga @@ -84,7 +84,6 @@ sq: closed_consultation: one: Konsultim i mbyllur other: Konsultime të mbyllura - overview: cma_case: one: Rasti i Autoritetit të Konkurrencës dhe Tregjeve other: Raste të Autoritetit të Konkurrencës dhe Tregjeve @@ -97,25 +96,21 @@ sq: consultation_outcome: one: Rezultati i konsultimit other: Rezultatet e konsultimit - overview: corporate_information_page: one: Faqja e informacionit other: Faqet e informacionit corporate_report: one: Raport i organizatës other: Raporte te organizatës - overview: correspondence: one: Korrespondencë other: Korrespondencat - overview: countryside_stewardship_grant: one: Granti i administrimit të fshatit other: Grantet e administrimit të fshatit decision: one: Vendimi other: Vendimet - overview: detailed_guide: one: Udhëzim other: Udhëzim @@ -146,43 +141,36 @@ sq: foi_release: one: Njoftim mbi Lirinë e Informacionit other: Njoftime mbi Lirinë e Informacionit - overview: form: one: Formular other: Formularë - overview: government_response: one: Reagim qeveritar other: Reagime qeveritare guidance: one: Udhëzime other: Udhëzime - overview: impact_assessment: one: Vlerësim i ndikimit other: Vlerësime te ndikimit - overview: imported: one: importuar - tipi pritje other: importuar - tipi pritje independent_report: one: Raport i pavarur other: Raporte të pavarur - overview: international_development_fund: one: Financimi i zhvillimit ndërkombëtar other: Financime të zhvillimit ndërkombëtar international_treaty: one: Traktat ndërkombëtar other: Traktate ndërkombëtare - overview: maib_report: one: Raporti i Degës së Hetimit të Aksidenteve Detare other: Raportet e Degës së Hetimit të Aksidenteve Detare map: one: Hartë other: Harta - overview: medical_safety_alert: one: Njoftime dhe kujtesa për ilaçe dhe pajisje mjekësore other: Njoftime dhe kujtesa për ilaçe dhe pajisje mjekësore @@ -192,7 +180,6 @@ sq: national_statistics: one: Statistikat Kombëtare other: Statistikat Kombëtare - overview: national_statistics_announcement: one: Njoftimi i statistikave kombëtare other: Njoftime të statistikave kombëtare @@ -205,21 +192,18 @@ sq: notice: one: Njoftim other: Njoftime - overview: official: one: Njoftimi i statistikave zyrtare other: Njoftimet e statistikave zyrtare official_statistics: one: Statistikat Zyrtare other: Statistikat Zyrtare - overview: official_statistics_announcement: one: Njoftimi i statistikave zyrtare other: Njoftime të statistikave zyrtare open_consultation: one: Konsultim i hapur other: Konsultime te hapura - overview: oral_statement: one: Deklarata gojore në Parlament other: Deklarata gojore në Parlament @@ -229,14 +213,12 @@ sq: policy_paper: one: Dokument politikash other: Dokumente politikash - overview: press_release: one: Njoftimi shtypi other: Njoftime shtypi promotional: one: Material promovues other: Material promovues - overview: publication: one: Publikim other: Publikime @@ -246,11 +228,9 @@ sq: regulation: one: Rregullore other: Rregulloret - overview: research: one: Kërkime dhe analiza other: Kërkime dhe analiza - overview: residential_property_tribunal_decision: one: Vendimi i gjykatës së pronës së banimit other: Vendimet e gjykatës së pronës së banimit @@ -269,7 +249,6 @@ sq: standard: one: Standardi other: Standarde - overview: statement_to_parliament: one: Deklaratë në Parlament other: Deklarata në Parlament @@ -282,7 +261,6 @@ sq: statutory_guidance: one: Udhëzim ligjor other: Udhëzim ligjor - overview: take_part: one: Merr pjesë other: Merr pjesë @@ -295,7 +273,6 @@ sq: transparency: one: Të dhëna për transparencën other: Të dhëna për transparencën - overview: utaac_decision: one: Vendimi i gjykatës së apelit administrativ other: Vendime të gjykatës së apelit administrativ @@ -316,54 +293,54 @@ sq: social_media_use_html: Lexoni politikën tonë në %{link}. welsh_language_scheme_html: Mësoni rreth angazhimit tonë ndaj %{link}. email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: Stema e Ministrisë së Mbrojtjes field_of_operation: Fusha e operimit operations_in: Operacione në %{location} get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: Nuk është më e disponueshme published_in_error: Informacioni në këtë faqe është hequr sepse është publikuar gabimisht. @@ -379,74 +356,74 @@ sq: 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ë. i18n: - direction: + direction: language_names: - ar: - az: - be: - bg: - bn: - cs: - cy: - da: - de: - dr: - el: - en: - es: - es-419: - et: - fa: - fi: - fr: - gd: - gu: - he: - hi: - hr: - hu: - hy: - id: - is: - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: + ar: + az: + be: + bg: + bn: + cs: + cy: + da: + de: + dr: + el: + en: + es: + es-419: + et: + fa: + fi: + fr: + gd: + gu: + he: + hi: + hr: + hu: + hy: + id: + is: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: sq: Shqip - sr: - sv: - sw: - ta: - th: - tk: - tr: - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + sr: + sv: + sw: + ta: + th: + tk: + tr: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: Tjetër previous_page: I mëparshëm diff --git a/config/locales/sr.yml b/config/locales/sr.yml index a0dbb102c..c7241ec77 100644 --- a/config/locales/sr.yml +++ b/config/locales/sr.yml @@ -41,7 +41,7 @@ sr: feedback_received: Povratne informacije su primljene is_being: je not_open_yet: Ove konsultacije još nisu otvorene - 'on': + 'on': opens: Ove konsultacije se otvaraju original_consultation: Prvobitne konsultacije ran_from: Ove konsultacije se održavaju od @@ -64,396 +64,373 @@ sr: updated: Ažurirano schema_name: aaib_report: - few: - many: + few: + many: one: Izveštaj Agencije istragu vazduhoplovnih nesreća other: Izveštaji Agencije istragu vazduhoplovnih nesreća announcement: - few: - many: + few: + many: one: Najava other: Najave asylum_support_decision: - few: - many: + few: + many: one: Odluka tribunala za podršku azilu other: Odluke tribunala za podršku azilu authored_article: - few: - many: + few: + many: one: Autorski članak other: Autorski članci business_finance_support_scheme: - few: - many: + few: + many: one: Šema podrške za poslovno finansiranje other: Šeme podrške za poslovno finansiranje case_study: - few: - many: + few: + many: one: Studija slučaja other: Studije slučaja closed_consultation: - few: - many: + few: + many: one: Zatvorena konsultacija other: Zatvorene konsultacije - overview: cma_case: - few: - many: + few: + many: one: Predmet Nacionalnog tela za zaštitu konkurencije i tržišta other: Predmeti Nacionalnog tela za zaštitu konkurencije i tržišta coming_soon: - few: - many: + few: + many: one: Uskoro other: Uskoro consultation: - few: - many: + few: + many: one: Konsultacija other: Konsultacije consultation_outcome: - few: - many: + few: + many: one: Ishod konsultacija other: Ishodi konsultacija - overview: corporate_information_page: - few: - many: + few: + many: one: Stranica sa informacijama other: Stranice sa informacijama corporate_report: - few: - many: + few: + many: one: Organizacioni izveštaj other: Organizacioni izveštaji - overview: correspondence: - few: - many: + few: + many: one: Prepiska other: Prepiske - overview: countryside_stewardship_grant: - few: - many: + few: + many: one: Grant za upravljanje poljoprivrednim gazdinstvom other: Grantovi za upravljanje poljoprivrednim gazdinstvom decision: - few: - many: + few: + many: one: Odluka other: Odluke - overview: detailed_guide: - few: - many: + few: + many: one: Detaljno uputstvo other: Detaljno uputstvo dfid_research_output: - few: - many: + few: + many: one: Istraživanje za krajnji cilj razvoja other: Istraživanje za krajnji ciljeve razvoja document_collection: - few: - many: + few: + many: one: Kolekcija other: Kolekcije draft_text: - few: - many: + few: + many: one: Radna verzija teksta other: Radne verzije teksta drug_safety_update: - few: - many: + few: + many: one: Obaveštenje o bezbednosti lekova other: Obaveštenja o bezbednosti lekova employment_appeal_tribunal_decision: - few: - many: + few: + many: one: Odluka tribunala za žalbe u vezi sa zaposlenjem other: Odluke tribunala za žalbe u vezi sa zaposlenjem employment_tribunal_decision: - few: - many: + few: + many: one: Odluka tribunala za zaposlenje other: Odluke tribunala za zaposlenje esi_fund: - few: - many: + few: + many: one: Evropski strukturni i investicioni fond (ESIF) other: Evropski strukturni i investicioni fondovi (ESIF) fatality_notice: - few: - many: + few: + many: one: Obaveštenje o smrtnim slučajevima other: Obaveštenja o smrtnim slučajevima foi_release: - few: - many: + few: + many: one: Odgovor na zahtev za pristup informacijama od javnog značaja other: Odgovori na zahteve za pristup informacijama od javnog značaja - overview: form: - few: - many: + few: + many: one: Formular other: Obrasci - overview: government_response: - few: - many: + few: + many: one: Odgovor vlade other: Odgovori vlade guidance: - few: - many: + few: + many: one: Detaljno uputstvo other: Detaljno uputstvo - overview: impact_assessment: - few: - many: + few: + many: one: Procena efekta other: Procene efekata - overview: imported: - few: - many: + few: + many: one: uvezeno – utvrđivanje tipa other: uvezeno – utvrđivanje tipa independent_report: - few: - many: + few: + many: one: Nezavisni izveštaj other: Nezavisni izveštaji - overview: international_development_fund: - few: - many: + few: + many: one: Međunarodni fond za razvoj other: Međunarodni fond za razvoj international_treaty: - few: - many: + few: + many: one: Međunarodni sporazum other: Međunarodni sporazumi - overview: maib_report: - few: - many: + few: + many: one: Izveštaj Agencije istragu pomorskih nesreća other: Izveštaji Agencije istragu pomorskih nesreća map: - few: - many: + few: + many: one: Mapa other: Mape - overview: medical_safety_alert: - few: - many: + few: + many: one: Upozorenja i zahtevi za opoziv za lekove i medicinska sredstva other: Upozorenja i zahtevi za opoziv za lekove i medicinska sredstva national: - few: - many: + few: + many: one: Najava državne statistike other: Najave državne statistike national_statistics: - few: - many: + few: + many: one: Državna statistika other: Državna statistika - overview: national_statistics_announcement: - few: - many: + few: + many: one: Najava državne statistike other: Najave državne statistike news_article: - few: - many: + few: + many: one: Članak vesti other: Članci vesti news_story: - few: - many: + few: + many: one: Vest other: Vesti notice: - few: - many: + few: + many: one: Obaveštenje other: Obaveštenja - overview: official: - few: - many: + few: + many: one: Izjava zvanične statistike other: Izjave zvanične statistike official_statistics: - few: - many: + few: + many: one: Zvanična statistika other: Zvanična statistika - overview: official_statistics_announcement: - few: - many: + few: + many: one: Izjava zvanične statistike other: Izjave zvanične statistike open_consultation: - few: - many: + few: + many: one: Otvorena konsultacija other: Otvorene konsultacije - overview: oral_statement: - few: - many: + few: + many: one: Usmeno obraćanje Parlamentu other: Usmena obraćanja Parlamentu policy: - few: - many: + few: + many: one: Politika other: Politike policy_paper: - few: - many: + few: + many: one: Predlog politike other: Predlozi politike - overview: press_release: - few: - many: + few: + many: one: Saopštenje za medije other: Saopštenja za štampu promotional: - few: - many: + few: + many: one: Promotivni materijal other: Promotivni materijal - overview: publication: - few: - many: + few: + many: one: Publikacija other: Publikacije raib_report: - few: - many: + few: + many: one: Izveštaj Agencije istragu železničkih nesreća other: Izveštaji Agencije istragu železničkih nesreća regulation: - few: - many: + few: + many: one: Propis other: Propisi - overview: research: - few: - many: + few: + many: one: Istraživanje i analiza other: Istraživanje i analiza - overview: residential_property_tribunal_decision: - few: - many: + few: + many: one: Odluka tribunala o imovini rezidenta other: Odluke tribunala o imovini rezidenata service_sign_in: - few: - many: + few: + many: one: Prijava u uslugu other: Prijava u uslugu service_standard_report: - few: - many: + few: + many: one: Izveštaj o standardu usluge other: Izveštaji o standardu usluge speaking_notes: - few: - many: + few: + many: one: Teze za govor other: Teze za govor speech: - few: - many: + few: + many: one: Govor other: Govori standard: - few: - many: + few: + many: one: Standard other: Standardi - overview: statement_to_parliament: - few: - many: + few: + many: one: Obraćanje Parlamentu other: Obraćanja Parlamentu statistical_data_set: - few: - many: + few: + many: one: Set statističkih podataka other: Setovi statističkih podataka statistics_announcement: - few: - many: + few: + many: one: Saopštenje o objavljenim statističkim podacima other: Saopštenja o objavljenim statističkim podacima statutory_guidance: - few: - many: + few: + many: one: Zakonska uputstva other: Zakonska uputstva - overview: take_part: - few: - many: + few: + many: one: Učešće other: Učešće tax_tribunal_decision: - few: - many: + few: + many: one: Odluka tribunala o porezima i državnoj upravi other: Odluke tribunala o porezima i državnoj upravi transcript: - few: - many: + few: + many: one: Transkript other: Transkripti transparency: - few: - many: + few: + many: one: Podaci o transparentnosti other: Podaci o transparentnosti - overview: utaac_decision: - few: - many: + few: + many: one: Odluka tribunala za administrativne žalbe other: Odluke tribunala za administrativne žalbe world_location_news_article: - few: - many: + few: + many: one: Članak vesti other: Članci vesti world_news_story: - few: - many: + few: + many: one: Vest iz sveta other: Vesti iz sveta written_statement: - few: - many: + few: + many: one: Pismena predstavka Parlamentu other: Pismene predstavke Parlamentu corporate_information_page: @@ -464,54 +441,54 @@ sr: social_media_use_html: Pročitajte našu politiku na %{link}. welsh_language_scheme_html: Saznajte više o našoj posvećenosti %{link}. email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: Grb Ministarstva odbrane field_of_operation: Oblast delovanja operations_in: Delovanje na lokaciji %{location} get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: Nije više dostupno published_in_error: Informacije sa ove stranice su uklonjene jer su bile objavljene greškom. @@ -527,74 +504,74 @@ sr: 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. i18n: - direction: + direction: language_names: - ar: - az: - be: - bg: - bn: - cs: - cy: - da: - de: - dr: - el: - en: - es: - es-419: - et: - fa: - fi: - fr: - gd: - gu: - he: - hi: - hr: - hu: - hy: - id: - is: - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: + ar: + az: + be: + bg: + bn: + cs: + cy: + da: + de: + dr: + el: + en: + es: + es-419: + et: + fa: + fi: + fr: + gd: + gu: + he: + hi: + hr: + hu: + hy: + id: + is: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: sr: srpski - sv: - sw: - ta: - th: - tk: - tr: - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + sv: + sw: + ta: + th: + tk: + tr: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: Sledeće previous_page: Prethodno @@ -602,8 +579,8 @@ sr: publication: details: Detalji documents: - few: - many: + few: + many: one: Dokument other: Dokumenti service_sign_in: diff --git a/config/locales/sv.yml b/config/locales/sv.yml index 525ab7de1..093032fda 100644 --- a/config/locales/sv.yml +++ b/config/locales/sv.yml @@ -41,7 +41,7 @@ sv: feedback_received: Återkoppling som mottagits is_being: är på väg att not_open_yet: Detta samråd är inte öppet ännu - 'on': + 'on': opens: Detta samråd öppnas original_consultation: Ursprungligt samråd ran_from: Detta samråd pågick från och med @@ -84,7 +84,6 @@ sv: closed_consultation: one: Slutet samråd other: Slutna samråd - overview: cma_case: one: Konkurrens- och marknadsmyndighetens ärende other: Konkurrens- och marknadsmyndighetens ärenden @@ -97,25 +96,21 @@ sv: consultation_outcome: one: Resultat av samrådet other: Resultat av samråden - overview: corporate_information_page: one: Informationssida other: Informationssidor corporate_report: one: Företagsrapport other: Företagsrapporter - overview: correspondence: one: Korrespondens other: Korrespondens - overview: countryside_stewardship_grant: one: Bidrag till Förvaltning av landsbygden other: Bidrag till Förvaltning av landsbygden decision: one: Beslut other: Beslut - overview: detailed_guide: one: Vägledning other: Vägledning @@ -146,43 +141,36 @@ sv: foi_release: one: FOI-utlämnande other: FOI-meddelanden - overview: form: one: Formulär other: Formulär - overview: government_response: one: Regeringens svar other: Regeringens svar guidance: one: Vägledning other: Vägledning - overview: impact_assessment: one: Konsekvensbedömning other: Konsekvensbedömningar - overview: imported: one: importerad - väntar på typ other: importerad - väntar på typ independent_report: one: Oberoende rapport other: Oberoende rapporter - overview: international_development_fund: one: Finansiering av internationell utveckling other: Finansiering av internationell utveckling international_treaty: one: Internationellt fördrag other: Internationella fördrag - overview: maib_report: one: Rapport från Utredningsavdelningen för sjöolyckor other: Rapporter från Utredningsavdelningen för sjöolyckor map: one: Karta other: Kartor - overview: medical_safety_alert: one: Varningar och återkallelser av läkemedel och medicintekniska produkter other: Varningar och återkallelser av läkemedel och medicintekniska produkter @@ -192,7 +180,6 @@ sv: national_statistics: one: Nationell statistik other: Nationell statistik - overview: national_statistics_announcement: one: Meddelande om nationell statistik other: Meddelanden om nationell statistik @@ -205,21 +192,18 @@ sv: notice: one: Meddelande other: Meddelanden - overview: official: one: Meddelande om officiell statistik other: Meddelanden om officiell statistik official_statistics: one: Officiell statistik other: Officiell statistik - overview: official_statistics_announcement: one: Meddelande om officiell statistik other: Meddelanden om officiell statistik open_consultation: one: Öppet samråd other: Öppet samråd - overview: oral_statement: one: Muntligt uttalande till parlamentet other: Muntliga uttalanden till parlamentet @@ -229,14 +213,12 @@ sv: policy_paper: one: Policydokument other: Policydokument - overview: press_release: one: Pressmeddelande other: Pressmeddelanden promotional: one: Material för marknadsföring other: Material för marknadsföring - overview: publication: one: Publikation other: Publikationer @@ -246,11 +228,9 @@ sv: regulation: one: Förordning other: Förordningar - overview: research: one: Forskning och analys other: Forskning och analys - overview: residential_property_tribunal_decision: one: Beslut av domstol för bostadsfastigheter other: Beslut från domstolarna för bostadsfastigheter @@ -269,7 +249,6 @@ sv: standard: one: Standard other: Standarder - overview: statement_to_parliament: one: Uttalande till parlamentet other: Uttalanden till parlamentet @@ -282,7 +261,6 @@ sv: statutory_guidance: one: Lagstadgad vägledning other: Lagstadgad vägledning - overview: take_part: one: Delta other: Delta @@ -295,7 +273,6 @@ sv: transparency: one: Öppenhetsuppgifter other: Öppenhetsuppgifter - overview: utaac_decision: one: Administrativa överklagandenämndens beslut other: Administrativa överklagandenämndens beslut @@ -316,54 +293,54 @@ sv: social_media_use_html: Läs vår policy för %{link}. welsh_language_scheme_html: Ta reda på vårt åtagande om %{link}. email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: Försvarsministeriets vapensköld field_of_operation: Verksamhetsområde operations_in: Verksamhet på %{location} get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: Inte längre tillgänglig published_in_error: Informationen på den här sidan har tagits bort eftersom den publicerades felaktigt. @@ -379,74 +356,74 @@ sv: 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. i18n: - direction: + direction: language_names: - ar: - az: - be: - bg: - bn: - cs: - cy: - da: - de: - dr: - el: - en: - es: - es-419: - et: - fa: - fi: - fr: - gd: - gu: - he: - hi: - hr: - hu: - hy: - id: - is: - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: + ar: + az: + be: + bg: + bn: + cs: + cy: + da: + de: + dr: + el: + en: + es: + es-419: + et: + fa: + fi: + fr: + gd: + gu: + he: + hi: + hr: + hu: + hy: + id: + is: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: sv: Svenska - sw: - ta: - th: - tk: - tr: - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + sw: + ta: + th: + tk: + tr: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: Nästa previous_page: Föregående diff --git a/config/locales/sw.yml b/config/locales/sw.yml index 9fe53dd89..94db841b4 100644 --- a/config/locales/sw.yml +++ b/config/locales/sw.yml @@ -41,7 +41,7 @@ sw: feedback_received: Maoni yamepokewa is_being: yana not_open_yet: Bado mashauriano haya hayajafunguliwa - 'on': + 'on': opens: Mashauriano haya yatafunguliwa original_consultation: Mashauriano halisi ran_from: Mashauriano haya yalifanywa kuanzia @@ -84,7 +84,6 @@ sw: closed_consultation: one: Mashauriano ya watu wachache other: Mashauriano ya watu wachache - overview: cma_case: one: Kesi ya Mamlaka ya Masoko na Ushindani other: Kesi za Mamlaka ya Masoko na Ushindani @@ -97,25 +96,21 @@ sw: consultation_outcome: one: Matokeo ya mashauriano other: Matokeo ya mashauriano - overview: corporate_information_page: one: Ukurasa wa maelezo other: Kurasa za maelezo corporate_report: one: Ripoti ya shirika other: Ripoti za shirika - overview: correspondence: one: Mawasiliano other: Mawasiliano - overview: countryside_stewardship_grant: one: Ruzuku ya Usimamizi wa Mashambani other: Ruzuku za Usimamizi wa Mashambani decision: one: Uamuzi other: Maamuzi - overview: detailed_guide: one: Mwongozo other: Mwongozo @@ -146,43 +141,36 @@ sw: foi_release: one: Taarifa ya FOI other: Taarifa za FOI - overview: form: one: Fomu other: Fomu - overview: government_response: one: Hatua iliyochukuliwa na serikali other: Hatua zilizochukuliwa na serikali guidance: one: Mwongozo other: Mwongozo - overview: impact_assessment: one: Utathmini wa athari other: Tathmini za athari - overview: imported: one: zilizoagizwa kutoka nje - aina ya hali ya kusbiri other: zilizoagizwa kutoka nje - aina ya hali ya kusbiri independent_report: one: Ripoti huru other: Ripoti huru - overview: international_development_fund: one: Ufadhili wa maendeleo ya kimataifa other: Ufadhili wa maendeleo ya kimataifa international_treaty: one: Mkataba wa kimataifa other: Mikataba ya kimataifa - overview: maib_report: one: Ripoti ya Kitengo cha Uchunguzi wa Ajali za Baharini other: Ripoti za Kitengo cha Uchunguzi wa Ajali za Baharini map: one: Ramani other: Ramani - overview: medical_safety_alert: one: Taarifa na kuondolewa kwa dawa na vifaa vya matibabu sokoni other: Taarifa na kuondolewa kwa dawa na vifaa vya matibabu sokoni @@ -192,7 +180,6 @@ sw: national_statistics: one: Takwimu za Kitaifa other: Takwimu za Kitaifa - overview: national_statistics_announcement: one: Tangazo la takwimu za kitaifa other: Matangazo ya takwimu za kitaifa @@ -205,21 +192,18 @@ sw: notice: one: Notisi other: Notisi - overview: official: one: Tangazo la takwimu rasmi other: Matangazo ya takwimu rasmi official_statistics: one: Takwimu Rasmi other: Takwimu Rasmi - overview: official_statistics_announcement: one: Tangazo la takwimu rasmi other: Matangazo ya takwimu rasmi open_consultation: one: Mashauriano ya watu wengi other: Mashauriano ya watu wengi - overview: oral_statement: one: Taarifa ya Matamshi kwa Bunge other: Taarifa za Matamshi kwa Bunge @@ -229,14 +213,12 @@ sw: policy_paper: one: Hati ya sera other: Hati za sera - overview: press_release: one: Taarifa kwa vyombo vya habari other: Taarifa kwa vyombo vya habari promotional: one: Nyenzo ya matangazo other: Nyenzo ya matangazo - overview: publication: one: Chapisho other: Machapisho @@ -246,11 +228,9 @@ sw: regulation: one: Kanuni other: Kanuni - overview: research: one: Utafiti na uchanganuzi other: Utafiti na uchanganuzi - overview: residential_property_tribunal_decision: one: Uamuzi wa mahakama ya kesi za mali ya makazi other: Maamuzi ya mahakama ya kesi za mali ya makazi @@ -269,7 +249,6 @@ sw: standard: one: Kiwango other: Viwango - overview: statement_to_parliament: one: Taarifa kwa Bunge other: Taarifa kwa Bunge @@ -282,7 +261,6 @@ sw: statutory_guidance: one: Mwongozo wa kisheria other: Mwongozo wa kisheria - overview: take_part: one: Shiriki other: Shiriki @@ -295,7 +273,6 @@ sw: transparency: one: Data ya uwazi other: Data ya uwazi - overview: utaac_decision: one: Uamuzi wa mahakama ya rufaa za kesi za usimamizi other: Maamuzi ya mahakama ya rufaa za kesi za usimamizi @@ -316,54 +293,54 @@ sw: social_media_use_html: Soma sera yetu kwenye %{link}. welsh_language_scheme_html: Pata maelezo kuhusu wajibu wetu wa %{link}. email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: Eneo la Wizara ya Ulinzi field_of_operation: Sehemu ya kazi operations_in: Shughuli zinazofanywa katika %{location} get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: Hayapatikani tena published_in_error: Maelezo yaliyo kwenye ukurasa huu yameondolewa kwa sababu yalichapishwa kimakosa. @@ -379,74 +356,74 @@ sw: 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. i18n: - direction: + direction: language_names: - ar: - az: - be: - bg: - bn: - cs: - cy: - da: - de: - dr: - el: - en: - es: - es-419: - et: - fa: - fi: - fr: - gd: - gu: - he: - hi: - hr: - hu: - hy: - id: - is: - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: + ar: + az: + be: + bg: + bn: + cs: + cy: + da: + de: + dr: + el: + en: + es: + es-419: + et: + fa: + fi: + fr: + gd: + gu: + he: + hi: + hr: + hu: + hy: + id: + is: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: sw: Kiswahili - ta: - th: - tk: - tr: - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + ta: + th: + tk: + tr: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: Unaofuata previous_page: Uliotangulia diff --git a/config/locales/ta.yml b/config/locales/ta.yml index 3de7caa3d..a4aaf5e42 100644 --- a/config/locales/ta.yml +++ b/config/locales/ta.yml @@ -41,7 +41,7 @@ ta: feedback_received: மதிப்புரை பெறப்பட்டது is_being: இருக்கிறது not_open_yet: இந்தக் கலந்தாலோசனை இன்னும் திறக்கப்படவில்லை - 'on': + 'on': opens: இந்தக் கலந்தாலோசனை திறக்கிறது original_consultation: மூலக் கலந்தாலோசனை ran_from: "-லிருந்து இந்தக் கலந்தாலோசனை நடந்தது" @@ -84,7 +84,6 @@ ta: closed_consultation: one: மூடிய கலந்தாய்வு other: மூடிய கலந்தாய்வுகள் - overview: cma_case: one: போட்டி மற்றும் சந்தைகளில் வலிமை வழக்கு other: போட்டி மற்றும் சந்தைகளில் வலிமை வழக்குகள் @@ -97,25 +96,21 @@ ta: consultation_outcome: one: கலந்தாய்வின் விளைவு other: கலந்தாய்வின் விளைவுகள் - overview: corporate_information_page: one: தகவல் பக்கம் other: தகவல் பக்கங்கள் corporate_report: one: குழும அறிக்கை other: குழும அறிக்கைகள் - overview: correspondence: one: கடிதத் தொடர்பு other: கடிதத் தொடர்புகள் - overview: countryside_stewardship_grant: one: கிராமப் பொறுப்பாளர் மானியம் other: கிராமப் பொறுப்பாளர் மானியங்கள் decision: one: முடிவு other: முடிவுகள் - overview: detailed_guide: one: வழிகாட்டுதல் other: வழிகாட்டுதல் @@ -146,43 +141,36 @@ ta: foi_release: one: தகவல் சுதந்திர வெளியீடு other: தகவல் சுதந்திர வெளியீடுகள் - overview: form: one: படிவம் other: படிவங்கள் - overview: government_response: one: அரசாங்க பதில் other: அரசாங்க பதில்கள் guidance: one: வழிகாட்டுதல் other: வழிகாட்டுதல் - overview: impact_assessment: one: தாக்க மதிப்பீடு other: தாக்க மதிப்பீடுகள் - overview: imported: one: இறக்குமதியானது - எதிர்பார்க்கும் வகை other: இறக்குமதியானது - எதிர்பார்க்கும் வகை independent_report: one: தற்சார்பு அறிக்கை other: தற்சார்பு அறிக்கைகள் - overview: international_development_fund: one: சர்வதேச மேம்பாட்டு நிதியளிப்பு other: சர்வதேச மேம்பாட்டு நிதியளிப்பு international_treaty: one: சர்வதேச உடன்படிக்கை other: சர்வதேச உடன்படிக்கைகள் - overview: maib_report: one: கடல் விபத்து விசாரணைக் கிளை அறிக்கை other: கடல் விபத்து விசாரணைக் கிளை அறிக்கைகள் map: one: வரைபடம் other: வரைபடங்கள் - overview: medical_safety_alert: one: மருந்துகள் மற்றும் மருத்துவ சாதனங்களுக்கான விழிப்பூட்டல்களும் நினைவுமீட்டல்களும் other: மருந்துகள் மற்றும் மருத்துவ சாதனங்களுக்கான விழிப்பூட்டல்களும் நினைவுமீட்டல்களும் @@ -192,7 +180,6 @@ ta: national_statistics: one: தேசிய புள்ளியியல் other: தேசிய புள்ளியியல் - overview: national_statistics_announcement: one: தேசிய புள்ளியியல் அறிவிப்பு other: தேசிய புள்ளியியல் அறிவிப்புகள் @@ -205,21 +192,18 @@ ta: notice: one: அறிவிப்பு other: அறிவிப்புகள் - overview: official: one: அதிகாரப்பூர்வ புள்ளியியல் அறிவிப்பு other: அதிகாரப்பூர்வ புள்ளியியல் அறிவிப்புகள் official_statistics: one: அதிகாரப்பூர்வ புள்ளியியல் other: அதிகாரப்பூர்வ புள்ளியியல் - overview: official_statistics_announcement: one: அதிகாரப்பூர்வ புள்ளியியல் அறிவிப்பு other: அதிகாரப்பூர்வ புள்ளியியல் அறிவிப்புகள் open_consultation: one: திறந்த கலந்தாலோசனை other: திறந்த கலந்தாலோசனைகள் - overview: oral_statement: one: பாராளுமன்றத்துக்கு வாய்வழி அறிவிப்பு other: பாராளுமன்றத்துக்கு வாய்வழி அறிவிப்புகள் @@ -229,14 +213,12 @@ ta: policy_paper: one: கொள்கை ஆவணம் other: கொள்கை ஆவணங்கள் - overview: press_release: one: செய்திக் குறிப்பு other: செய்திக் குறிப்புகள் promotional: one: விளம்பரப் பொருள் other: விளம்பரப் பொருள் - overview: publication: one: பிரசுரம் other: பிரசுரங்கள் @@ -246,11 +228,9 @@ ta: regulation: one: ஒழுங்குமுறை other: ஒழுங்குமுறைகள் - overview: research: one: ஆராய்ச்சி மற்றும் பகுப்பாய்வு other: ஆராய்ச்சி மற்றும் பகுப்பாய்வு - overview: residential_property_tribunal_decision: one: வசிப்பிடச் சொத்துத் தீர்ப்பாய முடிவு other: வசிப்பிடச் சொத்துத் தீர்ப்பாய முடிவுகள் @@ -269,7 +249,6 @@ ta: standard: one: தரநிலை other: தரநிலைகள் - overview: statement_to_parliament: one: பாராளுமன்றத்துக்கான அறிக்கை other: பாராளுமன்றத்துக்கான அறிக்கைகள் @@ -282,7 +261,6 @@ ta: statutory_guidance: one: சட்டப்பூர்வ வழிகாட்டுதல் other: சட்டப்பூர்வ வழிகாட்டுதல் - overview: take_part: one: பங்கெடுத்தல் other: பங்கெடுத்தல் @@ -295,7 +273,6 @@ ta: transparency: one: வெளிப்படையான தரவு other: வெளிப்படையான தரவு - overview: utaac_decision: one: நிர்வாக மேல்முறையீட்டுத் தீர்ப்பாய முடிவு other: நிர்வாக மேல்முறையீட்டுத் தீர்ப்பாய முடிவுகள் @@ -316,54 +293,54 @@ ta: social_media_use_html: "%{link}-ல் எங்கள் கொள்கை குறித்து வாசியுங்கள்." welsh_language_scheme_html: "%{link}-க்கு எங்கள் கடப்பாடு குறித்துக் கண்டறியுங்கள்." email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: பாதுகாப்பு காவல்துறை அமைச்சர் field_of_operation: இயங்குதளம் operations_in: "%{location}-ல் செயல்பாடுகள்" get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: இனி கிடைக்காது published_in_error: இந்தப் பக்கத்திலிருந்த தகவல்கள் நீக்கப்பட்டுள்ளன. காரணம் அது பிழையாக வெளியிடப்பட்டது. @@ -379,74 +356,74 @@ ta: 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: தொடர்புடைய காப்புரிமைதாரர்களிடமிருந்து அனுமதி பெறுவதற்கு உங்களுக்குத் தேவையான ஏதேனும் மூன்றாம் நபர் காப்புரிமைத் தகவல்கள் நாங்கள் அடையாளம் காணுமிடத்தில். i18n: - direction: + direction: language_names: - ar: - az: - be: - bg: - bn: - cs: - cy: - da: - de: - dr: - el: - en: - es: - es-419: - et: - fa: - fi: - fr: - gd: - gu: - he: - hi: - hr: - hu: - hy: - id: - is: - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: + ar: + az: + be: + bg: + bn: + cs: + cy: + da: + de: + dr: + el: + en: + es: + es-419: + et: + fa: + fi: + fr: + gd: + gu: + he: + hi: + hr: + hu: + hy: + id: + is: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: ta: தமிழ் - th: - tk: - tr: - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + th: + tk: + tr: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: அடுத்து previous_page: முந்தையது diff --git a/config/locales/th.yml b/config/locales/th.yml index 6bf33c4d2..87a86c9ad 100644 --- a/config/locales/th.yml +++ b/config/locales/th.yml @@ -41,7 +41,7 @@ th: feedback_received: ข้อเสนอแนะที่ได้รับ is_being: กำลังถูก not_open_yet: ยังไม่เปิดการให้คำปรึกษา - 'on': + 'on': opens: การให้คำปรึกษานี้เปิดแล้ว original_consultation: การให้คำปรึกษาดั้งเดิม ran_from: การให้คำปรึกษานี้เริ่มจาก @@ -84,7 +84,6 @@ th: closed_consultation: one: การให้คำปรึกษาที่ปิดแล้ว other: การให้คำปรึกษาที่ปิดแล้ว - overview: cma_case: one: กรณีของหน่วยงานที่มีอำนาจดูแลการแข่งขันและตลาด other: กรณีของหน่วยงานที่มีอำนาจดูแลการแข่งขันและตลาด @@ -97,25 +96,21 @@ th: consultation_outcome: one: ผลลัพธ์จากการให้คำปรึกษา other: ผลลัพธ์จากการให้คำปรึกษา - overview: corporate_information_page: one: หน้าข้อมูล other: หน้าข้อมูล corporate_report: one: รายงานของบริษัท other: รายงานของบริษัท - overview: correspondence: one: จดหมายโต้ตอบ other: จดหมายโต้ตอบ - overview: countryside_stewardship_grant: one: เงินทุนเพื่อชนบท other: เงินทุนเพื่อชนบท decision: one: การตัดสินใจ other: การตัดสินใจ - overview: detailed_guide: one: คำแนะนำ other: คำแนะนำ @@ -146,43 +141,36 @@ th: foi_release: one: การออก FOI other: การออก FOI - overview: form: one: แบบฟอร์ม other: แบบฟอร์ม - overview: government_response: one: คำตอบของรัฐบาล other: คำตอบของรัฐบาล guidance: one: คำแนะนำ other: คำแนะนำ - overview: impact_assessment: one: การประเมินผลกระทบ other: การประเมินผลกระทบ - overview: imported: one: นำเข้าแล้ว - รอการพิมพ์ other: นำเข้าแล้ว - รอการพิมพ์ independent_report: one: รายงานอิสระ other: รายงานอิสระ - overview: international_development_fund: one: ทุนพัฒนาระหว่างประเทศ other: ทุนพัฒนาระหว่างประเทศ international_treaty: one: สนธิสัญญาระหว่างประเทศ other: สนธิสัญญาระหว่างประเทศ - overview: maib_report: one: รายงานสาขาการสืบสวนอุบัติเหตุทางทะเล other: รายงานสาขาการสืบสวนอุบัติเหตุทางอากาศ map: one: แผนที่ other: แผนที่ - overview: medical_safety_alert: one: การแจ้งเตือนและการเรียกคืนยาและเครื่องมือแพทย์ other: การแจ้งเตือนและการเรียกคืนยาและเครื่องมือแพทย์ @@ -192,7 +180,6 @@ th: national_statistics: one: สถิติแห่งชาติ other: สถิติแห่งชาติ - overview: national_statistics_announcement: one: ประกาศสถิติแห่งชาติ other: ประกาศสถิติแห่งชาติ @@ -205,21 +192,18 @@ th: notice: one: ประกาศ other: ประกาศ - overview: official: one: ประกาศสถิติของราชการ other: ประกาศสถิติของราชการ official_statistics: one: สถิติของราชการ other: สถิติของราชการ - overview: official_statistics_announcement: one: ประกาศสถิติของราชการ other: ประกาศสถิติของราชการ open_consultation: one: การให้คำปรึกษาที่เปิดอยู่ other: การให้คำปรึกษาที่เปิดอยู่ - overview: oral_statement: one: แถลงการณ์ด้วยวาจาต่อรัฐสภา other: แถลงการณ์ด้วยวาจาต่อรัฐสภา @@ -229,14 +213,12 @@ th: policy_paper: one: เอกสารนโยบาย other: เอกสารนโยบาย - overview: press_release: one: ข่าวประชาสัมพันธ์ other: ข่าวประชาสัมพันธ์ promotional: one: สื่อวัสดุส่งเสริมการขาย other: สื่อวัสดุส่งเสริมการขาย - overview: publication: one: สิ่งพิมพ์ other: สิ่งพิมพ์ @@ -246,11 +228,9 @@ th: regulation: one: ระเบียบข้อบังคับ other: ระเบียบข้อบังคับ - overview: research: one: การวิจัยและการวิเคราะห์ other: การวิจัยและการวิเคราะห์ - overview: residential_property_tribunal_decision: one: คำพิพากษาของศาลเกี่ยวกับที่อยู่อาศัย other: คำพิพากษาของศาลเกี่ยวกับที่อยู่อาศัย @@ -269,7 +249,6 @@ th: standard: one: มาตรฐาน other: มาตรฐาน - overview: statement_to_parliament: one: แถลงการณ์ต่อรัฐสภา other: แถลงการณ์ต่อรัฐสภา @@ -282,7 +261,6 @@ th: statutory_guidance: one: คำแนะนำทางกฎหมาย other: คำแนะนำทางกฎหมาย - overview: take_part: one: มีส่วนร่วม other: มีส่วนร่วม @@ -295,7 +273,6 @@ th: transparency: one: ข้อมูลความโปร่งใส other: ข้อมูลความโปร่งใส - overview: utaac_decision: one: คำพิพากษาของศาลปกครองขั้นอุทธรณ์ other: คำพิพากษาของศาลแรงงานขั้นอุทธรณ์ @@ -316,54 +293,54 @@ th: social_media_use_html: อ่านนโยบายของเราที่ %{link} welsh_language_scheme_html: ดูข้อมูลเพิ่มเติมเกี่ยวกับพันธกิจของเราสำหรับ %{link} email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: ตรากระทรวงกลาโหม field_of_operation: พื้นที่ปฏิบัติการ operations_in: การดำเนินงานใน %{location} get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: ไม่มีแล้ว published_in_error: ข้อมูลในหน้านี้ถูกนำออกเนื่องจากมีการเผยแพร่โดยความผิดพลาด @@ -379,74 +356,74 @@ th: 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: ในกรณีที่เราพบข้อมูลลิขสิทธิ์ของบุคคลที่สามใดๆ คุณจะต้องขอรับการอนุญาตจากผู้ถือลิขสิทธิ์ที่เกี่ยวข้องนั้นๆ i18n: - direction: + direction: language_names: - ar: - az: - be: - bg: - bn: - cs: - cy: - da: - de: - dr: - el: - en: - es: - es-419: - et: - fa: - fi: - fr: - gd: - gu: - he: - hi: - hr: - hu: - hy: - id: - is: - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: + ar: + az: + be: + bg: + bn: + cs: + cy: + da: + de: + dr: + el: + en: + es: + es-419: + et: + fa: + fi: + fr: + gd: + gu: + he: + hi: + hr: + hu: + hy: + id: + is: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: th: ไทย - tk: - tr: - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + tk: + tr: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: ถัดไป previous_page: ก่อนหน้า diff --git a/config/locales/tk.yml b/config/locales/tk.yml index 93d102d3a..539e821df 100644 --- a/config/locales/tk.yml +++ b/config/locales/tk.yml @@ -41,7 +41,7 @@ tk: feedback_received: Alnan seslenme is_being: bolýar not_open_yet: Bu maslahat beriş heniz açylmady - 'on': + 'on': opens: Maslahat beriş açyldy original_consultation: Hakyky maslahat beriş ran_from: Bu maslahat beriş dowam edýär @@ -84,7 +84,6 @@ tk: closed_consultation: one: Ýapyk maslahat other: Ýapyk maslahatlar - overview: cma_case: one: Bäsdeşlik we bazar häkimiýeti ýagdaýy other: Bäsdeşlik we bazar häkimiýeti ýagdaýlary @@ -97,25 +96,21 @@ tk: consultation_outcome: one: Maslahatyň netijesi other: Maslahatyň netijeleri - overview: corporate_information_page: one: Maglumat sahypasy other: Maglumat sahypalary corporate_report: one: Korperatiw hasabat other: Korperatiw hasabatlar - overview: correspondence: one: Gabat gelme other: Gabat gelmeler - overview: countryside_stewardship_grant: one: Oba dolandyryş gullugy granty other: Oba dolandyryş gullugy grantlary decision: one: Karar other: Kararlar - overview: detailed_guide: one: Gözkezme other: Gözkezme @@ -146,43 +141,36 @@ tk: foi_release: one: FOI goýberilişi other: FOI goýberişleri - overview: form: one: Forma other: Formalar - overview: government_response: one: Hökümetiň jogaby other: Hökümetiň jogaplary guidance: one: Gözkezme other: Gözkezme - overview: impact_assessment: one: Täsir bahalandyrmasy other: Täsir bahalandyrmalary - overview: imported: one: getirilen - garaşýan görnüş other: getirilen - garaşýan görnüş independent_report: one: Garaşsyz hasabat other: Garaşsyz hasabatlar - overview: international_development_fund: one: Halkara ösüşiň gaznalary other: Halkara ösüşiň gaznalary international_treaty: one: Halkara şertnama other: Halkara şertnamalar - overview: maib_report: one: Deňiz heläkçiligini derňemek bölüminiň hasabaty other: Deňiz heläkçiligini derňemek bölüminiň hasabatlary map: one: Karta other: Kartalar - overview: medical_safety_alert: one: Dermanlar we lukmançylyk enjamlary barada habar berişler we duýduryşlar other: Dermanlar we lukmançylyk enjamlary barada habar berişler we duýduryşlar @@ -192,7 +180,6 @@ tk: national_statistics: one: Milli statistika other: Milli statistika - overview: national_statistics_announcement: one: Milli statistika bildirişi other: Milli statistika bildirişleri @@ -205,21 +192,18 @@ tk: notice: one: Bellik other: Bellikler - overview: official: one: Resmi statistika bildirişi other: Resmi statistika bildirişleri official_statistics: one: Resmi statistika other: Resmi statistika - overview: official_statistics_announcement: one: Resmi statistika bildirişi other: Resmi statistika bildirişleri open_consultation: one: Açyk maslahat other: Açyk maslahatlar - overview: oral_statement: one: Mejlise dilden beýan other: Mejlise dilden beýanlar @@ -229,14 +213,12 @@ tk: policy_paper: one: Syýasat kagyzy other: Syýasat kagyzlary - overview: press_release: one: Goýberiliş neşiri other: Goýberiliş neşirleri promotional: one: Mahabat materialy other: Mahabat materialy - overview: publication: one: Neşir other: Neşirler @@ -246,11 +228,9 @@ tk: regulation: one: Düzgünnama other: Düzgünnamalar - overview: research: one: Gözleg we derňew other: Gözleg we derňew - overview: residential_property_tribunal_decision: one: Ýaşaýyş jaý kazyýetiniň karary other: Ýaşaýyş jaý kazyýetiniň kararlary @@ -269,7 +249,6 @@ tk: standard: one: Standart other: Standartlar - overview: statement_to_parliament: one: Mejlise beýan other: Mejlise beýanlar @@ -282,7 +261,6 @@ tk: statutory_guidance: one: Kanun boýunça görkezme other: Kanun boýunça görkezme - overview: take_part: one: Gatnaşmak other: Gatnaşmak @@ -295,7 +273,6 @@ tk: transparency: one: Aç-açanlyk maglumatlar other: Aç-açanlyk maglumatlar - overview: utaac_decision: one: Administratiw arza kazyýetiň karary other: Administratiw arza kazyýetiň kararlary @@ -316,54 +293,54 @@ tk: social_media_use_html: Biziň syýasatymyz barada %{link} baglanyşygymyzda okaň. welsh_language_scheme_html: Niýetimiz barada %{link}-da okaň. email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: Goranmak ministrliginiň nyşany field_of_operation: Iş meýdany operations_in: "%{location} ýerindäki işler" get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: Indi elýeter däl published_in_error: Bu sahypadaky maglumatlar ýalňyş çap edilendigi üçin aýryldy. @@ -379,74 +356,74 @@ tk: 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. i18n: - direction: + direction: language_names: - ar: - az: - be: - bg: - bn: - cs: - cy: - da: - de: - dr: - el: - en: - es: - es-419: - et: - fa: - fi: - fr: - gd: - gu: - he: - hi: - hr: - hu: - hy: - id: - is: - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: - th: + ar: + az: + be: + bg: + bn: + cs: + cy: + da: + de: + dr: + el: + en: + es: + es-419: + et: + fa: + fi: + fr: + gd: + gu: + he: + hi: + hr: + hu: + hy: + id: + is: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: + th: tk: Türkmen - tr: - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + tr: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: Indiki previous_page: Öňki diff --git a/config/locales/tr.yml b/config/locales/tr.yml index 8ae10f208..588443542 100644 --- a/config/locales/tr.yml +++ b/config/locales/tr.yml @@ -41,7 +41,7 @@ tr: feedback_received: Geri bildirim alındı is_being: alınıyor not_open_yet: Bu danışma henüz açık değil - 'on': + 'on': opens: Bu danışma açılıyor original_consultation: Orijinal danışma ran_from: Bu danışma şuradan başladı @@ -84,7 +84,6 @@ tr: closed_consultation: one: Kapalı danışma other: Kapalı danışmalar - overview: cma_case: one: Rekabet ve Piyasalar Kurumu dosyası other: Rekabet ve Piyasalar Kurumu dosyaları @@ -97,25 +96,21 @@ tr: consultation_outcome: one: Danışma sonucu other: Danışma sonuçları - overview: corporate_information_page: one: Bilgi sayfası other: Bilgi sayfaları corporate_report: one: Kurumsal rapor other: Kurumsal raporlar - overview: correspondence: one: Yazışma other: Yazışmalar - overview: countryside_stewardship_grant: one: Kırsal Koruma harcırahı other: Kırsal Koruma harcırahları decision: one: Karar other: Kararlar - overview: detailed_guide: one: Rehberlik other: Rehberlik @@ -146,43 +141,36 @@ tr: foi_release: one: Bilgi Özgürlüğü duyurusu other: Bilgi Özgürlüğü duyuruları - overview: form: one: Form other: Formlar - overview: government_response: one: Devletin yanıtı other: Devletin yanıtları guidance: one: Rehberlik other: Rehberlik - overview: impact_assessment: one: Etki değerlendirmesi other: Etki değerlendirmeleri - overview: imported: one: İçe aktarıldı - tür bekleniyor other: İçe aktarıldı - tür bekleniyor independent_report: one: Bağımsız rapor other: Bağımsız raporlar - overview: international_development_fund: one: Uluslararası kalkınma fonu other: Uluslararası kalkınma fonu international_treaty: one: Uluslararası anlaşma other: Uluslararası anlaşmalar - overview: maib_report: one: Deniz Kazası Soruşturma Şube raporu other: Deniz Kazası Soruşturma Şube raporları map: one: Harita other: Haritalar - overview: medical_safety_alert: one: İlaçlar ve tıbbi cihazlar için uyarılar ve geri çağırmalar other: İlaçlar ve tıbbi cihazlar için uyarılar ve geri çağırmalar @@ -192,7 +180,6 @@ tr: national_statistics: one: Ulusal İstatistikler other: Ulusal İstatistikler - overview: national_statistics_announcement: one: Ulusal İstatistik duyurusu other: Ulusal İstatistik duyuruları @@ -205,21 +192,18 @@ tr: notice: one: Bildirim other: Bildirimler - overview: official: one: Ulusal İstatistik duyurusu other: Ulusal İstatistik duyuruları official_statistics: one: Resmi İstatistikler other: Resmi İstatistikler - overview: official_statistics_announcement: one: Ulusal İstatistik duyurusu other: Ulusal İstatistik duyuruları open_consultation: one: Açık danışma other: Açık danışmalar - overview: oral_statement: one: Parlamentoya sözlü açıklama other: Parlamentoya sözlü açıklamalar @@ -229,14 +213,12 @@ tr: policy_paper: one: Politika belgesi other: Politika belgeleri - overview: press_release: one: Basın duyurusu other: Basın duyuruları promotional: one: Promosyon malzemesi other: Promosyon malzemesi - overview: publication: one: Yayın other: Yayınlar @@ -246,11 +228,9 @@ tr: regulation: one: Düzenleme other: Düzenlemeler - overview: research: one: Arama ve analiz other: Arama ve analiz - overview: residential_property_tribunal_decision: one: Meskun mahaldeki emlak mahkeme kararı other: Meskun mahaldeki emlak mahkeme kararları @@ -269,7 +249,6 @@ tr: standard: one: Standart other: Standartlar - overview: statement_to_parliament: one: Parlamentoya Açıklama other: Parlamentoya Açıklamalar @@ -282,7 +261,6 @@ tr: statutory_guidance: one: Mevzuat rehberi other: Mevzuat rehberi - overview: take_part: one: Katıl other: Katıl @@ -295,7 +273,6 @@ tr: transparency: one: Şeffaflık verileri other: Şeffaflık verileri - overview: utaac_decision: one: İdari temyiz mahkemesi kararı other: İdari temyiz mahkemesi kararları @@ -316,54 +293,54 @@ tr: social_media_use_html: "%{link} bağlantısındaki politikamızı okuyun." welsh_language_scheme_html: "%{link} bağlantısına taahhüdümüzü okuyun." email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: Savunma Bakanlığı arması field_of_operation: Faaliyet alanı operations_in: "%{location} konumundaki faaliyetler" get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: Artık mevcut değil published_in_error: Bu sayfadaki bilgiler hatalı yayınlandığından kaldırıldı. @@ -379,74 +356,74 @@ tr: 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. i18n: - direction: + direction: language_names: - ar: - az: - be: - bg: - bn: - cs: - cy: - da: - de: - dr: - el: - en: - es: - es-419: - et: - fa: - fi: - fr: - gd: - gu: - he: - hi: - hr: - hu: - hy: - id: - is: - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: - th: - tk: + ar: + az: + be: + bg: + bn: + cs: + cy: + da: + de: + dr: + el: + en: + es: + es-419: + et: + fa: + fi: + fr: + gd: + gu: + he: + hi: + hr: + hu: + hy: + id: + is: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: + th: + tk: tr: Türkçe - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: Sonraki previous_page: Önceki diff --git a/config/locales/uk.yml b/config/locales/uk.yml index b16757e01..9aa861eb3 100644 --- a/config/locales/uk.yml +++ b/config/locales/uk.yml @@ -41,7 +41,7 @@ uk: feedback_received: Відгук отримано is_being: зараз not_open_yet: Ця консультація ще не розпочалася - 'on': + 'on': opens: Ця консультація розпочинається original_consultation: Первісна консультація ran_from: Ця консультація розпочалася з @@ -64,396 +64,373 @@ uk: updated: Оновлено schema_name: aaib_report: - few: - many: + few: + many: one: Звіт відділу розслідування авіакатастроф other: Звіти відділу розслідування авіакатастроф announcement: - few: - many: + few: + many: one: Оголошення other: Оголошення asylum_support_decision: - few: - many: + few: + many: one: Рішення трибуналу про надання притулку other: Рішення трибуналу про надання притулку authored_article: - few: - many: + few: + many: one: Авторська стаття other: Авторські статті business_finance_support_scheme: - few: - many: + few: + many: one: Схема підтримки фінансування бізнесу other: Схеми підтримки фінансування бізнесу case_study: - few: - many: + few: + many: one: Аналіз ситуації other: Аналізи ситуації closed_consultation: - few: - many: + few: + many: one: Закрита консультація other: Закриті консультації - overview: cma_case: - few: - many: + few: + many: one: Справа Управління із захисту конкуренції та ринків other: Справи Управління із захисту конкуренції та ринків coming_soon: - few: - many: + few: + many: one: Незабаром other: Незабаром consultation: - few: - many: + few: + many: one: Консультація other: Консультації consultation_outcome: - few: - many: + few: + many: one: Результат консультації other: Результати консультації - overview: corporate_information_page: - few: - many: + few: + many: one: Інформаційна сторінка other: Інформаційні сторінки corporate_report: - few: - many: + few: + many: one: Звіт про діяльність корпорації other: Звіти про діяльність корпорації - overview: correspondence: - few: - many: + few: + many: one: Кореспонденція other: Кореспонденція - overview: countryside_stewardship_grant: - few: - many: + few: + many: one: Субсидія в рамках управління в сільській місцевості other: Субсидії в рамках управління в сільській місцевості decision: - few: - many: + few: + many: one: Рішення other: Рішення - overview: detailed_guide: - few: - many: + few: + many: one: Керівництво other: Керівництво dfid_research_output: - few: - many: + few: + many: one: Дослідження результату розвитку other: Дослідження результатів розвитку document_collection: - few: - many: + few: + many: one: Збір other: Збір draft_text: - few: - many: + few: + many: one: Проєкт тексту other: Проєкт текстів drug_safety_update: - few: - many: + few: + many: one: Оновлення даних про безпечність лікарського засобу other: Оновлення даних про безпечність лікарського засобу employment_appeal_tribunal_decision: - few: - many: + few: + many: one: Рішення арбітражного суду по апеляції щодо працевлаштування other: Рішення арбітражного суду по апеляції щодо працевлаштування employment_tribunal_decision: - few: - many: + few: + many: one: Рішення арбітражного суду щодо працевлаштування other: Рішення арбітражного суду щодо працевлаштування esi_fund: - few: - many: + few: + many: one: Європейський структурний і інвестиційний фонд Європейського союзу other: Європейські структурні і інвестиційні фонди Європейського союзу fatality_notice: - few: - many: + few: + many: one: Повідомлення про нещасний випадок зі смертельним наслідком other: Повідомлення про нещасний випадок зі смертельним наслідком foi_release: - few: - many: + few: + many: one: Випуск закону про свободу інформації other: Випуски закону про свободу інформації - overview: form: - few: - many: + few: + many: one: Форма other: Форми - overview: government_response: - few: - many: + few: + many: one: Відповідь уряду other: Відповіді уряду guidance: - few: - many: + few: + many: one: Керівництво other: Керівництво - overview: impact_assessment: - few: - many: + few: + many: one: Оцінка впливу other: Оцінки впливу - overview: imported: - few: - many: + few: + many: one: імпортовано - тип в очікуванні other: імпортовано - тип в очікуванні independent_report: - few: - many: + few: + many: one: Незалежний звіт other: Незалежні звіти - overview: international_development_fund: - few: - many: + few: + many: one: Міжнародний фонд розвитку other: Міжнародний фонд розвитку international_treaty: - few: - many: + few: + many: one: Міжнародний договір other: Міжнародні договори - overview: maib_report: - few: - many: + few: + many: one: Звіт відділу розслідування морських катастроф other: Звіти відділу розслідування морських катастроф map: - few: - many: + few: + many: one: Карта other: Карти - overview: medical_safety_alert: - few: - many: + few: + many: one: Оповіщення та відкликання лікарських засобів та виробів медичного призначення other: Оповіщення та відкликання лікарських засобів та виробів медичного призначення national: - few: - many: + few: + many: one: Оголошення даних державної статистики other: Оголошення даних державної статистики national_statistics: - few: - many: + few: + many: one: Національна статистика other: Національна статистика - overview: national_statistics_announcement: - few: - many: + few: + many: one: Оголошення даних державної статистики other: Оголошення даних державної статистики news_article: - few: - many: + few: + many: one: Новини other: Новини news_story: - few: - many: + few: + many: one: Сюжет новин other: Сюжети новин notice: - few: - many: + few: + many: one: Повідомлення other: Повідомлення - overview: official: - few: - many: + few: + many: one: Оголошення даних офіційної статистики other: Оголошення даних офіційної статистики official_statistics: - few: - many: + few: + many: one: Офіційна статистика other: Офіційна статистика - overview: official_statistics_announcement: - few: - many: + few: + many: one: Оголошення даних офіційної статистики other: Оголошення даних офіційної статистики open_consultation: - few: - many: + few: + many: one: Відкрита консультація other: Відкриті консультації - overview: oral_statement: - few: - many: + few: + many: one: Усна заява до Парламенту other: Усні заяви до Парламенту policy: - few: - many: + few: + many: one: Політика other: Політики policy_paper: - few: - many: + few: + many: one: Програмний документ other: Програмні документи - overview: press_release: - few: - many: + few: + many: one: Пресреліз other: Пресрелізи promotional: - few: - many: + few: + many: one: Рекламний матеріал other: Рекламний матеріал - overview: publication: - few: - many: + few: + many: one: Публікація other: Публікації raib_report: - few: - many: + few: + many: one: Звіт відділу розслідування залізнодорожніх катастроф other: Звіти відділу розслідування залізнодорожніх катастроф regulation: - few: - many: + few: + many: one: Норма other: Норми - overview: research: - few: - many: + few: + many: one: Дослідження та аналіз other: Дослідження та аналіз - overview: residential_property_tribunal_decision: - few: - many: + few: + many: one: Рішення арбітражного суду щодо житлової нерухомості other: Рішення арбітражного суду щодо житлової нерухомості service_sign_in: - few: - many: + few: + many: one: Знак обслуговування в other: Знак обслуговування в service_standard_report: - few: - many: + few: + many: one: Стандартний звіт з обслуговування other: Стандартні звіти з обслуговування speaking_notes: - few: - many: + few: + many: one: Тези виступу other: Тези виступу speech: - few: - many: + few: + many: one: Виступ other: Виступи standard: - few: - many: + few: + many: one: Стандарт other: Стандарти - overview: statement_to_parliament: - few: - many: + few: + many: one: Заява до Парламенту other: Заяви до Парламенту statistical_data_set: - few: - many: + few: + many: one: Набір статистичних даних other: Набори статистичних даних statistics_announcement: - few: - many: + few: + many: one: Оголошення про випуск статистичних даних other: Оголошення про випуск статистичних даних statutory_guidance: - few: - many: + few: + many: one: Нормативне керівництво other: Нормативне керівництво - overview: take_part: - few: - many: + few: + many: one: Взяти участь other: Взяти участь tax_tribunal_decision: - few: - many: + few: + many: one: Рішення арбітражного суду щодо податків та канцелярії other: Рішення арбітражного суду щодо податків та канцелярії transcript: - few: - many: + few: + many: one: Стенограма other: Стенограми transparency: - few: - many: + few: + many: one: Дані прозорості other: Дані прозорості - overview: utaac_decision: - few: - many: + few: + many: one: Рішення арбітражного суду по адміністративній апеляції other: Рішення арбітражного суду по адміністративній апеляції world_location_news_article: - few: - many: + few: + many: one: Новини other: Новини world_news_story: - few: - many: + few: + many: one: Сюжет міжнародних новин other: Сюжети міжнародних новин written_statement: - few: - many: + few: + many: one: Письмова заява до Парламенту other: Письмові заяви до Парламенту corporate_information_page: @@ -464,54 +441,54 @@ uk: social_media_use_html: Ознайомтеся із нашою політикою на %{link}. welsh_language_scheme_html: Дізнайтесь про дотримання нами %{link}. email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: Герб Міністерства оборони field_of_operation: Сфера діяльності operations_in: Операції в %{location} get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: Більше не доступно published_in_error: Інформацію на цій сторінці видалено, оскільки вона була опублікована помилково. @@ -527,74 +504,74 @@ uk: licence_html: 'Ця публікація ліцензована на умовах Відкритої державної ліцензії v3.0, якщо не зазначено інше. Щоб переглянути цю ліцензію, відвідайте nationalarchives.gov.uk/doc/open-government-licence/version/3 або надішліть запит Команді з політики роботи з інформацією, Національний архів, Кью, Лондон TW9 4DU, або надішліть електронною поштою: psi@nationalarchives.gov.uk.' third_party: Якщо ми виявимо будь-яку інформацію про авторські права третіх сторін, вам необхідно буде отримати дозвіл від відповідних правовласників. i18n: - direction: + direction: language_names: - ar: - az: - be: - bg: - bn: - cs: - cy: - da: - de: - dr: - el: - en: - es: - es-419: - et: - fa: - fi: - fr: - gd: - gu: - he: - hi: - hr: - hu: - hy: - id: - is: - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: - th: - tk: - tr: + ar: + az: + be: + bg: + bn: + cs: + cy: + da: + de: + dr: + el: + en: + es: + es-419: + et: + fa: + fi: + fr: + gd: + gu: + he: + hi: + hr: + hu: + hy: + id: + is: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: + th: + tk: + tr: uk: Українська - ur: - uz: - vi: - yi: - zh: - zh-hk: - zh-tw: + ur: + uz: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: Далі previous_page: Назад @@ -602,8 +579,8 @@ uk: publication: details: Деталі documents: - few: - many: + few: + many: one: Документ other: Документи service_sign_in: diff --git a/config/locales/uz.yml b/config/locales/uz.yml index 7181c41a0..58e4cbaa1 100644 --- a/config/locales/uz.yml +++ b/config/locales/uz.yml @@ -41,7 +41,7 @@ uz: feedback_received: Шарҳ олинди is_being: ҳисобланади not_open_yet: Маслаҳат ҳали бошланмади - 'on': + 'on': opens: Маслаҳат бошланмоқда original_consultation: Дастлабки маслаҳат ran_from: Ушбу маслаҳат дан ўтказилган @@ -84,7 +84,6 @@ uz: closed_consultation: one: Батафсил маслаҳат other: Батафсил маслаҳатлар - overview: cma_case: one: Рақобат ва бозорни муҳофаза қилиш Бошқармаси Иши other: Рақобат ва бозорни муҳофаза қилиш Бошқармаси Ишлари @@ -97,25 +96,21 @@ uz: consultation_outcome: one: Маслаҳат натижаси other: Маслаҳат натижалари - overview: corporate_information_page: one: Маълумотлар саҳифаси other: Маълумотлар саҳифалари corporate_report: one: Корпорация фаолияти тўғрисида ҳисобот other: Корпорация фаолияти тўғрисида ҳисоботлар - overview: correspondence: one: Ёзишма other: Ёзишмалар - overview: countryside_stewardship_grant: one: Қишлоқ жойда тезкор бошқармани ташкиллаштириш гранти other: Қишлоқ жойда тезкор бошқармани ташкиллаштириш грантлари decision: one: Қарор other: Қарорлар - overview: detailed_guide: one: Қўлланма other: Қўлланма @@ -146,43 +141,36 @@ uz: foi_release: one: Маълумот эркинлиги нашри other: Маълумот эркинлиги нашрлари - overview: form: one: Шакл other: Шакллар - overview: government_response: one: Ҳукумат жавоби other: Ҳукумат жавоблари guidance: one: Қўлланма other: Қўлланма - overview: impact_assessment: one: Таъсир этиш баҳоси other: Таъсир этиш баҳолари - overview: imported: one: импорт қилинган - кутиш тури other: импорт қилинган - кутиш тури independent_report: one: Мустақил ҳисобот other: Мустақил ҳисоботлар - overview: international_development_fund: one: Халқаро ривожлантиришни молиялаштириш other: Халқаро ривожлантиришни молиялаштириш international_treaty: one: Халқаро шартнома other: Халқаро шартномалар - overview: maib_report: one: Денгизда бахтсиз ҳодисаларни тергов қилиш бўйича бўлим ҳисоботи other: Денгизда бахтсиз ҳодисаларни тергов қилиш бўйича бўлим ҳисоботлари map: one: Карта other: Карталар - overview: medical_safety_alert: one: Дори препаратлари ва тиббиёт қурилмалари ҳақидаги огоҳлантиришлар ва мулоҳазалар other: Дори препаратлари ва тиббиёт қурилмалари ҳақидаги огоҳлантиришлар ва мулоҳазалар @@ -192,7 +180,6 @@ uz: national_statistics: one: Давлат статистик маълумотлар other: Давлат статистик маълумотлар - overview: national_statistics_announcement: one: Давлат статистик маълумотлар эълони other: Давлат статистик маълумотлар эълонлари @@ -205,21 +192,18 @@ uz: notice: one: Хабарнома other: Хабарномалар - overview: official: one: Расмий статистик маълумотлар эълони other: Расмий статистик маълумотлар эълонлари official_statistics: one: Расмий статистик маълумотлар other: Расмий статистик маълумотлар - overview: official_statistics_announcement: one: Расмий статистик маълумотлар эълони other: Расмий статистик маълумотлар эълонлари open_consultation: one: Очиқ маслаҳат other: Очиқ маслаҳатлар - overview: oral_statement: one: Парламентга оғзаки баёнот other: Парламентга оғзаки баёнотлар @@ -229,14 +213,12 @@ uz: policy_paper: one: Сиёсат масалалари бўйича ҳужжат other: Сиёсат масалалари бўйича ҳужжатлари - overview: press_release: one: Матбуот-релизи other: Матбуот-релизлари promotional: one: Реклама материаллари other: Реклама материаллари - overview: publication: one: Нашр қилиш other: Нашр қилишлар @@ -246,11 +228,9 @@ uz: regulation: one: Низом other: Низомлар - overview: research: one: Тадқиқот ва таҳлил other: Тадқиқот ва таҳлил - overview: residential_property_tribunal_decision: one: Турар-жой объектига нисбатан трибунал қарори other: Турар-жой объектига нисбатан трибунал қарорлари @@ -269,7 +249,6 @@ uz: standard: one: Стандарт other: Стандартлар - overview: statement_to_parliament: one: Парламентга баёнот other: Парламентга баёнотлар @@ -282,7 +261,6 @@ uz: statutory_guidance: one: Норматив қўлланма other: Норматив қўлланма - overview: take_part: one: Иштирок этиш other: Иштирок этиш @@ -295,7 +273,6 @@ uz: transparency: one: Шаффоф маълумотлар other: Шаффоф маълумотлар - overview: utaac_decision: one: Маъмурий апелляция трибуналининг қарори other: Маъмурий апелляция трибуналининг қарорлари @@ -316,54 +293,54 @@ uz: social_media_use_html: "%{link} да бизнинг сиёсатимиз билан танишинг." welsh_language_scheme_html: "%{link} да бизнинг содиқлилигимиз ҳақида билиб олинг ." email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: Мудофаа вазирлигининг эмблемаси field_of_operation: Фаолият соҳаси operations_in: "%{location} да ишлаш" get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: Бундан буён йўқ published_in_error: Ушбу саҳифадаги маълумот ўчириб юборилган, чунки у хато бўлган. @@ -379,74 +356,74 @@ uz: licence_html: 'Ушбу нашр этиш 3.0 версиядаги Очиқ давлат лицензияси доирасида лицензияланган, агар бошқа шарт кўрсатилмаган бўлса. Лицензия билан танишиш учун nationalarchives.gov.uk/doc/open-government-licence/version/3 сайтларига ташриф буюринг ёки Ахборот сиёсати билан ишлаш бўйича гуруҳга, Миллий архив, Кью, Лондон TW9 4DU, ёки улар билан қуйидаги электрон почта бўйича боғланинг: psi@nationalarchives.gov.uk.' third_party: Агар учинчи шахсларнинг муаллифлик ҳуқуқлари ҳақида бирон бир маълумот аниқланадиган бўлса, сизга мувофиқ ҳуқуқий ворислардан рухсатнома олишингиз зарур бўлади. i18n: - direction: + direction: language_names: - ar: - az: - be: - bg: - bn: - cs: - cy: - da: - de: - dr: - el: - en: - es: - es-419: - et: - fa: - fi: - fr: - gd: - gu: - he: - hi: - hr: - hu: - hy: - id: - is: - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: - th: - tk: - tr: - uk: - ur: + ar: + az: + be: + bg: + bn: + cs: + cy: + da: + de: + dr: + el: + en: + es: + es-419: + et: + fa: + fi: + fr: + gd: + gu: + he: + hi: + hr: + hu: + hy: + id: + is: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: + th: + tk: + tr: + uk: + ur: uz: Ўзбеклар - vi: - yi: - zh: - zh-hk: - zh-tw: + vi: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: Кейинги previous_page: Олдинги diff --git a/config/locales/vi.yml b/config/locales/vi.yml index 49e6647f3..e0bf24d78 100644 --- a/config/locales/vi.yml +++ b/config/locales/vi.yml @@ -41,7 +41,7 @@ vi: feedback_received: Phản hồi đã nhận is_being: đang được not_open_yet: Buổi tham vấn này chưa mở - 'on': + 'on': opens: Buổi tham vấn này đang diễn ra original_consultation: Buổi tham vấn nguyên bản ran_from: Buổi tham vấn này bắt đầu từ @@ -84,7 +84,6 @@ vi: closed_consultation: one: Tham vấn kín other: Tham vấn kín - overview: cma_case: one: Vụ án của Cơ quan Cạnh tranh và Thị trường other: Vụ án của Cơ quan Cạnh tranh và Thị trường @@ -97,25 +96,21 @@ vi: consultation_outcome: one: Kết quả tham vấn other: Kết quả tham vấn - overview: corporate_information_page: one: Trang thông tin other: Trang thông tin corporate_report: one: Báo cáo của doanh nghiệp other: Báo cáo của doanh nghiệp - overview: correspondence: one: Thư từ other: Thư từ - overview: countryside_stewardship_grant: one: Trợ cấp Quản lý Vùng nông thôn other: Trợ cấp Quản lý Vùng nông thôn decision: one: Quyết định other: Quyết định - overview: detailed_guide: one: Hướng dẫn other: Hướng dẫn @@ -146,43 +141,36 @@ vi: foi_release: one: Công bố FOI other: Công bố FOI - overview: form: one: Biểu mẫu other: Biểu mẫu - overview: government_response: one: Phản hồi của chính phủ other: Phản hồi của chính phủ guidance: one: Hướng dẫn other: Hướng dẫn - overview: impact_assessment: one: Đánh giá tác động other: Đánh giá tác động - overview: imported: one: loại đã nhập - đang chờ other: loại đã nhập - đang chờ independent_report: one: Báo cáo độc lập other: Báo cáo độc lập - overview: international_development_fund: one: Tài trợ phát triển quốc tế other: Tài trợ phát triển quốc tế international_treaty: one: Hiệp ước quốc tế other: Hiệp ước quốc tế - overview: maib_report: one: Báo cáo của Chi nhánh Điều tra Tai nạn Hàng hải other: Báo cáo của Chi nhánh Điều tra Tai nạn Hàng hải map: one: Bản đồ other: Bản đồ - overview: medical_safety_alert: one: Cảnh báo và thu hồi thuốc và thiết bị y tế other: Cảnh báo và thu hồi thuốc và thiết bị y tế @@ -192,7 +180,6 @@ vi: national_statistics: one: Thống kê Quốc gia other: Thống kê Quốc gia - overview: national_statistics_announcement: one: Thông báo thống kê quốc gia other: Công bố thống kê quốc gia @@ -205,21 +192,18 @@ vi: notice: one: Thông báo other: Thông báo - overview: official: one: Thông báo thống kê chính thức other: Thông báo thống kê chính thức official_statistics: one: Thống kê Chính thức other: Thống kê Chính thức - overview: official_statistics_announcement: one: Thông báo thống kê chính thức other: Thông báo thống kê chính thức open_consultation: one: Tham vấn mở other: Tham vấn mở - overview: oral_statement: one: Tuyên bố bằng lời trước Quốc hội other: Tuyên bố bằng lời trước Quốc hội @@ -229,14 +213,12 @@ vi: policy_paper: one: Tài liệu chính sách other: Tài liệu chính sách - overview: press_release: one: Thông cáo báo chí other: Thông cáo báo chí promotional: one: Tài liệu quảng cáo other: Tài liệu quảng cáo - overview: publication: one: Ấn phẩm other: Ấn phẩm @@ -246,11 +228,9 @@ vi: regulation: one: Quy định other: Quy định - overview: research: one: Nghiên cứu và phân tích other: Nghiên cứu và phân tích - overview: residential_property_tribunal_decision: one: Quyết định của tòa án bất động sản nhà ở other: Quyết định của tòa án bất động sản nhà ở @@ -269,7 +249,6 @@ vi: standard: one: Tiêu chuẩn other: Tiêu chuẩn - overview: statement_to_parliament: one: Tuyên bố trước Quốc hội other: Tuyên bố trước Quốc hội @@ -282,7 +261,6 @@ vi: statutory_guidance: one: Hướng dẫn theo luật định other: Hướng dẫn theo luật định - overview: take_part: one: Tham gia other: Tham gia @@ -295,7 +273,6 @@ vi: transparency: one: Dữ liệu về tính minh bạch other: Dữ liệu về tính minh bạch - overview: utaac_decision: one: Quyết định của tòa phúc thẩm hành chính other: Quyết định của tòa phúc thẩm hành chính @@ -316,54 +293,54 @@ vi: social_media_use_html: Đọc chính sách của chúng tôi trên %{link}. welsh_language_scheme_html: Tìm hiểu về cam kết của chúng tôi đối với %{link}. email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: Huy hiệu Bộ trưởng Quốc phòng field_of_operation: Lĩnh vực hoạt động operations_in: Hoạt động ở %{location} get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: Không khả dụng published_in_error: Thông tin trên trang này đã bị xóa vì đã được xuất bản do nhầm lẫn. @@ -379,74 +356,74 @@ vi: 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. i18n: - direction: + direction: language_names: - ar: - az: - be: - bg: - bn: - cs: - cy: - da: - de: - dr: - el: - en: - es: - es-419: - et: - fa: - fi: - fr: - gd: - gu: - he: - hi: - hr: - hu: - hy: - id: - is: - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: - th: - tk: - tr: - uk: - ur: - uz: + ar: + az: + be: + bg: + bn: + cs: + cy: + da: + de: + dr: + el: + en: + es: + es-419: + et: + fa: + fi: + fr: + gd: + gu: + he: + hi: + hr: + hu: + hy: + id: + is: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: + th: + tk: + tr: + uk: + ur: + uz: vi: Tiếng Việt - yi: - zh: - zh-hk: - zh-tw: + yi: + zh: + zh-hk: + zh-tw: multi_page: next_page: Tiếp theo previous_page: Trước diff --git a/config/locales/yi.yml b/config/locales/yi.yml index bebb31bac..a218cef4e 100644 --- a/config/locales/yi.yml +++ b/config/locales/yi.yml @@ -2,504 +2,481 @@ yi: brexit: business_link: - path: - text: + path: + text: citizen_link: - path: - text: - heading_prefix: + path: + text: + heading_prefix: common: - visit: + visit: components: figure: - image_credit: + image_credit: published_dates: - hide_all_updates: - last_updated: - published: - see_all_updates: - show_all_updates: + hide_all_updates: + last_updated: + published: + see_all_updates: + show_all_updates: publisher_metadata: - hide_all: - show_all: + hide_all: + show_all: share_links: - share_this_page: + share_this_page: consultation: - and: - another_website_html: - at: - closes: - closes_at: - complete_a: - description: - detail_of_feedback_received: - detail_of_outcome: + and: + another_website_html: + at: + closes: + closes_at: + complete_a: + description: + detail_of_feedback_received: + detail_of_outcome: documents: דאָקומענטן - download_outcome: - either: - email_to: - feedback_received: - is_being: - not_open_yet: - 'on': - opens: - original_consultation: - ran_from: - respond_online: - visit_soon: - was: - ways_to_respond: - write_to: + download_outcome: + either: + email_to: + feedback_received: + is_being: + not_open_yet: + 'on': + opens: + original_consultation: + ran_from: + respond_online: + visit_soon: + was: + ways_to_respond: + write_to: contact: - email: - find_call_charges: - online: - phone: - webchat: + email: + find_call_charges: + online: + phone: + webchat: content_item: - coming_soon: - contents: + coming_soon: + contents: metadata: - published: - updated: + published: + updated: schema_name: aaib_report: - one: - other: + one: + other: announcement: - one: - other: + one: + other: asylum_support_decision: - one: - other: + one: + other: authored_article: - one: - other: + one: + other: business_finance_support_scheme: - one: - other: + one: + other: case_study: - one: - other: + one: + other: closed_consultation: - one: - other: - overview: + one: + other: cma_case: - one: - other: + one: + other: coming_soon: - one: - other: + one: + other: consultation: - one: - other: + one: + other: consultation_outcome: - one: - other: - overview: + one: + other: corporate_information_page: - one: - other: + one: + other: corporate_report: - one: - other: - overview: + one: + other: correspondence: - one: - other: - overview: + one: + other: countryside_stewardship_grant: - one: - other: + one: + other: decision: - one: - other: - overview: + one: + other: detailed_guide: - one: - other: + one: + other: dfid_research_output: - one: - other: + one: + other: document_collection: - one: - other: + one: + other: draft_text: - one: - other: + one: + other: drug_safety_update: - one: - other: + one: + other: employment_appeal_tribunal_decision: - one: - other: + one: + other: employment_tribunal_decision: - one: - other: + one: + other: esi_fund: - one: - other: + one: + other: fatality_notice: - one: - other: + one: + other: foi_release: - one: - other: - overview: + one: + other: form: - one: - other: - overview: + one: + other: government_response: - one: - other: + one: + other: guidance: one: גיידאַנס - other: - overview: + other: impact_assessment: - one: - other: - overview: + one: + other: imported: - one: - other: + one: + other: independent_report: - one: - other: - overview: + one: + other: international_development_fund: - one: - other: + one: + other: international_treaty: - one: - other: - overview: + one: + other: maib_report: - one: - other: + one: + other: map: - one: - other: - overview: + one: + other: medical_safety_alert: - one: - other: + one: + other: national: - one: - other: + one: + other: national_statistics: - one: - other: - overview: + one: + other: national_statistics_announcement: - one: - other: + one: + other: news_article: - one: - other: + one: + other: news_story: - one: - other: + one: + other: notice: - one: - other: - overview: + one: + other: official: - one: - other: + one: + other: official_statistics: - one: - other: - overview: + one: + other: official_statistics_announcement: - one: - other: + one: + other: open_consultation: - one: - other: - overview: + one: + other: oral_statement: - one: - other: + one: + other: policy: - one: - other: + one: + other: policy_paper: - one: - other: - overview: + one: + other: press_release: - one: - other: + one: + other: promotional: - one: - other: - overview: + one: + other: publication: - one: - other: + one: + other: raib_report: - one: - other: + one: + other: regulation: - one: - other: - overview: + one: + other: research: - one: - other: - overview: + one: + other: residential_property_tribunal_decision: - one: - other: + one: + other: service_sign_in: - one: - other: + one: + other: service_standard_report: - one: - other: + one: + other: speaking_notes: - one: - other: + one: + other: speech: - one: - other: + one: + other: standard: - one: - other: - overview: + one: + other: statement_to_parliament: - one: - other: + one: + other: statistical_data_set: - one: - other: + one: + other: statistics_announcement: - one: - other: + one: + other: statutory_guidance: - one: - other: - overview: + one: + other: take_part: - one: - other: + one: + other: tax_tribunal_decision: - one: - other: + one: + other: transcript: - one: - other: + one: + other: transparency: - one: - other: - overview: + one: + other: utaac_decision: - one: - other: + one: + other: world_location_news_article: - one: - other: + one: + other: world_news_story: - one: - other: + one: + other: written_statement: - one: - other: + one: + other: corporate_information_page: - about_our_services_html: - corporate_information: - personal_information_charter_html: - publication_scheme_html: - social_media_use_html: - welsh_language_scheme_html: + about_our_services_html: + corporate_information: + personal_information_charter_html: + publication_scheme_html: + social_media_use_html: + welsh_language_scheme_html: email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: - alt_text: - field_of_operation: - operations_in: + alt_text: + field_of_operation: + operations_in: get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: - page_title: - published_in_error: - title: + page_title: + published_in_error: + title: guide: - pages_in_guide: - skip_to_contents: + pages_in_guide: + skip_to_contents: html_publication: print_meta_data: - available_at: - copyright: - isbn: - licence_html: - third_party: + available_at: + copyright: + isbn: + licence_html: + third_party: i18n: direction: rtl language_names: - ar: - az: - be: - bg: - bn: - cs: - cy: - da: - de: - dr: - el: - en: - es: - es-419: - et: - fa: - fi: - fr: - gd: - gu: - he: - hi: - hr: - hu: - hy: - id: - is: - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: - th: - tk: - tr: - uk: - ur: - uz: - vi: + ar: + az: + be: + bg: + bn: + cs: + cy: + da: + de: + dr: + el: + en: + es: + es-419: + et: + fa: + fi: + fr: + gd: + gu: + he: + hi: + hr: + hu: + hy: + id: + is: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: + th: + tk: + tr: + uk: + ur: + uz: + vi: yi: יידיש - zh: - zh-hk: - zh-tw: + zh: + zh-hk: + zh-tw: multi_page: - next_page: - previous_page: - print_entire_guide: + next_page: + previous_page: + print_entire_guide: publication: - details: + details: documents: - one: + one: other: דאָקומענטן service_sign_in: - continue: + continue: error: - option: - title: + option: + title: shared: - historically_political: + historically_political: webchat: - available: - busy: - closed: - speak_to_adviser: - technical_problem: + available: + busy: + closed: + speak_to_adviser: + technical_problem: specialist_document: - pdo_alt_text: - pgi_alt_text: - tsg_alt_text: + pdo_alt_text: + pgi_alt_text: + tsg_alt_text: speech: - delivered_on: - location: - written_on: + delivered_on: + location: + written_on: statistics_announcement: - cancellation_date: - cancelled: - changed_date: - forthcoming: - previous_date: - proposed_date: - reason_for_change: - release_date: + cancellation_date: + cancelled: + changed_date: + forthcoming: + previous_date: + proposed_date: + reason_for_change: + release_date: travel_advice: alert_status: - avoid_all_but_essential_travel_to_parts_html: - avoid_all_but_essential_travel_to_whole_country_html: - avoid_all_travel_to_parts_html: - avoid_all_travel_to_whole_country_html: - context: - still_current_at: - summary: - updated: + avoid_all_but_essential_travel_to_parts_html: + avoid_all_but_essential_travel_to_whole_country_html: + avoid_all_travel_to_parts_html: + avoid_all_travel_to_whole_country_html: + context: + still_current_at: + summary: + updated: unpublishing: - page_title: - summary: - title: + page_title: + summary: + title: working_group: - contact_details: - policies: + contact_details: + policies: diff --git a/config/locales/zh-hk.yml b/config/locales/zh-hk.yml index 897c42dc9..2a9678435 100644 --- a/config/locales/zh-hk.yml +++ b/config/locales/zh-hk.yml @@ -41,7 +41,7 @@ zh-hk: feedback_received: 已收到之回饋意見 is_being: 正在進行 not_open_yet: 諮詢仍未開始 - 'on': + 'on': opens: 本次諮詢開始 original_consultation: 原有諮詢 ran_from: 本次諮詢開始於 @@ -84,7 +84,6 @@ zh-hk: closed_consultation: one: 專屬諮詢 other: 其他專屬諮詢 - overview: cma_case: one: 競爭及市場管理案例 other: 其他競爭及市場管理案例 @@ -97,25 +96,21 @@ zh-hk: consultation_outcome: one: 諮詢結果 other: 其他諮詢結果 - overview: corporate_information_page: one: 資訊頁面 other: 其他資訊頁面 corporate_report: one: 政府報告 other: 其他政府報告 - overview: correspondence: one: 通信 other: 其他通信 - overview: countryside_stewardship_grant: one: 鄉村管理補助金 other: 其他鄉村管理補助金 decision: one: 決定 other: 其他決定 - overview: detailed_guide: one: 詳細指引 other: 其他詳細指引 @@ -146,43 +141,36 @@ zh-hk: foi_release: one: 資訊自由(FOI)資訊發布 other: 其他資訊自由(FOI)資訊發布 - overview: form: one: 表格 other: 其他表格 - overview: government_response: one: 政府回應 other: 政府其他回應 guidance: one: 指引 other: 其他指引 - overview: impact_assessment: one: 影響評估 other: 其他影響評估 - overview: imported: one: 輸入-等待類型中 other: 輸入-等待類型中 independent_report: one: 獨立報告 other: 其他獨立報告 - overview: international_development_fund: one: 國際發展籌資 other: 國際發展籌資 international_treaty: one: 國際條約 other: 其他國際條約 - overview: maib_report: one: 海洋事故調查處報告 other: 其他海洋事故調查處報告 map: one: 地圖 other: 其他地圖 - overview: medical_safety_alert: one: 藥品及醫療器械警示及召回 other: 其他藥品及醫療器械警示及召回 @@ -192,7 +180,6 @@ zh-hk: national_statistics: one: 國家統計數據 other: 其他國家統計數據 - overview: national_statistics_announcement: one: 國家統計數據公告 other: 其他國家統計數據公告 @@ -205,21 +192,18 @@ zh-hk: notice: one: 通知 other: 其他通知 - overview: official: one: 官方統計數據公告 other: 其他官方統計數據公告 official_statistics: one: 統計資料 other: 其他統計資料 - overview: official_statistics_announcement: one: 官方統計數據公告 other: 其他官方統計數據公告 open_consultation: one: 公開諮詢 other: 其他公開諮詢 - overview: oral_statement: one: 提交國會的口頭聲明 other: 提交國會的其他口頭聲明 @@ -229,14 +213,12 @@ zh-hk: policy_paper: one: 政策文件 other: 其他政策文件 - overview: press_release: one: 新聞稿 other: 其他新聞稿 promotional: one: 宣傳資料 other: 其他宣傳資料 - overview: publication: one: 出版物 other: 其他出版物 @@ -246,11 +228,9 @@ zh-hk: regulation: one: 規定 other: 其他規定 - overview: research: one: 研究與分析 other: 其他研究與分析 - overview: residential_property_tribunal_decision: one: 住宅物業法庭裁決 other: 其他住宅物業法庭裁決 @@ -269,7 +249,6 @@ zh-hk: standard: one: 標準 other: 其他標準 - overview: statement_to_parliament: one: 提交國會的聲明 other: 提交國會的其他聲明 @@ -282,7 +261,6 @@ zh-hk: statutory_guidance: one: 法定指引 other: 法定指引 - overview: take_part: one: 參加活動 other: 參加活動 @@ -295,7 +273,6 @@ zh-hk: transparency: one: 透明化數據 other: 其他透明化數據 - overview: utaac_decision: one: 行政上訴法庭裁決 other: 其他行政上訴法庭裁決 @@ -316,54 +293,54 @@ zh-hk: social_media_use_html: 查閱我們在 %{link} 的政策。 welsh_language_scheme_html: 查閱我們在 %{link} 的發佈承諾。 email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: 國防部徽章 field_of_operation: 行動領域 operations_in: 行動位置 %{location} get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: 不再提供 published_in_error: 本頁面之資訊可移除,因其發佈錯誤。 @@ -379,74 +356,74 @@ zh-hk: 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: 如我們發現任何第三方之版權資訊,您將需獲得有關版權人之許可。 i18n: - direction: + direction: language_names: - ar: - az: - be: - bg: - bn: - cs: - cy: - da: - de: - dr: - el: - en: - es: - es-419: - et: - fa: - fi: - fr: - gd: - gu: - he: - hi: - hr: - hu: - hy: - id: - is: - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: - th: - tk: - tr: - uk: - ur: - uz: - vi: - yi: - zh: + ar: + az: + be: + bg: + bn: + cs: + cy: + da: + de: + dr: + el: + en: + es: + es-419: + et: + fa: + fi: + fr: + gd: + gu: + he: + hi: + hr: + hu: + hy: + id: + is: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: + th: + tk: + tr: + uk: + ur: + uz: + vi: + yi: + zh: zh-hk: 中文 - zh-tw: + zh-tw: multi_page: next_page: 下一項 previous_page: 上一項 diff --git a/config/locales/zh-tw.yml b/config/locales/zh-tw.yml index 255d38556..5f8e1a49d 100644 --- a/config/locales/zh-tw.yml +++ b/config/locales/zh-tw.yml @@ -41,7 +41,7 @@ zh-tw: feedback_received: 收到的反饋 is_being: 正 not_open_yet: 諮詢尚未開始 - 'on': + 'on': opens: 諮詢開始 original_consultation: 最初諮詢 ran_from: 此諮詢從 @@ -84,7 +84,6 @@ zh-tw: closed_consultation: one: 非公開協商 other: 非公開協商 - overview: cma_case: one: 競爭及市場管理局案例 other: 競爭及市場管理局案例 @@ -97,25 +96,21 @@ zh-tw: consultation_outcome: one: 協商結果 other: 協商結果 - overview: corporate_information_page: one: 資訊頁 other: 資訊頁 corporate_report: one: 企業報告 other: 企業報告 - overview: correspondence: one: 信函 other: 信函 - overview: countryside_stewardship_grant: one: 地方管理補助 other: 地方管理補助 decision: one: 決定 other: 決定 - overview: detailed_guide: one: 指導 other: 指導 @@ -146,43 +141,36 @@ zh-tw: foi_release: one: 資訊自由發布 other: 資訊自由發布 - overview: form: one: 形式 other: 形式 - overview: government_response: one: 政府回應 other: 政府回應 guidance: one: 指導 other: 指導 - overview: impact_assessment: one: 影響評估 other: 影響評估 - overview: imported: one: 進口-等待類型 other: 進口-等待類型 independent_report: one: 獨立報告 other: 獨立報告 - overview: international_development_fund: one: 國際發展基金 other: 國際發展基金 international_treaty: one: 國際條約 other: 國際條約 - overview: maib_report: one: 海事事故調查局報告 other: 海事事故調查局報告 map: one: 地圖 other: 地圖 - overview: medical_safety_alert: one: 藥品和醫療器材的警示召回 other: 藥品和醫療器材的警示召回 @@ -192,7 +180,6 @@ zh-tw: national_statistics: one: 國家統計 other: 國家統計 - overview: national_statistics_announcement: one: 國家統計公告 other: 國家統計公告 @@ -205,21 +192,18 @@ zh-tw: notice: one: 通知 other: 通知 - overview: official: one: 官方統計公告 other: 官方統計公告 official_statistics: one: 官方統計 other: 官方統計 - overview: official_statistics_announcement: one: 官方統計公告 other: 官方統計公告 open_consultation: one: 公開諮詢 other: 公開諮詢 - overview: oral_statement: one: 對議會的口頭聲明 other: 對議會的口頭聲明 @@ -229,14 +213,12 @@ zh-tw: policy_paper: one: 政策文件 other: 政策文件 - overview: press_release: one: 新聞稿 other: 新聞稿 promotional: one: 宣傳資料 other: 宣傳資料 - overview: publication: one: 出版 other: 出版 @@ -246,11 +228,9 @@ zh-tw: regulation: one: 法規 other: 法規 - overview: research: one: 研究與分析 other: 研究與分析 - overview: residential_property_tribunal_decision: one: 住宅房產法庭裁決 other: 住宅房產法庭裁決 @@ -269,7 +249,6 @@ zh-tw: standard: one: 標準 other: 標準 - overview: statement_to_parliament: one: 向議會發表聲明 other: 向議會發表聲明 @@ -282,7 +261,6 @@ zh-tw: statutory_guidance: one: 法令指導 other: 法令指導 - overview: take_part: one: 參與 other: 參與 @@ -295,7 +273,6 @@ zh-tw: transparency: one: 透明數據 other: 透明數據 - overview: utaac_decision: one: 行政上訴審裁處裁決 other: 勞資上訴審裁處裁決 @@ -316,54 +293,54 @@ zh-tw: social_media_use_html: 在 %{link} 上閱讀我們政策。 welsh_language_scheme_html: 了解我們對 %{link} 的承諾。 email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: 國防部紋章 field_of_operation: 經營領域 operations_in: 在 %{location} 的領域 get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: 不再適用 published_in_error: 此頁面上的資訊已被刪除,因為發佈有誤。 @@ -379,73 +356,73 @@ zh-tw: licence_html: 除非另有說明,否則本出版物獲得政府資料開放授權條款 v3.0 許可。查看此許可,請探訪nationalarchives.gov.uk/doc/open-government-licence/ version/3或寫信至倫敦,基尤,英國國家檔案館的資訊政策團隊,國家檔案館, TW9 4DU,或發送電子郵件:psi@nationalarchives.gov.uk. third_party: 此處用以我們確定任何第三方版權資訊,你會需要獲得相關版權所有者的許可。 i18n: - direction: + direction: language_names: - ar: - az: - be: - bg: - bn: - cs: - cy: - da: - de: - dr: - el: - en: - es: - es-419: - et: - fa: - fi: - fr: - gd: - gu: - he: - hi: - hr: - hu: - hy: - id: - is: - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: - th: - tk: - tr: - uk: - ur: - uz: - vi: - yi: - zh: - zh-hk: + ar: + az: + be: + bg: + bn: + cs: + cy: + da: + de: + dr: + el: + en: + es: + es-419: + et: + fa: + fi: + fr: + gd: + gu: + he: + hi: + hr: + hu: + hy: + id: + is: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: + th: + tk: + tr: + uk: + ur: + uz: + vi: + yi: + zh: + zh-hk: zh-tw: 繁體中文 multi_page: next_page: 接續 diff --git a/config/locales/zh.yml b/config/locales/zh.yml index c90f6b6c0..0c5bb11d9 100644 --- a/config/locales/zh.yml +++ b/config/locales/zh.yml @@ -41,7 +41,7 @@ zh: feedback_received: 收到反馈 is_being: 正在进行 not_open_yet: 本咨询尚未开始 - 'on': + 'on': opens: 本咨询开始 original_consultation: 最初咨询 ran_from: 本咨询的时间 @@ -84,7 +84,6 @@ zh: closed_consultation: one: 封闭咨询 other: 封闭咨询 - overview: cma_case: one: 竞争和市场管理局案例 other: 竞争和市场管理局案例 @@ -97,25 +96,21 @@ zh: consultation_outcome: one: 咨询结果 other: 咨询结果 - overview: corporate_information_page: one: 信息页 other: 信息页 corporate_report: one: 公司报告 other: 公司报告 - overview: correspondence: one: 通信 other: 通信 - overview: countryside_stewardship_grant: one: 乡村管理计划拨款 other: 乡村管理计划拨款 decision: one: 决策 other: 决策 - overview: detailed_guide: one: 指南 other: 指南 @@ -146,43 +141,36 @@ zh: foi_release: one: FOI 发布 other: FOI 发布 - overview: form: one: 表格 other: 表格 - overview: government_response: one: 政府回应 other: 政府回应 guidance: one: 指南 other: 指南 - overview: impact_assessment: one: 影响评估 other: 影响评估 - overview: imported: one: 进口-等待型 other: 进口-等待型 independent_report: one: 独立报告 other: 独立报告 - overview: international_development_fund: one: 国际发展资金 other: 国际发展资金 international_treaty: one: 国际条约 other: 国际条约 - overview: maib_report: one: 海事事故调查局报告 other: 海事事故调查局报告 map: one: 地图 other: 地图 - overview: medical_safety_alert: one: 药品和医疗设备的警报和召回 other: 药品和医疗设备的警报和召回 @@ -192,7 +180,6 @@ zh: national_statistics: one: 国家统计局 other: 国家统计局 - overview: national_statistics_announcement: one: 国家统计局公告 other: 国家统计局公告 @@ -205,21 +192,18 @@ zh: notice: one: 通知 other: 通知 - overview: official: one: 官方统计公告 other: 官方统计公告 official_statistics: one: 官方统计 other: 官方统计 - overview: official_statistics_announcement: one: 官方统计公告 other: 官方统计公告 open_consultation: one: 公开协商 other: 公开协商 - overview: oral_statement: one: 议会口头声明 other: 议会口头声明 @@ -229,14 +213,12 @@ zh: policy_paper: one: 政策文件 other: 政策文件 - overview: press_release: one: 新闻稿 other: 新闻稿 promotional: one: 宣传资料 other: 宣传资料 - overview: publication: one: 公布 other: 公布 @@ -246,11 +228,9 @@ zh: regulation: one: 条例 other: 条例 - overview: research: one: 研究和分析 other: 研究和分析 - overview: residential_property_tribunal_decision: one: 住宅物业法庭判决 other: 住宅物业法庭判决 @@ -269,7 +249,6 @@ zh: standard: one: 标准 other: 标准 - overview: statement_to_parliament: one: 议会声明 other: 议会声明 @@ -282,7 +261,6 @@ zh: statutory_guidance: one: 法定指南 other: 法定指南 - overview: take_part: one: 参加 other: 参加 @@ -295,7 +273,6 @@ zh: transparency: one: 透明度数据 other: 透明度数据 - overview: utaac_decision: one: 行政上诉法庭裁决 other: 行政上诉法庭裁决 @@ -316,54 +293,54 @@ zh: social_media_use_html: 阅读我们在 %{link} 的政策。 welsh_language_scheme_html: 查看我们对 %{link} 的承诺。 email: - description_html: - subscribe_title: - unsubscribe_title: + description_html: + subscribe_title: + unsubscribe_title: fatality_notice: alt_text: 国防部徽章 field_of_operation: 经营领域 operations_in: 在 %{location} 经营 get_involved: - civil_service: - civil_service_quarterly: - closed: - closed_consultations: - closes: - closing_today: - closing_tomorrow: - days_left: - engage_with_gov: - fcdo_bloggers: - follow: - follow_links: - follow_paragraph: - gds_blog: - gov_past: + civil_service: + civil_service_quarterly: + closed: + closed_consultations: + closes: + closing_today: + closing_tomorrow: + days_left: + engage_with_gov: + fcdo_bloggers: + follow: + follow_links: + follow_paragraph: + gds_blog: + gov_past: intro_paragraph: - body_html: - engage_with_government: - take_part: - join_ics: - make_donation: - more_ways: - neighbourhood_watch: - open_consultations: - page_heading: - page_title: + body_html: + engage_with_government: + take_part: + join_ics: + make_donation: + more_ways: + neighbourhood_watch: + open_consultations: + page_heading: + page_title: petition_paragraph: - body_html: - create_a_petition: - read_respond: - recent_outcomes: - recently_opened: - respond_to_consultations: - school_overseas: - search_all: - see_all_dept: - start_a_petition: - take_part: - take_part_suggestions: - your_views: + body_html: + create_a_petition: + read_respond: + recent_outcomes: + recently_opened: + respond_to_consultations: + school_overseas: + search_all: + see_all_dept: + start_a_petition: + take_part: + take_part_suggestions: + your_views: gone: page_title: 不再可用 published_in_error: 本页上的信息已被删除,因为它的发布出现了错误。 @@ -379,74 +356,74 @@ zh: 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: '如果我们发现任何第三者的版权资料,您需要获得有关版权持有人的许可。 ' i18n: - direction: + direction: language_names: - ar: - az: - be: - bg: - bn: - cs: - cy: - da: - de: - dr: - el: - en: - es: - es-419: - et: - fa: - fi: - fr: - gd: - gu: - he: - hi: - hr: - hu: - hy: - id: - is: - it: - ja: - ka: - kk: - ko: - lt: - lv: - ms: - mt: - ne: - nl: - 'no': - pa: - pa-pk: - pl: - ps: - pt: - ro: - ru: - si: - sk: - sl: - so: - sq: - sr: - sv: - sw: - ta: - th: - tk: - tr: - uk: - ur: - uz: - vi: - yi: + ar: + az: + be: + bg: + bn: + cs: + cy: + da: + de: + dr: + el: + en: + es: + es-419: + et: + fa: + fi: + fr: + gd: + gu: + he: + hi: + hr: + hu: + hy: + id: + is: + it: + ja: + ka: + kk: + ko: + lt: + lv: + ms: + mt: + ne: + nl: + 'no': + pa: + pa-pk: + pl: + ps: + pt: + ro: + ru: + si: + sk: + sl: + so: + sq: + sr: + sv: + sw: + ta: + th: + tk: + tr: + uk: + ur: + uz: + vi: + yi: zh: 中文 - zh-hk: - zh-tw: + zh-hk: + zh-tw: multi_page: next_page: 下一步 previous_page: 上一步