@brightspace-ui/core 2.24.1 → 2.25.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/selection/README.md +105 -56
- package/components/selection/selection-mixin.js +1 -1
- package/lang/ar.js +6 -6
- package/lang/cy.js +6 -6
- package/lang/da.js +6 -6
- package/lang/de.js +6 -6
- package/lang/es-es.js +6 -6
- package/lang/es.js +6 -6
- package/lang/fr-fr.js +6 -6
- package/lang/fr.js +6 -6
- package/lang/hi.js +5 -5
- package/lang/ja.js +3 -3
- package/lang/ko.js +3 -3
- package/lang/nl.js +6 -6
- package/lang/pt.js +6 -6
- package/lang/sv.js +6 -6
- package/lang/tr.js +6 -6
- package/lang/zh-cn.js +3 -3
- package/lang/zh-tw.js +4 -4
- package/package.json +2 -2
|
@@ -8,9 +8,15 @@ The selection components (`d2l-selection-action`, `d2l-selection-input`, `d2l-se
|
|
|
8
8
|

|
|
9
9
|
<!-- docs: end hidden content -->
|
|
10
10
|
|
|
11
|
+
## Use Case
|
|
12
|
+
|
|
13
|
+
The `d2l-list` already extends `SelectionMixin` and should always be used for lists, however a custom selection control can be defined to enable the use of these selection controls in different semantic contexts or radically different layouts. See [SelectionMixin](#selectionmixin).
|
|
14
|
+
|
|
11
15
|
## SelectionMixin
|
|
12
16
|
|
|
13
|
-
The selection components below work with a component that extends the `SelectionMixin
|
|
17
|
+
The `SelectionMixin` enables the creation of custom selection control components. The selection components below work with a component that extends the `SelectionMixin` which acts like a controller for the checkboxes, radios, actions and other selection components. The selection components below must be contained within a component that extends the `SelectionMixin`. The `d2l-selection-input` component must be placed _within_ the component that extends the `SelectionMixin`. The other selection components may also be placed inside the `SelectionMixin` component, or in the same DOM scope with the `selection-for` attribute set to the id of that component.
|
|
18
|
+
|
|
19
|
+
The `SelectionMixin` defines the `selection-single` attribute that consumers can specify for single selection behaviour.
|
|
14
20
|
|
|
15
21
|
<!-- docs: demo live name:d2l-demo-selection display:block -->
|
|
16
22
|
```html
|
|
@@ -18,7 +24,7 @@ The selection components below work with a component that extends the `Selection
|
|
|
18
24
|
import { css, html, LitElement } from 'lit';
|
|
19
25
|
import { SelectionMixin } from '@brightspace-ui/core/components/selection/selection-mixin.js';
|
|
20
26
|
|
|
21
|
-
class
|
|
27
|
+
class DemoSelection extends SelectionMixin(LitElement) {
|
|
22
28
|
static get styles() {
|
|
23
29
|
return css`
|
|
24
30
|
:host {
|
|
@@ -32,7 +38,7 @@ The selection components below work with a component that extends the `Selection
|
|
|
32
38
|
`;
|
|
33
39
|
}
|
|
34
40
|
}
|
|
35
|
-
customElements.define('d2l-demo-selection',
|
|
41
|
+
customElements.define('d2l-demo-selection', DemoSelection);
|
|
36
42
|
</script>
|
|
37
43
|
<script type="module">
|
|
38
44
|
import '@brightspace-ui/core/components/selection/selection-action.js';
|
|
@@ -90,8 +96,6 @@ The selection components below work with a component that extends the `Selection
|
|
|
90
96
|
</d2l-demo-selection>
|
|
91
97
|
```
|
|
92
98
|
|
|
93
|
-
The `d2l-list` already extends `SelectionMixin` and should always be used for lists, however a custom selection control can be easily defined to enable the use of these selection controls in different semantic contexts or radically different layouts. The `SelectionMixin` defines the `selection-single` attribute that consumers can specify for single selection behaviour.
|
|
94
|
-
|
|
95
99
|
<!-- docs: start hidden content -->
|
|
96
100
|
### Properties
|
|
97
101
|
|
|
@@ -103,7 +107,7 @@ The `d2l-list` already extends `SelectionMixin` and should always be used for li
|
|
|
103
107
|
|
|
104
108
|
### Usage
|
|
105
109
|
|
|
106
|
-
The selection components can then be used within the custom selection component as shown above, or the non-`d2l-selection-input` components can be used outside the custom selection component as long as they are in the same DOM scope:
|
|
110
|
+
Define a custom web component that extends the `SelectionMixin`. The selection components can then be used within the custom selection component as shown above, or the non-`d2l-selection-input` components can be used outside the custom selection component as long as they are in the same DOM scope:
|
|
107
111
|
|
|
108
112
|
```html
|
|
109
113
|
<div>
|
|
@@ -111,17 +115,17 @@ The selection components can then be used within the custom selection component
|
|
|
111
115
|
<d2l-selection-action selection-for="custom" text="Settings" icon="tier1:gear"></d2l-selection-action>
|
|
112
116
|
<d2l-selection-summary selection-for="custom"></d2l-selection-summary>
|
|
113
117
|
</div>
|
|
114
|
-
<d2l-
|
|
118
|
+
<d2l-demo-selection id="custom">
|
|
115
119
|
<ul>
|
|
116
120
|
<li><d2l-selection-input key="geo" label="Geography" selected></d2l-selection-input>Geography</li>
|
|
117
121
|
<li><d2l-selection-input key="sci" label="Science"></d2l-selection-input>Science</li>
|
|
118
122
|
</ul>
|
|
119
|
-
</d2l-
|
|
123
|
+
</d2l-demo-selection>
|
|
120
124
|
```
|
|
121
125
|
|
|
122
126
|
## Selection Action [d2l-selection-action]
|
|
123
127
|
|
|
124
|
-
The `d2l-selection-action` is an optional component that provides a button for actions associated with the selection
|
|
128
|
+
The `d2l-selection-action` is an optional component that provides a button for actions associated with the [selection control](#selectionmixin) (ex. bulk actions). The `requires-selection` attribute may be specified to indicate that the button should be non-interactive if nothing is selected.
|
|
125
129
|
|
|
126
130
|
<!-- docs: demo live name:d2l-selection-action -->
|
|
127
131
|
```html
|
|
@@ -150,21 +154,19 @@ The `d2l-selection-action` is an optional component that provides a button for a
|
|
|
150
154
|
|
|
151
155
|
## Selection Action Dropdown [d2l-selection-action-dropdown]
|
|
152
156
|
|
|
153
|
-
The `d2l-selection-action-dropdown` is an optional component that provides a button opener for dropdown content associated with the selection
|
|
157
|
+
The `d2l-selection-action-dropdown` is an optional component that provides a button opener for dropdown content associated with the [selection control](#selectionmixin) (ex. bulk actions). The `requires-selection` attribute may be specified to indicate that the opener should be non-interactive if nothing is selected.
|
|
154
158
|
|
|
155
|
-
<!-- docs: demo live name:d2l-selection-action-dropdown
|
|
159
|
+
<!-- docs: demo live name:d2l-selection-action-dropdown align:baseline -->
|
|
156
160
|
```html
|
|
157
161
|
<script type="module">
|
|
158
162
|
import '@brightspace-ui/core/components/dropdown/dropdown-menu.js';
|
|
159
163
|
import '@brightspace-ui/core/components/menu/menu.js';
|
|
160
|
-
import '@brightspace-ui/core/components/menu/menu-item.js';
|
|
161
164
|
import '@brightspace-ui/core/components/selection/selection-action-dropdown.js';
|
|
162
165
|
</script>
|
|
163
166
|
<d2l-selection-action-dropdown text="Actions" requires-selection>
|
|
164
167
|
<d2l-dropdown-menu>
|
|
165
168
|
<d2l-menu label="Actions">
|
|
166
|
-
<d2l-
|
|
167
|
-
<d2l-menu-item text="Action 2"></d2l-menu-item>
|
|
169
|
+
<!-- This is where you add instances of <d2l-selection-action-menu-item>. -->
|
|
168
170
|
</d2l-menu>
|
|
169
171
|
</d2l-dropdown-menu>
|
|
170
172
|
</d2l-selection-action-dropdown>
|
|
@@ -182,7 +184,7 @@ The `d2l-selection-action-dropdown` is an optional component that provides a but
|
|
|
182
184
|
|
|
183
185
|
## Selection Action Menu Item [d2l-selection-action-menu-item]
|
|
184
186
|
|
|
185
|
-
The `d2l-selection-action-menu-item` is an optional component that is a menu item for actions associated with the selection
|
|
187
|
+
The `d2l-selection-action-menu-item` is an optional component that is a menu item for actions associated with the [selection control](#selectionmixin) (ex. bulk actions). The `requires-selection` attribute may be specified to indicate that the menu item should be non-interactive if nothing is selected. This component enables the app to define an opener that is enabled regardless of the selection state, while having a menu containing one or more menu items that `requires-selection`.
|
|
186
188
|
|
|
187
189
|
<!-- docs: demo live name:d2l-selection-action-menu-item autoSize:false size:medium align:baseline -->
|
|
188
190
|
```html
|
|
@@ -220,7 +222,11 @@ The `d2l-selection-action-menu-item` is an optional component that is a menu ite
|
|
|
220
222
|
|
|
221
223
|
## Selection Input [d2l-selection-input]
|
|
222
224
|
|
|
223
|
-
The `d2l-selection-input` is a required component in selection controls - without it, there wouldn't be anything for the user to select!
|
|
225
|
+
The `d2l-selection-input` is a required component in selection controls - without it, there wouldn't be anything for the user to select! This component must be placed _within_ the [selection control](#selectionmixin).
|
|
226
|
+
|
|
227
|
+
If `d2l-selection-input` is placed within a selection control that specifies `selection-single`, then radios will be rendered instead of checkboxes.
|
|
228
|
+
|
|
229
|
+
Note: `d2l-list-item` already provides a selection input for selectable list items.
|
|
224
230
|
|
|
225
231
|
<!-- docs: demo live name:d2l-selection-input display:block -->
|
|
226
232
|
```html
|
|
@@ -247,6 +253,7 @@ The `d2l-selection-input` is a required component in selection controls - withou
|
|
|
247
253
|
<ul>
|
|
248
254
|
<li><d2l-selection-input key="geo" label="Geography" selected></d2l-selection-input>Geography</li>
|
|
249
255
|
<li><d2l-selection-input key="sci" label="Science"></d2l-selection-input>Science</li>
|
|
256
|
+
<li><d2l-selection-input key="mat" label="Math"></d2l-selection-input>Math</li>
|
|
250
257
|
</ul>
|
|
251
258
|
</d2l-demo-selection>
|
|
252
259
|
```
|
|
@@ -274,9 +281,9 @@ Either `label` or `labelled-by` is **required**.
|
|
|
274
281
|
|
|
275
282
|
## Select All [d2l-selection-select-all]
|
|
276
283
|
|
|
277
|
-
The `d2l-selection-select-all` is an optional component that provides a checkbox for bulk selecting the selectable elements within the selection control. Its state will also be automatically updated when the state of the selectable elements change.
|
|
284
|
+
The `d2l-selection-select-all` is an optional component that provides a checkbox for bulk selecting the selectable elements within the [selection control](#selectionmixin). Its state will also be automatically updated when the state of the selectable elements change.
|
|
278
285
|
|
|
279
|
-
In the example below, setting `selection-for` to `other-list` demonstrates the ability to use `d2l-selection-select-all`
|
|
286
|
+
The `d2l-selection-select-all` component may be placed inside the selection control, or in the same DOM scope with the `selection-for` attribute set to the id of that component. In the example below, setting `selection-for` to `other-list` demonstrates the ability to use `d2l-selection-select-all` from outside of the selection control component.
|
|
280
287
|
|
|
281
288
|
<!-- docs: demo live name:d2l-selection-select-all display:block -->
|
|
282
289
|
```html
|
|
@@ -288,6 +295,13 @@ In the example below, setting `selection-for` to `other-list` demonstrates the a
|
|
|
288
295
|
</script>
|
|
289
296
|
<!-- docs: start hidden content -->
|
|
290
297
|
<style>
|
|
298
|
+
.container {
|
|
299
|
+
justify-content: center;
|
|
300
|
+
}
|
|
301
|
+
#other-list {
|
|
302
|
+
padding-top: 2.1rem;
|
|
303
|
+
margin-left: 5rem;
|
|
304
|
+
}
|
|
291
305
|
ul {
|
|
292
306
|
margin: 0;
|
|
293
307
|
padding: 0;
|
|
@@ -304,27 +318,41 @@ In the example below, setting `selection-for` to `other-list` demonstrates the a
|
|
|
304
318
|
d2l-selection-input {
|
|
305
319
|
margin-right: 10px;
|
|
306
320
|
}
|
|
307
|
-
|
|
308
|
-
|
|
321
|
+
@media only screen and (max-width: 350px) {
|
|
322
|
+
body {
|
|
323
|
+
overflow-y: scroll;
|
|
324
|
+
}
|
|
325
|
+
.container {
|
|
326
|
+
align-items: flex-start;
|
|
327
|
+
flex-direction: column;
|
|
328
|
+
margin-right: 15px;
|
|
329
|
+
}
|
|
330
|
+
#other-list {
|
|
331
|
+
margin-left: 0;
|
|
332
|
+
}
|
|
309
333
|
}
|
|
310
334
|
</style>
|
|
311
335
|
<!-- docs: end hidden content -->
|
|
312
|
-
<
|
|
313
|
-
<
|
|
314
|
-
<
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
<
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
<
|
|
326
|
-
|
|
327
|
-
|
|
336
|
+
<div class="container">
|
|
337
|
+
<d2l-demo-selection>
|
|
338
|
+
<div>
|
|
339
|
+
<d2l-selection-select-all></d2l-selection-select-all>
|
|
340
|
+
<d2l-selection-action text="Bookmark" icon="tier1:bookmark-hollow" requires-selection></d2l-selection-action>
|
|
341
|
+
</div>
|
|
342
|
+
<ul>
|
|
343
|
+
<li><d2l-selection-input key="geo" label="Geography"></d2l-selection-input>Geography</li>
|
|
344
|
+
<li><d2l-selection-input key="sci" label="Science"></d2l-selection-input>Science</li>
|
|
345
|
+
<li><d2l-selection-input key="mat" label="Math" disabled></d2l-selection-input>Math</li>
|
|
346
|
+
</ul>
|
|
347
|
+
</d2l-demo-selection>
|
|
348
|
+
<d2l-demo-selection id="other-list">
|
|
349
|
+
<ul>
|
|
350
|
+
<li><d2l-selection-input key="ear" label="Earth"></d2l-selection-input>Earth</li>
|
|
351
|
+
<li><d2l-selection-input key="mar" label="Mars"></d2l-selection-input>Mars</li>
|
|
352
|
+
<li><d2l-selection-input key="jup" label="Jupiter"></d2l-selection-input>Jupiter</li>
|
|
353
|
+
</ul>
|
|
354
|
+
</d2l-demo-selection>
|
|
355
|
+
</div>
|
|
328
356
|
```
|
|
329
357
|
|
|
330
358
|
<!-- docs: start hidden content -->
|
|
@@ -338,9 +366,9 @@ In the example below, setting `selection-for` to `other-list` demonstrates the a
|
|
|
338
366
|
|
|
339
367
|
## Selection Summary [d2l-selection-summary]
|
|
340
368
|
|
|
341
|
-
The `d2l-selection-summary` is an optional component that shows a simple count of the selected items within the selection control.
|
|
369
|
+
The `d2l-selection-summary` is an optional component that shows a simple count of the selected items within the [selection control](#selectionmixin).
|
|
342
370
|
|
|
343
|
-
In the example below, setting `selection-for` to `other-list` demonstrates the ability to use `d2l-selection-summary`
|
|
371
|
+
The `d2l-selection-summary` component may be placed inside the selection control, or in the same DOM scope with the `selection-for` attribute set to the id of that component. In the example below, setting `selection-for` to `other-list` demonstrates the ability to use `d2l-selection-summary` from outside of the selection control component.
|
|
344
372
|
|
|
345
373
|
<!-- docs: demo live name:d2l-selection-summary display:block -->
|
|
346
374
|
```html
|
|
@@ -351,6 +379,14 @@ In the example below, setting `selection-for` to `other-list` demonstrates the a
|
|
|
351
379
|
</script>
|
|
352
380
|
<!-- docs: start hidden content -->
|
|
353
381
|
<style>
|
|
382
|
+
.container {
|
|
383
|
+
display: flex;
|
|
384
|
+
justify-content: center;
|
|
385
|
+
}
|
|
386
|
+
#other-list {
|
|
387
|
+
padding-top: 1rem;
|
|
388
|
+
margin-left: 5rem;
|
|
389
|
+
}
|
|
354
390
|
ul {
|
|
355
391
|
margin: 0;
|
|
356
392
|
padding: 0;
|
|
@@ -367,27 +403,40 @@ In the example below, setting `selection-for` to `other-list` demonstrates the a
|
|
|
367
403
|
d2l-selection-input {
|
|
368
404
|
margin-right: 10px;
|
|
369
405
|
}
|
|
370
|
-
|
|
371
|
-
|
|
406
|
+
@media only screen and (max-width: 350px) {
|
|
407
|
+
body {
|
|
408
|
+
overflow-y: scroll;
|
|
409
|
+
}
|
|
410
|
+
.container {
|
|
411
|
+
align-items: flex-start;
|
|
412
|
+
flex-direction: column;
|
|
413
|
+
}
|
|
414
|
+
#other-list {
|
|
415
|
+
margin-left: 0;
|
|
416
|
+
}
|
|
372
417
|
}
|
|
373
418
|
</style>
|
|
374
419
|
<!-- docs: end hidden content -->
|
|
375
|
-
<
|
|
376
|
-
<
|
|
377
|
-
<
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
<
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
<
|
|
389
|
-
|
|
390
|
-
|
|
420
|
+
<div class="container">
|
|
421
|
+
<d2l-demo-selection>
|
|
422
|
+
<div>
|
|
423
|
+
<d2l-selection-action text="Bookmark" icon="tier1:bookmark-hollow" requires-selection></d2l-selection-action>
|
|
424
|
+
<d2l-selection-summary></d2l-selection-summary>
|
|
425
|
+
</div>
|
|
426
|
+
<ul>
|
|
427
|
+
<li><d2l-selection-input key="geo" label="Geography"></d2l-selection-input>Geography</li>
|
|
428
|
+
<li><d2l-selection-input key="sci" label="Science"></d2l-selection-input>Science</li>
|
|
429
|
+
<li><d2l-selection-input key="mat" label="Math" disabled></d2l-selection-input>Math</li>
|
|
430
|
+
</ul>
|
|
431
|
+
</d2l-demo-selection>
|
|
432
|
+
<d2l-demo-selection id="other-list">
|
|
433
|
+
<ul>
|
|
434
|
+
<li><d2l-selection-input key="ear" label="Earth"></d2l-selection-input>Earth</li>
|
|
435
|
+
<li><d2l-selection-input key="mar" label="Mars"></d2l-selection-input>Mars</li>
|
|
436
|
+
<li><d2l-selection-input key="jup" label="Jupiter"></d2l-selection-input>Jupiter</li>
|
|
437
|
+
</ul>
|
|
438
|
+
</d2l-demo-selection>
|
|
439
|
+
</div>
|
|
391
440
|
```
|
|
392
441
|
|
|
393
442
|
<!-- docs: start hidden content -->
|
|
@@ -111,7 +111,7 @@ export const SelectionMixin = superclass => class extends RtlMixin(superclass) {
|
|
|
111
111
|
this._selectAllPages = (selected && selectAllPages);
|
|
112
112
|
|
|
113
113
|
this._selectionSelectables.forEach(selectable => {
|
|
114
|
-
if (!!selectable.selected !== selected) {
|
|
114
|
+
if (!selectable.disabled && !!selectable.selected !== selected) {
|
|
115
115
|
selectable.selected = selected;
|
|
116
116
|
}
|
|
117
117
|
});
|
package/lang/ar.js
CHANGED
|
@@ -9,21 +9,21 @@ export default {
|
|
|
9
9
|
"components.count-badge.plus" : "{number}+",
|
|
10
10
|
"components.dialog.close": "إغلاق مربع الحوار هذا",
|
|
11
11
|
"components.dropdown.close": "إغلاق",
|
|
12
|
-
"components.filter.activeFilters": "
|
|
12
|
+
"components.filter.activeFilters": "عوامل تصفية نشطة:",
|
|
13
13
|
"components.filter.clear": "مسح",
|
|
14
14
|
"components.filter.clearAll": "مسح الكل",
|
|
15
15
|
"components.filter.clearAllAnnounce": "جارٍ مسح كل عوامل التصفية",
|
|
16
|
-
"components.filter.clearAllAnnounceOverride": "
|
|
16
|
+
"components.filter.clearAllAnnounceOverride": "جارٍ مسح كل عوامل التصفية لـ: {filterText}",
|
|
17
17
|
"components.filter.clearAllDescription": "مسح كل عوامل التصفية",
|
|
18
|
-
"components.filter.clearAllDescriptionOverride": "
|
|
18
|
+
"components.filter.clearAllDescriptionOverride": "مسح كل عوامل التصفية لـ: {filterText}",
|
|
19
19
|
"components.filter.clearAnnounce": "جارٍ مسح عوامل التصفية لـ: {filterName}",
|
|
20
20
|
"components.filter.clearDescription": "مسح عوامل التصفية لـ: {filterName}",
|
|
21
21
|
"components.filter.loading": "يتم تحميل عوامل التصفية",
|
|
22
|
-
"components.filter.filterCountDescription": "{number, plural,
|
|
22
|
+
"components.filter.filterCountDescription": "{number, plural, =0 {لم يتم تطبيق عوامل تصفية.} one {تم تطبيق {number} عامل تصفية} other {تم تطبيق {number} من عوامل التصفية.}}",
|
|
23
23
|
"components.filter.filters": "عوامل التصفية",
|
|
24
24
|
"components.filter.noActiveFilters": "لا توجد عوامل تصفية نشطة",
|
|
25
25
|
"components.filter.noFilters": "ما من عوامل تصفية متوفرة",
|
|
26
|
-
"components.filter.searchResults": "{number, plural,
|
|
26
|
+
"components.filter.searchResults": "{number, plural, =0 {ما من نتائج بحث} one {{number} نتيجة بحث} other {{number} من نتائج البحث}}",
|
|
27
27
|
"components.filter.singleDimensionDescription": "التصفية حسب: {filterName}",
|
|
28
28
|
"components.form-element.defaultError": "{label} غير صالحة.",
|
|
29
29
|
"components.form-element.defaultFieldLabel": "الحقل",
|
|
@@ -34,7 +34,7 @@ export default {
|
|
|
34
34
|
"components.form-element.input.text.tooShort": "يجب أن تتألف التسمية {label} من {minlength} من الأحرف على الأقل",
|
|
35
35
|
"components.form-element.input.url.typeMismatch": "عنوان URL غير صالح",
|
|
36
36
|
"components.form-element.valueMissing": "{label} مطلوبة.",
|
|
37
|
-
"components.form-error-summary.errorSummary": "{count, plural, one {تم العثور على خطأ
|
|
37
|
+
"components.form-error-summary.errorSummary": "{count, plural, one {تم العثور على {count} خطأ في المعلومات التي أرسلتها} other {تم العثور على {count} من الأخطاء في المعلومات التي أرسلتها}}",
|
|
38
38
|
"components.input-date-range.endDate": "تاريخ الانتهاء",
|
|
39
39
|
"components.input-date-range.errorBadInput": "يجب أن يكون تاريخ {startLabel} قبل {endLabel}",
|
|
40
40
|
"components.input-date-range.startDate": "تاريخ البدء",
|
package/lang/cy.js
CHANGED
|
@@ -9,21 +9,21 @@ export default {
|
|
|
9
9
|
"components.count-badge.plus" : "{number}+",
|
|
10
10
|
"components.dialog.close": "Cau'r dialog hwn",
|
|
11
11
|
"components.dropdown.close": "Cau",
|
|
12
|
-
"components.filter.activeFilters": "
|
|
12
|
+
"components.filter.activeFilters": "Dim Hidlwyr Gweithredol:",
|
|
13
13
|
"components.filter.clear": "Clirio",
|
|
14
14
|
"components.filter.clearAll": "Clirio’r Cyfan",
|
|
15
15
|
"components.filter.clearAllAnnounce": "Wrthi’n clirio’r holl hidlwyr",
|
|
16
|
-
"components.filter.clearAllAnnounceOverride": "
|
|
16
|
+
"components.filter.clearAllAnnounceOverride": "Wrthi’n clirio pob hidlydd ar gyfer: {filterText}",
|
|
17
17
|
"components.filter.clearAllDescription": "Clirio’r holl hidlwyr",
|
|
18
|
-
"components.filter.clearAllDescriptionOverride": "
|
|
18
|
+
"components.filter.clearAllDescriptionOverride": "Clirio pob hidlydd ar gyfer: {filterText}",
|
|
19
19
|
"components.filter.clearAnnounce": "Wrthi’n clirio hidlwyr ar gyfer: {filterName}",
|
|
20
20
|
"components.filter.clearDescription": "Wrthi’n clirio hidlwyd ar gyfer: {filterName}",
|
|
21
21
|
"components.filter.loading": "Wrthi’n llwytho hidlyddion",
|
|
22
|
-
"components.filter.filterCountDescription": "{number, plural,
|
|
22
|
+
"components.filter.filterCountDescription": "{number, plural, =0 {Dim hidlyddion wedi’i gweithredu.} one {{number} hidlydd wedi’i weithredu.} other {{number} hidlyddion wedi’u gweithredu.}}",
|
|
23
23
|
"components.filter.filters": "Hidlyddion",
|
|
24
24
|
"components.filter.noActiveFilters": "Dim hidlwyr gweithredol",
|
|
25
25
|
"components.filter.noFilters": "Dim hidlyddion ar gael",
|
|
26
|
-
"components.filter.searchResults": "{number, plural,
|
|
26
|
+
"components.filter.searchResults": "{number, plural, =0 {Dim canlyniadau chwilio} one {{number} canlyniad chwilio} other {{number} canlyniadau chwilio}}",
|
|
27
27
|
"components.filter.singleDimensionDescription": "Hidlo yn ôl: {filterName}",
|
|
28
28
|
"components.form-element.defaultError": "Mae {label} yn annilys.",
|
|
29
29
|
"components.form-element.defaultFieldLabel": "Maes",
|
|
@@ -34,7 +34,7 @@ export default {
|
|
|
34
34
|
"components.form-element.input.text.tooShort": "Rhaid i {label} fod o leiaf {minlength} nod",
|
|
35
35
|
"components.form-element.input.url.typeMismatch": "Nid yw'r URL yn ddilys.",
|
|
36
36
|
"components.form-element.valueMissing": "Mae angen {label}.",
|
|
37
|
-
"components.form-error-summary.errorSummary": "{count, plural, one {
|
|
37
|
+
"components.form-error-summary.errorSummary": "{count, plural, one {Canfuwyd {count} gwall yn y wybodaeth a gyflwynoch} other {Canfuwyd {count} gwall yn y wybodaeth a gyflwynoch}}",
|
|
38
38
|
"components.input-date-range.endDate": "Dyddiad Dod i Ben",
|
|
39
39
|
"components.input-date-range.errorBadInput": "Rhaid i {startLabel} fod cyn {endLabel}",
|
|
40
40
|
"components.input-date-range.startDate": "Dyddiad Dechrau",
|
package/lang/da.js
CHANGED
|
@@ -9,21 +9,21 @@ export default {
|
|
|
9
9
|
"components.count-badge.plus" : "{number}+",
|
|
10
10
|
"components.dialog.close": "Luk denne dialogboks",
|
|
11
11
|
"components.dropdown.close": "Luk",
|
|
12
|
-
"components.filter.activeFilters": "
|
|
12
|
+
"components.filter.activeFilters": "Aktive filtre:",
|
|
13
13
|
"components.filter.clear": "Ryd",
|
|
14
14
|
"components.filter.clearAll": "Ryd alle",
|
|
15
15
|
"components.filter.clearAllAnnounce": "Rydder alle filtre",
|
|
16
|
-
"components.filter.clearAllAnnounceOverride": "
|
|
16
|
+
"components.filter.clearAllAnnounceOverride": "Rydder alle filtre for: {filterText}",
|
|
17
17
|
"components.filter.clearAllDescription": "Ryd alle filtre",
|
|
18
|
-
"components.filter.clearAllDescriptionOverride": "
|
|
18
|
+
"components.filter.clearAllDescriptionOverride": "Ryd alle filtre for: {filterText}",
|
|
19
19
|
"components.filter.clearAnnounce": "Rydder filtre for: {filterName}",
|
|
20
20
|
"components.filter.clearDescription": "Ryd filtre for: {filterName}",
|
|
21
21
|
"components.filter.loading": "Indlæser filtre",
|
|
22
|
-
"components.filter.filterCountDescription": "{number, plural, =0 {Ingen filtre anvendt.} one {
|
|
22
|
+
"components.filter.filterCountDescription": "{number, plural, =0 {Ingen filtre anvendt.} one {{number} filter anvendt.} other {{number} filtre anvendt.}}",
|
|
23
23
|
"components.filter.filters": "Filtre",
|
|
24
24
|
"components.filter.noActiveFilters": "Ingen aktive filtre",
|
|
25
25
|
"components.filter.noFilters": "Ingen tilgængelige filtre",
|
|
26
|
-
"components.filter.searchResults": "{number, plural, =0 {Ingen søgeresultater} one {
|
|
26
|
+
"components.filter.searchResults": "{number, plural, =0 {Ingen søgeresultater} one {{number} søgeresultat} other {{number} søgeresultater}}",
|
|
27
27
|
"components.filter.singleDimensionDescription": "Filtrer efter: {filterName}",
|
|
28
28
|
"components.form-element.defaultError": "{label} er ugyldigt.",
|
|
29
29
|
"components.form-element.defaultFieldLabel": "Felt",
|
|
@@ -34,7 +34,7 @@ export default {
|
|
|
34
34
|
"components.form-element.input.text.tooShort": "{label} skal være på mindst {minlength} tegn",
|
|
35
35
|
"components.form-element.input.url.typeMismatch": "URL-adresse er ikke gyldig",
|
|
36
36
|
"components.form-element.valueMissing": "{label} er påkrævet.",
|
|
37
|
-
"components.form-error-summary.errorSummary": "{count, plural, one {Der blev fundet
|
|
37
|
+
"components.form-error-summary.errorSummary": "{count, plural, one {Der blev fundet {count} fejl i de oplysninger, du indsendte} other {Der blev fundet {count} fejl i de oplysninger, du indsendte}}",
|
|
38
38
|
"components.input-date-range.endDate": "Slutdato",
|
|
39
39
|
"components.input-date-range.errorBadInput": "{startLabel} skal være før {endLabel}",
|
|
40
40
|
"components.input-date-range.startDate": "Startdato",
|
package/lang/de.js
CHANGED
|
@@ -9,21 +9,21 @@ export default {
|
|
|
9
9
|
"components.count-badge.plus" : "{number}+",
|
|
10
10
|
"components.dialog.close": "Dieses Dialogfeld schließen",
|
|
11
11
|
"components.dropdown.close": "Schließen",
|
|
12
|
-
"components.filter.activeFilters": "
|
|
12
|
+
"components.filter.activeFilters": "Aktive Filter:",
|
|
13
13
|
"components.filter.clear": "Löschen",
|
|
14
14
|
"components.filter.clearAll": "Alle löschen",
|
|
15
15
|
"components.filter.clearAllAnnounce": "Alle Filter werden gelöscht",
|
|
16
|
-
"components.filter.clearAllAnnounceOverride": "
|
|
16
|
+
"components.filter.clearAllAnnounceOverride": "Alle Filter für {filterText} werden gelöscht",
|
|
17
17
|
"components.filter.clearAllDescription": "Alle Filter löschen",
|
|
18
|
-
"components.filter.clearAllDescriptionOverride": "
|
|
18
|
+
"components.filter.clearAllDescriptionOverride": "Alle Filter für {filterText} löschen",
|
|
19
19
|
"components.filter.clearAnnounce": "Filter für {filterName} werden gelöscht",
|
|
20
20
|
"components.filter.clearDescription": "Filter für {filterName} löschen",
|
|
21
21
|
"components.filter.loading": "Filter werden geladen",
|
|
22
|
-
"components.filter.filterCountDescription": "{number, plural, =0 {Keine Filter angewendet.} one {
|
|
22
|
+
"components.filter.filterCountDescription": "{number, plural, =0 {Keine Filter angewendet.} one {{number} Filter angewendet.} other {{number} Filter angewendet.}}",
|
|
23
23
|
"components.filter.filters": "Filter",
|
|
24
24
|
"components.filter.noActiveFilters": "Keine Filter aktiv",
|
|
25
25
|
"components.filter.noFilters": "Keine verfügbaren Filter",
|
|
26
|
-
"components.filter.searchResults": "{number, plural, =0 {
|
|
26
|
+
"components.filter.searchResults": "{number, plural, =0 {Kein Suchergebnis} one {{number} Suchergebnis} other {{number} Suchergebnisse}}",
|
|
27
27
|
"components.filter.singleDimensionDescription": "Filtern nach: {filterName}",
|
|
28
28
|
"components.form-element.defaultError": "{label} ist ungültig.",
|
|
29
29
|
"components.form-element.defaultFieldLabel": "Feld",
|
|
@@ -34,7 +34,7 @@ export default {
|
|
|
34
34
|
"components.form-element.input.text.tooShort": "{label} muss mindestens {minlength} Zeichen enthalten",
|
|
35
35
|
"components.form-element.input.url.typeMismatch": "URL ist ungültig",
|
|
36
36
|
"components.form-element.valueMissing": "{label} ist erforderlich.",
|
|
37
|
-
"components.form-error-summary.errorSummary": "{count, plural, one {
|
|
37
|
+
"components.form-error-summary.errorSummary": "{count, plural, one {Die von Ihnen übermittelten Informationen enthalten {count} Fehler} other {Die von Ihnen übermittelten Informationen enthalten {count} Fehler}}",
|
|
38
38
|
"components.input-date-range.endDate": "Enddatum",
|
|
39
39
|
"components.input-date-range.errorBadInput": "{startLabel} muss vor {endLabel} liegen",
|
|
40
40
|
"components.input-date-range.startDate": "Startdatum",
|
package/lang/es-es.js
CHANGED
|
@@ -9,21 +9,21 @@ export default {
|
|
|
9
9
|
"components.count-badge.plus" : "{number}+",
|
|
10
10
|
"components.dialog.close": "Cerrar este cuadro de diálogo",
|
|
11
11
|
"components.dropdown.close": "Cerrar",
|
|
12
|
-
"components.filter.activeFilters": "
|
|
12
|
+
"components.filter.activeFilters": "Filtros activos:",
|
|
13
13
|
"components.filter.clear": "Borrar",
|
|
14
14
|
"components.filter.clearAll": "Borrar todo",
|
|
15
15
|
"components.filter.clearAllAnnounce": "Borrando todos los filtros",
|
|
16
|
-
"components.filter.clearAllAnnounceOverride": "
|
|
16
|
+
"components.filter.clearAllAnnounceOverride": "Borrando todos los filtros de: {filterText}",
|
|
17
17
|
"components.filter.clearAllDescription": "Borrar todos los filtros",
|
|
18
|
-
"components.filter.clearAllDescriptionOverride": "
|
|
18
|
+
"components.filter.clearAllDescriptionOverride": "Borrar todos los filtros de: {filterText}",
|
|
19
19
|
"components.filter.clearAnnounce": "Borrando filtros para: {filterName}",
|
|
20
20
|
"components.filter.clearDescription": "Borrar filtros para: {filterName}",
|
|
21
21
|
"components.filter.loading": "Cargando filtros",
|
|
22
|
-
"components.filter.filterCountDescription": "{number, plural, =0 {Sin filtros aplicados.} one {
|
|
22
|
+
"components.filter.filterCountDescription": "{number, plural, =0 {Sin filtros aplicados.} one {{number} filtro aplicado.} other {{number} filtros aplicados.}}",
|
|
23
23
|
"components.filter.filters": "Filtros",
|
|
24
24
|
"components.filter.noActiveFilters": "No hay filtros activos",
|
|
25
25
|
"components.filter.noFilters": "No hay filtros disponibles",
|
|
26
|
-
"components.filter.searchResults": "{number, plural, =0 {No hay resultados de búsqueda} one {
|
|
26
|
+
"components.filter.searchResults": "{number, plural, =0 {No hay resultados de búsqueda} one {{number} resultado de búsqueda} other {{number} resultados de búsqueda}}",
|
|
27
27
|
"components.filter.singleDimensionDescription": "Filtrar por: {filterName}",
|
|
28
28
|
"components.form-element.defaultError": "{label} no es válido.",
|
|
29
29
|
"components.form-element.defaultFieldLabel": "Campo",
|
|
@@ -34,7 +34,7 @@ export default {
|
|
|
34
34
|
"components.form-element.input.text.tooShort": "{label} debe tener al menos {minlength} caracteres",
|
|
35
35
|
"components.form-element.input.url.typeMismatch": "La dirección URL no es válida",
|
|
36
36
|
"components.form-element.valueMissing": "{label} es obligatorio.",
|
|
37
|
-
"components.form-error-summary.errorSummary": "{count, plural, one {Se ha encontrado
|
|
37
|
+
"components.form-error-summary.errorSummary": "{count, plural, one {Se ha encontrado {count} error en la información que ha enviado} other {Se han encontrado {count} errores en la información que ha enviado}}",
|
|
38
38
|
"components.input-date-range.endDate": "Fecha final",
|
|
39
39
|
"components.input-date-range.errorBadInput": "{startLabel} debe ser anterior a {endLabel}",
|
|
40
40
|
"components.input-date-range.startDate": "Fecha de inicio",
|
package/lang/es.js
CHANGED
|
@@ -9,21 +9,21 @@ export default {
|
|
|
9
9
|
"components.count-badge.plus" : "{number}+",
|
|
10
10
|
"components.dialog.close": "Cerrar este cuadro de diálogo",
|
|
11
11
|
"components.dropdown.close": "Cerrar",
|
|
12
|
-
"components.filter.activeFilters": "
|
|
12
|
+
"components.filter.activeFilters": "Filtros activos:",
|
|
13
13
|
"components.filter.clear": "Borrar",
|
|
14
14
|
"components.filter.clearAll": "Borrar todo",
|
|
15
15
|
"components.filter.clearAllAnnounce": "Borrando todos los filtros",
|
|
16
|
-
"components.filter.clearAllAnnounceOverride": "
|
|
16
|
+
"components.filter.clearAllAnnounceOverride": "Borrando todos los filtros para: {filterText}",
|
|
17
17
|
"components.filter.clearAllDescription": "Borrar todos los filtros",
|
|
18
|
-
"components.filter.clearAllDescriptionOverride": "
|
|
18
|
+
"components.filter.clearAllDescriptionOverride": "Borrar todos los filtros para: {filterText}",
|
|
19
19
|
"components.filter.clearAnnounce": "Borrando filtros para: {filterName}",
|
|
20
20
|
"components.filter.clearDescription": "Borrar filtros para: {filterName}",
|
|
21
21
|
"components.filter.loading": "Cargando filtros",
|
|
22
|
-
"components.filter.filterCountDescription": "{number, plural, =0 {Sin filtros aplicados.} one {
|
|
22
|
+
"components.filter.filterCountDescription": "{number, plural, =0 {Sin filtros aplicados.} one {{number} filtro aplicado.} other {{number} filtros aplicados.}}",
|
|
23
23
|
"components.filter.filters": "Filtros",
|
|
24
24
|
"components.filter.noActiveFilters": "No hay filtros activos",
|
|
25
25
|
"components.filter.noFilters": "No hay filtros disponibles",
|
|
26
|
-
"components.filter.searchResults": "{number, plural, =0 {No se encontraron resultados de búsqueda} one {
|
|
26
|
+
"components.filter.searchResults": "{number, plural, =0 {No se encontraron resultados de búsqueda} one {{number} resultado de búsqueda} other {{number} resultados de búsqueda}}",
|
|
27
27
|
"components.filter.singleDimensionDescription": "Filtrar por: {filterName}",
|
|
28
28
|
"components.form-element.defaultError": "{label} no es válida.",
|
|
29
29
|
"components.form-element.defaultFieldLabel": "Campo",
|
|
@@ -34,7 +34,7 @@ export default {
|
|
|
34
34
|
"components.form-element.input.text.tooShort": "{label} debe tener al menos {minlength} caracteres",
|
|
35
35
|
"components.form-element.input.url.typeMismatch": "La dirección URL no es válida",
|
|
36
36
|
"components.form-element.valueMissing": "{label} es obligatoria.",
|
|
37
|
-
"components.form-error-summary.errorSummary": "{count, plural, one {
|
|
37
|
+
"components.form-error-summary.errorSummary": "{count, plural, one {Se encontró {count} error en la información que envió} other {Se encontraron {count} errores en la información que envió}}",
|
|
38
38
|
"components.input-date-range.endDate": "Fecha final",
|
|
39
39
|
"components.input-date-range.errorBadInput": "{startLabel} debe estar antes de {endLabel}",
|
|
40
40
|
"components.input-date-range.startDate": "Fecha de inicio",
|
package/lang/fr-fr.js
CHANGED
|
@@ -9,21 +9,21 @@ export default {
|
|
|
9
9
|
"components.count-badge.plus" : "{number}+",
|
|
10
10
|
"components.dialog.close": "Fermer cette boîte de dialogue",
|
|
11
11
|
"components.dropdown.close": "Fermer",
|
|
12
|
-
"components.filter.activeFilters": "
|
|
12
|
+
"components.filter.activeFilters": "Filtres actifs :",
|
|
13
13
|
"components.filter.clear": "Effacer",
|
|
14
14
|
"components.filter.clearAll": "Tout effacer",
|
|
15
15
|
"components.filter.clearAllAnnounce": "Suppression de tous les filtres",
|
|
16
|
-
"components.filter.clearAllAnnounceOverride": "
|
|
16
|
+
"components.filter.clearAllAnnounceOverride": "Suppression de tous les filtres pour : {filterText}",
|
|
17
17
|
"components.filter.clearAllDescription": "Supprimer tous les filtres",
|
|
18
|
-
"components.filter.clearAllDescriptionOverride": "
|
|
18
|
+
"components.filter.clearAllDescriptionOverride": "Effacer tous les filtres pour : {filterText}",
|
|
19
19
|
"components.filter.clearAnnounce": "Suppression des filtres pour : {filterName}",
|
|
20
20
|
"components.filter.clearDescription": "Supprimer les filtres pour : {filterName}",
|
|
21
21
|
"components.filter.loading": "Chargement des filtres",
|
|
22
|
-
"components.filter.filterCountDescription": "{number, plural, =0 {Aucun filtre appliqué.} one {
|
|
22
|
+
"components.filter.filterCountDescription": "{number, plural, =0 {Aucun filtre appliqué.} one {{number} filtre appliqué.} other {{number} filtres appliqués.}}",
|
|
23
23
|
"components.filter.filters": "Filtres",
|
|
24
24
|
"components.filter.noActiveFilters": "Aucun filtre actif",
|
|
25
25
|
"components.filter.noFilters": "Aucun filtre disponible",
|
|
26
|
-
"components.filter.searchResults": "{number, plural, =0 {Aucun résultat de recherche} one {
|
|
26
|
+
"components.filter.searchResults": "{number, plural, =0 {Aucun résultat de recherche} one {{number} résultat de recherche} other {{number} résultats de recherche}}",
|
|
27
27
|
"components.filter.singleDimensionDescription": "Filtrer par : {filterName}",
|
|
28
28
|
"components.form-element.defaultError": "{label} n'est pas valide.",
|
|
29
29
|
"components.form-element.defaultFieldLabel": "Champ",
|
|
@@ -34,7 +34,7 @@ export default {
|
|
|
34
34
|
"components.form-element.input.text.tooShort": "{label} doit contenir au moins {minlength} caractères.",
|
|
35
35
|
"components.form-element.input.url.typeMismatch": "URL non valide",
|
|
36
36
|
"components.form-element.valueMissing": "{label} est requis.",
|
|
37
|
-
"components.form-error-summary.errorSummary": "{count, plural, one {
|
|
37
|
+
"components.form-error-summary.errorSummary": "{count, plural, one {{count} erreur trouvée dans les informations soumises} other {{count} erreurs trouvées dans les informations soumises}}",
|
|
38
38
|
"components.input-date-range.endDate": "Date de fin",
|
|
39
39
|
"components.input-date-range.errorBadInput": "{startLabel} doit être antérieur à {endLabel}",
|
|
40
40
|
"components.input-date-range.startDate": "Date de début",
|
package/lang/fr.js
CHANGED
|
@@ -9,21 +9,21 @@ export default {
|
|
|
9
9
|
"components.count-badge.plus" : "{number}+",
|
|
10
10
|
"components.dialog.close": "Fermer cette boîte de dialogue",
|
|
11
11
|
"components.dropdown.close": "Fermer",
|
|
12
|
-
"components.filter.activeFilters": "
|
|
12
|
+
"components.filter.activeFilters": "Filtres actifs :",
|
|
13
13
|
"components.filter.clear": "Effacer",
|
|
14
14
|
"components.filter.clearAll": "Effacer tout",
|
|
15
15
|
"components.filter.clearAllAnnounce": "Effacement de tous les filtres en cours",
|
|
16
|
-
"components.filter.clearAllAnnounceOverride": "
|
|
16
|
+
"components.filter.clearAllAnnounceOverride": "Effacement en cours de tous les filtres pour : {filterText}",
|
|
17
17
|
"components.filter.clearAllDescription": "Effacer tous les filtres",
|
|
18
|
-
"components.filter.clearAllDescriptionOverride": "
|
|
18
|
+
"components.filter.clearAllDescriptionOverride": "Effacer tous les filtres pour : {filterText}",
|
|
19
19
|
"components.filter.clearAnnounce": "Effacement des filtres pour : {filterName} en cours",
|
|
20
20
|
"components.filter.clearDescription": "Effacer les filtres pour : {filterName}",
|
|
21
21
|
"components.filter.loading": "Chargement des filtres",
|
|
22
|
-
"components.filter.filterCountDescription": "{number, plural, =0 {Aucun filtre appliqué.} one {
|
|
22
|
+
"components.filter.filterCountDescription": "{number, plural, =0 {Aucun filtre appliqué.} one {{number} filtre appliqué.} other {{number} filtres appliqués.}}",
|
|
23
23
|
"components.filter.filters": "Filtres",
|
|
24
24
|
"components.filter.noActiveFilters": "Aucun filtre actif",
|
|
25
25
|
"components.filter.noFilters": "Aucun filtre disponible",
|
|
26
|
-
"components.filter.searchResults": "{number, plural, =0 {Aucun résultat de recherche} one {
|
|
26
|
+
"components.filter.searchResults": "{number, plural, =0 {Aucun résultat de recherche} one {{number} résultat de recherche} other {{number} résultats de recherche}}",
|
|
27
27
|
"components.filter.singleDimensionDescription": "Filtrer par : {filterName}",
|
|
28
28
|
"components.form-element.defaultError": "{label} n'est pas valide.",
|
|
29
29
|
"components.form-element.defaultFieldLabel": "Champ",
|
|
@@ -34,7 +34,7 @@ export default {
|
|
|
34
34
|
"components.form-element.input.text.tooShort": "{label} doit comprendre au moins {minlength} caractères",
|
|
35
35
|
"components.form-element.input.url.typeMismatch": "L'URL n'est pas valide",
|
|
36
36
|
"components.form-element.valueMissing": "{label} est requis.",
|
|
37
|
-
"components.form-error-summary.errorSummary": "{count, plural, one {Il y avait
|
|
37
|
+
"components.form-error-summary.errorSummary": "{count, plural, one {Il y avait {count} erreur trouvée dans les informations que vous avez soumises} other {Il y avait {count} erreurs trouvées dans les informations que vous avez soumises}}",
|
|
38
38
|
"components.input-date-range.endDate": "Date de fin",
|
|
39
39
|
"components.input-date-range.errorBadInput": "{startLabel} doit précéder {endLabel}",
|
|
40
40
|
"components.input-date-range.startDate": "Date du début",
|
package/lang/hi.js
CHANGED
|
@@ -9,13 +9,13 @@ export default {
|
|
|
9
9
|
"components.count-badge.plus" : "{number}+",
|
|
10
10
|
"components.dialog.close": "यह संवाद बंद करें",
|
|
11
11
|
"components.dropdown.close": "बंद करें",
|
|
12
|
-
"components.filter.activeFilters": "
|
|
12
|
+
"components.filter.activeFilters": "सक्रिय फ़िल्टर्स:",
|
|
13
13
|
"components.filter.clear": "साफ़ करें",
|
|
14
14
|
"components.filter.clearAll": "सभी साफ़ करें",
|
|
15
15
|
"components.filter.clearAllAnnounce": "सभी फिल्टर साफ़ किए जा रहे हैं",
|
|
16
|
-
"components.filter.clearAllAnnounceOverride": "
|
|
16
|
+
"components.filter.clearAllAnnounceOverride": "{filterText}: के लिए सभी फ़िल्टर्स साफ़ कर रहा है",
|
|
17
17
|
"components.filter.clearAllDescription": "सभी फिल्टर साफ़ करें",
|
|
18
|
-
"components.filter.clearAllDescriptionOverride": "
|
|
18
|
+
"components.filter.clearAllDescriptionOverride": "{filterText}: के लिए सभी फ़िल्टर्स साफ़ करें",
|
|
19
19
|
"components.filter.clearAnnounce": "इसके लिए फ़िल्टर साफ़ हो रहे हैं: {filterName}",
|
|
20
20
|
"components.filter.clearDescription": "इसके लिए फ़िल्टर्स साफ़ करें: {filterName}",
|
|
21
21
|
"components.filter.loading": "फिल्टर्स लोड किए जा रहे हैं",
|
|
@@ -23,7 +23,7 @@ export default {
|
|
|
23
23
|
"components.filter.filters": "फ़िल्टर्स",
|
|
24
24
|
"components.filter.noActiveFilters": "कोई सक्रिय फ़िल्टर नहीं हैं",
|
|
25
25
|
"components.filter.noFilters": "कोई उपलब्ध फ़िल्टर्स नहीं",
|
|
26
|
-
"components.filter.searchResults": "{number, plural, =0 {कोई खोज परिणाम नहीं} one {
|
|
26
|
+
"components.filter.searchResults": "{number, plural, =0 {कोई खोज परिणाम नहीं} one {{number} खोज परिणाम} other {{number} खोज परिणाम}}",
|
|
27
27
|
"components.filter.singleDimensionDescription": "इसके अनुसार फ़िल्टर करें: {filterName}",
|
|
28
28
|
"components.form-element.defaultError": "{label} अमान्य है।",
|
|
29
29
|
"components.form-element.defaultFieldLabel": "फ़ील्ड",
|
|
@@ -34,7 +34,7 @@ export default {
|
|
|
34
34
|
"components.form-element.input.text.tooShort": "{label} कम से कम {minlength} वर्णों का होना चाहिए",
|
|
35
35
|
"components.form-element.input.url.typeMismatch": "URL मान्य नहीं है",
|
|
36
36
|
"components.form-element.valueMissing": "{label} आवश्यक है।",
|
|
37
|
-
"components.form-error-summary.errorSummary": "{count, plural, one {आपके द्वारा सबमिट की गई जानकारी में
|
|
37
|
+
"components.form-error-summary.errorSummary": "{count, plural, one {आपके द्वारा सबमिट की गई जानकारी में {count} त्रुटियाँ पाई गईं} other {आपके द्वारा सबमिट की गई जानकारी में {count} त्रुटियाँ पाई गईं}}",
|
|
38
38
|
"components.input-date-range.endDate": "समाप्ति तारीख़",
|
|
39
39
|
"components.input-date-range.errorBadInput": "{startLabel} {endLabel} से पहले का होना चाहिए",
|
|
40
40
|
"components.input-date-range.startDate": "प्रारंभ तारीख़",
|
package/lang/ja.js
CHANGED
|
@@ -9,13 +9,13 @@ export default {
|
|
|
9
9
|
"components.count-badge.plus" : "{number}+",
|
|
10
10
|
"components.dialog.close": "このダイアログを閉じる",
|
|
11
11
|
"components.dropdown.close": "閉じる",
|
|
12
|
-
"components.filter.activeFilters": "
|
|
12
|
+
"components.filter.activeFilters": "アクティブフィルタ:",
|
|
13
13
|
"components.filter.clear": "クリア",
|
|
14
14
|
"components.filter.clearAll": "すべてをクリア",
|
|
15
15
|
"components.filter.clearAllAnnounce": "すべてのフィルタのクリア",
|
|
16
|
-
"components.filter.clearAllAnnounceOverride": "
|
|
16
|
+
"components.filter.clearAllAnnounceOverride": "{filterText} のすべてのフィルタのクリア",
|
|
17
17
|
"components.filter.clearAllDescription": "すべてのフィルターをクリア",
|
|
18
|
-
"components.filter.clearAllDescriptionOverride": "
|
|
18
|
+
"components.filter.clearAllDescriptionOverride": "{filterText} のすべてのフィルタをクリア",
|
|
19
19
|
"components.filter.clearAnnounce": "{filterName} フィルタのクリア",
|
|
20
20
|
"components.filter.clearDescription": "{filterName} フィルタのクリア",
|
|
21
21
|
"components.filter.loading": "フィルタのロード中",
|
package/lang/ko.js
CHANGED
|
@@ -9,13 +9,13 @@ export default {
|
|
|
9
9
|
"components.count-badge.plus" : "{number}+",
|
|
10
10
|
"components.dialog.close": "이 대화 상자 닫기",
|
|
11
11
|
"components.dropdown.close": "닫기",
|
|
12
|
-
"components.filter.activeFilters": "
|
|
12
|
+
"components.filter.activeFilters": "활성 필터:",
|
|
13
13
|
"components.filter.clear": "지우기",
|
|
14
14
|
"components.filter.clearAll": "모두 지우기",
|
|
15
15
|
"components.filter.clearAllAnnounce": "모든 필터 지우기",
|
|
16
|
-
"components.filter.clearAllAnnounceOverride": "
|
|
16
|
+
"components.filter.clearAllAnnounceOverride": "{filterText}에 대한 모든 필터 지우기",
|
|
17
17
|
"components.filter.clearAllDescription": "모든 필터 지우기",
|
|
18
|
-
"components.filter.clearAllDescriptionOverride": "
|
|
18
|
+
"components.filter.clearAllDescriptionOverride": "{filterText}에 대한 모든 필터 지우기",
|
|
19
19
|
"components.filter.clearAnnounce": "{filterName}에 대한 필터 지우기",
|
|
20
20
|
"components.filter.clearDescription": "{filterName}에 대한 필터를 지웁니다.",
|
|
21
21
|
"components.filter.loading": "필터 로드 중",
|
package/lang/nl.js
CHANGED
|
@@ -9,21 +9,21 @@ export default {
|
|
|
9
9
|
"components.count-badge.plus" : "{number}+",
|
|
10
10
|
"components.dialog.close": "Dit dialoogvenster sluiten",
|
|
11
11
|
"components.dropdown.close": "Sluiten",
|
|
12
|
-
"components.filter.activeFilters": "
|
|
12
|
+
"components.filter.activeFilters": "Actieve filters:",
|
|
13
13
|
"components.filter.clear": "Wissen",
|
|
14
14
|
"components.filter.clearAll": "Alles wissen",
|
|
15
15
|
"components.filter.clearAllAnnounce": "Alle filters wissen",
|
|
16
|
-
"components.filter.clearAllAnnounceOverride": "
|
|
16
|
+
"components.filter.clearAllAnnounceOverride": "Alle filters worden gewist voor: {filterText}",
|
|
17
17
|
"components.filter.clearAllDescription": "Alle filters wissen",
|
|
18
|
-
"components.filter.clearAllDescriptionOverride": "
|
|
18
|
+
"components.filter.clearAllDescriptionOverride": "Alle filters wissen voor: {filterText}",
|
|
19
19
|
"components.filter.clearAnnounce": "Filters wissen voor {filterName}",
|
|
20
20
|
"components.filter.clearDescription": "Filters wissen voor {filterName}",
|
|
21
21
|
"components.filter.loading": "Laden van filters",
|
|
22
|
-
"components.filter.filterCountDescription": "{number, plural, =0 {Geen filters toegepast.} one {
|
|
22
|
+
"components.filter.filterCountDescription": "{number, plural, =0 {Geen filters toegepast.} one {{number} filter toegepast.} other {{number} filters toegepast.}}",
|
|
23
23
|
"components.filter.filters": "Filters", // mfv-translated
|
|
24
24
|
"components.filter.noActiveFilters": "Geen actieve filters",
|
|
25
25
|
"components.filter.noFilters": "Geen beschikbare filters",
|
|
26
|
-
"components.filter.searchResults": "{number, plural, =0 {Geen zoekresultaten} one {
|
|
26
|
+
"components.filter.searchResults": "{number, plural, =0 {Geen zoekresultaten} one {{number} zoekresultaat} other {{number} zoekresultaten}}",
|
|
27
27
|
"components.filter.singleDimensionDescription": "Filter op {filterName}",
|
|
28
28
|
"components.form-element.defaultError": "{label} is ongeldig.",
|
|
29
29
|
"components.form-element.defaultFieldLabel": "Veld",
|
|
@@ -34,7 +34,7 @@ export default {
|
|
|
34
34
|
"components.form-element.input.text.tooShort": "{label} moet ten minste {minlength} tekens bevatten",
|
|
35
35
|
"components.form-element.input.url.typeMismatch": "URL is niet geldig",
|
|
36
36
|
"components.form-element.valueMissing": "{label} is vereist.",
|
|
37
|
-
"components.form-error-summary.errorSummary": "{count, plural, one {Er is
|
|
37
|
+
"components.form-error-summary.errorSummary": "{count, plural, one {Er is {count} fout gevonden in de informatie die u hebt ingediend} other {Er zijn {count} fouten gevonden in de informatie die u hebt ingediend}}",
|
|
38
38
|
"components.input-date-range.endDate": "Einddatum",
|
|
39
39
|
"components.input-date-range.errorBadInput": "{startLabel} moet voor {endLabel} liggen",
|
|
40
40
|
"components.input-date-range.startDate": "Startdatum",
|
package/lang/pt.js
CHANGED
|
@@ -9,21 +9,21 @@ export default {
|
|
|
9
9
|
"components.count-badge.plus" : "{number}+",
|
|
10
10
|
"components.dialog.close": "Fechar esta caixa de diálogo",
|
|
11
11
|
"components.dropdown.close": "Fechar",
|
|
12
|
-
"components.filter.activeFilters": "
|
|
12
|
+
"components.filter.activeFilters": "Filtros ativos:",
|
|
13
13
|
"components.filter.clear": "Limpar",
|
|
14
14
|
"components.filter.clearAll": "Limpar tudo",
|
|
15
15
|
"components.filter.clearAllAnnounce": "Limpando todos os filtros",
|
|
16
|
-
"components.filter.clearAllAnnounceOverride": "
|
|
16
|
+
"components.filter.clearAllAnnounceOverride": "Limpando todos os filtros para: {filterText}",
|
|
17
17
|
"components.filter.clearAllDescription": "Limpar todos os filtros",
|
|
18
|
-
"components.filter.clearAllDescriptionOverride": "
|
|
18
|
+
"components.filter.clearAllDescriptionOverride": "Limpar todos os filtros para: {filterText}",
|
|
19
19
|
"components.filter.clearAnnounce": "Limpando filtros para: {filterName}",
|
|
20
20
|
"components.filter.clearDescription": "Limpar filtros para: {filterName}",
|
|
21
21
|
"components.filter.loading": "Carregar filtros",
|
|
22
|
-
"components.filter.filterCountDescription": "{number, plural, =0 {Nenhum filtro aplicado.} one {
|
|
22
|
+
"components.filter.filterCountDescription": "{number, plural, =0 {Nenhum filtro aplicado.} one {{number} filtro aplicado.} other {{number} filtros aplicados.}}",
|
|
23
23
|
"components.filter.filters": "Filtros",
|
|
24
24
|
"components.filter.noActiveFilters": "Nenhum filtro ativo",
|
|
25
25
|
"components.filter.noFilters": "Não há filtros disponíveis",
|
|
26
|
-
"components.filter.searchResults": "{number, plural, =0 {Sem resultados para a pesquisa} one {
|
|
26
|
+
"components.filter.searchResults": "{number, plural, =0 {Sem resultados para a pesquisa} one {{number} resultado para a pesquisa} other {{number} resultados para a pesquisa}}",
|
|
27
27
|
"components.filter.singleDimensionDescription": "Filtrar por: {filterName}",
|
|
28
28
|
"components.form-element.defaultError": "{label} é inválido.",
|
|
29
29
|
"components.form-element.defaultFieldLabel": "Campo",
|
|
@@ -34,7 +34,7 @@ export default {
|
|
|
34
34
|
"components.form-element.input.text.tooShort": "{label} precisa ter, pelo menos, {minlength} caracteres",
|
|
35
35
|
"components.form-element.input.url.typeMismatch": "URL inválido",
|
|
36
36
|
"components.form-element.valueMissing": "{label} é obrigatório.",
|
|
37
|
-
"components.form-error-summary.errorSummary": "{count, plural, one {
|
|
37
|
+
"components.form-error-summary.errorSummary": "{count, plural, one {{count} erro foi encontrado nas informações enviadas} other {{count} erros foram encontrados nas informações enviadas}}",
|
|
38
38
|
"components.input-date-range.endDate": "Data final",
|
|
39
39
|
"components.input-date-range.errorBadInput": "{startLabel} precisa ser anterior a {endLabel}",
|
|
40
40
|
"components.input-date-range.startDate": "Data de início",
|
package/lang/sv.js
CHANGED
|
@@ -9,21 +9,21 @@ export default {
|
|
|
9
9
|
"components.count-badge.plus" : "{number}+",
|
|
10
10
|
"components.dialog.close": "Stäng dialogrutan",
|
|
11
11
|
"components.dropdown.close": "Stäng",
|
|
12
|
-
"components.filter.activeFilters": "
|
|
12
|
+
"components.filter.activeFilters": "Aktiva filter:",
|
|
13
13
|
"components.filter.clear": "Rensa",
|
|
14
14
|
"components.filter.clearAll": "Rensa alla",
|
|
15
15
|
"components.filter.clearAllAnnounce": "Rensar alla filter",
|
|
16
|
-
"components.filter.clearAllAnnounceOverride": "
|
|
16
|
+
"components.filter.clearAllAnnounceOverride": "Rensar alla filter för {filterText}",
|
|
17
17
|
"components.filter.clearAllDescription": "Rensa alla filter",
|
|
18
|
-
"components.filter.clearAllDescriptionOverride": "
|
|
18
|
+
"components.filter.clearAllDescriptionOverride": "Rensa alla filter för {filterText}",
|
|
19
19
|
"components.filter.clearAnnounce": "Rensar filter för {filterName}",
|
|
20
20
|
"components.filter.clearDescription": "Rensa filter för {filterName}",
|
|
21
21
|
"components.filter.loading": "Läser in filter",
|
|
22
|
-
"components.filter.filterCountDescription": "{number, plural, =0 {Inga filter tillämpade.} one {
|
|
22
|
+
"components.filter.filterCountDescription": "{number, plural, =0 {Inga filter tillämpade.} one {{number} filter tillämpat.} other {{number} filter tillämpade.}}",
|
|
23
23
|
"components.filter.filters": "Filter",
|
|
24
24
|
"components.filter.noActiveFilters": "Inga aktiva filter",
|
|
25
25
|
"components.filter.noFilters": "Inga tillgängliga filter",
|
|
26
|
-
"components.filter.searchResults": "{number, plural, =0 {Inga sökresultat} one {
|
|
26
|
+
"components.filter.searchResults": "{number, plural, =0 {Inga sökresultat} one {{number} sökresultat} other {{number} sökresultat}}",
|
|
27
27
|
"components.filter.singleDimensionDescription": "Filtrera efter: {filterName}",
|
|
28
28
|
"components.form-element.defaultError": "{label} är ogiltig.",
|
|
29
29
|
"components.form-element.defaultFieldLabel": "Fält",
|
|
@@ -34,7 +34,7 @@ export default {
|
|
|
34
34
|
"components.form-element.input.text.tooShort": "{label} måste innehålla minst {minlength} tecken",
|
|
35
35
|
"components.form-element.input.url.typeMismatch": "URL är inte giltigt",
|
|
36
36
|
"components.form-element.valueMissing": "{label} krävs.",
|
|
37
|
-
"components.form-error-summary.errorSummary": "{count, plural, one {Det finns
|
|
37
|
+
"components.form-error-summary.errorSummary": "{count, plural, one {Det finns {count} fel i informationen som du skickade} other {Det finns {count} fel i informationen som du skickade}}",
|
|
38
38
|
"components.input-date-range.endDate": "Slutdatum",
|
|
39
39
|
"components.input-date-range.errorBadInput": "{startLabel} måste vara före {endLabel}",
|
|
40
40
|
"components.input-date-range.startDate": "Startdatum",
|
package/lang/tr.js
CHANGED
|
@@ -9,21 +9,21 @@ export default {
|
|
|
9
9
|
"components.count-badge.plus" : "{number}+",
|
|
10
10
|
"components.dialog.close": "Bu iletişim kutusunu kapat",
|
|
11
11
|
"components.dropdown.close": "Kapat",
|
|
12
|
-
"components.filter.activeFilters": "
|
|
12
|
+
"components.filter.activeFilters": "Etkin Filtreler:",
|
|
13
13
|
"components.filter.clear": "Temizle",
|
|
14
14
|
"components.filter.clearAll": "Tümünü Temizle",
|
|
15
15
|
"components.filter.clearAllAnnounce": "Tüm filtreler temizleniyor",
|
|
16
|
-
"components.filter.clearAllAnnounceOverride": "
|
|
16
|
+
"components.filter.clearAllAnnounceOverride": "{filterText} için tüm filtreleri temizleniyor",
|
|
17
17
|
"components.filter.clearAllDescription": "Tüm filtreleri temizle",
|
|
18
|
-
"components.filter.clearAllDescriptionOverride": "
|
|
18
|
+
"components.filter.clearAllDescriptionOverride": "{filterText} için tüm filtreleri temizle",
|
|
19
19
|
"components.filter.clearAnnounce": "{filterName} için filtreler temizleniyor",
|
|
20
20
|
"components.filter.clearDescription": "{filterName} için filtreleri temizle",
|
|
21
21
|
"components.filter.loading": "Filtreler yükleniyor",
|
|
22
|
-
"components.filter.filterCountDescription": "{number, plural, =0 {Filtre uygulanmadı.} one {
|
|
22
|
+
"components.filter.filterCountDescription": "{number, plural, =0 {Filtre uygulanmadı.} one {{number} filtre uygulandı.} other {{number} filtre uygulandı.}}",
|
|
23
23
|
"components.filter.filters": "Filtre",
|
|
24
24
|
"components.filter.noActiveFilters": "Etkin filtre yok",
|
|
25
25
|
"components.filter.noFilters": "Uygun filtre yok",
|
|
26
|
-
"components.filter.searchResults": "{number, plural, =0 {Arama sonucu yok} one {
|
|
26
|
+
"components.filter.searchResults": "{number, plural, =0 {Arama sonucu yok} one {{number} arama sonucu} other {{number} arama sonucu}}",
|
|
27
27
|
"components.filter.singleDimensionDescription": "Filtreleme ölçütü: {filterName}",
|
|
28
28
|
"components.form-element.defaultError": "{label} geçersiz.",
|
|
29
29
|
"components.form-element.defaultFieldLabel": "Alan",
|
|
@@ -34,7 +34,7 @@ export default {
|
|
|
34
34
|
"components.form-element.input.text.tooShort": "{label} en az {minlength} karakter olmalıdır",
|
|
35
35
|
"components.form-element.input.url.typeMismatch": "URL geçerli değil",
|
|
36
36
|
"components.form-element.valueMissing": "{label} zorunludur.",
|
|
37
|
-
"components.form-error-summary.errorSummary": "{count, plural, one {Gönderdiğiniz bilgilerde
|
|
37
|
+
"components.form-error-summary.errorSummary": "{count, plural, one {Gönderdiğiniz bilgilerde {count} hata bulundu} other {Gönderdiğiniz bilgilerde {count} hata bulundu}}",
|
|
38
38
|
"components.input-date-range.endDate": "Bitiş Tarihi",
|
|
39
39
|
"components.input-date-range.errorBadInput": "{startLabel}, {endLabel} tarihinden önce olmalıdır",
|
|
40
40
|
"components.input-date-range.startDate": "Başlangıç Tarihi",
|
package/lang/zh-cn.js
CHANGED
|
@@ -9,13 +9,13 @@ export default {
|
|
|
9
9
|
"components.count-badge.plus" : "{number}+",
|
|
10
10
|
"components.dialog.close": "关闭此对话框",
|
|
11
11
|
"components.dropdown.close": "关闭",
|
|
12
|
-
"components.filter.activeFilters": "
|
|
12
|
+
"components.filter.activeFilters": "活动筛选器:",
|
|
13
13
|
"components.filter.clear": "清除",
|
|
14
14
|
"components.filter.clearAll": "全部清除",
|
|
15
15
|
"components.filter.clearAllAnnounce": "清除所有筛选器",
|
|
16
|
-
"components.filter.clearAllAnnounceOverride": "
|
|
16
|
+
"components.filter.clearAllAnnounceOverride": "正在清除 {filterText} 的所有筛选器",
|
|
17
17
|
"components.filter.clearAllDescription": "清除所有筛选器",
|
|
18
|
-
"components.filter.clearAllDescriptionOverride": "
|
|
18
|
+
"components.filter.clearAllDescriptionOverride": "清除 {filterText} 的所有筛选器",
|
|
19
19
|
"components.filter.clearAnnounce": "正在清除筛选器:{ filterName }",
|
|
20
20
|
"components.filter.clearDescription": "清除筛选条件:{ filterName }",
|
|
21
21
|
"components.filter.loading": "正在加载筛选器",
|
package/lang/zh-tw.js
CHANGED
|
@@ -9,17 +9,17 @@ export default {
|
|
|
9
9
|
"components.count-badge.plus" : "{number}+",
|
|
10
10
|
"components.dialog.close": "關閉此對話方塊",
|
|
11
11
|
"components.dropdown.close": "關閉",
|
|
12
|
-
"components.filter.activeFilters": "
|
|
12
|
+
"components.filter.activeFilters": "啟用中的篩選器:",
|
|
13
13
|
"components.filter.clear": "清除",
|
|
14
14
|
"components.filter.clearAll": "全部清除",
|
|
15
15
|
"components.filter.clearAllAnnounce": "正在清除所有篩選器",
|
|
16
|
-
"components.filter.clearAllAnnounceOverride": "
|
|
16
|
+
"components.filter.clearAllAnnounceOverride": "正在清除下列項目的所有篩選器:{filterText}",
|
|
17
17
|
"components.filter.clearAllDescription": "清除所有篩選器",
|
|
18
|
-
"components.filter.clearAllDescriptionOverride": "
|
|
18
|
+
"components.filter.clearAllDescriptionOverride": "清除下列項目的所有篩選器:{filterText}",
|
|
19
19
|
"components.filter.clearAnnounce": "正在清除 {filterName} 的篩選器",
|
|
20
20
|
"components.filter.clearDescription": "清除 {filterName} 的篩選器",
|
|
21
21
|
"components.filter.loading": "正在載入篩選條件",
|
|
22
|
-
"components.filter.filterCountDescription": "{number, plural, =0 {
|
|
22
|
+
"components.filter.filterCountDescription": "{number, plural, =0 {未套用篩選器。} other {已套用 {number} 個篩選器。}}",
|
|
23
23
|
"components.filter.filters": "篩選器",
|
|
24
24
|
"components.filter.noActiveFilters": "沒有啟用中的篩選器",
|
|
25
25
|
"components.filter.noFilters": "沒有可用的篩選條件",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@brightspace-ui/core",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.25.1",
|
|
4
4
|
"description": "A collection of accessible, free, open-source web components for building Brightspace applications",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": "https://github.com/BrightspaceUI/core.git",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"license": "Apache-2.0",
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@babel/eslint-parser": "^7",
|
|
47
|
-
"@brightspace-ui/stylelint-config": "^0.
|
|
47
|
+
"@brightspace-ui/stylelint-config": "^0.5",
|
|
48
48
|
"@open-wc/testing": "^3",
|
|
49
49
|
"@web/dev-server": "^0.1",
|
|
50
50
|
"@web/test-runner": "^0.13",
|