govuk_publishing_components 35.15.5 → 35.16.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (85) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/config/govuk_publishing_components_manifest.js +1 -0
  3. data/app/assets/images/option-select/input-icon.svg +3 -0
  4. data/app/assets/javascripts/govuk_publishing_components/analytics-ga4/ga4-page-views.js +19 -1
  5. data/app/assets/javascripts/govuk_publishing_components/analytics-ga4/pii-remover.js +1 -1
  6. data/app/assets/javascripts/govuk_publishing_components/components/option-select.js +312 -0
  7. data/app/assets/stylesheets/govuk_publishing_components/_all_components.scss +1 -0
  8. data/app/assets/stylesheets/govuk_publishing_components/components/_image-card.scss +26 -0
  9. data/app/assets/stylesheets/govuk_publishing_components/components/_option-select.scss +172 -0
  10. data/app/views/govuk_publishing_components/components/_image_card.html.erb +8 -2
  11. data/app/views/govuk_publishing_components/components/_option_select.html.erb +71 -0
  12. data/app/views/govuk_publishing_components/components/docs/image_card.yml +13 -0
  13. data/app/views/govuk_publishing_components/components/docs/option_select.yml +343 -0
  14. data/config/locales/ar.yml +4 -0
  15. data/config/locales/az.yml +4 -0
  16. data/config/locales/be.yml +4 -0
  17. data/config/locales/bg.yml +4 -0
  18. data/config/locales/bn.yml +4 -0
  19. data/config/locales/cs.yml +4 -0
  20. data/config/locales/cy.yml +4 -0
  21. data/config/locales/da.yml +4 -0
  22. data/config/locales/de.yml +4 -0
  23. data/config/locales/dr.yml +4 -0
  24. data/config/locales/el.yml +4 -0
  25. data/config/locales/en.yml +4 -0
  26. data/config/locales/es-419.yml +4 -0
  27. data/config/locales/es.yml +4 -0
  28. data/config/locales/et.yml +4 -0
  29. data/config/locales/fa.yml +4 -0
  30. data/config/locales/fi.yml +4 -0
  31. data/config/locales/fr.yml +4 -0
  32. data/config/locales/gd.yml +4 -0
  33. data/config/locales/gu.yml +4 -0
  34. data/config/locales/he.yml +4 -0
  35. data/config/locales/hi.yml +4 -0
  36. data/config/locales/hr.yml +4 -0
  37. data/config/locales/hu.yml +4 -0
  38. data/config/locales/hy.yml +4 -0
  39. data/config/locales/id.yml +4 -0
  40. data/config/locales/is.yml +4 -0
  41. data/config/locales/it.yml +4 -0
  42. data/config/locales/ja.yml +4 -0
  43. data/config/locales/ka.yml +4 -0
  44. data/config/locales/kk.yml +4 -0
  45. data/config/locales/ko.yml +4 -0
  46. data/config/locales/lt.yml +4 -0
  47. data/config/locales/lv.yml +4 -0
  48. data/config/locales/ms.yml +4 -0
  49. data/config/locales/mt.yml +4 -0
  50. data/config/locales/nl.yml +4 -0
  51. data/config/locales/no.yml +4 -0
  52. data/config/locales/pa-pk.yml +4 -0
  53. data/config/locales/pa.yml +4 -0
  54. data/config/locales/pl.yml +4 -0
  55. data/config/locales/ps.yml +4 -0
  56. data/config/locales/pt.yml +4 -0
  57. data/config/locales/ro.yml +4 -0
  58. data/config/locales/ru.yml +4 -0
  59. data/config/locales/si.yml +4 -0
  60. data/config/locales/sk.yml +4 -0
  61. data/config/locales/sl.yml +4 -0
  62. data/config/locales/so.yml +4 -0
  63. data/config/locales/sq.yml +4 -0
  64. data/config/locales/sr.yml +4 -0
  65. data/config/locales/sv.yml +4 -0
  66. data/config/locales/sw.yml +4 -0
  67. data/config/locales/ta.yml +4 -0
  68. data/config/locales/th.yml +4 -0
  69. data/config/locales/tk.yml +4 -0
  70. data/config/locales/tr.yml +4 -0
  71. data/config/locales/uk.yml +4 -0
  72. data/config/locales/ur.yml +4 -0
  73. data/config/locales/uz.yml +4 -0
  74. data/config/locales/vi.yml +4 -0
  75. data/config/locales/zh-hk.yml +4 -0
  76. data/config/locales/zh-tw.yml +4 -0
  77. data/config/locales/zh.yml +4 -0
  78. data/lib/govuk_publishing_components/presenters/image_card_helper.rb +6 -2
  79. data/lib/govuk_publishing_components/version.rb +1 -1
  80. data/node_modules/axe-core/axe.js +6 -6
  81. data/node_modules/axe-core/axe.min.js +2 -2
  82. data/node_modules/axe-core/locales/_template.json +4 -4
  83. data/node_modules/axe-core/package.json +1 -1
  84. data/node_modules/axe-core/sri-history.json +4 -0
  85. metadata +7 -2
