@brightspace-ui/core 3.76.1 → 3.77.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -5,7 +5,6 @@ The collapsible panel is a container that can show or hide additional content. I
5
5
  <!-- docs: demo -->
6
6
  ```html
7
7
  <script type="module">
8
- import '@brightspace-ui/core/components/button/button-icon.js';
9
8
  import '@brightspace-ui/core/components/collapsible-panel/collapsible-panel.js';
10
9
  import '@brightspace-ui/core/components/collapsible-panel/collapsible-panel-summary-item.js';
11
10
  import '@brightspace-ui/core/components/dropdown/dropdown-more.js';
@@ -118,13 +117,12 @@ The `d2l-collapsible-panel` element is a container that provides specific layout
118
117
  | `summary` | optional | Summary of the expanded content. Only accepts `d2l-collapsible-panel-summary-item` |
119
118
  | `default` | required | Content that is rendered when the panel is expanded |
120
119
 
121
-
122
120
  ### Properties
123
121
 
124
122
  | Property | Type | Description |
125
123
  |--|--|--|
126
124
  | `expanded` | Boolean | Whether or not the panel is expanded |
127
- | `expand-collapse-label` | String | Optional label describing the contents of the header (used by screen readers) |
125
+ | `expand-collapse-label` | String | Label describing the contents of the header for screen reader users |
128
126
  | `heading-style` | Number | The heading style to use |
129
127
  | `heading-level` | Number | Semantic heading level (h1-h4) |
130
128
  | `no-sticky` | Boolean | Disables sticky positioning for the header |
@@ -134,6 +132,7 @@ The `d2l-collapsible-panel` element is a container that provides specific layout
134
132
  | `type` | String | The type of collapsible panel |
135
133
 
136
134
  ### Events
135
+
137
136
  | Event | Description |
138
137
  |--|--|
139
138
  | `d2l-collapsible-panel-expand` | Dispatched when the panel is expanded |
@@ -214,7 +213,6 @@ An optional summary can help the user understand what’s inside the collapsible
214
213
  import '@brightspace-ui/core/components/collapsible-panel/collapsible-panel.js';
215
214
  import '@brightspace-ui/core/components/collapsible-panel/collapsible-panel-summary-item.js';
216
215
  import '@brightspace-ui/core/components/inputs/input-checkbox.js';
217
- import '@brightspace-ui/core/components/form/form.js';
218
216
  import { css, html, LitElement } from 'lit';
219
217
  import { labelStyles } from '@brightspace-ui/core/components/typography/styles.js';
220
218
  import { selectStyles } from '@brightspace-ui/core/components/inputs/input-select-styles.js';
@@ -389,11 +387,14 @@ Use the `d2l-collapsible-panel-group` component to automatically handle spacing
389
387
 
390
388
  ## Accessibility
391
389
 
390
+ The `d2l-collapsible-panel` component adheres to [W3C's Disclosure Pattern](https://www.w3.org/WAI/ARIA/apg/patterns/disclosure/) and any components added to any of the slots should also adhere to its respective pattern.
391
+
392
392
  ### Panel label
393
+
393
394
  By default, the panel is described by screen readers with the `panel-title` attribute. There may be situations where the screen reader should read additional information. In this case, a special label can be specified using the `expand-collapse-label` property.
394
395
 
395
396
  ### Keyboard behaviour
396
397
 
397
- On focus, a focus ring (blue border) goes around the clickable area of the component. When collapsed, this area is the entire panel; when expanded, it's only the header.
398
+ On focus, a focus ring (blue border) goes around the clickable area of the component. When collapsed, this area is the entire panel; when expanded, it's only the header. When focused, users can expand or collapse the panel using the `Enter` or `Space` key.
398
399
 
399
400
  Any focusable actions placed in the `actions` slot will receive focus after the panel recevies focus. The open/close icon beside the `actions` slot looks like a button, but is an indicator of component state. It will not receive focus like a typical button.
@@ -62,8 +62,7 @@ class CollapsiblePanel extends SkeletonMixin(FocusMixin(RtlMixin(LitElement))) {
62
62
  */
63
63
  expanded: { type: Boolean, reflect: true },
64
64
  /**
65
- * Optional label describing the contents of the header.
66
- * Used for screen readers.
65
+ * ACCESSIBILITY: Label describing the contents of the header for screen reader users
67
66
  * @type {string}
68
67
  */
69
68
  expandCollapseLabel: { attribute: 'expand-collapse-label', type: String, reflect: true },
@@ -10,7 +10,7 @@ Search inputs allow users to input text, execute a search, and clear results. A
10
10
  <d2l-input-search
11
11
  label="Search"
12
12
  value="Apples"
13
- placeholder="Search for fruit">
13
+ placeholder="Search">
14
14
  </d2l-input-search>
15
15
  ```
16
16
 
@@ -91,6 +91,7 @@
91
91
  <d2l-meter-circle value="0" max="10"></d2l-meter-circle>
92
92
  <d2l-meter-circle value="5" max="13"></d2l-meter-circle>
93
93
  <d2l-meter-circle value="5" max="13" percent></d2l-meter-circle>
94
+ <d2l-meter-circle value="0.004" max="100" percent text="Rounds to Zero" text-hidden></d2l-meter-circle>
94
95
  <d2l-meter-circle value="10" max="10" text="Completed"></d2l-meter-circle>
95
96
  <d2l-meter-circle value="19" max="26" style="width: 25%;"></d2l-meter-circle>
96
97
  </div>
