@brightspace-ui/core 2.28.2 → 2.28.5

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.
@@ -224,7 +224,7 @@ class Menu extends FocusVisiblePolyfillMixin(ThemeMixin(HierarchicalViewMixin(Li
224
224
  return this.shadowRoot && this.shadowRoot.querySelector('d2l-menu-item-return');
225
225
  }
226
226
 
227
- _getMenuItems() {
227
+ async _getMenuItems() {
228
228
  const slot = this.shadowRoot && this.shadowRoot.querySelector('slot');
229
229
  if (!slot) return;
230
230
  const items = slot.assignedNodes({ flatten: true }).filter((node) => node.nodeType === Node.ELEMENT_NODE);
@@ -233,6 +233,8 @@ class Menu extends FocusVisiblePolyfillMixin(ThemeMixin(HierarchicalViewMixin(Li
233
233
  if (returnItem) {
234
234
  items.unshift(returnItem);
235
235
  }
236
+ // Wait for menu items to have their role attribute set
237
+ await Promise.all(items.map(item => item.updateComplete));
236
238
  return items.filter((item) => {
237
239
  const role = item.getAttribute('role');
238
240
  return (role === 'menuitem' || role === 'menuitemcheckbox' || role === 'menuitemradio' || item.tagName === 'D2L-MENU-ITEM-RETURN');
@@ -328,8 +330,8 @@ class Menu extends FocusVisiblePolyfillMixin(ThemeMixin(HierarchicalViewMixin(Li
328
330
  }
329
331
 
330
332
  _onMenuItemsChanged() {
331
- requestAnimationFrame(() => {
332
- this._items = this._getMenuItems();
333
+ requestAnimationFrame(async() => {
334
+ this._items = await this._getMenuItems();
333
335
  this._updateItemAttributes();
334
336
  });
335
337
  }
@@ -50,7 +50,7 @@ class StatusIndicator extends LitElement {
50
50
  overflow: hidden;
51
51
  padding: 2px 10px 2px 10px;
52
52
  text-overflow: ellipsis;
53
- text-transform: uppercase;
53
+ text-transform: capitalize;
54
54
  vertical-align: middle;
55
55
  white-space: nowrap;
56
56
  }
@@ -47,7 +47,7 @@ If you are unable to add a semantically aligned ARIA role or attach the tooltip
47
47
 
48
48
  The `d2l-tooltip` component is used to display additional information when users focus or hover on a point of interest.
49
49
 
50
- ## Best Practices
50
+ ### Best Practices
51
51
 
52
52
  <!-- docs: start best practices -->
53
53
  <!-- docs: start dos -->
@@ -152,15 +152,14 @@ The `d2l-tooltip-help` component is used to display additional information when
152
152
 
153
153
  <!-- docs: start best practices -->
154
154
  <!-- docs: start dos -->
155
- * Use a helpful label that provides value on its own
156
- * The contents of the tooltip should elaborate on the label
157
- * Keep help text short and concise (full sentences are not necessary)
158
155
  * Use a help tooltip when there are space limitations, such as in a table, list, or narrow sidebar
156
+ * Use a helpful label that provides value on its own; the tooltip should elaborate on the label
157
+ * Keep help text short and concise, full sentences are not necessary
159
158
  <!-- docs: end dos -->
160
159
 
161
160
  <!-- docs: start donts -->
162
- * Dont overuse help tooltips (users end up hunting for information and even experts feel obligated to check their contents)
163
- * Don't use help tooltips when you are able to use inline help text instead
161
+ * Don't use help tooltips when you're able to use inline help text instead
162
+ * Avoid overusing help tooltips since even expert users will feel obligated to check their contents
164
163
  <!-- docs: end donts -->
165
164
  <!-- docs: end best practices -->
166
165
 
@@ -170,7 +169,7 @@ The `d2l-tooltip-help` component is used to display additional information when
170
169
  import '@brightspace-ui/core/components/tooltip/tooltip-help.js';
171
170
  </script>
172
171
 
173
- <p class="d2l-body-compact">
172
+ <p class="d2l-body-standard">
174
173
  This is some sample text.
175
174
  <d2l-tooltip-help text="Helpful label" inherit-font-style>Contents should elaborate on the label (be short and concise)</d2l-tooltip-help>
176
175
  </p>
@@ -183,6 +182,8 @@ The `d2l-tooltip-help` component is used to display additional information when
183
182
  |--|--|--|
184
183
  | `text` | String, required | Text for the Help Tooltip opener |
185
184
  | `inherit-font-style` | Boolean, default: `false` | Allows the opener text to inherit font properties such as size and color |
185
+ | `position` | String | Optionally force the tooltip to open in a certain direction. Valid values are: `top`, `bottom`, `left` and `right`. If no position is provided, the tooltip will open in the first position that has enough space for it in the order: bottom, top, right, left. |
186
+
186
187
  <!-- docs: end hidden content -->
187
188
 
188
189
  ### Using in a Sentence or Paragraph
@@ -5,12 +5,13 @@ import { bodySmallStyles } from '../typography/styles.js';
5
5
  import { classMap } from 'lit/directives/class-map.js';
6
6
  import { FocusMixin } from '../../mixins/focus-mixin.js';
7
7
  import { FocusVisiblePolyfillMixin } from '../../mixins/focus-visible-polyfill-mixin.js';
8
+ import { ifDefined } from 'lit/directives/if-defined.js';
8
9
 
9
10
  /**
10
11
  * A component used to display additional information when users focus or hover over some text.
11
12
  * @slot - Default content placed inside of the tooltip
12
13
  */
13
- class HelpTooltip extends FocusMixin(FocusVisiblePolyfillMixin(LitElement)) {
14
+ class TooltipHelp extends FocusMixin(FocusVisiblePolyfillMixin(LitElement)) {
14
15
 
15
16
  static get properties() {
16
17
  return {
@@ -19,6 +20,11 @@ class HelpTooltip extends FocusMixin(FocusVisiblePolyfillMixin(LitElement)) {
19
20
  * @type {boolean}
20
21
  */
21
22
  inheritFontStyle: { type: Boolean, attribute: 'inherit-font-style' },
23
+ /**
24
+ * ADVANCED: Force the internal tooltip to open in a certain direction. If no position is provided, the tooltip will open in the first position that has enough space for it in the order: bottom, top, right, left.
25
+ * @type {'top'|'bottom'|'left'|'right'}
26
+ */
27
+ position: { type: String },
22
28
  /**
23
29
  * REQUIRED: Text that will render as the Help Tooltip opener
24
30
  * @type {string}
@@ -30,7 +36,7 @@ class HelpTooltip extends FocusMixin(FocusVisiblePolyfillMixin(LitElement)) {
30
36
  static get styles() {
31
37
  return [bodySmallStyles, css`
32
38
  :host {
33
- display: inline;
39
+ display: inline-block;
34
40
  }
35
41
  :host([hidden]) {
36
42
  display: none;
@@ -91,11 +97,11 @@ class HelpTooltip extends FocusMixin(FocusVisiblePolyfillMixin(LitElement)) {
91
97
  <button id="d2l-tooltip-help-text" class="${classMap(classes)}">
92
98
  ${this.text}
93
99
  </button>
94
- <d2l-tooltip for="d2l-tooltip-help-text" delay=0 offset=13>
100
+ <d2l-tooltip for="d2l-tooltip-help-text" delay="0" offset="13" position="${ifDefined(this.position)}">
95
101
  <slot></slot>
96
102
  </d2l-tooltip>
97
103
  `;
98
104
  }
99
105
 
100
106
  }
101
- customElements.define('d2l-tooltip-help', HelpTooltip);
107
+ customElements.define('d2l-tooltip-help', TooltipHelp);
@@ -20,13 +20,13 @@ The `d2l-validation-custom` component is used to add custom validation logic to
20
20
  </d2l-validation-custom>
21
21
 
22
22
  <script>
23
- const input = document.getElementById('my-text-input');
24
- input.addEventListener('d2l-validation-custom-validate', e => {
25
- // Implement your custom validation logic
26
- const myTextInput = e.detail.forElement;
27
- const isValid = myTextInput.value === 'secret phrase';
28
- e.detail.resolve(isValid);
29
- });
23
+ const validator = document.querySelector('d2l-validation-custom');
24
+ validator.addEventListener('d2l-validation-custom-validate', e => {
25
+ // Implement your custom validation logic
26
+ const myTextInput = e.detail.forElement;
27
+ const isValid = myTextInput.value === 'secret phrase';
28
+ e.detail.resolve(isValid);
29
+ });
30
30
  </script>
31
31
  ```
32
32
 
@@ -10013,6 +10013,11 @@
10013
10013
  "path": "./components/tooltip/tooltip-help.js",
10014
10014
  "description": "A component used to display additional information when users focus or hover over some text.",
10015
10015
  "attributes": [
10016
+ {
10017
+ "name": "position",
10018
+ "description": "ADVANCED: Force the internal tooltip to open in a certain direction. If no position is provided, the tooltip will open in the first position that has enough space for it in the order: bottom, top, right, left.",
10019
+ "type": "'top'|'bottom'|'left'|'right'"
10020
+ },
10016
10021
  {
10017
10022
  "name": "text",
10018
10023
  "description": "REQUIRED: Text that will render as the Help Tooltip opener",
@@ -10026,6 +10031,12 @@
10026
10031
  }
10027
10032
  ],
10028
10033
  "properties": [
10034
+ {
10035
+ "name": "position",
10036
+ "attribute": "position",
10037
+ "description": "ADVANCED: Force the internal tooltip to open in a certain direction. If no position is provided, the tooltip will open in the first position that has enough space for it in the order: bottom, top, right, left.",
10038
+ "type": "'top'|'bottom'|'left'|'right'"
10039
+ },
10029
10040
  {
10030
10041
  "name": "text",
10031
10042
  "attribute": "text",
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": "Active Filters:",
12
+ "components.filter.activeFilters": "عوامل تصفية نشطة:",
13
13
  "components.filter.clear": "مسح",
14
14
  "components.filter.clearAll": "مسح الكل",
15
15
  "components.filter.clearAllAnnounce": "جارٍ مسح كل عوامل التصفية",
16
- "components.filter.clearAllAnnounceOverride": "Clearing all filters for: {filterText}",
16
+ "components.filter.clearAllAnnounceOverride": "جارٍ مسح كل عوامل التصفية لـ: {filterText}",
17
17
  "components.filter.clearAllDescription": "مسح كل عوامل التصفية",
18
- "components.filter.clearAllDescriptionOverride": "Clear all filters for: {filterText}",
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, zero {لم يتم تطبيق عوامل تصفية.} one {تم تطبيق عامل تصفية واحد.} other {{number} من عوامل التصفية التي تم تطبيقها.}}",
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, zero {ما من نتائج بحث} one {نتيجة بحث واحدة} other {{number} من نتائج البحث}}",
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 {تم العثور على خطأ واحد في المعلومات التي أرسلتها} other {تم العثور على {count} من الأخطاء في المعلومات التي أرسلتها}}",
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": "Active Filters:",
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": "Clearing all filters for: {filterText}",
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": "Clear all filters for: {filterText}",
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, zero {Dim hildwyr wedi'u gweithredu.} one {1 hidlydd wedi'i weithredu.} other {{number} hidlydd wedi'u gweithredu.}}",
22
+ "components.filter.filterCountDescription": "{number, plural, =0 {Dim hidlyddion wedi’i gweithredu.} one {{number} hidlydd wedii weithredu.} other {{number} hidlyddion wediu 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, zero {Dim canlyniadau chwilio} one {1 canlyniad chwilio} other {{number} canlyniad chwilio}}",
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 {Bu 1 gwall yn y wybodaeth a gyflwynwyd gennych} other {Bu {count} o wallau yn y wybodaeth a gyflwynwyd gennych}}",
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": "Active Filters:",
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": "Clearing all filters for: {filterText}",
16
+ "components.filter.clearAllAnnounceOverride": "Rydder alle filtre for: {filterText}",
17
17
  "components.filter.clearAllDescription": "Ryd alle filtre",
18
- "components.filter.clearAllDescriptionOverride": "Clear all filters for: {filterText}",
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 {1 filter anvendt.} other {{number} filtre anvendt.}}",
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 {1 søgeresultat} other {{number} søgeresultater}}",
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 1 fejl i de oplysninger, du indsendte} other {Der blev fundet {count} fejl i de oplysninger, du indsendte}}",
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": "Active Filters:",
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": "Clearing all filters for: {filterText}",
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": "Clear all filters for: {filterText}",
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 {1 Filter angewendet.} other {{number} Filter angewendet.}}",
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 {Keine Suchergebnisse} one {1 Suchergebnis} other {{number} Suchergebnisse}}",
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 {In den von Ihnen übermittelten Informationen ist 1 Fehler enthalten} other {In den von Ihnen übermittelten Informationen sind {count} Fehler enthalten}}",
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": "Active Filters:",
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": "Clearing all filters for: {filterText}",
16
+ "components.filter.clearAllAnnounceOverride": "Borrando todos los filtros de: {filterText}",
17
17
  "components.filter.clearAllDescription": "Borrar todos los filtros",
18
- "components.filter.clearAllDescriptionOverride": "Clear all filters for: {filterText}",
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 {1 filtro aplicado.} other {{number} filtros aplicados.}}",
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 {1 resultado de búsqueda} other {{number} resultados de búsqueda}}",
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 1 error en la información enviada} other {Se han encontrado {count} errores en la información que ha enviado}}",
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": "Active Filters:",
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": "Clearing all filters for: {filterText}",
16
+ "components.filter.clearAllAnnounceOverride": "Borrando todos los filtros para: {filterText}",
17
17
  "components.filter.clearAllDescription": "Borrar todos los filtros",
18
- "components.filter.clearAllDescriptionOverride": "Clear all filters for: {filterText}",
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 {1 filtro aplicado.} other {{number} filtros aplicados.}}",
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 {1 resultado de búsqueda} other {{number} resultados de búsqueda}}",
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 {Hubo 1 error detectado en la información que envió} other {Hubo {count} errores detectados en la información que envió}}",
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": "Active Filters:",
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": "Clearing all filters for: {filterText}",
16
+ "components.filter.clearAllAnnounceOverride": "Suppression de tous les filtres pour : {filterText}",
17
17
  "components.filter.clearAllDescription": "Supprimer tous les filtres",
18
- "components.filter.clearAllDescriptionOverride": "Clear all filters for: {filterText}",
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 {1 filtre appliqué.} other {{number} filtres appliqués.}}",
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 {1 résultat de recherche} other {{number} résultats de recherche}}",
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 {Il y avait une erreur dans les informations que vous avez soumises.} other {Il y avait {count} erreurs dans les informations que vous avez soumises.}}",
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": "Active Filters:",
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": "Clearing all filters for: {filterText}",
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": "Clear all filters for: {filterText}",
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 {1 filtre appliqué.} other {{number} filtres appliqués.}}",
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 {1 résultat de recherche} other {{number} résultats de recherche}}",
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 1 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}}",
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": "Active Filters:",
12
+ "components.filter.activeFilters": "सक्रिय फ़िल्टर्स:",
13
13
  "components.filter.clear": "साफ़ करें",
14
14
  "components.filter.clearAll": "सभी साफ़ करें",
15
15
  "components.filter.clearAllAnnounce": "सभी फिल्टर साफ़ किए जा रहे हैं",
16
- "components.filter.clearAllAnnounceOverride": "Clearing all filters for: {filterText}",
16
+ "components.filter.clearAllAnnounceOverride": "{filterText}: के लिए सभी फ़िल्टर्स साफ़ कर रहा है",
17
17
  "components.filter.clearAllDescription": "सभी फिल्टर साफ़ करें",
18
- "components.filter.clearAllDescriptionOverride": "Clear all filters for: {filterText}",
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 {1 खोज परिणाम} other {{number} खोज परिणाम}}",
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 {आपके द्वारा सबमिट की गई जानकारी में 1 त्रुटि मिली थी} other {आपके द्वारा सबमिट की गई जानकारी में {count} त्रुटियाँ मिली थी}}",
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": "Active Filters:",
12
+ "components.filter.activeFilters": "アクティブフィルタ:",
13
13
  "components.filter.clear": "クリア",
14
14
  "components.filter.clearAll": "すべてをクリア",
15
15
  "components.filter.clearAllAnnounce": "すべてのフィルタのクリア",
16
- "components.filter.clearAllAnnounceOverride": "Clearing all filters for: {filterText}",
16
+ "components.filter.clearAllAnnounceOverride": "{filterText} のすべてのフィルタのクリア",
17
17
  "components.filter.clearAllDescription": "すべてのフィルターをクリア",
18
- "components.filter.clearAllDescriptionOverride": "Clear all filters for: {filterText}",
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": "Active Filters:",
12
+ "components.filter.activeFilters": "활성 필터:",
13
13
  "components.filter.clear": "지우기",
14
14
  "components.filter.clearAll": "모두 지우기",
15
15
  "components.filter.clearAllAnnounce": "모든 필터 지우기",
16
- "components.filter.clearAllAnnounceOverride": "Clearing all filters for: {filterText}",
16
+ "components.filter.clearAllAnnounceOverride": "{filterText}에 대한 모든 필터 지우기",
17
17
  "components.filter.clearAllDescription": "모든 필터 지우기",
18
- "components.filter.clearAllDescriptionOverride": "Clear all filters for: {filterText}",
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": "Active Filters:",
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": "Clearing all filters for: {filterText}",
16
+ "components.filter.clearAllAnnounceOverride": "Alle filters worden gewist voor: {filterText}",
17
17
  "components.filter.clearAllDescription": "Alle filters wissen",
18
- "components.filter.clearAllDescriptionOverride": "Clear all filters for: {filterText}",
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 {1 filter toegepast.} other {{number} filters toegepast.}}",
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 {1 zoekresultaat} other {{number} zoekresultaten}}",
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 1 fout gevonden in de informatie die u hebt ingediend} other {Er zijn {count} fouten gevonden in de informatie die u hebt ingediend}}",
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": "Active Filters:",
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": "Clearing all filters for: {filterText}",
16
+ "components.filter.clearAllAnnounceOverride": "Limpando todos os filtros para: {filterText}",
17
17
  "components.filter.clearAllDescription": "Limpar todos os filtros",
18
- "components.filter.clearAllDescriptionOverride": "Clear all filters for: {filterText}",
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 {1 filtro aplicado.} other {{number} filtros aplicados.}}",
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 {1 resultado para a pesquisa} other {{number} resultados para a pesquisa}}",
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 {Um erro foi encontrado nas informações enviadas} other {{count} erros foram encontrados nas informações enviadas}}",
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": "Active Filters:",
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": "Clearing all filters for: {filterText}",
16
+ "components.filter.clearAllAnnounceOverride": "Rensar alla filter för {filterText}",
17
17
  "components.filter.clearAllDescription": "Rensa alla filter",
18
- "components.filter.clearAllDescriptionOverride": "Clear all filters for: {filterText}",
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 {1 filter tillämpat.} other {{number} filter tillämpade.}}",
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 {1 sökresultat} other {{number} sökresultat}}",
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 1 fel i informationen som du skickade} other {Det finns {count} fel i informationen som du skickade}}",
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": "Active Filters:",
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": "Clearing all filters for: {filterText}",
16
+ "components.filter.clearAllAnnounceOverride": "{filterText} için tüm filtreleri temizleniyor",
17
17
  "components.filter.clearAllDescription": "Tüm filtreleri temizle",
18
- "components.filter.clearAllDescriptionOverride": "Clear all filters for: {filterText}",
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 {1 filtre uygulandı.} other {{number} filtre uygulandı.}}",
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 {1 arama sonucu} other {{number} arama sonucu}}",
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 1 hata bulundu} other {Gönderdiğiniz bilgilerde {count} hata bulundu}}",
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": "Active Filters:",
12
+ "components.filter.activeFilters": "活动筛选器:",
13
13
  "components.filter.clear": "清除",
14
14
  "components.filter.clearAll": "全部清除",
15
15
  "components.filter.clearAllAnnounce": "清除所有筛选器",
16
- "components.filter.clearAllAnnounceOverride": "Clearing all filters for: {filterText}",
16
+ "components.filter.clearAllAnnounceOverride": "正在清除 {filterText} 的所有筛选器",
17
17
  "components.filter.clearAllDescription": "清除所有筛选器",
18
- "components.filter.clearAllDescriptionOverride": "Clear all filters for: {filterText}",
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": "Active Filters:",
12
+ "components.filter.activeFilters": "啟用中的篩選器:",
13
13
  "components.filter.clear": "清除",
14
14
  "components.filter.clearAll": "全部清除",
15
15
  "components.filter.clearAllAnnounce": "正在清除所有篩選器",
16
- "components.filter.clearAllAnnounceOverride": "Clearing all filters for: {filterText}",
16
+ "components.filter.clearAllAnnounceOverride": "正在清除下列項目的所有篩選器:{filterText}",
17
17
  "components.filter.clearAllDescription": "清除所有篩選器",
18
- "components.filter.clearAllDescriptionOverride": "Clear all filters for: {filterText}",
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 {未套用篩選條件。} other {已套用 {number} 項篩選條件。}}",
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.28.2",
3
+ "version": "2.28.5",
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",
@@ -51,7 +51,7 @@
51
51
  "axe-core": "^4",
52
52
  "chalk": "^5",
53
53
  "eslint": "^8",
54
- "eslint-config-brightspace": "^0.17",
54
+ "eslint-config-brightspace": "^0.18",
55
55
  "eslint-plugin-html": "^6",
56
56
  "eslint-plugin-import": "^2",
57
57
  "eslint-plugin-lit": "^1",