@@ -0,0 +1,71 @@
1
+ <%
2
+ add_gem_component_stylesheet("option-select")
3
+ add_gem_component_stylesheet("input")
4
+
5
+ title_id = "option-select-title-#{title.parameterize}"
6
+ checkboxes_id = "checkboxes-#{SecureRandom.hex(4)}"
7
+ checkboxes_count_id = checkboxes_id + "-count"
8
+ show_filter ||= false
9
+ large ||= false
10
+
11
+ classes = %w[gem-c-option-select__container js-options-container]
12
+ classes << "gem-c-option-select__container--large" if large
13
+ %>
14
+
15
+ <% if show_filter %>
16
+ <%
17
+ filter_id ||= "input-#{SecureRandom.hex(4)}"
18
+ %>
19
+ <% filter = capture do %>
20
+ <%= tag.label for: filter_id, class: "govuk-label govuk-visually-hidden" do %>
21
+ Filter <%= title %>
22
+ <% end %>
23
+
24
+ <%= tag.input name: "option-select-filter",
25
+ id: filter_id,
26
+ class: "gem-c-option-select__filter-input govuk-input",
27
+ type: "text",
28
+ aria: {
29
+ describedby: checkboxes_count_id,
30
+ controls: checkboxes_id
31
+ }
32
+ %>
33
+ <% end %>
34
+ <% filter_element = CGI::escapeHTML(filter) %>
35
+ <% end %>
36
+
37
+ <div
38
+ class="gem-c-option-select" data-module="option-select" data-ga4-change-category="update-filter checkbox" data-ga4-section="<%= title %>"
39
+ <% if local_assigns.include?(:closed_on_load) && closed_on_load %>data-closed-on-load="true"<% end %>
40
+ <% if local_assigns.include?(:closed_on_load_mobile) && closed_on_load_mobile %>data-closed-on-load-mobile="true"<% end %>
41
+ <% if local_assigns.include?(:aria_controls_id) %>data-input-aria-controls="<%= aria_controls_id %>"<% end %>
42
+ <% if show_filter %>data-filter-element="<%= filter_element %>"<% end %>
43
+ >
44
+ <h3 class="gem-c-option-select__heading js-container-heading">
45
+ <span class="gem-c-option-select__title js-container-button" id="<%= title_id %>"><%= title %></span>
46
+ <svg version="1.1" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" class="gem-c-option-select__icon gem-c-option-select__icon--up" aria-hidden="true" focusable="false"><path d="m798.16 609.84l-256-256c-16.683-16.683-43.691-16.683-60.331 0l-256 256c-16.683 16.683-16.683 43.691 0 60.331s43.691 16.683 60.331 0l225.84-225.84 225.84 225.84c16.683 16.683 43.691 16.683 60.331 0s16.683-43.691 0-60.331z"/></svg>
47
+ <svg version="1.1" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" class="gem-c-option-select__icon gem-c-option-select__icon--down" aria-hidden="true" focusable="false"><path d="m225.84 414.16l256 256c16.683 16.683 43.691 16.683 60.331 0l256-256c16.683-16.683 16.683-43.691 0-60.331s-43.691-16.683-60.331 0l-225.84 225.84-225.84-225.84c-16.683-16.683-43.691-16.683-60.331 0s-16.683 43.691 0 60.331z"/></svg>
48
+ </h3>
49
+
50
+ <%= content_tag(:div, role: "group", aria: { labelledby: title_id }, class: classes, id: options_container_id, tabindex: "-1") do %>
51
+ <div class="gem-c-option-select__container-inner js-auto-height-inner">
52
+ <% if show_filter %>
53
+ <span id="<%= checkboxes_count_id %>"
54
+ class="gem-c-option-select__count govuk-visually-hidden"
55
+ aria-live="polite"
56
+ data-single="<%= t('components.option_select.found_single') %>"
57
+ data-multiple="<%= t('components.option_select.found_multiple') %>"
58
+ data-selected="<%= t('components.option_select.selected') %>"></span>
59
+ <% end %>
60
+ <%= render "govuk_publishing_components/components/checkboxes", {
61
+ name: "#{key}[]",
62
+ id: checkboxes_id,
63
+ heading: title,
64
+ small: true,
65
+ visually_hide_heading: true,
66
+ no_hint_text: true,
67
+ items: options
68
+ } %>
69
+ </div>
70
+ <% end %>
71
+ </div>
@@ -205,6 +205,19 @@ examples:
205
205
  <div class="govuk-!-width-full">
