govuk_publishing_components 27.16.0 → 27.17.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/javascripts/govuk_publishing_components/analytics/explicit-cross-domain-links.js +49 -48
- data/app/assets/javascripts/govuk_publishing_components/components/cookie-banner.js +0 -1
- data/app/assets/stylesheets/govuk_publishing_components/components/_big-number.scss +1 -6
- data/app/assets/stylesheets/govuk_publishing_components/components/_layout-super-navigation-header.scss +5 -5
- data/app/assets/stylesheets/govuk_publishing_components/components/govspeak/_tables.scss +8 -4
- data/app/views/govuk_publishing_components/components/_cookie_banner.html.erb +1 -1
- data/config/i18n-tasks.yml +8 -0
- data/config/locales/ar.yml +134 -131
- data/config/locales/az.yml +131 -131
- data/config/locales/be.yml +136 -130
- data/config/locales/bg.yml +135 -131
- data/config/locales/bn.yml +132 -131
- data/config/locales/cs.yml +136 -131
- data/config/locales/cy.yml +129 -125
- data/config/locales/da.yml +132 -131
- data/config/locales/de.yml +135 -131
- data/config/locales/dr.yml +133 -131
- data/config/locales/el.yml +131 -131
- data/config/locales/en.yml +10 -11
- data/config/locales/es-419.yml +131 -131
- data/config/locales/es.yml +131 -131
- data/config/locales/et.yml +134 -131
- data/config/locales/fa.yml +130 -131
- data/config/locales/fi.yml +133 -131
- data/config/locales/fr.yml +130 -130
- data/config/locales/gd.yml +133 -131
- data/config/locales/gu.yml +131 -131
- data/config/locales/he.yml +131 -131
- data/config/locales/hi.yml +131 -131
- data/config/locales/hr.yml +133 -131
- data/config/locales/hu.yml +134 -131
- data/config/locales/hy.yml +135 -131
- data/config/locales/id.yml +132 -131
- data/config/locales/is.yml +131 -131
- data/config/locales/it.yml +131 -131
- data/config/locales/ja.yml +128 -131
- data/config/locales/ka.yml +134 -131
- data/config/locales/kk.yml +131 -131
- data/config/locales/ko.yml +13 -17
- data/config/locales/lt.yml +136 -131
- data/config/locales/lv.yml +135 -131
- data/config/locales/ms.yml +131 -131
- data/config/locales/mt.yml +133 -131
- data/config/locales/nl.yml +131 -131
- data/config/locales/no.yml +131 -131
- data/config/locales/pa-pk.yml +128 -132
- data/config/locales/pa.yml +131 -131
- data/config/locales/pl.yml +135 -131
- data/config/locales/ps.yml +128 -131
- data/config/locales/pt.yml +131 -131
- data/config/locales/ro.yml +132 -131
- data/config/locales/ru.yml +135 -131
- data/config/locales/si.yml +131 -131
- data/config/locales/sk.yml +136 -131
- data/config/locales/sl.yml +138 -131
- data/config/locales/so.yml +131 -131
- data/config/locales/sq.yml +131 -131
- data/config/locales/sr.yml +133 -131
- data/config/locales/sv.yml +131 -131
- data/config/locales/sw.yml +131 -131
- data/config/locales/ta.yml +132 -131
- data/config/locales/th.yml +130 -131
- data/config/locales/tk.yml +132 -131
- data/config/locales/tr.yml +132 -131
- data/config/locales/uk.yml +138 -131
- data/config/locales/ur.yml +128 -131
- data/config/locales/uz.yml +133 -131
- data/config/locales/vi.yml +131 -131
- data/config/locales/zh-hk.yml +130 -131
- data/config/locales/zh-tw.yml +130 -131
- data/config/locales/zh.yml +130 -131
- data/lib/govuk_publishing_components/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0d9ee129bde5e753f8180b3b8dfe7f2e4fe257558ac1a6fe40bb289242d849f2
|
4
|
+
data.tar.gz: 4c01bb1d55673a25eef1a408e5360da17b2d4e1a8dfc00291463ecc86dfcd81a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5eac4c820f6c86caded7a9e994f1e9e15edbb6ab7fce003ae38f9919dcc6a23f3db7f9dfcd27e0204152e17daa35ccb741ce457b6c9c3c85a8ae51350362fe3c
|
7
|
+
data.tar.gz: b9e8068c2b0746134a37e21fefdd8cc6114055e133fa7240e801be587f34f8ff8a7dd218a71f34cda1fe8dce5c54da3109544d0775e103c2a90e9bec153cd018
|
data/app/assets/javascripts/govuk_publishing_components/analytics/explicit-cross-domain-links.js
CHANGED
@@ -6,33 +6,57 @@
|
|
6
6
|
|
7
7
|
GOVUK.Modules.ExplicitCrossDomainLinks = function () {
|
8
8
|
this.start = function ($module) {
|
9
|
-
|
9
|
+
this.element = $module[0]
|
10
|
+
this.attribute = 'href'
|
11
|
+
this.attributeValue = this.element.getAttribute(this.attribute)
|
12
|
+
this.eventType = 'click'
|
13
|
+
if (!this.attributeValue) {
|
14
|
+
this.attribute = 'action'
|
15
|
+
this.attributeValue = this.element.getAttribute(this.attribute)
|
16
|
+
this.eventType = 'submit'
|
17
|
+
}
|
10
18
|
|
11
|
-
|
19
|
+
this.handleEvent = this.handleEvent.bind(this)
|
20
|
+
this.handleCookiesAccepted = this.handleCookiesAccepted.bind(this)
|
21
|
+
// Listens for the 'submit' event if the element is a form, and the 'click' event if it is a link
|
22
|
+
this.element.addEventListener(this.eventType, this.handleEvent)
|
23
|
+
}
|
12
24
|
|
13
|
-
|
14
|
-
//
|
15
|
-
|
25
|
+
this.handleEvent = function (e) {
|
26
|
+
// prevent default: we want the link href and/or form action to be decorated before we navigate away
|
27
|
+
e.preventDefault()
|
28
|
+
var cookieBannerEngaged = GOVUK.cookie('cookies_preferences_set')
|
29
|
+
var cookieConsent = GOVUK.getConsentCookie()
|
16
30
|
|
17
31
|
if (cookieBannerEngaged !== 'true') {
|
18
|
-
|
19
|
-
this.
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
window.addEventListener('cookie-reject', this.start)
|
25
|
-
return
|
32
|
+
// If not engaged, append only ?cookie_consent=not-engaged
|
33
|
+
this.decorate(this.element, 'cookie_consent=not-engaged', this.attribute)
|
34
|
+
} else if (cookieConsent && cookieConsent.usage === true) {
|
35
|
+
this.handleCookiesAccepted()
|
36
|
+
} else {
|
37
|
+
this.decorate(this.element, 'cookie_consent=reject', this.attribute)
|
26
38
|
}
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
39
|
+
|
40
|
+
// remove the event listener to avoid an infinite loop
|
41
|
+
this.element.removeEventListener(this.eventType, this.handleEvent)
|
42
|
+
|
43
|
+
// if the element is a form, submit it. If it is a link, click it
|
44
|
+
if (this.eventType === 'submit') {
|
45
|
+
this.element.submit()
|
46
|
+
} else {
|
47
|
+
this.element.click()
|
31
48
|
}
|
49
|
+
}
|
32
50
|
|
33
|
-
|
51
|
+
this.handleCookiesAccepted = function () {
|
52
|
+
// If the cookie banner was engaged and usage cookie accepted, append ?_ga=clientid if available and cookie_consent=accept
|
53
|
+
var element = this.element
|
54
|
+
var attribute = this.attribute
|
55
|
+
this.decorate(element, 'cookie_consent=accept', attribute)
|
34
56
|
|
35
|
-
if (!global.ga) {
|
57
|
+
if (!global.ga) {
|
58
|
+
return
|
59
|
+
}
|
36
60
|
|
37
61
|
global.ga(function () {
|
38
62
|
var trackers = global.ga.getAll()
|
@@ -40,44 +64,21 @@
|
|
40
64
|
if (!trackers.length) { return }
|
41
65
|
|
42
66
|
var linker = new global.gaplugins.Linker(trackers[0])
|
67
|
+
var attrValue = element.getAttribute(attribute)
|
43
68
|
|
44
|
-
|
45
|
-
if (attrAction) {
|
46
|
-
element.setAttribute('action', linker.decorate(attrAction))
|
47
|
-
}
|
48
|
-
|
49
|
-
var attrHref = element.getAttribute('href')
|
50
|
-
if (attrHref) {
|
51
|
-
element.href = linker.decorate(attrHref)
|
52
|
-
}
|
69
|
+
element.setAttribute(attribute, linker.decorate(attrValue))
|
53
70
|
})
|
54
71
|
}
|
55
72
|
|
56
|
-
this.decorate = function (element, param) {
|
57
|
-
var attribute = 'href'
|
73
|
+
this.decorate = function (element, param, attribute) {
|
58
74
|
var attributeValue = element.getAttribute(attribute)
|
59
|
-
var cookieConsentParameterPattern = /cookie_consent=[^&]*/
|
60
|
-
var paramIsCookieConsent = param.match(cookieConsentParameterPattern)
|
61
|
-
|
62
|
-
if (!attributeValue) {
|
63
|
-
attribute = 'action'
|
64
|
-
attributeValue = element.getAttribute(attribute)
|
65
|
-
}
|
66
75
|
|
67
76
|
if (!attributeValue) { return }
|
68
77
|
|
69
|
-
|
70
|
-
|
71
|
-
if (attributeHasCookieConsent && paramIsCookieConsent) {
|
72
|
-
// if the decorate function has received a cookie_consent parameter, but the target element already has a cookie_consent parameter, replace the existing parameter with the new value
|
73
|
-
attributeValue = attributeValue.replace(cookieConsentParameterPattern, param)
|
78
|
+
if (attributeValue.includes('?')) {
|
79
|
+
attributeValue += '&' + param
|
74
80
|
} else {
|
75
|
-
|
76
|
-
if (attributeValue.includes('?')) {
|
77
|
-
attributeValue += '&' + param
|
78
|
-
} else {
|
79
|
-
attributeValue += '?' + param
|
80
|
-
}
|
81
|
+
attributeValue += '?' + param
|
81
82
|
}
|
82
83
|
|
83
84
|
element.setAttribute(attribute, attributeValue)
|
@@ -97,7 +97,6 @@ window.GOVUK.Modules = window.GOVUK.Modules || {};
|
|
97
97
|
this.$module.cookieBannerConfirmationMessage.focus()
|
98
98
|
window.GOVUK.cookie('cookies_preferences_set', 'true', { days: 365 })
|
99
99
|
window.GOVUK.setDefaultConsentCookie()
|
100
|
-
window.GOVUK.triggerEvent(window, 'cookie-reject')
|
101
100
|
}
|
102
101
|
|
103
102
|
CookieBanner.prototype.showConfirmationMessage = function () {
|
@@ -15,12 +15,7 @@
|
|
15
15
|
}
|
16
16
|
|
17
17
|
.gem-c-big-number__label {
|
18
|
-
font
|
19
|
-
@include govuk-typography-weight-bold;
|
20
|
-
|
21
|
-
@if $govuk-typography-use-rem {
|
22
|
-
font-size: govuk-px-to-rem(16px);
|
23
|
-
}
|
18
|
+
@include govuk-font($size: 19, $weight: bold);
|
24
19
|
|
25
20
|
// This pseudo element is to bypass an issue with NVDA where block level elements are dictated separately.
|
26
21
|
// What's happening here is that the label and the number technically have an inline relationship but appear to have a block relationship thanks to this element
|
@@ -131,14 +131,14 @@ $pseudo-underline-height: 3px;
|
|
131
131
|
top: 0;
|
132
132
|
}
|
133
133
|
|
134
|
-
@mixin pseudo-underline {
|
134
|
+
@mixin pseudo-underline($left: govuk-spacing(4), $right: govuk-spacing(4)) {
|
135
135
|
background: none;
|
136
136
|
bottom: 0;
|
137
137
|
content: "";
|
138
138
|
height: $pseudo-underline-height;
|
139
|
-
left:
|
139
|
+
left: $left;
|
140
140
|
position: absolute;
|
141
|
-
right:
|
141
|
+
right: $right;
|
142
142
|
top: auto;
|
143
143
|
}
|
144
144
|
|
@@ -385,7 +385,7 @@ $pseudo-underline-height: 3px;
|
|
385
385
|
// stylelint-enable max-nesting-depth
|
386
386
|
|
387
387
|
&:after {
|
388
|
-
@include pseudo-underline;
|
388
|
+
@include pseudo-underline($left: govuk-spacing(5), $right: govuk-spacing(6));
|
389
389
|
}
|
390
390
|
}
|
391
391
|
}
|
@@ -431,7 +431,7 @@ $pseudo-underline-height: 3px;
|
|
431
431
|
|
432
432
|
@include govuk-media-query($from: "desktop") {
|
433
433
|
&:after {
|
434
|
-
@include pseudo-underline;
|
434
|
+
@include pseudo-underline($left: govuk-spacing(5), $right: govuk-spacing(6));
|
435
435
|
}
|
436
436
|
|
437
437
|
@include focus-not-focus-visible {
|
@@ -14,7 +14,7 @@
|
|
14
14
|
margin: govuk-spacing(6) 0;
|
15
15
|
overflow-x: auto;
|
16
16
|
width: 100%;
|
17
|
-
@include govuk-font($size:
|
17
|
+
@include govuk-font($size: 19);
|
18
18
|
|
19
19
|
caption {
|
20
20
|
text-align: left;
|
@@ -24,12 +24,16 @@
|
|
24
24
|
th,
|
25
25
|
td {
|
26
26
|
vertical-align: top;
|
27
|
-
padding: govuk-spacing(2) govuk-spacing(
|
28
|
-
border-bottom: solid
|
27
|
+
padding: govuk-spacing(2) govuk-spacing(4) govuk-spacing(2) 0;
|
28
|
+
border-bottom: 1px solid govuk-colour("mid-grey", $legacy: "grey-2");
|
29
|
+
|
30
|
+
&:last-child {
|
31
|
+
padding: govuk-spacing(2) 0 govuk-spacing(2) 0;
|
32
|
+
}
|
29
33
|
}
|
30
34
|
|
31
35
|
th {
|
32
|
-
@include govuk-font($size:
|
36
|
+
@include govuk-font($size: 19, $weight: bold);
|
33
37
|
text-align: left;
|
34
38
|
color: $govuk-text-colour;
|
35
39
|
}
|
@@ -14,7 +14,7 @@
|
|
14
14
|
text = raw(text)
|
15
15
|
|
16
16
|
cookie_preferences_href ||= "/help/cookies"
|
17
|
-
confirmation_message ||= raw(t("components.cookie_banner.
|
17
|
+
confirmation_message ||= raw(t("components.cookie_banner.confirmation_message_html",
|
18
18
|
link: link_to(
|
19
19
|
t("components.cookie_banner.confirmation_message_link"),
|
20
20
|
cookie_preferences_href,
|
data/config/i18n-tasks.yml
CHANGED
data/config/locales/ar.yml
CHANGED
@@ -1,48 +1,55 @@
|
|
1
1
|
---
|
2
2
|
ar:
|
3
3
|
common:
|
4
|
-
translations:
|
4
|
+
translations: الترجمات
|
5
5
|
components:
|
6
6
|
accordion:
|
7
|
-
hide:
|
8
|
-
hide_all:
|
9
|
-
show:
|
10
|
-
show_all:
|
11
|
-
this_section_visually_hidden:
|
7
|
+
hide: إخفاء
|
8
|
+
hide_all: إخفاء كل الأقسام
|
9
|
+
show: إظهار
|
10
|
+
show_all: إظهار كل الأقسام
|
11
|
+
this_section_visually_hidden: " هذا القسم"
|
12
12
|
article_schema:
|
13
|
-
scoped_search_description:
|
13
|
+
scoped_search_description: البحث في %{title}
|
14
14
|
attachment:
|
15
|
-
opendocument_html:
|
16
|
-
order_a_copy:
|
15
|
+
opendocument_html: هذا الملف بتنسيق <a href='https://www.gov.uk/guidance/using-open-document-formats-odf-in-your-organisation' target=%{target} class='govuk-link'>OpenDocument</a>
|
16
|
+
order_a_copy: طلب نسخة
|
17
17
|
page:
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
18
|
+
few:
|
19
|
+
many:
|
20
|
+
one: 1 صفحة
|
21
|
+
other: "%{count} صفحات"
|
22
|
+
two:
|
23
|
+
zero:
|
24
|
+
reference: 'مرجع: %{reference}'
|
25
|
+
request_format_cta: طلب تنسيق يمكن الاطلاع عليه.
|
26
|
+
request_format_details_html: إذا كنت تستخدم تكنولوجيا مساعِدة (مثل قارئ للشاشة) وتحتاج إلى إصدار من هذا المستند بتنسيق يسهل الاطلاع عليه، فيُرجى التواصل عبر البريد الإلكتروني <a href='mailto:%{alternative_format_contact_email}' target='_blank' class='govuk-link'>%{alternative_format_contact_email}</a>. من فضلك أخبرنا بالتنسيق الذي تحتاجه. إذا أخبرتنا بالتكنولوجيا المساعدة التي تستخدمها، فهذا سيساعدنا.
|
27
|
+
request_format_text: قد لا يكون هذا الملف مناسبًا لمستخدمي التكنولوجيا المساعدة.
|
24
28
|
back_link:
|
25
|
-
back:
|
29
|
+
back: عودة
|
26
30
|
character_count:
|
27
|
-
body:
|
31
|
+
body: يمكنك إدخال عدد حتى %{number} %{type}
|
28
32
|
type:
|
29
|
-
characters:
|
30
|
-
words:
|
33
|
+
characters: أحرف
|
34
|
+
words: كلمات
|
31
35
|
checkboxes:
|
32
|
-
or:
|
36
|
+
or: أو
|
33
37
|
contents_list:
|
34
|
-
contents:
|
38
|
+
contents: المحتويات
|
35
39
|
contextual_sidebar:
|
36
|
-
pretitle:
|
40
|
+
pretitle: جزء أيضًا من
|
37
41
|
cookie_banner:
|
38
42
|
buttons:
|
39
|
-
accept_cookies:
|
40
|
-
reject_cookies:
|
41
|
-
|
42
|
-
confirmation_message_link:
|
43
|
-
hide:
|
43
|
+
accept_cookies: قبول ملفات تعريف الارتباط الإضافية
|
44
|
+
reject_cookies: رفض ملفات تعريف الارتباط الإضافية
|
45
|
+
confirmation_message_html: يمكنك %{link} في أي وقت.
|
46
|
+
confirmation_message_link: قم بتغيير إعدادات ملفات تعريف الارتباط الخاصة بك
|
47
|
+
hide: إخفاء هذه الرسالة
|
44
48
|
text:
|
45
|
-
|
49
|
+
- نحن نستخدم بعض ملفات تعريف الارتباط الأساسية لجعل هذا الموقع يعمل.
|
50
|
+
- نود تعيين ملفات تعريف ارتباط إضافية لفهم كيفية استخدامك لـموقع GOV.UK، ولتذكر إعداداتك، ولتحسين الخدمات الحكومية.
|
51
|
+
- كما نستخدم أيضًا ملفات تعريف الارتباط التي تم تعيينها بواسطة مواقع أخرى لمساعدتنا في تقديم المحتوى المقدم من خدماتها.
|
52
|
+
title: ملفات تعريف الارتباط على GOV.UK
|
46
53
|
devolved_nations:
|
47
54
|
applies_to:
|
48
55
|
connectors:
|
@@ -51,69 +58,59 @@ ar:
|
|
51
58
|
england:
|
52
59
|
northern_ireland:
|
53
60
|
scotland:
|
61
|
+
type:
|
62
|
+
consultation:
|
63
|
+
detailed_guide:
|
64
|
+
guidance:
|
65
|
+
publication:
|
54
66
|
wales:
|
55
67
|
feedback:
|
56
|
-
close:
|
57
|
-
dont_include_personal_info:
|
58
|
-
email_address:
|
59
|
-
help_us_improve_govuk:
|
60
|
-
is_not_useful:
|
61
|
-
is_this_page_useful:
|
62
|
-
is_useful:
|
63
|
-
maybe:
|
64
|
-
more_about_visit:
|
65
|
-
'no':
|
66
|
-
send:
|
67
|
-
send_me_survey:
|
68
|
-
something_wrong:
|
69
|
-
thank_you_for_feedback:
|
70
|
-
what_doing:
|
71
|
-
what_wrong:
|
72
|
-
'yes':
|
68
|
+
close: إغلاق
|
69
|
+
dont_include_personal_info: لا تقم بتضمين معلومات شخصية أو مالية مثل رقم التأمين الوطني أو تفاصيل بطاقة الائتمان الخاصة بك.
|
70
|
+
email_address: عنوان البريد الإلكتروني
|
71
|
+
help_us_improve_govuk: ساعدنا في تحسين GOV.UK
|
72
|
+
is_not_useful: هذه الصفحة ليست مفيدة
|
73
|
+
is_this_page_useful: هل هذه الصفحة مفيدة؟
|
74
|
+
is_useful: هذه الصفحة مفيدة
|
75
|
+
maybe: ربما
|
76
|
+
more_about_visit: لمساعدتنا في تحسين GOV.UK، نود معرفة المزيد عن زيارتك اليوم. سنرسل لك ارتباطًا إلى نموذج التعليقات. ستستغرق تعبئة البيانات دقيقتين فقط. لا تقلق، لن نرسل لك بريدًا عشوائيًا أو نشارك عنوان بريدك الإلكتروني مع أي شخص.
|
77
|
+
'no': لا
|
78
|
+
send: إرسال
|
79
|
+
send_me_survey: أرسل لي الاستبيان
|
80
|
+
something_wrong: أبلغ عن مشكلة في هذه الصفحة
|
81
|
+
thank_you_for_feedback: نشكرك على ملاحظاتك
|
82
|
+
what_doing: ماذا كنت تفعل؟
|
83
|
+
what_wrong: ما الخطأ الذي وقع؟
|
84
|
+
'yes': نعم
|
73
85
|
government_navigation:
|
74
|
-
consultations:
|
75
|
-
departments:
|
76
|
-
get-involved:
|
77
|
-
how-government-works:
|
78
|
-
news_and_communications:
|
79
|
-
statistics:
|
80
|
-
worldwide:
|
81
|
-
intervention:
|
82
|
-
description:
|
83
|
-
dismiss_link_text:
|
84
|
-
dismiss_post_link:
|
85
|
-
title:
|
86
|
+
consultations: استشارات
|
87
|
+
departments: الأقسام
|
88
|
+
get-involved: شارك
|
89
|
+
how-government-works: كيف تعمل الحكومة
|
90
|
+
news_and_communications: الأخبار والاتصالات
|
91
|
+
statistics: إحصائيات
|
92
|
+
worldwide: في جميع أنحاء العالم
|
86
93
|
layout_footer:
|
87
|
-
copyright_html:
|
88
|
-
licence_html:
|
89
|
-
support_links:
|
94
|
+
copyright_html: <a class="govuk-footer__link govuk-footer__copyright-logo" href="http://www.nationalarchives.gov.uk/information-management/re-using-public-sector-information/copyright-and-re-use/crown-copyright/">© حقوق نشر التاج الملكي</a>
|
95
|
+
licence_html: كل المحتوى متاح بموجب <a class="govuk-footer__link" href="https://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/" rel="license">الترخيص الحكومي المفتوح (الإصدار v3.0)</a>، ما لم ينص على خلاف ذلك
|
96
|
+
support_links: روابط الدعم
|
90
97
|
layout_for_public:
|
91
98
|
account_layout:
|
92
99
|
feedback:
|
93
100
|
banners:
|
94
|
-
|
95
|
-
footer_link:
|
96
|
-
footer_outro:
|
97
|
-
phase_intro:
|
98
|
-
phase_link:
|
99
|
-
phase_outro:
|
100
|
-
title:
|
101
|
+
phase_banner_html:
|
101
102
|
navigation:
|
102
|
-
destroy_user_session:
|
103
103
|
menu_bar:
|
104
104
|
account:
|
105
105
|
link_text:
|
106
106
|
manage:
|
107
107
|
link_text:
|
108
|
-
security:
|
109
|
-
link_text:
|
110
|
-
user_root_path:
|
111
108
|
layout_header:
|
112
|
-
hide_button:
|
113
|
-
menu:
|
114
|
-
search_button:
|
115
|
-
show_button:
|
116
|
-
top_level:
|
109
|
+
hide_button: إخفاء البحث
|
110
|
+
menu: القائمة
|
111
|
+
search_button: البحث في GOV.UK
|
112
|
+
show_button: إظهار البحث
|
113
|
+
top_level: أفضل مستوى
|
117
114
|
layout_super_navigation_header:
|
118
115
|
logo_link_title:
|
119
116
|
logo_text:
|
@@ -128,77 +125,83 @@ ar:
|
|
128
125
|
popular_links_heading:
|
129
126
|
search_text:
|
130
127
|
metadata:
|
131
|
-
from:
|
132
|
-
history:
|
133
|
-
last_updated:
|
134
|
-
part_of:
|
135
|
-
published:
|
136
|
-
see_all_updates:
|
137
|
-
toggle_less:
|
138
|
-
toggle_more:
|
128
|
+
from: من
|
129
|
+
history: المحفوظات
|
130
|
+
last_updated: التحديث الأخير
|
131
|
+
part_of: جزء من
|
132
|
+
published: منشورة
|
133
|
+
see_all_updates: اطلع على كل التحديثات
|
134
|
+
toggle_less: عرض أقل
|
135
|
+
toggle_more: زيادة بمقدار + %{number}
|
139
136
|
modal_dialogue:
|
140
|
-
close_modal:
|
137
|
+
close_modal: إغلاق مربع الحوار المشروط
|
141
138
|
notice:
|
142
139
|
banner_title:
|
143
140
|
organisation_schema:
|
144
|
-
all_content_search_description:
|
141
|
+
all_content_search_description: العثور عن كل المحتوى من %{organisation}
|
145
142
|
previous_and_next_navigation:
|
146
|
-
pagination:
|
143
|
+
pagination: ترقيم الصفحات
|
147
144
|
print_link:
|
148
|
-
text:
|
145
|
+
text: طباعة هذه الصفحة
|
149
146
|
radio:
|
150
|
-
or:
|
147
|
+
or: أو
|
151
148
|
related_footer_navigation:
|
152
|
-
collections:
|
153
|
-
policies:
|
154
|
-
statistical_data_sets:
|
155
|
-
topical_events:
|
149
|
+
collections: المجموعات
|
150
|
+
policies: سياسات
|
151
|
+
statistical_data_sets: مجموعات بيانات إحصائية
|
152
|
+
topical_events: أحداث موضوعية
|
156
153
|
related_navigation:
|
157
|
-
collections:
|
158
|
-
external_links:
|
159
|
-
policies:
|
160
|
-
publishers:
|
161
|
-
related_contacts:
|
162
|
-
related_content:
|
163
|
-
related_external_links:
|
164
|
-
related_guides:
|
165
|
-
statistical_data_sets:
|
166
|
-
topical_events:
|
167
|
-
topics:
|
154
|
+
collections: مجموعة
|
155
|
+
external_links: في مكان آخر على الويب
|
156
|
+
policies: سياسة
|
157
|
+
publishers: جهة النشر
|
158
|
+
related_contacts: جهات اتصال أخرى
|
159
|
+
related_content: المحتوى ذو الصلة
|
160
|
+
related_external_links: في مكان آخر على الويب
|
161
|
+
related_guides: توجيهات تفصيلية
|
162
|
+
statistical_data_sets: مجموعة بيانات إحصائية
|
163
|
+
topical_events: حدث موضوعي
|
164
|
+
topics: استكشف الموضوع
|
168
165
|
transition:
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
166
|
+
hub_page_link_path: "/transition-check/questions"
|
167
|
+
hub_page_link_text: احصل على قائمة مخصصة للإجراءات
|
168
|
+
hub_page_title: أداة التحقق الخاصة ببرِيكْسِت
|
169
|
+
link_path: "/brexit"
|
170
|
+
link_text: تحقق مما تحتاج إلى القيام به
|
171
|
+
title: برِيكْسِت
|
172
|
+
world_locations: المواقع العالمية
|
173
173
|
search_box:
|
174
|
-
input_title:
|
175
|
-
label:
|
176
|
-
search_button:
|
174
|
+
input_title: بحث
|
175
|
+
label: بحث على GOV.UK
|
176
|
+
search_button: بحث
|
177
177
|
show_password:
|
178
|
-
announce_hide:
|
179
|
-
announce_show:
|
180
|
-
hide:
|
181
|
-
hide_password:
|
182
|
-
show:
|
183
|
-
show_password:
|
178
|
+
announce_hide: كلمة مرورك مخفيَّة
|
179
|
+
announce_show: كلمة مرورك معروضة
|
180
|
+
hide: إخفاء
|
181
|
+
hide_password: إخفاء كلمة المرور
|
182
|
+
show: إظهار
|
183
|
+
show_password: إظهار كلمة المرور
|
184
|
+
single_page_notification_button:
|
185
|
+
subscribe_text:
|
186
|
+
unsubscribe_text:
|
184
187
|
skip_link:
|
185
|
-
text:
|
188
|
+
text: تخطي إلى المحتوى الرئيسي
|
186
189
|
step_by_step_nav:
|
187
|
-
hide:
|
188
|
-
hide_all:
|
189
|
-
show:
|
190
|
-
show_all:
|
190
|
+
hide: إخفاء
|
191
|
+
hide_all: إخفاء كل الخطوات
|
192
|
+
show: إظهار
|
193
|
+
show_all: عرض كل الخطوات
|
191
194
|
step_by_step_nav_related:
|
192
|
-
part_of:
|
195
|
+
part_of: جزء من
|
193
196
|
subscription_links:
|
194
|
-
email_signup_link_text:
|
195
|
-
feed_link_label:
|
196
|
-
feed_link_text:
|
197
|
-
subscriptions:
|
197
|
+
email_signup_link_text: احصل على رسائل البريد الإلكتروني
|
198
|
+
feed_link_label: انسخ والصق عنوان URL هذا في قارئ الموجز الخاص بك
|
199
|
+
feed_link_text: اشترك في التغذية
|
200
|
+
subscriptions: الاشتراكات
|
198
201
|
success_alert:
|
199
|
-
success:
|
202
|
+
success: نجاح
|
200
203
|
summary_list:
|
201
|
-
delete:
|
202
|
-
edit:
|
204
|
+
delete: حذف
|
205
|
+
edit: تغيير
|
203
206
|
tabs:
|
204
|
-
contents:
|
207
|
+
contents: المحتويات
|