@@ -0,0 +1,157 @@
1
+ import '../colors/colors.js';
2
+ import { css, html } from 'lit';
3
+ import { SkeletonMixin } from '../skeleton/skeleton-mixin.js';
4
+
5
+ const keyCodes = {
6
+ ENTER: 13,
7
+ SPACE: 32
8
+ };
9
+
10
+ export const TabMixin = superclass => class extends SkeletonMixin(superclass) {
11
+
12
+ static get properties() {
13
+ return {
14
+ selected: { type: Boolean, reflect: true },
15
+ };
16
+ }
17
+
18
+ static get styles() {
19
+ const styles = [ css`
20
+ :host {
21
+ box-sizing: border-box;
22
+ display: inline-block;
23
+ max-width: 200px;
24
+ outline: none;
25
+ position: relative;
26
+ vertical-align: middle;
27
+ }
28
+ .d2l-tab-selected-indicator {
29
+ border-top: 4px solid var(--d2l-color-celestine);
30
+ border-top-left-radius: 4px;
31
+ border-top-right-radius: 4px;
32
+ bottom: 0;
33
+ display: none;
34
+ margin: 1px 0.6rem 0 0.6rem;
35
+ position: absolute;
36
+ transition: box-shadow 0.2s;
37
+ width: calc(100% - 1.2rem);
38
+ }
39
+ :host(:first-child) .d2l-tab-selected-indicator {
40
+ margin-inline-end: 0.6rem;
41
+ margin-inline-start: 0;
42
+ width: calc(100% - 0.6rem);
43
+ }
44
+ :host([aria-selected="true"]:focus) {
45
+ text-decoration: none;
46
+ }
47
+ :host(:hover) {
48
+ color: var(--d2l-color-celestine);
49
+ cursor: pointer;
50
+ }
51
+ :host([aria-selected="true"]:hover) {
52
+ color: inherit;
53
+ cursor: default;
54
+ }
55
+ :host([aria-selected="true"]) .d2l-tab-selected-indicator {
56
+ display: block;
57
+ }
58
+ `];
59
+
60
+ super.styles && styles.unshift(super.styles);
61
+ return styles;
62
+ }
63
+
64
+ constructor() {
65
+ super();
66
+ this.ariaSelected = false;
67
+ this.role = 'tab';
68
+ this.selected = false;
69
+ this.tabIndex = -1;
70
+ }
71
+
72
+ connectedCallback() {
73
+ super.connectedCallback();
74
+ this.#addEventHandlers();
75
+
76
+ if (!this.#resizeObserver) {
77
+ this.#resizeObserver = new ResizeObserver(() => {
78
+ this.#handleResize();
79
+ });
80
+ this.#resizeObserver.observe(this);
81
+ }
82
+ }
83
+
84
+ disconnectedCallback() {
85
+ super.disconnectedCallback();
86
+ this.#removeEventHandlers();
87
+
88
+ if (this.#resizeObserver) {
89
+ this.#resizeObserver.disconnect();
90
+ this.#resizeObserver = null;
91
+ }
92
+ }
93
+
94
+ render() {
95
+ return html`
96
+ <div class="d2l-skeletize">
97
+ ${this.renderContent()}
98
+ </div>
99
+ <div class="d2l-tab-selected-indicator d2l-skeletize-container"></div>
100
+ `;
101
+ }
102
+
103
+ update(changedProperties) {
104
+ super.update(changedProperties);
105
+ changedProperties.forEach((oldVal, prop) => {
106
+ if (prop === 'selected') {
107
+ this.ariaSelected = this.selected;
108
+ if (this.selected === 'true') {
109
+ this.dispatchEvent(new CustomEvent(
110
+ 'd2l-tab-selected', { bubbles: true, composed: true }
111
+ ));
112
+ }
113
+ }
114
+ });
115
+ }
116
+
117
+ renderContent() {
118
+ console.warn('Subclasses to implement/override renderContent');
119
+ return html`<div>Default Tab Content</div>`;
120
+ }
121
+
122
+ #resizeObserver;
123
+
124
+ #handleClick = () => {
125
+ this.selected = true;
126
+ };
127
+
128
+ #handleKeydown = e => {
129
+ if (e.keyCode === keyCodes.SPACE || e.keyCode === keyCodes.ENTER) {
130
+ e.stopPropagation();
131
+ e.preventDefault();
132
+ }
133
+ };
134
+
135
+ #handleKeyup = e => {
136
+ if (e.keyCode === keyCodes.SPACE || e.keyCode === keyCodes.ENTER) {
137
+ this.#handleClick();
138
+ }
139
+ };
140
+
141
+ #addEventHandlers() {
142
+ this.addEventListener('click', this.#handleClick);
143
+ this.addEventListener('keydown', this.#handleKeydown);
144
+ this.addEventListener('keyup', this.#handleKeyup);
145
+ }
146
+
147
+ #handleResize() {
148
+ this.dispatchEvent(new CustomEvent('d2l-tab-resize'));
149
+ }
150
+
151
+ #removeEventHandlers() {
152
+ this.removeEventListener('click', this.#handleClick);
153
+ this.removeEventListener('keydown', this.#handleKeydown);
154
+ this.removeEventListener('keyup', this.#handleKeyup);
155
+ }
156
+
157
+ };
@@ -5,6 +5,11 @@ export const TabPanelMixin = superclass => class extends superclass {
5
5
 
6
6
  static get properties() {
7
7
  return {
8
+ /**
9
+ * Id of the tab that labels this panel
10
+ * @type {string}
11
+ */
12
+ labelledBy: { type: String },
8
13
  /**
9
14
  * Opt out of default padding/whitespace around the panel
10
15
  * @type {boolean}
@@ -61,7 +66,9 @@ export const TabPanelMixin = superclass => class extends superclass {
61
66
  super.updated(changedProperties);
62
67
 
63
68
  changedProperties.forEach((oldVal, prop) => {
64
- if (prop === 'selected') {
69
+ if (prop === 'labelledBy') {
70
+ this.setAttribute('aria-labelledby', this.labelledBy);
71
+ } else if (prop === 'selected') {
65
72
  if (this.selected) {
66
73
  requestAnimationFrame(() => {
67
74
  /** Dispatched when a tab is selected */
@@ -0,0 +1,46 @@
1
+ import { css, html, LitElement, unsafeCSS } from 'lit';
2
+ import { classMap } from 'lit/directives/class-map.js';
3
+ import { getFocusPseudoClass } from '../../helpers/focus.js';
4
+ import { TabMixin } from './tab-mixin.js';
5
+
6
+ class Tab extends TabMixin(LitElement) {
7
+
8
+ static get styles() {
9
+ const styles = [ css`
10
+ .d2l-tab-text {
11
+ margin: 0.5rem;
12
+ overflow: hidden;
13
+ padding: 0.1rem;
14
+ text-overflow: ellipsis;
15
+ white-space: nowrap;
16
+ }
17
+ :host(:first-child) .d2l-tab-text {
18
+ margin-inline-end: 0.6rem;
19
+ margin-inline-start: 0;
20
+ }
21
+ :host(:${unsafeCSS(getFocusPseudoClass())}) > .d2l-tab-text {
22
+ border-radius: 0.3rem;
23
+ box-shadow: 0 0 0 2px var(--d2l-color-celestine);
24
+ color: var(--d2l-color-celestine);
25
+ }
26
+ `];
27
+
28
+ super.styles && styles.unshift(super.styles);
29
+ return styles;
30
+ }
31
+
32
+ renderContent() {
33
+ const contentClasses = {
34
+ 'd2l-tab-handler': true,
35
+ 'd2l-tab-text': true,
36
+ };
37
+
38
+ return html`
39
+ <div class="${classMap(contentClasses)}">
40
+ <slot></slot>
41
+ </div>
42
+ `;
43
+ }
44
+ }
45
+
46
+ customElements.define('d2l-tab-wip', Tab);
@@ -1352,7 +1352,7 @@
1352
1352
  },
1353
1353
  {
1354
1354
  "name": "expand-collapse-label",
1355
- "description": "Optional label describing the contents of the header.\nUsed for screen readers.",
1355
+ "description": "ACCESSIBILITY: Label describing the contents of the header for screen reader users",
1356
1356
  "type": "string"
1357
1357
  },
1358
1358
  {
@@ -1407,7 +1407,7 @@
1407
1407
  {
1408
1408
  "name": "expandCollapseLabel",
1409
1409
  "attribute": "expand-collapse-label",
1410
- "description": "Optional label describing the contents of the header.\nUsed for screen readers.",
1410
+ "description": "ACCESSIBILITY: Label describing the contents of the header for screen reader users",
1411
1411
  "type": "string"
1412
1412
  },
1413
1413
  {
@@ -12740,6 +12740,11 @@
12740
12740
  "path": "./components/tabs/tab-panel.js",
12741
12741
  "description": "A component for tab panel content.",
12742
12742
  "attributes": [
12743
+ {
12744
+ "name": "labelledBy",
12745
+ "description": "Id of the tab that labels this panel",
12746
+ "type": "string"
12747
+ },
12743
12748
  {
12744
12749
  "name": "text",
12745
12750
  "description": "ACCESSIBILITY: REQUIRED: The text used for the tab, as well as labelling the panel",
@@ -12759,6 +12764,12 @@
12759
12764
  }
12760
12765
  ],
12761
12766
  "properties": [
12767
+ {
12768
+ "name": "labelledBy",
12769
+ "attribute": "labelledBy",
12770
+ "description": "Id of the tab that labels this panel",
12771
+ "type": "string"
12772
+ },
12762
12773
  {
12763
12774
  "name": "text",
12764
12775
  "attribute": "text",
@@ -12797,6 +12808,59 @@
12797
12808
  }
12798
12809
  ]
12799
12810
  },
12811
+ {
12812
+ "name": "d2l-tab-wip",
12813
+ "path": "./components/tabs/tab.js",
12814
+ "attributes": [
12815
+ {
12816
+ "name": "selected",
12817
+ "type": "boolean",
12818
+ "default": "false"
12819
+ },
12820
+ {
12821
+ "name": "skeleton",
12822
+ "description": "Render the component as a [skeleton loader](https://github.com/BrightspaceUI/core/tree/main/components/skeleton).",
12823
+ "type": "boolean"
12824
+ }
12825
+ ],
12826
+ "properties": [
12827
+ {
12828
+ "name": "ariaSelected",
12829
+ "type": "boolean",
12830
+ "default": "false"
12831
+ },
12832
+ {
12833
+ "name": "role",
12834
+ "type": "string",
12835
+ "default": "\"tab\""
12836
+ },
12837
+ {
12838
+ "name": "selected",
12839
+ "attribute": "selected",
12840
+ "type": "boolean",
12841
+ "default": "false"
12842
+ },
12843
+ {
12844
+ "name": "tabIndex",
12845
+ "type": "number",
12846
+ "default": "-1"
12847
+ },
12848
+ {
12849
+ "name": "skeleton",
12850
+ "attribute": "skeleton",
12851
+ "description": "Render the component as a [skeleton loader](https://github.com/BrightspaceUI/core/tree/main/components/skeleton).",
12852
+ "type": "boolean"
12853
+ }
12854
+ ],
12855
+ "events": [
12856
+ {
12857
+ "name": "d2l-tab-selected"
12858
+ },
12859
+ {
12860
+ "name": "d2l-tab-resize"
12861
+ }
12862
+ ]
12863
+ },
12800
12864
  {
12801
12865
  "name": "d2l-tabs",
12802
12866
  "path": "./components/tabs/tabs.js",
package/lang/ar.js CHANGED
@@ -32,8 +32,8 @@ export default {
32
32
  "components.filter-dimension-set-date-text-value.textMonths": "آخر {num} من الأشهر",
33
33
  "components.filter-dimension-set-date-time-range-value.label": "{text}، التوسيع لاختيار التواريخ",
34
34
  "components.filter-dimension-set-date-time-range-value.valueTextRange": "{startValue} إلى {endValue}",
35
- "components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "تاريخ البدء: {startValue}",
36
- "components.filter-dimension-set-date-time-range-value.valueTextRangeEndOnly": "تاريخ النهاية: {endValue}",
35
+ "components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "بعد {startValue}",
36
+ "components.filter-dimension-set-date-time-range-value.valueTextRangeEndOnly": "قبل {endValue}",
37
37
  "components.filter-dimension-set-date-time-range-value.text": "نطاق التاريخ المخصص",
38
38
  "components.form-element.defaultError": "{label} غير صالحة",
39
39
  "components.form-element.defaultFieldLabel": "الحقل",
@@ -69,9 +69,9 @@ export default {
69
69
  "components.input-date.errorOutsideRange": "يجب أن يكون التاريخ بين {minDate} و{maxDate}",
70
70
  "components.input-date.openInstructions": "استخدم تنسيق التاريخ {format}. انتقل إلى الأسفل أو اضغط على Enter للوصول إلى التقويم المصغّر.",
71
71
  "components.input-date.now": "الآن",
72
- "components.input-date.revert": "{label} reverted to previous value.",
72
+ "components.input-date.revert": "تمت إعادة {label} إلى القيمة السابقة.",
73
73
  "components.input-date.today": "اليوم",
74
- "components.input-date.useDateFormat": "Use date format {format}.",
74
+ "components.input-date.useDateFormat": "استخدم تنسيق التاريخ {format}.",
75
75
  "components.input-number.hintInteger": "يقبل هذا الحقل قيم الأعداد الصحيحة فقط (بدون أعداد عشرية)",
76
76
  "components.input-number.hintDecimalDuplicate": "يوجد عدد عشري في هذا الرقم",
77
77
  "components.input-number.hintDecimalIncorrectComma": "لإضافة عدد عشري، استخدم حرف الفاصلة \",\"",
@@ -111,8 +111,8 @@ export default {
111
111
  "components.pageable.info": "{count, plural, one {{countFormatted} مادة واحد} other {{countFormatted} من المواد}}",
112
112
  "components.pageable.info-with-total": "{totalCount, plural, one {{countFormatted} من أصل {totalCountFormatted} مادة واحدة} other {{countFormatted} من أصل {totalCountFormatted} من المواد}}",
113
113
  "components.pager-load-more.status-loading": "تحميل المزيد من المواد",
114
- "components.selection.action-max-hint": "{count, plural, one {Disabled when more than {countFormatted} item is selected} other {Disabled when more than {countFormatted} items are selected}}",
115
- "components.selection.action-required-hint": "حدد مادة لتنفيذ هذا الإجراء",
114
+ "components.selection.action-max-hint": "{count, plural, one {يتم التعطيل عند تحديد أكثر من {countFormatted} عنصر} other {يتم التعطيل عند تحديد أكثر من {countFormatted} من العناصر}}",
115
+ "components.selection.action-required-hint": "حدد عنصرًا لتنفيذ هذا الإجراء",
116
116
  "components.selection.select-all": "تحديد الكل",
117
117
  "components.selection.select-all-items": "تحديد كل المواد الـ {count}.",
118
118
  "components.selection.selected": "تم تحديد {count}",
package/lang/cy.js CHANGED
@@ -32,8 +32,8 @@ export default {
32
32
  "components.filter-dimension-set-date-text-value.textMonths": "{num} o fisoedd diwethaf",
33
33
  "components.filter-dimension-set-date-time-range-value.label": "{text}, ehangwch i ddewis dyddiadau",
34
34
  "components.filter-dimension-set-date-time-range-value.valueTextRange": "{startValue} i {endValue}",
35
- "components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "Dyddiad Dechrau: {startValue}",
36
- "components.filter-dimension-set-date-time-range-value.valueTextRangeEndOnly": "Dyddiad Dod i Ben: {endValue}",
35
+ "components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "Ar ôl {startValue}",
36
+ "components.filter-dimension-set-date-time-range-value.valueTextRangeEndOnly": "Cyn {endValue}",
37
37
  "components.filter-dimension-set-date-time-range-value.text": "Ystod dyddiad pwrpasol",
38
38
  "components.form-element.defaultError": "Mae {label} yn annilys",
39
39
  "components.form-element.defaultFieldLabel": "Maes",
@@ -69,9 +69,9 @@ export default {
69
69
  "components.input-date.errorOutsideRange": "Rhaid i'r dyddiad fod rhwng {minDate} a {maxDate}",
70
70
  "components.input-date.openInstructions": "Defnyddio fformat dyddiad {format}. Pwyswch saeth i lawr neu Enter i gael mynediad at galendr bach.",
71
71
  "components.input-date.now": "Nawr",
72
- "components.input-date.revert": "{label} reverted to previous value.",
72
+ "components.input-date.revert": "Mae {label} wedi'i ddychwelyd i'r gwerth blaenorol.",
73
73
  "components.input-date.today": "Heddiw",
74
- "components.input-date.useDateFormat": "Use date format {format}.",
74
+ "components.input-date.useDateFormat": "Defnyddio fformat dyddiad {format}.",
75
75
  "components.input-number.hintInteger": "Mae'r maes hwn yn derbyn gwerthoedd cyfanrif yn unig (dim degolion)",
76
76
  "components.input-number.hintDecimalDuplicate": "Mae degol eisoes yn y nifer hwn",
77
77
  "components.input-number.hintDecimalIncorrectComma": "I ychwanegu degol defnyddiwch y nod coma \",”",
@@ -111,8 +111,8 @@ export default {
111
111
  "components.pageable.info": "{count, plural, one {{countFormatted} eitem} other {{countFormatted} o eitemau}}",
112
112
  "components.pageable.info-with-total": "{totalCount, plural, one {{countFormatted} o {totalCountFormatted} eitem} other {{countFormatted} o {totalCountFormatted} eitemau}}",
113
113
  "components.pager-load-more.status-loading": "Llwytho rhagor o eitemau",
114
- "components.selection.action-max-hint": "{count, plural, one {Disabled when more than {countFormatted} item is selected} other {Disabled when more than {countFormatted} items are selected}}",
115
- "components.selection.action-required-hint": "Dewiswch eitem i gyflawni'r weithred hon",
114
+ "components.selection.action-max-hint": "{count, plural, one {Wedi'i analluogi pan fydd mwy nag {countFormatted} eitem yn cael ei ddewis} other {Wedi'i analluogi pan fydd mwy na {countFormatted} eitem yn cael eu dewis}}",
115
+ "components.selection.action-required-hint": "Rhaid i chi ddewis eitem i gyflawni'r weithred hon",
116
116
  "components.selection.select-all": "Dewis y Cyfan",
117
117
  "components.selection.select-all-items": "Dewis Pob {count} Eitem",
118
118
  "components.selection.selected": "{count} wedi’u dewis.",
package/lang/da.js CHANGED
@@ -32,8 +32,8 @@ export default {
32
32
  "components.filter-dimension-set-date-text-value.textMonths": "Sidste {num} måneder",
33
33
  "components.filter-dimension-set-date-time-range-value.label": "{text}, udvid for at vælge datoer",
34
34
  "components.filter-dimension-set-date-time-range-value.valueTextRange": "{startValue} til {endValue}",
35
- "components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "Startdato: {startValue}",
36
- "components.filter-dimension-set-date-time-range-value.valueTextRangeEndOnly": "Slutdato: {endValue}",
35
+ "components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "Efter {startValue}",
36
+ "components.filter-dimension-set-date-time-range-value.valueTextRangeEndOnly": "Før {endValue}",
37
37
  "components.filter-dimension-set-date-time-range-value.text": "Brugerdefineret datointerval",
38
38
  "components.form-element.defaultError": "{label} er ugyldigt",
39
39
  "components.form-element.defaultFieldLabel": "Felt",
@@ -69,9 +69,9 @@ export default {
69
69
  "components.input-date.errorOutsideRange": "Datoen skal være mellem {minDate} og {maxDate}",
70
70
  "components.input-date.openInstructions": "Brug datoformatet {format}. Tryk på Pil ned eller Enter for at få adgang til minikalender.",
71
71
  "components.input-date.now": "Nu",
72
- "components.input-date.revert": "{label} reverted to previous value.",
72
+ "components.input-date.revert": "{label} vendte tilbage til tidligere værdi.",
73
73
  "components.input-date.today": "I dag",
74
- "components.input-date.useDateFormat": "Use date format {format}.",
74
+ "components.input-date.useDateFormat": "Brug datoformatet {format}.",
75
75
  "components.input-number.hintInteger": "Dette felt accepterer kun heltalsværdier (ingen decimaler)",
76
76
  "components.input-number.hintDecimalDuplicate": "Der er allerede en decimal i dette tal",
77
77
  "components.input-number.hintDecimalIncorrectComma": "Hvis du vil tilføje en decimal, skal du bruge komma-tegnet \",\"",
@@ -111,7 +111,7 @@ export default {
111
111
  "components.pageable.info": "{count, plural, one {{countFormatted} element} other {{countFormatted} elementer}}",
112
112
  "components.pageable.info-with-total": "{totalCount, plural, one {{countFormatted} af {totalCountFormatted} element} other {{countFormatted} af {totalCountFormatted} elementer}}",
113
113
  "components.pager-load-more.status-loading": "Indlæser flere elementer",
114
- "components.selection.action-max-hint": "{count, plural, one {Disabled when more than {countFormatted} item is selected} other {Disabled when more than {countFormatted} items are selected}}",
114
+ "components.selection.action-max-hint": "{count, plural, one {Deaktiveret, når mere end {countFormatted} element er valgt} other {Deaktiveret, når mere end {countFormatted} elementer er valgt}}",
115
115
  "components.selection.action-required-hint": "Vælg et element for at udføre denne handling",
116
116
  "components.selection.select-all": "Vælg alle",
117
117
  "components.selection.select-all-items": "Vælg alle {count} elementer",
package/lang/de.js CHANGED
@@ -32,8 +32,8 @@ export default {
32
32
  "components.filter-dimension-set-date-text-value.textMonths": "Letzte {num} Monate",
33
33
  "components.filter-dimension-set-date-time-range-value.label": "{text} – erweitern, um Daten auszuwählen",
34
34
  "components.filter-dimension-set-date-time-range-value.valueTextRange": "{startValue} nach {endValue}",
35
- "components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "Startdatum: {startValue}",
36
- "components.filter-dimension-set-date-time-range-value.valueTextRangeEndOnly": "Enddatum: {endValue}",
35
+ "components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "Nach {startValue}",
36
+ "components.filter-dimension-set-date-time-range-value.valueTextRangeEndOnly": "Vor {endValue}",
37
37
  "components.filter-dimension-set-date-time-range-value.text": "Benutzerdefinierter Datumsbereich",
38
38
  "components.form-element.defaultError": "{label} ist ungültig",
39
39
  "components.form-element.defaultFieldLabel": "Feld",
@@ -69,9 +69,9 @@ export default {
69
69
  "components.input-date.errorOutsideRange": "Datum muss zwischen {minDate} und {maxDate} liegen",
70
70
  "components.input-date.openInstructions": "Das Datumsformat {format} verwenden. Minikalender durch Abwärtspfeil oder durch Drücken der Eingabetaste aufrufen.",
71
71
  "components.input-date.now": "Jetzt",
72
- "components.input-date.revert": "{label} reverted to previous value.",
72
+ "components.input-date.revert": "{label} auf vorherigen Wert zurückgesetzt.",
73
73
  "components.input-date.today": "Heute",
74
- "components.input-date.useDateFormat": "Use date format {format}.",
74
+ "components.input-date.useDateFormat": "Das Datumsformat {format} verwenden.",
75
75
  "components.input-number.hintInteger": "Dieses Feld akzeptiert nur Ganzzahlen (keine Dezimalstellen)",
76
76
  "components.input-number.hintDecimalDuplicate": "Diese Zahl enthält bereits eine Dezimale",
77
77
  "components.input-number.hintDecimalIncorrectComma": "Verwenden Sie zum Hinzufügen einer Dezimalstelle das Komma \",“",
@@ -111,7 +111,7 @@ export default {
111
111
  "components.pageable.info": "{count, plural, one {{countFormatted} Element} other {{countFormatted} Elemente}}",
112
112
  "components.pageable.info-with-total": "{totalCount, plural, one {{countFormatted} von {totalCountFormatted} Element} other {{countFormatted} von {totalCountFormatted} Elemente}}",
113
113
  "components.pager-load-more.status-loading": "Weitere Elemente werden geladen",
114
- "components.selection.action-max-hint": "{count, plural, one {Disabled when more than {countFormatted} item is selected} other {Disabled when more than {countFormatted} items are selected}}",
114
+ "components.selection.action-max-hint": "{count, plural, one {Deaktiviert, wenn mehr als {countFormatted} Element ausgewählt ist} other {Deaktiviert, wenn mehr als {countFormatted} Elemente ausgewählt sind}}",
115
115
  "components.selection.action-required-hint": "Wählen Sie ein Element aus, um diese Aktion auszuführen",
116
116
  "components.selection.select-all": "Alle auswählen",
117
117
  "components.selection.select-all-items": "Alle {count} Elemente auswählen",
package/lang/en-gb.js CHANGED
@@ -32,8 +32,8 @@ export default {
32
32
  "components.filter-dimension-set-date-text-value.textMonths": "Last {num} months",
33
33
  "components.filter-dimension-set-date-time-range-value.label": "{text}, expand to choose dates",
34
34
  "components.filter-dimension-set-date-time-range-value.valueTextRange": "{startValue} to {endValue}",
35
- "components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "Start Date: {startValue}",
36
- "components.filter-dimension-set-date-time-range-value.valueTextRangeEndOnly": "End Date: {endValue}",
35
+ "components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "After {startValue}",
36
+ "components.filter-dimension-set-date-time-range-value.valueTextRangeEndOnly": "Before {endValue}",
37
37
  "components.filter-dimension-set-date-time-range-value.text": "Custom date range",
38
38
  "components.form-element.defaultError": "{label} is invalid",
39
39
  "components.form-element.defaultFieldLabel": "Field",
package/lang/es-es.js CHANGED
@@ -32,8 +32,8 @@ export default {
32
32
  "components.filter-dimension-set-date-text-value.textMonths": "Últimos {num} meses",
33
33
  "components.filter-dimension-set-date-time-range-value.label": "{text}, amplíe para elegir fechas",
34
34
  "components.filter-dimension-set-date-time-range-value.valueTextRange": "{startValue} a {endValue}",
35
- "components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "Fecha de inicio: {startValue}",
36
- "components.filter-dimension-set-date-time-range-value.valueTextRangeEndOnly": "Fecha de finalización: {endValue}",
35
+ "components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "Después de {startValue}",
36
+ "components.filter-dimension-set-date-time-range-value.valueTextRangeEndOnly": "Antes de {endValue}",
37
37
  "components.filter-dimension-set-date-time-range-value.text": "Intervalo de fechas personalizado",
38
38
  "components.form-element.defaultError": "{label} no es válido",
39
39
  "components.form-element.defaultFieldLabel": "Campo",
@@ -69,9 +69,9 @@ export default {
69
69
  "components.input-date.errorOutsideRange": "La fecha debe estar entre el {minDate} y el {maxDate}",
70
70
  "components.input-date.openInstructions": "Usar formato de fecha {format}. Use la fecha hacia abajo o pulse Intro para acceder al minicalendario.",
71
71
  "components.input-date.now": "Ahora",
72
- "components.input-date.revert": "{label} reverted to previous value.",
72
+ "components.input-date.revert": "{label} ha vuelto al valor anterior.",
73
73
  "components.input-date.today": "Hoy",
74
- "components.input-date.useDateFormat": "Use date format {format}.",
74
+ "components.input-date.useDateFormat": "Usar formato de fecha {format}.",
75
75
  "components.input-number.hintInteger": "Este campo sólo acepta valores enteros (sin decimales)",
76
76
  "components.input-number.hintDecimalDuplicate": "Ya hay un decimal en este número",
77
77
  "components.input-number.hintDecimalIncorrectComma": "Para agregar un decimal, utilice la coma \",\"",
@@ -111,7 +111,7 @@ export default {
111
111
  "components.pageable.info": "{count, plural, one {{countFormatted} elemento} other {{countFormatted} elementos}}",
112
112
  "components.pageable.info-with-total": "{totalCount, plural, one {{countFormatted} de {totalCountFormatted} elemento} other {{countFormatted} de {totalCountFormatted} elementos}}",
113
113
  "components.pager-load-more.status-loading": "Cargando más elementos",
114
- "components.selection.action-max-hint": "{count, plural, one {Disabled when more than {countFormatted} item is selected} other {Disabled when more than {countFormatted} items are selected}}",
114
+ "components.selection.action-max-hint": "{count, plural, one {Deshabilitado cuando se selecciona más de {countFormatted} elemento} other {Deshabilitado cuando se seleccionan más de {countFormatted} elementos}}",
115
115
  "components.selection.action-required-hint": "Seleccione un elemento para realizar esta acción",
116
116
  "components.selection.select-all": "Seleccionar todo",
117
117
  "components.selection.select-all-items": "Seleccione los {count} elementos",
package/lang/es.js CHANGED
@@ -32,8 +32,8 @@ export default {
32
32
  "components.filter-dimension-set-date-text-value.textMonths": "Últimos {num} meses",
33
33
  "components.filter-dimension-set-date-time-range-value.label": "{text}, expanda para elegir fechas",
34
34
  "components.filter-dimension-set-date-time-range-value.valueTextRange": "De {startValue} a {endValue}",
35
- "components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "Fecha de inicio: {startValue}",
36
- "components.filter-dimension-set-date-time-range-value.valueTextRangeEndOnly": "Fecha final: {endValue}",
35
+ "components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "Después de {startValue}",
36
+ "components.filter-dimension-set-date-time-range-value.valueTextRangeEndOnly": "Antes de {endValue}",
37
37
  "components.filter-dimension-set-date-time-range-value.text": "Rango de fechas personalizado",
38
38
  "components.form-element.defaultError": "{label} no es válido",
39
39
  "components.form-element.defaultFieldLabel": "Campo",
@@ -69,9 +69,9 @@ export default {
69
69
  "components.input-date.errorOutsideRange": "La fecha debe estar entre {minDate} y {maxDate}",
70
70
  "components.input-date.openInstructions": "Utilice el formato de fecha {format}. Presione la flecha hacia abajo o Intro para acceder al minicalendario.",
71
71
  "components.input-date.now": "Ahora",
72
- "components.input-date.revert": "{label} reverted to previous value.",
72
+ "components.input-date.revert": "{label} se revirtió al valor anterior.",
73
73
  "components.input-date.today": "Hoy",
74
- "components.input-date.useDateFormat": "Use date format {format}.",
74
+ "components.input-date.useDateFormat": "Utilice el formato de fecha {format}.",
75
75
  "components.input-number.hintInteger": "Este campo solo acepta valores enteros (sin decimales)",
76
76
  "components.input-number.hintDecimalDuplicate": "Ya hay un decimal en este número",
77
77
  "components.input-number.hintDecimalIncorrectComma": "Para agregar un decimal, use el carácter coma (“,”)",
@@ -111,7 +111,7 @@ export default {
111
111
  "components.pageable.info": "{count, plural, one {{countFormatted} elemento} other {{countFormatted} elementos}}",
112
112
  "components.pageable.info-with-total": "{totalCount, plural, one {{countFormatted} de {totalCountFormatted} elemento} other {{countFormatted} de {totalCountFormatted} elementos}}",
113
113
  "components.pager-load-more.status-loading": "Cargando más elementos",
114
- "components.selection.action-max-hint": "{count, plural, one {Disabled when more than {countFormatted} item is selected} other {Disabled when more than {countFormatted} items are selected}}",
114
+ "components.selection.action-max-hint": "{count, plural, one {Se desactiva cuando se selecciona más de {countFormatted} elemento} other {Se desactiva cuando se selecciona más de {countFormatted} elementos}}",
115
115
  "components.selection.action-required-hint": "Seleccione un elemento para realizar esta acción",
116
116
  "components.selection.select-all": "Seleccionar todo",
117
117
  "components.selection.select-all-items": "Seleccione todos los {count} elementos",
package/lang/fr-fr.js CHANGED
@@ -32,8 +32,8 @@ export default {
32
32
  "components.filter-dimension-set-date-text-value.textMonths": "{num} derniers mois",
33
33
  "components.filter-dimension-set-date-time-range-value.label": "{text}, développez pour choisir des dates",
34
34
  "components.filter-dimension-set-date-time-range-value.valueTextRange": "De {startValue} à {endValue}",
35
- "components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "Date de début : {startValue}",
36
- "components.filter-dimension-set-date-time-range-value.valueTextRangeEndOnly": "Date de fin : {endValue}",
35
+ "components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "Après {startValue}",
36
+ "components.filter-dimension-set-date-time-range-value.valueTextRangeEndOnly": "Avant {endValue}",
37
37
  "components.filter-dimension-set-date-time-range-value.text": "Période personnalisée",
38
38
  "components.form-element.defaultError": "{label} n’est pas valide",
39
39
  "components.form-element.defaultFieldLabel": "Champ",
@@ -69,9 +69,9 @@ export default {
69
69
  "components.input-date.errorOutsideRange": "La date doit être comprise entre {minDate} et {maxDate}",
70
70
  "components.input-date.openInstructions": "Utiliser le format de date {format}. Utilisez la flèche vers le bas ou appuyez sur Entrée pour accéder au mini-calendrier.",
71
71
  "components.input-date.now": "Maintenant",
72
- "components.input-date.revert": "{label} reverted to previous value.",
72
+ "components.input-date.revert": "{label} a rétabli la valeur précédente.",
73
73
  "components.input-date.today": "Aujourd’hui",
74
- "components.input-date.useDateFormat": "Use date format {format}.",
74
+ "components.input-date.useDateFormat": "Utiliser le format de date {format}.",
75
75
  "components.input-number.hintInteger": "Ce champ accepte uniquement les valeurs entières (pas de décimales)",
76
76
  "components.input-number.hintDecimalDuplicate": "Il existe déjà une décimale dans ce nombre",
77
77
  "components.input-number.hintDecimalIncorrectComma": "Pour ajouter une décimale, utilisez la virgule « , »",
@@ -111,7 +111,7 @@ export default {
111
111
  "components.pageable.info": "{count, plural, one {{countFormatted} élément} other {{countFormatted} éléments}}",
112
112
  "components.pageable.info-with-total": "{totalCount, plural, one {{countFormatted} sur {totalCountFormatted} élément} other {{countFormatted} sur {totalCountFormatted} éléments}}",
113
113
  "components.pager-load-more.status-loading": "Charger plus d’éléments",
114
- "components.selection.action-max-hint": "{count, plural, one {Disabled when more than {countFormatted} item is selected} other {Disabled when more than {countFormatted} items are selected}}",
114
+ "components.selection.action-max-hint": "{count, plural, one {désactivé lorsque plus de {countFormatted} élément est sélectionné} other {désactivé lorsque plus de {countFormatted} éléments sont sélectionnés}}",
115
115
  "components.selection.action-required-hint": "Sélectionnez un élément pour exécuter cette action",
116
116
  "components.selection.select-all": "Tout sélectionner",
117
117
  "components.selection.select-all-items": "Sélectionner tous les {count} éléments",
package/lang/fr.js CHANGED
@@ -32,8 +32,8 @@ export default {
32
32
  "components.filter-dimension-set-date-text-value.textMonths": "{num} derniers mois",
33
33
  "components.filter-dimension-set-date-time-range-value.label": "{text}, développez la section pour choisir les dates",
34
34
  "components.filter-dimension-set-date-time-range-value.valueTextRange": "De {startValue} à {endValue}",
35
- "components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "Date de début : {startValue}",
36
- "components.filter-dimension-set-date-time-range-value.valueTextRangeEndOnly": "Date de fin : {endValue}",
35
+ "components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "Après {startValue}",
36
+ "components.filter-dimension-set-date-time-range-value.valueTextRangeEndOnly": "Avant {endValue}",
37
37
  "components.filter-dimension-set-date-time-range-value.text": "Période personnalisée",
38
38
  "components.form-element.defaultError": "{label} n'est pas valide",
39
39
  "components.form-element.defaultFieldLabel": "Champ",
@@ -69,9 +69,9 @@ export default {
69
69
  "components.input-date.errorOutsideRange": "La date doit être comprise entre {minDate} et {maxDate}",
70
70
  "components.input-date.openInstructions": "Utiliser le format de date {format}. Utiliser la flèche vers le bas ou la touche d'entrée pour accéder au mini-calendrier.",
71
71
  "components.input-date.now": "Maintenant",
72
- "components.input-date.revert": "{label} reverted to previous value.",
72
+ "components.input-date.revert": "La valeur précédente a été réattribuée à {label}.",
73
73
  "components.input-date.today": "Aujourd'hui",
74
- "components.input-date.useDateFormat": "Use date format {format}.",
74
+ "components.input-date.useDateFormat": "Utiliser le format de date {format}.",
75
75
  "components.input-number.hintInteger": "Ce champ accepte uniquement les valeurs entières (sans décimales)",
76
76
  "components.input-number.hintDecimalDuplicate": "Ce nombre comporte déjà une décimale",
77
77
  "components.input-number.hintDecimalIncorrectComma": "Pour ajouter une décimale, utilisez la virgule « , »",
@@ -111,8 +111,8 @@ export default {
111
111
  "components.pageable.info": "{count, plural, one {{countFormatted} élément} other {{countFormatted} éléments}}",
112
112
  "components.pageable.info-with-total": "{totalCount, plural, one {{countFormatted} de {totalCountFormatted} élément} other {{countFormatted} de {totalCountFormatted} éléments}}",
113
113
  "components.pager-load-more.status-loading": "Chargement d'autres d'éléments",
114
- "components.selection.action-max-hint": "{count, plural, one {Disabled when more than {countFormatted} item is selected} other {Disabled when more than {countFormatted} items are selected}}",
115
- "components.selection.action-required-hint": "Sélectionner un élément pour exécuter cette action",
114
+ "components.selection.action-max-hint": "{count, plural, one {Désactivé lorsque plus de {countFormatted} élément est sélectionné} other {Désactivé lorsque plus de {countFormatted} éléments sont sélectionnés}}",
115
+ "components.selection.action-required-hint": "Sélectionnez un élément pour exécuter cette action",
116
116
  "components.selection.select-all": "Tout sélectionner",
117
117
  "components.selection.select-all-items": "Sélectionner tous les {count} éléments",
118
118
  "components.selection.selected": "{count} sélectionné(s)",
package/lang/hi.js CHANGED
@@ -32,8 +32,8 @@ export default {
32
32
  "components.filter-dimension-set-date-text-value.textMonths": "अंतिम {num} महीने",
33
33
  "components.filter-dimension-set-date-time-range-value.label": "{text}, तारीख चुनने के लिए विस्तृत करें",
34
34
  "components.filter-dimension-set-date-time-range-value.valueTextRange": "{startValue} से {endValue}",
35
- "components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "प्रारंभ तारीख: {startValue}",
36
- "components.filter-dimension-set-date-time-range-value.valueTextRangeEndOnly": "समाप्ति तारीख: {endValue}",
35
+ "components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "{startValue} के बाद",
36
+ "components.filter-dimension-set-date-time-range-value.valueTextRangeEndOnly": "{endValue} के पहले",
37
37
  "components.filter-dimension-set-date-time-range-value.text": "कस्टम तारीख सीमा",
38
38
  "components.form-element.defaultError": "{label} अमान्य है",
39
39
  "components.form-element.defaultFieldLabel": "फ़ील्ड",
@@ -69,9 +69,9 @@ export default {
69
69
  "components.input-date.errorOutsideRange": "तारीख़ {minDate} और {maxDate} के बीच होनी चाहिए",
70
70
  "components.input-date.openInstructions": "तारीख़ फ़ॉर्मेट {format} का उपयोग करें। लघु-कैलेंडर तक पहुँचने के लिए तीर नीचे या एंटर दबाएँ।",
71
71
  "components.input-date.now": "अभी",
72
- "components.input-date.revert": "{label} reverted to previous value.",
72
+ "components.input-date.revert": "{label} को पिछले मान पर रिवर्ट किया गया।",
73
73
  "components.input-date.today": "आज",
74
- "components.input-date.useDateFormat": "Use date format {format}.",
74
+ "components.input-date.useDateFormat": "तारीख फ़ॉर्मेट {format} का उपयोग करें।",
75
75
  "components.input-number.hintInteger": "यह फ़ील्ड केवल पूर्णांक मानों (कोई दशमलव नहीं) को स्वीकार करती है",
76
76
  "components.input-number.hintDecimalDuplicate": "इस संख्या में पहले से ही कोई दशमलव है",
77
77
  "components.input-number.hintDecimalIncorrectComma": "दशमलव जोड़ने के लिए, अल्पविराम \",\" वर्ण उपयोग करें",
@@ -111,8 +111,8 @@ export default {
111
111
  "components.pageable.info": "{count, plural, one {{countFormatted} आइटम} other {{countFormatted} आइटम}}",
112
112
  "components.pageable.info-with-total": "{totalCount, plural, one {{totalCountFormatted} में से {countFormatted} आइटम} other {{totalCountFormatted} में से {countFormatted} आइटम}}",
113
113
  "components.pager-load-more.status-loading": "और आइटम लोड करना",
114
- "components.selection.action-max-hint": "{count, plural, one {Disabled when more than {countFormatted} item is selected} other {Disabled when more than {countFormatted} items are selected}}",
115
- "components.selection.action-required-hint": "यह कार्रवाई निष्पादित करने के लिए कोई आइटम का चयन करें।",
114
+ "components.selection.action-max-hint": "{count, plural, one {{countFormatted} से अधिक आइटम चुने जाने पर अक्षम किया गया जाता है} other {{countFormatted} अधिक आइटम्स चुने जाने पर अक्षम किया गया जाता है}}",
115
+ "components.selection.action-required-hint": "यह कार्रवाई करने के लिए किसी आइटम का चयन करें",
116
116
  "components.selection.select-all": "सभी का चयन करें",
117
117
  "components.selection.select-all-items": "सभी {count} आइटम चुनें।",
118
118
  "components.selection.selected": "{count} चयनित",
package/lang/ja.js CHANGED
@@ -32,8 +32,8 @@ export default {
32
32
  "components.filter-dimension-set-date-text-value.textMonths": "過去 {num} ヵ月",
33
33
  "components.filter-dimension-set-date-time-range-value.label": "{text}、展開して日付を選択",
34
34
  "components.filter-dimension-set-date-time-range-value.valueTextRange": "{startValue} から {endValue}",
35
- "components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "開始日: {startValue}",
36
- "components.filter-dimension-set-date-time-range-value.valueTextRangeEndOnly": "終了日: {endValue}",
35
+ "components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "{startValue} の後",
36
+ "components.filter-dimension-set-date-time-range-value.valueTextRangeEndOnly": "{endValue} より前",
37
37
  "components.filter-dimension-set-date-time-range-value.text": "カスタム日付範囲",
38
38
  "components.form-element.defaultError": "{label} は無効です",
39
39
  "components.form-element.defaultFieldLabel": "フィールド",
@@ -69,9 +69,9 @@ export default {
69
69
  "components.input-date.errorOutsideRange": "日付は {minDate} から {maxDate} の間にする必要があります",
70
70
  "components.input-date.openInstructions": "日付形式 {format} を使用します。ミニカレンダーにアクセスするには下矢印を使うか Enter を押します。",
71
71
  "components.input-date.now": "現在",
72
- "components.input-date.revert": "{label} reverted to previous value.",
72
+ "components.input-date.revert": "{label} が前の値に戻されました。",
73
73
  "components.input-date.today": "今日",
74
- "components.input-date.useDateFormat": "Use date format {format}.",
74
+ "components.input-date.useDateFormat": "日付形式 {format} を使用します。",
75
75
  "components.input-number.hintInteger": "このフィールドには整数値のみ入力できます(小数不可)。",
76
76
  "components.input-number.hintDecimalDuplicate": "この数値にはすでに小数があります",
77
77
  "components.input-number.hintDecimalIncorrectComma": "小数を追加するには、カンマ「,」文字を使用します",
@@ -111,8 +111,8 @@ export default {
111
111
  "components.pageable.info": "{count, plural, other {{countFormatted} 個の項目}}",
112
112
  "components.pageable.info-with-total": "{totalCount, plural, other {{countFormatted}/{totalCountFormatted} 個の項目}}",
113
113
  "components.pager-load-more.status-loading": "さらに項目を読み込み中",
114
- "components.selection.action-max-hint": "{count, plural, other {Disabled when more than {countFormatted} items are selected}}",
115
- "components.selection.action-required-hint": "このアクションを実行するための項目を選択します。",
114
+ "components.selection.action-max-hint": "{count, plural, other {{countFormatted} 個を超える項目が選択されている場合は無効になります}}",
115
+ "components.selection.action-required-hint": "この操作を実行するための項目を選択します",
116
116
  "components.selection.select-all": "すべて選択",
117
117
  "components.selection.select-all-items": "{count} 個の項目をすべて選択",
118
118
  "components.selection.selected": "{count} 個を選択済み",
package/lang/ko.js CHANGED
@@ -32,8 +32,8 @@ export default {
32
32
  "components.filter-dimension-set-date-text-value.textMonths": "지난 {num}개월",
33
33
  "components.filter-dimension-set-date-time-range-value.label": "{text}, 확장하여 날짜 선택",
34
34
  "components.filter-dimension-set-date-time-range-value.valueTextRange": "{startValue}~{endValue}",
35
- "components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "시작일: {startValue}",
36
- "components.filter-dimension-set-date-time-range-value.valueTextRangeEndOnly": "종료일: {endValue}",
35
+ "components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "{startValue} 이후",
36
+ "components.filter-dimension-set-date-time-range-value.valueTextRangeEndOnly": "{endValue} 이전",
37
37
  "components.filter-dimension-set-date-time-range-value.text": "사용자 지정 날짜 범위",
38
38
  "components.form-element.defaultError": "{label}이(가) 유효하지 않습니다",
39
39
  "components.form-element.defaultFieldLabel": "필드",
@@ -69,9 +69,9 @@ export default {
69
69
  "components.input-date.errorOutsideRange": "날짜는 {minDate}와 {maxDate} 사이여야 합니다.",
70
70
  "components.input-date.openInstructions": "{format} 날짜 형식을 사용하십시오. 미니 달력에 접근하려면 아래쪽 화살표를 누르거나 Enter 키를 누르십시오.",
71
71
  "components.input-date.now": "현재",
72
- "components.input-date.revert": "{label} reverted to previous value.",
72
+ "components.input-date.revert": "{label}이(가) 이전 값으로 돌아갔습니다.",
73
73
  "components.input-date.today": "오늘",
74
- "components.input-date.useDateFormat": "Use date format {format}.",
74
+ "components.input-date.useDateFormat": "{format} 날짜 형식을 사용하십시오.",
75
75
  "components.input-number.hintInteger": "이 필드는 정수 값만 허용합니다(소수점 없음)",
76
76
  "components.input-number.hintDecimalDuplicate": "이 숫자에 이미 소수점이 있습니다",
77
77
  "components.input-number.hintDecimalIncorrectComma": "소수점을 추가하려면 쉼표 \",\" 문자를 사용합니다",
@@ -111,7 +111,7 @@ export default {
111
111
  "components.pageable.info": "{count, plural, other {해당 항목 수 {countFormatted}개}}",
112
112
  "components.pageable.info-with-total": "{totalCount, plural, other {{totalCountFormatted}개 항목 중 {countFormatted}개}}",
113
113
  "components.pager-load-more.status-loading": "더 많은 항목 로드",
114
- "components.selection.action-max-hint": "{count, plural, other {Disabled when more than {countFormatted} items are selected}}",
114
+ "components.selection.action-max-hint": "{count, plural, other {{countFormatted} 이상의 항목이 선택되면 비활성화됨}}",
115
115
  "components.selection.action-required-hint": "이 작업을 수행할 항목을 선택하십시오",
116
116
  "components.selection.select-all": "모두 선택",
117
117
  "components.selection.select-all-items": "{count}개 항목을 모두 선택하십시오.",
package/lang/nl.js CHANGED
@@ -32,8 +32,8 @@ export default {
32
32
  "components.filter-dimension-set-date-text-value.textMonths": "Afgelopen {num} maanden",
33
33
  "components.filter-dimension-set-date-time-range-value.label": "{text}, vouw uit om datums te kiezen",
34
34
  "components.filter-dimension-set-date-time-range-value.valueTextRange": "{startValue} tot {endValue}",
35
- "components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "Startdatum: {startValue}",
36
- "components.filter-dimension-set-date-time-range-value.valueTextRangeEndOnly": "Einddatum: {endValue}",
35
+ "components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "Na {startValue}",
36
+ "components.filter-dimension-set-date-time-range-value.valueTextRangeEndOnly": "Voor {endValue}",
37
37
  "components.filter-dimension-set-date-time-range-value.text": "Aangepast datumbereik",
38
38
  "components.form-element.defaultError": "{label} is ongeldig",
39
39
  "components.form-element.defaultFieldLabel": "Veld",
@@ -69,9 +69,9 @@ export default {
69
69
  "components.input-date.errorOutsideRange": "Datum moet tussen {minDate} en {maxDate} liggen",
70
70
  "components.input-date.openInstructions": "Gebruik datumnotatie {format}. Gebruik Pijl omlaag of druk op Enter om de mini-agenda te openen.",
71
71
  "components.input-date.now": "Nu",
72
- "components.input-date.revert": "{label} reverted to previous value.",
72
+ "components.input-date.revert": "{label} teruggezet naar vorige waarde.",
73
73
  "components.input-date.today": "Vandaag",
74
- "components.input-date.useDateFormat": "Use date format {format}.",
74
+ "components.input-date.useDateFormat": "Gebruik datumnotatie {format}.",
75
75
  "components.input-number.hintInteger": "Dit veld accepteert alleen gehele getallen (geen decimalen)",
76
76
  "components.input-number.hintDecimalDuplicate": "Dit getal bevat al een decimaal",
77
77
  "components.input-number.hintDecimalIncorrectComma": "Als u een decimaal wilt toevoegen, gebruikt u het teken ','",
@@ -111,7 +111,7 @@ export default {
111
111
  "components.pageable.info": "{count, plural, one {{countFormatted} item} other {{countFormatted} items}}",
112
112
  "components.pageable.info-with-total": "{totalCount, plural, one {{countFormatted} van {totalCountFormatted} artikel} other {{countFormatted} van {totalCountFormatted} artikelen}}",
113
113
  "components.pager-load-more.status-loading": "Er worden meer items geladen",
114
- "components.selection.action-max-hint": "{count, plural, one {Disabled when more than {countFormatted} item is selected} other {Disabled when more than {countFormatted} items are selected}}",
114
+ "components.selection.action-max-hint": "{count, plural, one {Uitgeschakeld als meer dan {countFormatted} item is geselecteerd} other {Uitgeschakeld als meer dan {countFormatted} items zijn geselecteerd}}",
115
115
  "components.selection.action-required-hint": "Selecteer een item om deze actie uit te voeren",
116
116
  "components.selection.select-all": "Alles selecteren",
117
117
  "components.selection.select-all-items": "Alle {count} records selecteren",
package/lang/pt.js CHANGED
@@ -32,8 +32,8 @@ export default {
32
32
  "components.filter-dimension-set-date-text-value.textMonths": "Últimos {num} meses",
33
33
  "components.filter-dimension-set-date-time-range-value.label": "{text}, expandir para escolher datas",
34
34
  "components.filter-dimension-set-date-time-range-value.valueTextRange": "{startValue} até {endValue}",
35
- "components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "Data de início: {startValue}",
36
- "components.filter-dimension-set-date-time-range-value.valueTextRangeEndOnly": "Data final: {endValue}",
35
+ "components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "Depois de {startValue}",
36
+ "components.filter-dimension-set-date-time-range-value.valueTextRangeEndOnly": "Antes de {endValue}",
37
37
  "components.filter-dimension-set-date-time-range-value.text": "Intervalo de datas personalizado",
38
38
  "components.form-element.defaultError": "{label} é inválido",
39
39
  "components.form-element.defaultFieldLabel": "Campo",
@@ -69,9 +69,9 @@ export default {
69
69
  "components.input-date.errorOutsideRange": "A data precisa estar entre {minDate} e {maxDate}",
70
70
  "components.input-date.openInstructions": "Adote o formato de data {format}. Use a tecla de seta para baixo ou pressione Enter para acessar o minicalendário.",
71
71
  "components.input-date.now": "Agora",
72
- "components.input-date.revert": "{label} reverted to previous value.",
72
+ "components.input-date.revert": "{label} foi revertido para o valor anterior.",
73
73
  "components.input-date.today": "Hoje",
74
- "components.input-date.useDateFormat": "Use date format {format}.",
74
+ "components.input-date.useDateFormat": "Adote o formato de data {format}.",
75
75
  "components.input-number.hintInteger": "Este campo aceita apenas valores inteiros (não decimais)",
76
76
  "components.input-number.hintDecimalDuplicate": "Já existe um decimal neste número",
77
77
  "components.input-number.hintDecimalIncorrectComma": "Para adicionar um decimal, use o caractere vírgula “,”",
@@ -111,7 +111,7 @@ export default {
111
111
  "components.pageable.info": "{count, plural, one {{countFormatted} item} other {{countFormatted} itens}}",
112
112
  "components.pageable.info-with-total": "{totalCount, plural, one {{countFormatted} de {totalCountFormatted} item} other {{countFormatted} de {totalCountFormatted} itens}}",
113
113
  "components.pager-load-more.status-loading": "Carregando mais itens",
114
- "components.selection.action-max-hint": "{count, plural, one {Disabled when more than {countFormatted} item is selected} other {Disabled when more than {countFormatted} items are selected}}",
114
+ "components.selection.action-max-hint": "{count, plural, one {Desativado quando mais de {countFormatted} item é selecionado} other {Desativado quando mais de {countFormatted} itens são selecionados}}",
115
115
  "components.selection.action-required-hint": "Selecione um item para realizar esta ação",
116
116
  "components.selection.select-all": "Selecionar tudo",
117
117
  "components.selection.select-all-items": "Selecione todos os {count} itens",
package/lang/sv.js CHANGED
@@ -32,8 +32,8 @@ export default {
32
32
  "components.filter-dimension-set-date-text-value.textMonths": "Senaste {num} månaderna",
33
33
  "components.filter-dimension-set-date-time-range-value.label": "{text}, expandera för att välja datum",
34
34
  "components.filter-dimension-set-date-time-range-value.valueTextRange": "{startValue} till {endValue}",
35
- "components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "Startdatum: {startValue}",
36
- "components.filter-dimension-set-date-time-range-value.valueTextRangeEndOnly": "Slutdatum: {endValue}",
35
+ "components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "Efter {startValue}",
36
+ "components.filter-dimension-set-date-time-range-value.valueTextRangeEndOnly": "Före {endValue}",
37
37
  "components.filter-dimension-set-date-time-range-value.text": "Eget datumintervall",
38
38
  "components.form-element.defaultError": "{label} är ogiltig",
39
39
  "components.form-element.defaultFieldLabel": "Fält",
@@ -69,9 +69,9 @@ export default {
69
69
  "components.input-date.errorOutsideRange": "Datumet ska vara mellan {minDate} och {maxDate}",
70
70
  "components.input-date.openInstructions": "Använd datumformatet {format}. Om du vill visa minikalendern trycker du på nedåtpil eller Enter.",
71
71
  "components.input-date.now": "Nu",
72
- "components.input-date.revert": "{label} reverted to previous value.",
72
+ "components.input-date.revert": "{label} återgick till föregående värde.",
73
73
  "components.input-date.today": "Idag",
74
- "components.input-date.useDateFormat": "Use date format {format}.",
74
+ "components.input-date.useDateFormat": "Använd datumformatet {format}.",
75
75
  "components.input-number.hintInteger": "I det här fältet accepteras endast heltalsvärden (inga decimaler)",
76
76
  "components.input-number.hintDecimalDuplicate": "Det finns redan en decimal i det här talet",
77
77
  "components.input-number.hintDecimalIncorrectComma": "Om du vill lägga till en decimal använder du kommatecknet \",\"",
@@ -111,7 +111,7 @@ export default {
111
111
  "components.pageable.info": "{count, plural, one {{countFormatted} objekt} other {{countFormatted} objekt}}",
112
112
  "components.pageable.info-with-total": "{totalCount, plural, one {{countFormatted} av {totalCountFormatted} objekt} other {{countFormatted} av {totalCountFormatted} objekt}}",
113
113
  "components.pager-load-more.status-loading": "Läser in fler objekt",
114
- "components.selection.action-max-hint": "{count, plural, one {Disabled when more than {countFormatted} item is selected} other {Disabled when more than {countFormatted} items are selected}}",
114
+ "components.selection.action-max-hint": "{count, plural, one {inaktiveras när fler än {countFormatted} objekt väljs} other {inaktiveras när fler än {countFormatted} objekt väljs}}",
115
115
  "components.selection.action-required-hint": "Välj ett objekt för att utföra åtgärden",
116
116
  "components.selection.select-all": "Välj alla",
117
117
  "components.selection.select-all-items": "Välj alla {count} objekt",
package/lang/tr.js CHANGED
@@ -32,8 +32,8 @@ export default {
32
32
  "components.filter-dimension-set-date-text-value.textMonths": "Son {num} ay",
33
33
  "components.filter-dimension-set-date-time-range-value.label": "{text}, tarihleri seçmek için genişletin",
34
34
  "components.filter-dimension-set-date-time-range-value.valueTextRange": "{startValue} - {endValue}",
35
- "components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "Başlangıç Tarihi: {startValue}",
36
- "components.filter-dimension-set-date-time-range-value.valueTextRangeEndOnly": "Bitiş Tarihi: {endValue}",
35
+ "components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "{startValue} tarihinden sonra",
36
+ "components.filter-dimension-set-date-time-range-value.valueTextRangeEndOnly": "{endValue} tarihinden önce",
37
37
  "components.filter-dimension-set-date-time-range-value.text": "Özel tarih aralığı",
38
38
  "components.form-element.defaultError": "{label} geçersiz",
39
39
  "components.form-element.defaultFieldLabel": "Alan",
@@ -69,9 +69,9 @@ export default {
69
69
  "components.input-date.errorOutsideRange": "Tarih, {minDate} ile {maxDate} arasında olmalıdır",
70
70
  "components.input-date.openInstructions": "{format} tarih formatını kullanın. Küçük takvime erişmek için aşağı okunu kullanın veya enter tuşuna basın.",
71
71
  "components.input-date.now": "Şimdi",
72
- "components.input-date.revert": "{label} reverted to previous value.",
72
+ "components.input-date.revert": "{label} önceki değere geri döndü.",
73
73
  "components.input-date.today": "Bugün",
74
- "components.input-date.useDateFormat": "Use date format {format}.",
74
+ "components.input-date.useDateFormat": "{format} tarih formatını kullanın.",
75
75
  "components.input-number.hintInteger": "Bu alanda yalnızca tam sayı değerleri kabul edilir (ondalık sayı kabul edilmez)",
76
76
  "components.input-number.hintDecimalDuplicate": "Bu sayıda zaten bir ondalık var",
77
77
  "components.input-number.hintDecimalIncorrectComma": "Ondalık sayı eklemek için virgül \",\" karakterini kullanın",
@@ -111,7 +111,7 @@ export default {
111
111
  "components.pageable.info": "{count, plural, one {{countFormatted} öğe} other {{countFormatted} öğe}}",
112
112
  "components.pageable.info-with-total": "{totalCount, plural, one {{countFormatted} / {totalCountFormatted} öğe} other {{countFormatted} / {totalCountFormatted} öğe}}",
113
113
  "components.pager-load-more.status-loading": "Daha fazla öğe yükleniyor",
114
- "components.selection.action-max-hint": "{count, plural, one {Disabled when more than {countFormatted} item is selected} other {Disabled when more than {countFormatted} items are selected}}",
114
+ "components.selection.action-max-hint": "{count, plural, one {{countFormatted} öğeden fazlası seçildiğinde devre dışı bırakılır} other {{countFormatted} öğeden fazlası seçildiğinde devre dışı bırakılır}}",
115
115
  "components.selection.action-required-hint": "Bu eylemi gerçekleştirebilmek için bir öğe seçin",
116
116
  "components.selection.select-all": "Tümünü Seç",
117
117
  "components.selection.select-all-items": "{count} Öğenin Tamamını Seç",
package/lang/zh-cn.js CHANGED
@@ -32,8 +32,8 @@ export default {
32
32
  "components.filter-dimension-set-date-text-value.textMonths": "过去 {num} 个月",
33
33
  "components.filter-dimension-set-date-time-range-value.label": "{text},扩展以选择日期",
34
34
  "components.filter-dimension-set-date-time-range-value.valueTextRange": "{startValue} 至 {endValue}",
35
- "components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "开始日期:{startValue}",
36
- "components.filter-dimension-set-date-time-range-value.valueTextRangeEndOnly": "结束日期:{endValue}",
35
+ "components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "{startValue} 之后",
36
+ "components.filter-dimension-set-date-time-range-value.valueTextRangeEndOnly": "{endValue} 之前",
37
37
  "components.filter-dimension-set-date-time-range-value.text": "自定义日期范围",
38
38
  "components.form-element.defaultError": "{label} 无效",
39
39
  "components.form-element.defaultFieldLabel": "字段",
@@ -69,9 +69,9 @@ export default {
69
69
  "components.input-date.errorOutsideRange": "日期必须介于 {minDate} 和 {maxDate} 之间",
70
70
  "components.input-date.openInstructions": "使用日期格式 {format}。利用向下箭头键或按 Enter 键访问迷你日历。",
71
71
  "components.input-date.now": "现在",
72
- "components.input-date.revert": "{label} reverted to previous value.",
72
+ "components.input-date.revert": "{label} 已恢复到前一个值。",
73
73
  "components.input-date.today": "今天",
74
- "components.input-date.useDateFormat": "Use date format {format}.",
74
+ "components.input-date.useDateFormat": "使用日期格式 {format}",
75
75
  "components.input-number.hintInteger": "此字段只接受整数值(无小数)",
76
76
  "components.input-number.hintDecimalDuplicate": "此数中已有一个小数",
77
77
  "components.input-number.hintDecimalIncorrectComma": "要添加小数,请使用逗号“,”字符",
@@ -111,8 +111,8 @@ export default {
111
111
  "components.pageable.info": "{count, plural, other {{countFormatted} 项}}",
112
112
  "components.pageable.info-with-total": "{totalCount, plural, other {{countFormatted}/{totalCountFormatted} 项}}",
113
113
  "components.pager-load-more.status-loading": "加载更多项目",
114
- "components.selection.action-max-hint": "{count, plural, other {Disabled when more than {countFormatted} items are selected}}",
115
- "components.selection.action-required-hint": "选择一个项目后才能执行此操作。",
114
+ "components.selection.action-max-hint": "{count, plural, other {选择的项目超过 {countFormatted} 个时禁用}}",
115
+ "components.selection.action-required-hint": "选择一个项目后才能执行此操作",
116
116
  "components.selection.select-all": "全选",
117
117
  "components.selection.select-all-items": "选择全部 {count} 个项目",
118
118
  "components.selection.selected": "已选 {count}",
package/lang/zh-tw.js CHANGED
@@ -32,8 +32,8 @@ export default {
32
32
  "components.filter-dimension-set-date-text-value.textMonths": "過去 {num} 個月",
33
33
  "components.filter-dimension-set-date-time-range-value.label": "{text},展開以選擇日期",
34
34
  "components.filter-dimension-set-date-time-range-value.valueTextRange": "{startValue} 到 {endValue}",
35
- "components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "開始日期:{startValue}",
36
- "components.filter-dimension-set-date-time-range-value.valueTextRangeEndOnly": "結束日期:{endValue}",
35
+ "components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "{startValue} 之後",
36
+ "components.filter-dimension-set-date-time-range-value.valueTextRangeEndOnly": "{endValue} 之前",
37
37
  "components.filter-dimension-set-date-time-range-value.text": "自訂日期範圍",
38
38
  "components.form-element.defaultError": "{label} 無效",
39
39
  "components.form-element.defaultFieldLabel": "欄位",
@@ -69,9 +69,9 @@ export default {
69
69
  "components.input-date.errorOutsideRange": "日期必須介於 {minDate} 與 {maxDate} 之間",
70
70
  "components.input-date.openInstructions": "使用日期格式 {format}。按向下箭頭,或按下「Enter」以存取迷你行事曆。",
71
71
  "components.input-date.now": "立即",
72
- "components.input-date.revert": "{label} reverted to previous value.",
72
+ "components.input-date.revert": "{label} 已還原為先前的值。",
73
73
  "components.input-date.today": "今天",
74
- "components.input-date.useDateFormat": "Use date format {format}.",
74
+ "components.input-date.useDateFormat": "使用日期格式 {format}",
75
75
  "components.input-number.hintInteger": "此欄位僅接受整數值 (無小數位數)",
76
76
  "components.input-number.hintDecimalDuplicate": "這個數字已經有一個小數位數",
77
77
  "components.input-number.hintDecimalIncorrectComma": "若要新增小數位數,請使用逗號「,」字元",
@@ -111,8 +111,8 @@ export default {
111
111
  "components.pageable.info": "{count, plural, other {{countFormatted} 個項目}}",
112
112
  "components.pageable.info-with-total": "{totalCount, plural, other {{countFormatted} 項,共 {totalCountFormatted} 項}}",
113
113
  "components.pager-load-more.status-loading": "正在載入更多項目",
114
- "components.selection.action-max-hint": "{count, plural, other {Disabled when more than {countFormatted} items are selected}}",
115
- "components.selection.action-required-hint": "選取項目以執行此動作。",
114
+ "components.selection.action-max-hint": "{count, plural, other {選取超過 {countFormatted} 個項目時即停用}}",
115
+ "components.selection.action-required-hint": "選取項目以執行此動作",
116
116
  "components.selection.select-all": "全選",
117
117
  "components.selection.select-all-items": "選取所有 {count} 個項目",
118
118
  "components.selection.selected": "已選取 {count} 個",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brightspace-ui/core",
3
- "version": "3.76.1",
3
+ "version": "3.77.0",
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",