@brightspace-ui/core 3.237.6 → 3.239.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/backdrop/backdrop-dirty-overlay.js +77 -0
- package/components/backdrop/backdrop-loading.js +103 -21
- package/components/colors/colors.js +2 -0
- package/components/table/demo/table-test.js +13 -9
- package/components/table/table-wrapper.js +42 -7
- package/components/tabs/tab-mixin.js +6 -1
- package/components/tabs/tabs.js +1 -0
- package/custom-elements.json +144 -29
- package/helpers/dom.js +1 -1
- package/lang/ar.js +3 -3
- package/lang/ca.js +245 -0
- package/lang/cy.js +2 -2
- package/lang/da.js +2 -2
- package/lang/de.js +2 -2
- package/lang/es-es.js +2 -2
- package/lang/es.js +2 -2
- package/lang/fr-fr.js +2 -2
- package/lang/fr.js +2 -2
- package/lang/haw.js +2 -2
- package/lang/hi.js +2 -2
- package/lang/ja.js +2 -2
- package/lang/ko.js +2 -2
- package/lang/mi.js +2 -2
- package/lang/nl.js +2 -2
- package/lang/pt.js +2 -2
- package/lang/sv.js +2 -2
- package/lang/th.js +2 -2
- package/lang/tr.js +2 -2
- package/lang/vi.js +2 -2
- package/lang/zh-cn.js +2 -2
- package/lang/zh-tw.js +2 -2
- package/mixins/property-required/property-required-mixin.js +2 -1
- package/package.json +2 -2
package/custom-elements.json
CHANGED
|
@@ -186,6 +186,43 @@
|
|
|
186
186
|
}
|
|
187
187
|
]
|
|
188
188
|
},
|
|
189
|
+
{
|
|
190
|
+
"name": "d2l-backdrop-dirty-overlay",
|
|
191
|
+
"path": "./components/backdrop/backdrop-dirty-overlay.js",
|
|
192
|
+
"description": "The `d2l-backdrop-dirty-overlay` component is used to render a dialog with text and an action over another element that needs to be refreshed after user input.",
|
|
193
|
+
"attributes": [
|
|
194
|
+
{
|
|
195
|
+
"name": "description",
|
|
196
|
+
"description": "The text displayed on the dirty state overlay.",
|
|
197
|
+
"type": "string"
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"name": "action",
|
|
201
|
+
"description": "The text displayed on the button of the dirty state overlay when the 'dirty' dataState is set.",
|
|
202
|
+
"type": "string"
|
|
203
|
+
}
|
|
204
|
+
],
|
|
205
|
+
"properties": [
|
|
206
|
+
{
|
|
207
|
+
"name": "description",
|
|
208
|
+
"attribute": "description",
|
|
209
|
+
"description": "The text displayed on the dirty state overlay.",
|
|
210
|
+
"type": "string"
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"name": "action",
|
|
214
|
+
"attribute": "action",
|
|
215
|
+
"description": "The text displayed on the button of the dirty state overlay when the 'dirty' dataState is set.",
|
|
216
|
+
"type": "string"
|
|
217
|
+
}
|
|
218
|
+
],
|
|
219
|
+
"events": [
|
|
220
|
+
{
|
|
221
|
+
"name": "d2l-backdrop-dirty-overlay-action",
|
|
222
|
+
"description": "Dispatched when the action button on the overlay is clicked"
|
|
223
|
+
}
|
|
224
|
+
]
|
|
225
|
+
},
|
|
189
226
|
{
|
|
190
227
|
"name": "d2l-backdrop-loading",
|
|
191
228
|
"path": "./components/backdrop/backdrop-loading.js",
|
|
@@ -194,13 +231,23 @@
|
|
|
194
231
|
{
|
|
195
232
|
"name": "for",
|
|
196
233
|
"description": "Used to identify content that the backdrop should make inert",
|
|
197
|
-
"type": "
|
|
234
|
+
"type": "string"
|
|
198
235
|
},
|
|
199
236
|
{
|
|
200
|
-
"name": "
|
|
201
|
-
"description": "
|
|
202
|
-
"type": "
|
|
203
|
-
|
|
237
|
+
"name": "dirty-text",
|
|
238
|
+
"description": "The text displayed on the dirty state overlay when the 'dirty' dataState is set.",
|
|
239
|
+
"type": "string"
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
"name": "dirty-button-text",
|
|
243
|
+
"description": "The text displayed on the button of the dirty state overlay when the 'dirty' dataState is set.",
|
|
244
|
+
"type": "string"
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
"name": "dataState",
|
|
248
|
+
"description": "The state of data in the element being overlaid. Set to 'clean' when the data represents the user's latest selections, 'dirty' when the data does not represent the user's latest selections, and 'loading' if the data is being actively refreshed",
|
|
249
|
+
"type": "'clean'|'dirty'|'loading'",
|
|
250
|
+
"default": "\"clean\""
|
|
204
251
|
}
|
|
205
252
|
],
|
|
206
253
|
"properties": [
|
|
@@ -208,14 +255,26 @@
|
|
|
208
255
|
"name": "for",
|
|
209
256
|
"attribute": "for",
|
|
210
257
|
"description": "Used to identify content that the backdrop should make inert",
|
|
211
|
-
"type": "
|
|
258
|
+
"type": "string"
|
|
212
259
|
},
|
|
213
260
|
{
|
|
214
|
-
"name": "
|
|
215
|
-
"attribute": "
|
|
216
|
-
"description": "
|
|
217
|
-
"type": "
|
|
218
|
-
|
|
261
|
+
"name": "dirtyText",
|
|
262
|
+
"attribute": "dirty-text",
|
|
263
|
+
"description": "The text displayed on the dirty state overlay when the 'dirty' dataState is set.",
|
|
264
|
+
"type": "string"
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
"name": "dirtyButtonText",
|
|
268
|
+
"attribute": "dirty-button-text",
|
|
269
|
+
"description": "The text displayed on the button of the dirty state overlay when the 'dirty' dataState is set.",
|
|
270
|
+
"type": "string"
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
"name": "dataState",
|
|
274
|
+
"attribute": "dataState",
|
|
275
|
+
"description": "The state of data in the element being overlaid. Set to 'clean' when the data represents the user's latest selections, 'dirty' when the data does not represent the user's latest selections, and 'loading' if the data is being actively refreshed",
|
|
276
|
+
"type": "'clean'|'dirty'|'loading'",
|
|
277
|
+
"default": "\"clean\""
|
|
219
278
|
}
|
|
220
279
|
]
|
|
221
280
|
},
|
|
@@ -14176,10 +14235,20 @@
|
|
|
14176
14235
|
"default": "\"default\""
|
|
14177
14236
|
},
|
|
14178
14237
|
{
|
|
14179
|
-
"name": "
|
|
14180
|
-
"description": "
|
|
14181
|
-
"type": "
|
|
14182
|
-
"default": "
|
|
14238
|
+
"name": "dataState",
|
|
14239
|
+
"description": "The state of data in the table. Set to 'clean' when the data represents the user's latest selections, 'dirty' when the data does not represent the user's latest selections, and 'loading' if the data is being actively refreshed",
|
|
14240
|
+
"type": "'clean'|'dirty'|'loading'",
|
|
14241
|
+
"default": "\"clean\""
|
|
14242
|
+
},
|
|
14243
|
+
{
|
|
14244
|
+
"name": "dirty-text",
|
|
14245
|
+
"description": "The text displayed on the dirty state overlay when the 'dirty' dataState is set.",
|
|
14246
|
+
"type": "string"
|
|
14247
|
+
},
|
|
14248
|
+
{
|
|
14249
|
+
"name": "dirty-button-text",
|
|
14250
|
+
"description": "The text displayed on the button dirty state overlay when the 'dirty' dataState is set.",
|
|
14251
|
+
"type": "string"
|
|
14183
14252
|
},
|
|
14184
14253
|
{
|
|
14185
14254
|
"name": "item-count",
|
|
@@ -14258,11 +14327,23 @@
|
|
|
14258
14327
|
"default": "\"default\""
|
|
14259
14328
|
},
|
|
14260
14329
|
{
|
|
14261
|
-
"name": "
|
|
14262
|
-
"attribute": "
|
|
14263
|
-
"description": "
|
|
14264
|
-
"type": "
|
|
14265
|
-
"default": "
|
|
14330
|
+
"name": "dataState",
|
|
14331
|
+
"attribute": "dataState",
|
|
14332
|
+
"description": "The state of data in the table. Set to 'clean' when the data represents the user's latest selections, 'dirty' when the data does not represent the user's latest selections, and 'loading' if the data is being actively refreshed",
|
|
14333
|
+
"type": "'clean'|'dirty'|'loading'",
|
|
14334
|
+
"default": "\"clean\""
|
|
14335
|
+
},
|
|
14336
|
+
{
|
|
14337
|
+
"name": "dirtyText",
|
|
14338
|
+
"attribute": "dirty-text",
|
|
14339
|
+
"description": "The text displayed on the dirty state overlay when the 'dirty' dataState is set.",
|
|
14340
|
+
"type": "string"
|
|
14341
|
+
},
|
|
14342
|
+
{
|
|
14343
|
+
"name": "dirtyButtonText",
|
|
14344
|
+
"attribute": "dirty-button-text",
|
|
14345
|
+
"description": "The text displayed on the button dirty state overlay when the 'dirty' dataState is set.",
|
|
14346
|
+
"type": "string"
|
|
14266
14347
|
},
|
|
14267
14348
|
{
|
|
14268
14349
|
"name": "itemCount",
|
|
@@ -14283,6 +14364,12 @@
|
|
|
14283
14364
|
"default": "false"
|
|
14284
14365
|
}
|
|
14285
14366
|
],
|
|
14367
|
+
"events": [
|
|
14368
|
+
{
|
|
14369
|
+
"name": "d2l-table-dirty-button-clicked",
|
|
14370
|
+
"description": "Dispatched when the action button on the dirty overlay is clicked"
|
|
14371
|
+
}
|
|
14372
|
+
],
|
|
14286
14373
|
"slots": [
|
|
14287
14374
|
{
|
|
14288
14375
|
"name": "",
|
|
@@ -14600,10 +14687,20 @@
|
|
|
14600
14687
|
"default": "\"default\""
|
|
14601
14688
|
},
|
|
14602
14689
|
{
|
|
14603
|
-
"name": "
|
|
14604
|
-
"description": "
|
|
14605
|
-
"type": "
|
|
14606
|
-
"default": "
|
|
14690
|
+
"name": "dataState",
|
|
14691
|
+
"description": "The state of data in the table. Set to 'clean' when the data represents the user's latest selections, 'dirty' when the data does not represent the user's latest selections, and 'loading' if the data is being actively refreshed",
|
|
14692
|
+
"type": "'clean'|'dirty'|'loading'",
|
|
14693
|
+
"default": "\"clean\""
|
|
14694
|
+
},
|
|
14695
|
+
{
|
|
14696
|
+
"name": "dirty-text",
|
|
14697
|
+
"description": "The text displayed on the dirty state overlay when the 'dirty' dataState is set.",
|
|
14698
|
+
"type": "string"
|
|
14699
|
+
},
|
|
14700
|
+
{
|
|
14701
|
+
"name": "dirty-button-text",
|
|
14702
|
+
"description": "The text displayed on the button dirty state overlay when the 'dirty' dataState is set.",
|
|
14703
|
+
"type": "string"
|
|
14607
14704
|
},
|
|
14608
14705
|
{
|
|
14609
14706
|
"name": "item-count",
|
|
@@ -14647,11 +14744,23 @@
|
|
|
14647
14744
|
"default": "\"default\""
|
|
14648
14745
|
},
|
|
14649
14746
|
{
|
|
14650
|
-
"name": "
|
|
14651
|
-
"attribute": "
|
|
14652
|
-
"description": "
|
|
14653
|
-
"type": "
|
|
14654
|
-
"default": "
|
|
14747
|
+
"name": "dataState",
|
|
14748
|
+
"attribute": "dataState",
|
|
14749
|
+
"description": "The state of data in the table. Set to 'clean' when the data represents the user's latest selections, 'dirty' when the data does not represent the user's latest selections, and 'loading' if the data is being actively refreshed",
|
|
14750
|
+
"type": "'clean'|'dirty'|'loading'",
|
|
14751
|
+
"default": "\"clean\""
|
|
14752
|
+
},
|
|
14753
|
+
{
|
|
14754
|
+
"name": "dirtyText",
|
|
14755
|
+
"attribute": "dirty-text",
|
|
14756
|
+
"description": "The text displayed on the dirty state overlay when the 'dirty' dataState is set.",
|
|
14757
|
+
"type": "string"
|
|
14758
|
+
},
|
|
14759
|
+
{
|
|
14760
|
+
"name": "dirtyButtonText",
|
|
14761
|
+
"attribute": "dirty-button-text",
|
|
14762
|
+
"description": "The text displayed on the button dirty state overlay when the 'dirty' dataState is set.",
|
|
14763
|
+
"type": "string"
|
|
14655
14764
|
},
|
|
14656
14765
|
{
|
|
14657
14766
|
"name": "itemCount",
|
|
@@ -14672,6 +14781,12 @@
|
|
|
14672
14781
|
"default": "false"
|
|
14673
14782
|
}
|
|
14674
14783
|
],
|
|
14784
|
+
"events": [
|
|
14785
|
+
{
|
|
14786
|
+
"name": "d2l-table-dirty-button-clicked",
|
|
14787
|
+
"description": "Dispatched when the action button on the dirty overlay is clicked"
|
|
14788
|
+
}
|
|
14789
|
+
],
|
|
14675
14790
|
"slots": [
|
|
14676
14791
|
{
|
|
14677
14792
|
"name": "",
|
package/helpers/dom.js
CHANGED
|
@@ -215,7 +215,7 @@ export function isVisible(node, { checkAncestors = true } = {}) {
|
|
|
215
215
|
|
|
216
216
|
if (!node.host) {
|
|
217
217
|
if (node.style === undefined) return true;
|
|
218
|
-
if (node.style.display === 'none')
|
|
218
|
+
if (node.style.display === 'none') return false;
|
|
219
219
|
if (node.style.visibility === 'hidden') return false;
|
|
220
220
|
|
|
221
221
|
const computedStyle = window.getComputedStyle(node, null);
|
package/lang/ar.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
"components.alert.close": "إغلاق التنبيه",
|
|
3
|
-
"components.backdrop-loading.loadingAnnouncement": "
|
|
4
|
-
"components.backdrop-loading.loadingCompleteAnnouncement": "
|
|
3
|
+
"components.backdrop-loading.loadingAnnouncement": "جارٍ التحميل",
|
|
4
|
+
"components.backdrop-loading.loadingCompleteAnnouncement": "اكتمل التحميل.",
|
|
5
5
|
"components.breadcrumbs.breadcrumb": "مسار التنقل",
|
|
6
6
|
"components.button-add.addItem": "إضافة عنصر",
|
|
7
7
|
"components.button-copy.copied": "تم النسخ!",
|
|
@@ -137,7 +137,7 @@ export default {
|
|
|
137
137
|
"components.list-item-drag-handle.keyboard": "قم بإعادة ترتيب العنصر، الموضع الحالي {currentPosition} من {size}. لنقل هذا العنصر، اضغط على سهما لأعلى أو لأسفل.",
|
|
138
138
|
"components.list-item-drag-handle-tooltip.enter-desc": "تبديل وضع إعادة ترتيب لوحة المفاتيح.",
|
|
139
139
|
"components.list-item-drag-handle-tooltip.enter-key": "إدخال",
|
|
140
|
-
"components.list-item-drag-handle-tooltip.left-right-desc": "
|
|
140
|
+
"components.list-item-drag-handle-tooltip.left-right-desc": "غيِّر مستوى التداخل.",
|
|
141
141
|
"components.list-item-drag-handle-tooltip.left-right-key": "يسار/يمين",
|
|
142
142
|
"components.list-item-drag-handle-tooltip.title": "عناصر التحكم بلوحة المفاتيح لإعادة الترتيب:",
|
|
143
143
|
"components.list-item-drag-handle-tooltip.up-down-desc": "نقل المادة إلى الأعلى أو الأسفل في القائمة.",
|
package/lang/ca.js
ADDED
|
@@ -0,0 +1,245 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"components.alert.close": "Close Alert",
|
|
3
|
+
"components.backdrop-loading.loadingAnnouncement": "Loading.",
|
|
4
|
+
"components.backdrop-loading.loadingCompleteAnnouncement": "Loading Complete.",
|
|
5
|
+
"components.breadcrumbs.breadcrumb": "Breadcrumb",
|
|
6
|
+
"components.button-add.addItem": "Add Item",
|
|
7
|
+
"components.button-copy.copied": "Copied!",
|
|
8
|
+
"components.button-copy.error": "Copy failed. Try again, or try copying manually.",
|
|
9
|
+
"components.button-split.otherOptions": "Other Options",
|
|
10
|
+
"components.calendar.hasEvents": "Has Events.",
|
|
11
|
+
"components.calendar.notSelected": "Not Selected.",
|
|
12
|
+
"components.calendar.selected": "Selected.",
|
|
13
|
+
"components.calendar.show": "Show {month}",
|
|
14
|
+
"components.count-badge.plus": "{number}+",
|
|
15
|
+
"components.dialog.close": "Close this dialog",
|
|
16
|
+
"components.dialog.critical": "Critical!",
|
|
17
|
+
"components.dropdown.close": "Close",
|
|
18
|
+
"components.filter.activeFilters": "Active Filters:",
|
|
19
|
+
"components.filter.additionalContentTooltip": "Use <b>left/right arrow keys</b> to move focus inside this list item",
|
|
20
|
+
"components.filter.clear": "Clear",
|
|
21
|
+
"components.filter.clearAll": "Clear All",
|
|
22
|
+
"components.filter.clearAllAnnounce": "Clearing all filters",
|
|
23
|
+
"components.filter.clearAllAnnounceOverride": "Clearing all filters for: {filterText}",
|
|
24
|
+
"components.filter.clearAllDescription": "Clear all filters",
|
|
25
|
+
"components.filter.clearAllDescriptionOverride": "Clear all filters for: {filterText}",
|
|
26
|
+
"components.filter.clearAnnounce": "Clearing filters for: {filterName}",
|
|
27
|
+
"components.filter.clearDescription": "Clear filters for: {filterName}",
|
|
28
|
+
"components.filter.filterCountDescription":
|
|
29
|
+
`{number, plural,
|
|
30
|
+
=0 {No filters applied.}
|
|
31
|
+
one {{number} filter applied.}
|
|
32
|
+
other {{number} filters applied.}
|
|
33
|
+
}`,
|
|
34
|
+
"components.filter.filters": "Filters",
|
|
35
|
+
"components.filter.loading": "Loading filters",
|
|
36
|
+
"components.filter.noFilters": "No available filters",
|
|
37
|
+
"components.filter.searchResults":
|
|
38
|
+
`{number, plural,
|
|
39
|
+
=0 {No search results}
|
|
40
|
+
one {{number} search result}
|
|
41
|
+
other {{number} search results}
|
|
42
|
+
}`,
|
|
43
|
+
"components.filter.selectedFirstListLabel": "{headerText}. Selected filters appear first.",
|
|
44
|
+
"components.filter.singleDimensionDescription": "Filter by: {filterName}",
|
|
45
|
+
"components.filter-dimension-set-date-text-value.textDays":
|
|
46
|
+
`{num, plural,
|
|
47
|
+
=0 {Today}
|
|
48
|
+
one {Last {num} day}
|
|
49
|
+
other {Last {num} days}
|
|
50
|
+
}`,
|
|
51
|
+
"components.filter-dimension-set-date-text-value.textHours":
|
|
52
|
+
`{num, plural,
|
|
53
|
+
=1 {Last hour}
|
|
54
|
+
other {Last {num} hours}
|
|
55
|
+
}`,
|
|
56
|
+
"components.filter-dimension-set-date-text-value.textMonths": "Last {num} months",
|
|
57
|
+
"components.filter-dimension-set-date-time-range-value.label": "{text}, expand to choose dates",
|
|
58
|
+
"components.filter-dimension-set-date-time-range-value.text": "Custom date range",
|
|
59
|
+
"components.filter-dimension-set-date-time-range-value.valueTextRange": "{startValue} to {endValue}",
|
|
60
|
+
"components.filter-dimension-set-date-time-range-value.valueTextRangeEndOnly": "Before {endValue}",
|
|
61
|
+
"components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "After {startValue}",
|
|
62
|
+
"components.form-element.defaultError": "{label} is invalid",
|
|
63
|
+
"components.form-element.defaultFieldLabel": "Field",
|
|
64
|
+
"components.form-element.input.email.typeMismatch": "Email is not valid",
|
|
65
|
+
"components.form-element.input.number.rangeError":
|
|
66
|
+
`{minExclusive, select,
|
|
67
|
+
true {{maxExclusive, select,
|
|
68
|
+
true {Number must be greater than {min} and less than {max}.}
|
|
69
|
+
other {Number must be greater than {min} and less than or equal to {max}.}
|
|
70
|
+
}}
|
|
71
|
+
other {{maxExclusive, select,
|
|
72
|
+
true {Number must be greater than or equal to {min} and less than {max}.}
|
|
73
|
+
other {Number must be greater than or equal to {min} and less than or equal to {max}.}
|
|
74
|
+
}}
|
|
75
|
+
}`,
|
|
76
|
+
"components.form-element.input.number.rangeOverflow":
|
|
77
|
+
`{maxExclusive, select,
|
|
78
|
+
true {Number must be less than {max}.}
|
|
79
|
+
other {Number must be less than or equal to {max}.}
|
|
80
|
+
}`,
|
|
81
|
+
"components.form-element.input.number.rangeUnderflow":
|
|
82
|
+
`{minExclusive, select,
|
|
83
|
+
true {Number must be greater than {min}.}
|
|
84
|
+
other {Number must be greater than or equal to {min}.}
|
|
85
|
+
}`,
|
|
86
|
+
"components.form-element.input.text.tooShort": "{label} must be at least {minlength} characters",
|
|
87
|
+
"components.form-element.input.url.typeMismatch": "URL is not valid",
|
|
88
|
+
"components.form-element.valueMissing": "{label} is required",
|
|
89
|
+
"components.form-error-summary.errorSummary":
|
|
90
|
+
`{count, plural,
|
|
91
|
+
one {There was {count} error found in the information you submitted}
|
|
92
|
+
other {There were {count} errors found in the information you submitted}
|
|
93
|
+
}`,
|
|
94
|
+
"components.form-error-summary.text": "Toggle error details",
|
|
95
|
+
"components.input-color.backgroundColor": "Background Color",
|
|
96
|
+
"components.input-color.foregroundColor": "Foreground Color",
|
|
97
|
+
"components.input-color.none": "None",
|
|
98
|
+
"components.input-date.clear": "Clear",
|
|
99
|
+
"components.input-date.errorMaxDateOnly": "Date must be before or on {maxDate}",
|
|
100
|
+
"components.input-date.errorMinDateOnly": "Date must be on or after {minDate}",
|
|
101
|
+
"components.input-date.errorOutsideRange": "Date must be between {minDate} and {maxDate}",
|
|
102
|
+
"components.input-date.now": "Now",
|
|
103
|
+
"components.input-date.openInstructions": "Use date format {format}. Arrow down or press enter to access mini-calendar.",
|
|
104
|
+
"components.input-date.revert": "{label} reverted to previous value.",
|
|
105
|
+
"components.input-date.today": "Today",
|
|
106
|
+
"components.input-date.useDateFormat": "Use date format {format}.",
|
|
107
|
+
"components.input-date-range.endDate": "End Date",
|
|
108
|
+
"components.input-date-range.errorBadInput": "{startLabel} must be before {endLabel}",
|
|
109
|
+
"components.input-date-range.interactive-label": "Date range input",
|
|
110
|
+
"components.input-date-range.startDate": "Start Date",
|
|
111
|
+
"components.input-date-time.date": "Date",
|
|
112
|
+
"components.input-date-time.errorMaxDateOnly": "Date must be before or on {maxDate}",
|
|
113
|
+
"components.input-date-time.errorMinDateOnly": "Date must be on or after {minDate}",
|
|
114
|
+
"components.input-date-time.errorOutsideRange": "Date must be between {minDate} and {maxDate}",
|
|
115
|
+
"components.input-date-time.time": "Time",
|
|
116
|
+
"components.input-date-time-range.endDate": "End Date",
|
|
117
|
+
"components.input-date-time-range.errorBadInput": "{startLabel} must be before {endLabel}",
|
|
118
|
+
"components.input-date-time-range.interactive-label": "Date and time range input",
|
|
119
|
+
"components.input-date-time-range.startDate": "Start Date",
|
|
120
|
+
"components.input-date-time-range-to.to": "to",
|
|
121
|
+
"components.input-number.hintDecimalDuplicate": "There’s already a decimal in this number",
|
|
122
|
+
"components.input-number.hintDecimalIncorrectComma": "To add a decimal use the comma “,” character",
|
|
123
|
+
"components.input-number.hintDecimalIncorrectPeriod": "To add a decimal use the period “.” character",
|
|
124
|
+
"components.input-number.hintInteger": "This field only accepts integer values (no decimals)",
|
|
125
|
+
"components.input-search.clear": "Clear Search",
|
|
126
|
+
"components.input-search.defaultPlaceholder": "Search...",
|
|
127
|
+
"components.input-search.search": "Search",
|
|
128
|
+
"components.input-time-range.endTime": "End Time",
|
|
129
|
+
"components.input-time-range.errorBadInput": "{startLabel} must be before {endLabel}",
|
|
130
|
+
"components.input-time-range.startTime": "Start Time",
|
|
131
|
+
"components.interactive.instructions": "Press Enter to interact, Escape to exit",
|
|
132
|
+
"components.link.open-in-new-window": "Opens in a new window.",
|
|
133
|
+
"components.list.keyboard": "Use <b>arrow keys</b> to move focus inside this list, or <b>page up/down</b> to move up or down by 5",
|
|
134
|
+
"components.list-controls.label": "Actions for list",
|
|
135
|
+
"components.list-item.addItem": "Add Item",
|
|
136
|
+
"components.list-item-drag-handle.default": "Reorder item action for {name}",
|
|
137
|
+
"components.list-item-drag-handle.keyboard": "Reorder item, current position {currentPosition} out of {size}. To move this item, press up or down arrows.",
|
|
138
|
+
"components.list-item-drag-handle-tooltip.enter-desc": "Toggle keyboard reorder mode.",
|
|
139
|
+
"components.list-item-drag-handle-tooltip.enter-key": "Enter",
|
|
140
|
+
"components.list-item-drag-handle-tooltip.left-right-desc": "Change the nesting level.",
|
|
141
|
+
"components.list-item-drag-handle-tooltip.left-right-key": "Left/Right",
|
|
142
|
+
"components.list-item-drag-handle-tooltip.title": "Keyboard Controls for Reordering:",
|
|
143
|
+
"components.list-item-drag-handle-tooltip.up-down-desc": "Move item up or down in the list.",
|
|
144
|
+
"components.list-item-drag-handle-tooltip.up-down-key": "Up/Down",
|
|
145
|
+
"components.menu-item-return.return": "Return to previous menu.",
|
|
146
|
+
"components.menu-item-return.returnCurrentlyShowing": "Return to previous menu. You are viewing {menuTitle}.",
|
|
147
|
+
"components.meter-mixin.commaSeperatedAria": "{term1}, {term2}",
|
|
148
|
+
"components.meter-mixin.fraction": "{x}∕{y}",
|
|
149
|
+
"components.meter-mixin.fractionAria": "{x} out of {y}",
|
|
150
|
+
"components.meter-mixin.progressIndicator": "Progress Indicator",
|
|
151
|
+
"components.more-less.less": "less",
|
|
152
|
+
"components.more-less.more": "more",
|
|
153
|
+
"components.object-property-list.item-placeholder-text": "Placeholder Item",
|
|
154
|
+
"components.overflow-group.moreActions": "More Actions",
|
|
155
|
+
"components.pageable.info":
|
|
156
|
+
`{count, plural,
|
|
157
|
+
one {{countFormatted} item}
|
|
158
|
+
other {{countFormatted} items}
|
|
159
|
+
}`,
|
|
160
|
+
"components.pageable.info-with-total":
|
|
161
|
+
`{totalCount, plural,
|
|
162
|
+
one {{countFormatted} of {totalCountFormatted} item}
|
|
163
|
+
other {{countFormatted} of {totalCountFormatted} items}
|
|
164
|
+
}`,
|
|
165
|
+
"components.pager-load-more.action": "Load More",
|
|
166
|
+
"components.pager-load-more.action-with-page-size": "Load {count} More",
|
|
167
|
+
"components.pager-load-more.status-loading": "Loading more items",
|
|
168
|
+
"components.scroll-wrapper.scroll-left": "Scroll left",
|
|
169
|
+
"components.scroll-wrapper.scroll-right": "Scroll right",
|
|
170
|
+
"components.selection.action-max-hint":
|
|
171
|
+
`{count, plural,
|
|
172
|
+
one {Disabled when more than {countFormatted} item is selected}
|
|
173
|
+
other {Disabled when more than {countFormatted} items are selected}
|
|
174
|
+
}`,
|
|
175
|
+
"components.selection.action-required-hint": "Select an item to perform this action",
|
|
176
|
+
"components.selection.select-all": "Select All",
|
|
177
|
+
"components.selection.select-all-items":
|
|
178
|
+
`{count, plural,
|
|
179
|
+
=1 {Select Item}
|
|
180
|
+
one {Select All {countFormatted} Item}
|
|
181
|
+
other {Select All {countFormatted} Items}
|
|
182
|
+
}`,
|
|
183
|
+
"components.selection.selected": "{count} selected",
|
|
184
|
+
"components.selection.selected-plus": "{count}+ selected",
|
|
185
|
+
"components.selection-controls.label": "Actions for selection",
|
|
186
|
+
"components.sort.label": "Sort",
|
|
187
|
+
"components.sort.text": "Sort: {selectedItemText}",
|
|
188
|
+
"components.switch.conditions": "Conditions must be met",
|
|
189
|
+
"components.switch.hidden": "Hidden",
|
|
190
|
+
"components.switch.visible": "Visible",
|
|
191
|
+
"components.switch.visibleWithPeriod": "Visible.",
|
|
192
|
+
"components.table-col-sort-button.addSortOrder": "Select to add sort order",
|
|
193
|
+
"components.table-col-sort-button.changeSortOrder": "Select to change sort order",
|
|
194
|
+
"components.table-col-sort-button.title":
|
|
195
|
+
`{sourceType, select,
|
|
196
|
+
dates {{direction, select,
|
|
197
|
+
desc {Sorted new to old}
|
|
198
|
+
other {Sorted old to new}
|
|
199
|
+
}}
|
|
200
|
+
numbers {{direction, select,
|
|
201
|
+
desc {Sorted high to low}
|
|
202
|
+
other {Sorted low to high}
|
|
203
|
+
}}
|
|
204
|
+
words {{direction, select,
|
|
205
|
+
desc {Sorted Z to A}
|
|
206
|
+
other {Sorted A to Z}
|
|
207
|
+
}}
|
|
208
|
+
value {Sorted {selectedMenuItemText}}
|
|
209
|
+
other {{direction, select,
|
|
210
|
+
desc {Sorted descending}
|
|
211
|
+
other {Sorted ascending}
|
|
212
|
+
}}
|
|
213
|
+
}`,
|
|
214
|
+
"components.table-controls.label": "Actions for table",
|
|
215
|
+
"components.tabs.next": "Scroll Forward",
|
|
216
|
+
"components.tabs.previous": "Scroll Backward",
|
|
217
|
+
"components.tag-list.clear": "Click, press backspace, or press delete key to remove item {value}",
|
|
218
|
+
"components.tag-list.clear-all": "Clear All",
|
|
219
|
+
"components.tag-list.cleared-all": "Removed all tag list items",
|
|
220
|
+
"components.tag-list.cleared-item": "Removed tag list item {value}",
|
|
221
|
+
"components.tag-list.interactive-label": "Tag List, {count} items",
|
|
222
|
+
"components.tag-list.num-hidden": "+ {count} more",
|
|
223
|
+
"components.tag-list.role-description":
|
|
224
|
+
`{count, plural,
|
|
225
|
+
=0 {Tag List with 0 items}
|
|
226
|
+
one {Tag List with {count} item}
|
|
227
|
+
other {Tag List with {count} items}
|
|
228
|
+
}`,
|
|
229
|
+
"components.tag-list.show-less": "Show Less",
|
|
230
|
+
"components.tag-list.show-more-description": "Select to show hidden tag list items",
|
|
231
|
+
"components.tag-list-item.role-description": "Tag",
|
|
232
|
+
"components.tag-list-item.tooltip-arrow-keys": "Arrow Keys",
|
|
233
|
+
"components.tag-list-item.tooltip-arrow-keys-desc": "Move between tags",
|
|
234
|
+
"components.tag-list-item.tooltip-delete-key": "Backspace/Delete",
|
|
235
|
+
"components.tag-list-item.tooltip-delete-key-desc": "Delete the focused tag",
|
|
236
|
+
"components.tag-list-item.tooltip-title": "Keyboard Controls",
|
|
237
|
+
"components.view-switcher.role-description":
|
|
238
|
+
`{count, plural,
|
|
239
|
+
=0 {View Switcher with 0 items}
|
|
240
|
+
one {View Switcher with {count} item}
|
|
241
|
+
other {View Switcher with {count} items}
|
|
242
|
+
}`,
|
|
243
|
+
"templates.primary-secondary.divider": "Secondary panel divider",
|
|
244
|
+
"templates.primary-secondary.secondary-panel": "Secondary panel"
|
|
245
|
+
};
|
package/lang/cy.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
"components.alert.close": "Cau Hysbysiad",
|
|
3
|
-
"components.backdrop-loading.loadingAnnouncement": "
|
|
4
|
-
"components.backdrop-loading.loadingCompleteAnnouncement": "
|
|
3
|
+
"components.backdrop-loading.loadingAnnouncement": "Wrthi’n llwytho.",
|
|
4
|
+
"components.backdrop-loading.loadingCompleteAnnouncement": "Llwytho wedi Gorffen.",
|
|
5
5
|
"components.breadcrumbs.breadcrumb": "Briwsionyn Bara",
|
|
6
6
|
"components.button-add.addItem": "Ychwanegu Eitem",
|
|
7
7
|
"components.button-copy.copied": "Wedi’i gopïo!",
|
package/lang/da.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
"components.alert.close": "Luk besked",
|
|
3
|
-
"components.backdrop-loading.loadingAnnouncement": "
|
|
4
|
-
"components.backdrop-loading.loadingCompleteAnnouncement": "
|
|
3
|
+
"components.backdrop-loading.loadingAnnouncement": "Indlæser.",
|
|
4
|
+
"components.backdrop-loading.loadingCompleteAnnouncement": "Indlæsning fuldført.",
|
|
5
5
|
"components.breadcrumbs.breadcrumb": "Brødkrumme",
|
|
6
6
|
"components.button-add.addItem": "Tilføj element",
|
|
7
7
|
"components.button-copy.copied": "Kopieret!",
|
package/lang/de.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
"components.alert.close": "Benachrichtigung schließen",
|
|
3
|
-
"components.backdrop-loading.loadingAnnouncement": "
|
|
4
|
-
"components.backdrop-loading.loadingCompleteAnnouncement": "
|
|
3
|
+
"components.backdrop-loading.loadingAnnouncement": "Wird geladen.",
|
|
4
|
+
"components.backdrop-loading.loadingCompleteAnnouncement": "Ladevorgang abgeschlossen.",
|
|
5
5
|
"components.breadcrumbs.breadcrumb": "Brotkrümelnavigation",
|
|
6
6
|
"components.button-add.addItem": "Element hinzufügen",
|
|
7
7
|
"components.button-copy.copied": "Kopiert.",
|
package/lang/es-es.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
"components.alert.close": "Cerrar alerta",
|
|
3
|
-
"components.backdrop-loading.loadingAnnouncement": "
|
|
4
|
-
"components.backdrop-loading.loadingCompleteAnnouncement": "
|
|
3
|
+
"components.backdrop-loading.loadingAnnouncement": "Cargando.",
|
|
4
|
+
"components.backdrop-loading.loadingCompleteAnnouncement": "Carga completa.",
|
|
5
5
|
"components.breadcrumbs.breadcrumb": "Ruta de navegación",
|
|
6
6
|
"components.button-add.addItem": "Agregar elemento",
|
|
7
7
|
"components.button-copy.copied": "¡Copiado!",
|
package/lang/es.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
"components.alert.close": "Cerrar alerta",
|
|
3
|
-
"components.backdrop-loading.loadingAnnouncement": "
|
|
4
|
-
"components.backdrop-loading.loadingCompleteAnnouncement": "
|
|
3
|
+
"components.backdrop-loading.loadingAnnouncement": "Cargando.",
|
|
4
|
+
"components.backdrop-loading.loadingCompleteAnnouncement": "Carga completa.",
|
|
5
5
|
"components.breadcrumbs.breadcrumb": "Ruta de navegación",
|
|
6
6
|
"components.button-add.addItem": "Agregar elemento",
|
|
7
7
|
"components.button-copy.copied": "Copiado.",
|
package/lang/fr-fr.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
"components.alert.close": "Fermer l’alerte",
|
|
3
|
-
"components.backdrop-loading.loadingAnnouncement": "
|
|
4
|
-
"components.backdrop-loading.loadingCompleteAnnouncement": "
|
|
3
|
+
"components.backdrop-loading.loadingAnnouncement": "Chargement.",
|
|
4
|
+
"components.backdrop-loading.loadingCompleteAnnouncement": "Chargement terminé.",
|
|
5
5
|
"components.breadcrumbs.breadcrumb": "Chemin de navigation",
|
|
6
6
|
"components.button-add.addItem": "Ajouter un élément",
|
|
7
7
|
"components.button-copy.copied": "Copie effectuée !",
|
package/lang/fr.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
"components.alert.close": "Fermer l’alerte",
|
|
3
|
-
"components.backdrop-loading.loadingAnnouncement": "
|
|
4
|
-
"components.backdrop-loading.loadingCompleteAnnouncement": "
|
|
3
|
+
"components.backdrop-loading.loadingAnnouncement": "Chargement.",
|
|
4
|
+
"components.backdrop-loading.loadingCompleteAnnouncement": "Chargement terminé.",
|
|
5
5
|
"components.breadcrumbs.breadcrumb": "Chemin de navigation",
|
|
6
6
|
"components.button-add.addItem": "Ajouter un élément",
|
|
7
7
|
"components.button-copy.copied": "Copié!",
|
package/lang/haw.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
"components.alert.close": "Pani i ka makaʻala",
|
|
3
|
-
"components.backdrop-loading.loadingAnnouncement": "
|
|
4
|
-
"components.backdrop-loading.loadingCompleteAnnouncement": "
|
|
3
|
+
"components.backdrop-loading.loadingAnnouncement": "Ke hoʻouka nei.",
|
|
4
|
+
"components.backdrop-loading.loadingCompleteAnnouncement": "Ua pau ka hoʻouka ʻana.",
|
|
5
5
|
"components.breadcrumbs.breadcrumb": "Palapalapala",
|
|
6
6
|
"components.button-add.addItem": "Pākuʻi Mea",
|
|
7
7
|
"components.button-copy.copied": "Kope ʻia!",
|
package/lang/hi.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
"components.alert.close": "अलर्ट बंद करें",
|
|
3
|
-
"components.backdrop-loading.loadingAnnouncement": "
|
|
4
|
-
"components.backdrop-loading.loadingCompleteAnnouncement": "
|
|
3
|
+
"components.backdrop-loading.loadingAnnouncement": "लोड हो रही है।",
|
|
4
|
+
"components.backdrop-loading.loadingCompleteAnnouncement": "लोड करना पूरा हुआ।",
|
|
5
5
|
"components.breadcrumbs.breadcrumb": "ब्रेडक्रंब",
|
|
6
6
|
"components.button-add.addItem": "आइटम जोड़ें",
|
|
7
7
|
"components.button-copy.copied": "कॉपी किया गया!",
|
package/lang/ja.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
"components.alert.close": "アラートを閉じる",
|
|
3
|
-
"components.backdrop-loading.loadingAnnouncement": "
|
|
4
|
-
"components.backdrop-loading.loadingCompleteAnnouncement": "
|
|
3
|
+
"components.backdrop-loading.loadingAnnouncement": "読み込み中。",
|
|
4
|
+
"components.backdrop-loading.loadingCompleteAnnouncement": "読み込みが完了しました。",
|
|
5
5
|
"components.breadcrumbs.breadcrumb": "階層",
|
|
6
6
|
"components.button-add.addItem": "項目の追加",
|
|
7
7
|
"components.button-copy.copied": "コピーできました。",
|
package/lang/ko.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
"components.alert.close": "경보 닫기",
|
|
3
|
-
"components.backdrop-loading.loadingAnnouncement": "
|
|
4
|
-
"components.backdrop-loading.loadingCompleteAnnouncement": "
|
|
3
|
+
"components.backdrop-loading.loadingAnnouncement": "로드 중.",
|
|
4
|
+
"components.backdrop-loading.loadingCompleteAnnouncement": "로드 완료.",
|
|
5
5
|
"components.breadcrumbs.breadcrumb": "이동 경로",
|
|
6
6
|
"components.button-add.addItem": "항목 추가",
|
|
7
7
|
"components.button-copy.copied": "복사 완료!",
|