206
206
  <%= component %>
207
207
  </div>
208
+ two_thirds_column:
209
+ description: This variant is used for the featured section on the homepage.
210
+ data:
211
+ two_thirds: true
212
+ href: "/still-not-a-page"
213
+ image_src: "https://assets.publishing.service.gov.uk/government/uploads/system/uploads/feature/image/91397/s712_SG_Swear_in_1_.jpg"
214
+ image_alt: "some meaningful alt text please"
215
+ heading_text: "Something has happened nearby possibly"
216
+ description: "Following a news report that something has happened, further details are emerging of the thing that has happened and what that means for you."
217
+ embed: |
218
+ <div class="govuk-!-width-full">
219
+ <%= component %>
220
+ </div>
208
221
  youtube_video:
209
222
  description: |
210
223
  Given a Youtube video id, the image card will render a Youtube embed instead of an image. If Javascript fails to execute for any reason, then a fallback link to the Youtube video will be rendered instead.
@@ -0,0 +1,343 @@
1
+ name: Option select
2
+ description: A scrollable list of checkboxes to be displayed on a form where one might
3
+ otherwise use a multi-select
4
+ body:
5
+ accessibility_criteria: |
6
+ The option select must:
7
+
8
+ - indicate that the option select is expandable/collapsible
9
+ - indicate the initial state of expandable content
10
+ - indicate where the state of expandable content has changed
11
+
12
+ The option select inputs must:
13
+
14
+ - have a margin to the right when the box is scrollable so that users can interact with a scrollbar without accidentally clicking an option
15
+ - only include an `aria-controls` attribute if an element with the ID specified exists on the page
16
+ - be [grouped with a label](https://www.w3.org/WAI/GL/wiki/Using_grouping_roles_to_identify_related_form_controls)
17
+
18
+ The option select filter must:
19
+
20
+ - be focusable with a keyboard
21
+ - indicate when it has keyboard focus
22
+ - inform the user that is it an editable field
23
+ - inform the user when there are matches, or if there are no matches
24
+ - inform the user as the number of matches changes
25
+ examples:
26
+ default:
27
+ data:
28
+ key: market_sector
29
+ title: Market sector
30
+ options_container_id: list_of_sectors
31
+ options:
32
+ - value: aerospace
33
+ label: Aerospace
34
+ id: aerospace
35
+ - value: agriculture-environment-and-natural-resources
36
+ label: Agriculture, environment and natural resources
37
+ id: agriculture-environment-and-natural-resources
38
+ - value: building-and-construction
39
+ label: Building and construction
40
+ id: building-and-construction
41
+ - value: chemicals
42
+ label: Chemicals
43
+ id: chemicals
44
+ - value: clothing-footwear-and-fashion
45
+ label: Clothing, footwear and fashion
46
+ id: clothing-footwear-and-fashion
47
+ - value: defence
48
+ label: Defence
49
+ id: defence
50
+ - value: distribution-and-service-industries
51
+ label: Distribution and Service Industries
52
+ id: distribution-and-service-industries
53
+ - value: electronics-industry
54
+ label: Electronics Industry
55
+ id: electronics-industry
56
+ - value: energy
57
+ label: Energy
58
+ id: energy
59
+ - value: engineering
60
+ label: Engineering
61
+ id: engineering
62
+ - value: financial-services
63
+ label: Financial services
64
+ id: financial-services
65
+ - value: fire-police-and-security
66
+ label: Fire, police, and security
67
+ id: fire-police-and-security
68
+ - value: food-manufacturing
69
+ label: Food manufacturing
70
+ id: food-manufacturing
71
+ - value: giftware-jewellery-and-tableware
72
+ label: Giftware, jewellery and tableware
73
+ id: giftware-jewellery-and-tableware
74
+ with_option_pre_checked:
75
+ data:
76
+ key: with_checked_value_set
77
+ title: List of options
78
+ options_container_id: list_of_vegetables
79
+ options:
80
+ - value: potatoes
81
+ label: Potatoes
82
+ checked: true
83
+ - value: carrots
84
+ label: Carrots
85
+ id: carrots
86
+ - value: mash
87
+ label: Mash
88
+ id: mash
89
+ with_aria_controls:
90
+ description: |
91
+ aria_controls_id adds an [`aria-controls` attribute](https://tink.uk/using-the-aria-controls-attribute/) to each checkbox input. This makes it easier for users of assitive tech to jump from them to the part of the page they’re updating.
92
+
93
+ The aria_controls_id must be set to the ID of an element that’s on the page or it won’t be included.
94
+ data:
95
+ key: with_aria-control_set
96
+ title: List of options (with aria controls)
97
+ aria_controls_id: wrapper
98
+ options_container_id: list_of_countries
99
+ options:
100
+ - value: britain
101
+ label: Britain
102
+ id: britain
103
+ - value: france
104
+ label: France
105
+ id: france
106
+ - value: spain
107
+ label: Spain
108
+ id: spain
109
+ closed_on_load:
110
+ data:
111
+ key: closed_on_load
112
+ title: List of hats
113
+ closed_on_load: true
114
+ options_container_id: list_of_hats
115
+ options:
116
+ - value: bobble_hat
117
+ label: Bobble hat
118
+ id: bobble_hat
119
+ - value: fez
120
+ label: Fez
121
+ id: fez
122
+ - value: sombrero
123
+ label: Sombrero
124
+ id: sombrero
125
+ with_tracking:
126
+ data:
127
+ key: list_of_shoes
128
+ title: List of shoes
129
+ options_container_id: list_of_shoes
130
+ options:
131
+ - value: trainers
132
+ label: Trainers
133
+ id: trainers
134
+ data_attributes:
135
+ track_category: "filterClicked"
136
+ track_action: "List of shoes"
137
+ track_label: "trainers"
138
+ track_options:
139
+ dimension28: 1
140
+ - value: plimsolls
141
+ label: Plimsolls
142
+ id: plimsolls
143
+ data_attributes:
144
+ track_category: "filterClicked"
145
+ track_action: "List of shoes"
146
+ track_label: "plimsolls"
147
+ track_options:
148
+ dimension28: 1
149
+ - value: high_heels
150
+ label: High heels
151
+ id: high_heels
152
+ data_attributes:
153
+ track_category: "filterClicked"
154
+ track_action: "List of shoes"
155
+ track_label: "high_heels"
156
+ track_options:
157
+ dimension28: 1
158
+ with_filter:
159
+ description: Adds a filter to allow users to narrow the checkboxes down. Checkboxes will only show if they match what the user has typed, or if they are already checked. The filter is case insensitive and strips out punctuation characters and duplicate whitespace, and sees '&' and 'and' as the same, to make filtering easier.
160
+ data:
161
+ key: filter_demo
162
+ title: Countries
163
+ options_container_id: list_of_countries_to_filter
164
+ show_filter: true
165
+ options:
166
+ - value: afghanistan
167
+ label: Afghanistan
168
+ id: afghanistan
169
+ - value: albania
170
+ label: Albania
171
+ id: albania
172
+ - value: algeria
173
+ label: Algeria
174
+ id: algeria
175
+ checked: true
176
+ - value: american_samoa
177
+ label: American Samoa
178
+ id: american_samoa
179
+ - value: andorra
180
+ label: Andorra
181
+ id: andorra
182
+ checked: true
183
+ - value: angola
184
+ label: Angola
185
+ id: angola
186
+ - value: anguilla
187
+ label: Anguilla
188
+ id: anguilla
189
+ - value: antigua_and_barbuda
190
+ label: Antigua and Barbuda
191
+ id: antigua_and_barbuda
192
+ - value: argentina
193
+ label: Argentina
194
+ id: argentina
195
+ - value: armenia
196
+ label: Armenia
197
+ id: armenia
198
+ - value: aruba
199
+ label: Aruba
200
+ id: aruba
201
+ - value: australia
202
+ label: Australia
203
+ id: australia
204
+ - value: austria
205
+ label: Austria
206
+ id: austria
207
+ - value: azerbaijan
208
+ label: Azerbaijan
209
+ id: azerbaijan
210
+ - value: bahamas
211
+ label: Bahamas
212
+ id: bahamas
213
+ - value: bahrain
214
+ label: Bahrain
215
+ id: bahrain
216
+ - value: bangladesh
217
+ label: Bangladesh
218
+ id: bangladesh
219
+ - value: barbados
220
+ label: Barbados
221
+ id: barbados
222
+ - value: belarus
223
+ label: Belarus
224
+ id: belarus
225
+ - value: belgium
226
+ label: Belgium
227
+ id: belgium
228
+ - value: belize
229
+ label: Belize
230
+ id: belize
231
+ - value: benin
232
+ label: Benin
233
+ id: benin
234
+ - value: bermuda
235
+ label: Bermuda
236
+ id: bermuda
237
+ - value: bhutan
238
+ label: Bhutan
239
+ id: bhutan
240
+ - value: bolivia
241
+ label: Bolivia
242
+ id: bolivia
243
+ - value: cote
244
+ label: Cote d’Ivoire
245
+ id: cote
246
+ - value: sthelena
247
+ label: St Helena, Ascension and Tristan da Cunha
248
+ id: sthelena
249
+ - value: trinidad
250
+ label: Trinidad & Tobago
251
+ id: trinidad
252
+ large:
253
+ description: When `large` is set to `true`, the option-select container has an increased max-height of 600px, allowing more checkbox items to be visible.
254
+ data:
255
+ key: large_demo
256
+ title: Countries
257
+ options_container_id: list_of_countries_to_filter_large
258
+ large: true
259
+ options:
260
+ - value: afghanistan
261
+ label: Afghanistan
262
+ id: afghanistanLargeExample
263
+ - value: albania
264
+ label: Albania
265
+ id: albaniaLargeExample
266
+ - value: algeria
267
+ label: Algeria
268
+ id: algeriaLargeExample
269
+ - value: american_samoa
270
+ label: American Samoa
271
+ id: american_samoaLargeExample
272
+ - value: andorra
273
+ label: Andorra
274
+ id: andorraLargeExample
275
+ - value: angola
276
+ label: Angola
277
+ id: angolaLargeExample
278
+ - value: anguilla
279
+ label: Anguilla
280
+ id: anguillaLargeExample
281
+ - value: antigua_and_barbuda
282
+ label: Antigua and Barbuda
283
+ id: antigua_and_barbudaLargeExample
284
+ - value: argentina
285
+ label: Argentina
286
+ id: argentinaLargeExample
287
+ - value: armenia
288
+ label: Armenia
289
+ id: armeniaLargeExample
290
+ - value: aruba
291
+ label: Aruba
292
+ id: arubaLargeExample
293
+ - value: australia
294
+ label: Australia
295
+ id: australiaLargeExample
296
+ - value: austria
297
+ label: Austria
298
+ id: austriaLargeExample
299
+ - value: azerbaijan
300
+ label: Azerbaijan
301
+ id: azerbaijanLargeExample
302
+ - value: bahamas
303
+ label: Bahamas
304
+ id: bahamasLargeExample
305
+ - value: bahrain
306
+ label: Bahrain
307
+ id: bahrainLargeExample
308
+ - value: bangladesh
309
+ label: Bangladesh
310
+ id: bangladeshLargeExample
311
+ - value: barbados
312
+ label: Barbados
313
+ id: barbadosLargeExample
314
+ - value: belarus
315
+ label: Belarus
316
+ id: belarusLargeExample
317
+ - value: belgium
318
+ label: Belgium
319
+ id: belgiumLargeExample
320
+ - value: belize
321
+ label: Belize
322
+ id: belizeLargeExample
323
+ - value: benin
324
+ label: Benin
325
+ id: beninLargeExample
326
+ - value: bermuda
327
+ label: Bermuda
328
+ id: bermudaLargeExample
329
+ - value: bhutan
330
+ label: Bhutan
331
+ id: bhutanLargeExample
332
+ - value: bolivia
333
+ label: Bolivia
334
+ id: boliviaLargeExample
335
+ - value: cote
336
+ label: Cote d'Ivoire
337
+ id: coteLargeExample
338
+ - value: sthelena
339
+ label: St Helena, Ascension and Tristan da Cunha
340
+ id: sthelenaLargeExample
341
+ - value: trinidad
342
+ label: Trinidad & Tobago
343
+ id: trinidadLargeExample
@@ -140,6 +140,10 @@ ar:
140
140
  close_modal: إغلاق مربع الحوار المشروط
141
141
  notice:
142
142
  banner_title:
143
+ option_select:
144
+ found_single:
145
+ found_multiple:
146
+ selected:
143
147
  organisation_schema:
144
148
  all_content_search_description: العثور عن كل المحتوى من %{organisation}
145
149
  previous_and_next_navigation:
@@ -137,6 +137,10 @@ az:
137
137
  close_modal: Modal dialoqu bağla
138
138
  notice:
139
139
  banner_title:
140
+ option_select:
141
+ found_single:
142
+ found_multiple:
143
+ selected:
140
144
  organisation_schema:
141
145
  all_content_search_description: "%{organisation}-dan bütün məzmunu tap"
142
146
  previous_and_next_navigation:
@@ -143,6 +143,10 @@ be:
143
143
  close_modal: Зачыніць мадальны дыялог
144
144
  notice:
145
145
  banner_title:
146
+ option_select:
147
+ found_single:
148
+ found_multiple:
149
+ selected:
146
150
  organisation_schema:
147
151
  all_content_search_description: Шукаць увесь змест з %{organisation}
148
152
  previous_and_next_navigation:
@@ -141,6 +141,10 @@ bg:
141
141
  close_modal: Затваряне на модалния диалог
142
142
  notice:
143
143
  banner_title:
144
+ option_select:
145
+ found_single:
146
+ found_multiple:
147
+ selected:
144
148
  organisation_schema:
145
149
  all_content_search_description: Намиране на цялото съдържание от %{organisation}
146
150
  previous_and_next_navigation:
@@ -138,6 +138,10 @@ bn:
138
138
  close_modal: ক্লোজ মোডাল ডায়ালগ
139
139
  notice:
140
140
  banner_title:
141
+ option_select:
142
+ found_single:
143
+ found_multiple:
144
+ selected:
141
145
  organisation_schema:
142
146
  all_content_search_description: "%{organisation}-এর সকল বিষয়বস্তু খুঁজে বের করুন"
143
147
  previous_and_next_navigation:
@@ -142,6 +142,10 @@ cs:
142
142
  close_modal: Zavření modálního dialogu
143
143
  notice:
144
144
  banner_title:
145
+ option_select:
146
+ found_single:
147
+ found_multiple:
148
+ selected:
145
149
  organisation_schema:
146
150
  all_content_search_description: Najít veškerý obsah z %{organisation}
147
151
  previous_and_next_navigation:
@@ -141,6 +141,10 @@ cy:
141
141
  close_modal: Cau'r ddeialog foddol
142
142
  notice:
143
143
  banner_title:
144
+ option_select:
145
+ found_single:
146
+ found_multiple:
147
+ selected:
144
148
  organisation_schema:
145
149
  all_content_search_description: Dod o hyd i'r holl gynnwys gan %{organisation}
146
150
  previous_and_next_navigation:
@@ -138,6 +138,10 @@ da:
138
138
  close_modal: Luk den modale dialog
139
139
  notice:
140
140
  banner_title:
141
+ option_select:
142
+ found_single:
143
+ found_multiple:
144
+ selected:
141
145
  organisation_schema:
142
146
  all_content_search_description: Find alt indhold fra %{organisation}
143
147
  previous_and_next_navigation:
@@ -141,6 +141,10 @@ de:
141
141
  close_modal: Dialog schließen
142
142
  notice:
143
143
  banner_title:
144
+ option_select:
145
+ found_single:
146
+ found_multiple:
147
+ selected:
144
148
  organisation_schema:
145
149
  all_content_search_description: Alle Inhalte von %{organisation} finden
146
150
  previous_and_next_navigation:
@@ -139,6 +139,10 @@ dr:
139
139
  close_modal: دیالوگ کیفی را بسته نمایید
140
140
  notice:
141
141
  banner_title:
142
+ option_select:
143
+ found_single:
144
+ found_multiple:
145
+ selected:
142
146
  organisation_schema:
143
147
  all_content_search_description: تمام محتویات را از اینجا بدست بیاورید %{organisation}
144
148
  previous_and_next_navigation:
@@ -137,6 +137,10 @@ el:
137
137
  close_modal: Κλείσιμο παράθυρου διαλόγου
138
138
  notice:
139
139
  banner_title:
140
+ option_select:
141
+ found_single:
142
+ found_multiple:
143
+ selected:
140
144
  organisation_schema:
141
145
  all_content_search_description: Εύρεση όλου του περιεχομένου από τον οργανισμό %{Organization}
142
146
  previous_and_next_navigation:
@@ -256,6 +256,10 @@ en:
256
256
  close_modal: Close modal dialogue
257
257
  notice:
258
258
  banner_title: Important
259
+ option_select:
260
+ found_single: option found
261
+ found_multiple: options found
262
+ selected: selected
259
263
  organisation_schema:
260
264
  all_content_search_description: Find all content from %{organisation}
261
265
  previous_and_next_navigation:
@@ -137,6 +137,10 @@ es-419:
137
137
  close_modal: Cerrar diálogo modal
138
138
  notice:
139
139
  banner_title:
140
+ option_select:
141
+ found_single:
142
+ found_multiple:
143
+ selected:
140
144
  organisation_schema:
141
145
  all_content_search_description: Buscar todo el contenido de %{organisation}
142
146
  previous_and_next_navigation:
@@ -137,6 +137,10 @@ es:
137
137
  close_modal: Cierre el cuadro de diálogo modal
138
138
  notice:
139
139
  banner_title:
140
+ option_select:
141
+ found_single:
142
+ found_multiple:
143
+ selected:
140
144
  organisation_schema:
141
145
  all_content_search_description: Buscar todo el contenido de %{organization}
142
146
  previous_and_next_navigation:
@@ -140,6 +140,10 @@ et:
140
140
  close_modal: Sule modaalne dialoog
141
141
  notice:
142
142
  banner_title:
143
+ option_select:
144
+ found_single:
145
+ found_multiple:
146
+ selected:
143
147
  organisation_schema:
144
148
  all_content_search_description: Leidke kogu ettevõtte %{organization} sisu
145
149
  previous_and_next_navigation:
@@ -136,6 +136,10 @@ fa:
136
136
  close_modal: بستن گفتگوی مودال
137
137
  notice:
138
138
  banner_title:
139
+ option_select:
140
+ found_single:
141
+ found_multiple:
142
+ selected:
139
143
  organisation_schema:
140
144
  all_content_search_description: یافتن تمام محتوا از %{organisation}
141
145
  previous_and_next_navigation:
@@ -139,6 +139,10 @@ fi:
139
139
  close_modal: Sulje modaalinen vuoropuhelu
140
140
  notice:
141
141
  banner_title:
142
+ option_select:
143
+ found_single:
144
+ found_multiple:
145
+ selected:
142
146
  organisation_schema:
143
147
  all_content_search_description: Etsi kaikki sisältö alkaen %{organisation}
144
148
  previous_and_next_navigation:
@@ -137,6 +137,10 @@ fr:
137
137
  close_modal: Fermer le dialogue modal
138
138
  notice:
139
139
  banner_title:
140
+ option_select:
141
+ found_single:
142
+ found_multiple:
143
+ selected:
140
144
  organisation_schema:
141
145
  all_content_search_description: Rechercher tout le contenu de %{organisation}
142
146
  previous_and_next_navigation:
@@ -139,6 +139,10 @@ gd:
139
139
  close_modal: Dún an dialóg módúil
140
140
  notice:
141
141
  banner_title:
142
+ option_select:
143
+ found_single:
144
+ found_multiple:
145
+ selected:
142
146
  organisation_schema:
143
147
  all_content_search_description: Faigh gach rud ó %{organisation}
144
148
  previous_and_next_navigation:
@@ -137,6 +137,10 @@ gu:
137
137
  close_modal: મોડલ ડાયલોગ બંધ કરો
138
138
  notice:
139
139
  banner_title:
140
+ option_select:
141
+ found_single:
142
+ found_multiple:
143
+ selected:
140
144
  organisation_schema:
141
145
  all_content_search_description: "%{organisation} થી તમામ સામગ્રી શોધો"
142
146
  previous_and_next_navigation:
@@ -137,6 +137,10 @@ he:
137
137
  close_modal: סגור דיאלוג מודאלי
138
138
  notice:
139
139
  banner_title:
140
+ option_select:
141
+ found_single:
142
+ found_multiple:
143
+ selected:
140
144
  organisation_schema:
141
145
  all_content_search_description: מצא את כל התוכן של %{organization}
142
146
  previous_and_next_navigation: