@brightspace-ui/core 2.11.1 → 2.13.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/dialog/README.md +3 -0
- package/components/dialog/demo/dialog-fullscreen.html +27 -0
- package/components/dialog/demo/dialog-nested.html +27 -1
- package/components/dialog/demo/dialog.html +78 -0
- package/components/dialog/dialog-fullscreen.js +16 -11
- package/components/dialog/dialog-mixin.js +26 -6
- package/components/dialog/dialog-styles.js +19 -13
- package/components/dialog/dialog.js +0 -4
- package/components/html-block/README.md +3 -2
- package/components/html-block/html-block.js +11 -1
- package/components/inputs/demo/input-time-range.html +7 -0
- package/components/tag-list/README.md +11 -2
- package/components/tag-list/demo/tag-list.html +2 -2
- package/components/tag-list/tag-list-item-mixin.js +2 -2
- package/components/tag-list/tag-list.js +18 -20
- package/custom-elements.json +17 -8
- package/lang/ar.js +5 -4
- package/lang/cy.js +5 -4
- package/lang/da.js +5 -4
- package/lang/de.js +5 -4
- package/lang/en.js +5 -4
- package/lang/es-es.js +5 -4
- package/lang/es.js +5 -4
- package/lang/fr-fr.js +6 -5
- package/lang/fr.js +6 -5
- package/lang/hi.js +5 -4
- package/lang/ja.js +5 -4
- package/lang/ko.js +5 -4
- package/lang/nl.js +5 -4
- package/lang/pt.js +4 -3
- package/lang/sv.js +4 -3
- package/lang/tr.js +4 -3
- package/lang/zh-cn.js +4 -3
- package/lang/zh-tw.js +4 -3
- package/package.json +1 -1
|
@@ -32,7 +32,7 @@ class TagList extends LocalizeCoreElement(ArrowKeysMixin(LitElement)) {
|
|
|
32
32
|
static get properties() {
|
|
33
33
|
return {
|
|
34
34
|
/**
|
|
35
|
-
* Enables the option to clear all inner tag list items. The `d2l-tag-list-item-
|
|
35
|
+
* Enables the option to clear all inner tag list items. The `d2l-tag-list-item-clear` event will be dispatched for each list item when the user selects to Clear All. The consumer must handle the actual item deletion.
|
|
36
36
|
*/
|
|
37
37
|
clearable: { type: Boolean },
|
|
38
38
|
/**
|
|
@@ -57,13 +57,9 @@ class TagList extends LocalizeCoreElement(ArrowKeysMixin(LitElement)) {
|
|
|
57
57
|
.tag-list-container {
|
|
58
58
|
display: flex;
|
|
59
59
|
flex-wrap: wrap;
|
|
60
|
-
|
|
60
|
+
gap: 6px;
|
|
61
61
|
padding: 0;
|
|
62
62
|
}
|
|
63
|
-
::slotted(*),
|
|
64
|
-
d2l-button-subtle {
|
|
65
|
-
margin: 6px 6px 0 0;
|
|
66
|
-
}
|
|
67
63
|
::slotted([data-is-chomped]) {
|
|
68
64
|
display: none !important;
|
|
69
65
|
}
|
|
@@ -145,8 +141,9 @@ class TagList extends LocalizeCoreElement(ArrowKeysMixin(LitElement)) {
|
|
|
145
141
|
</d2l-button-subtle>
|
|
146
142
|
` : html`
|
|
147
143
|
<d2l-button-subtle
|
|
148
|
-
class="d2l-tag-list-button"
|
|
144
|
+
class="d2l-tag-list-button d2l-tag-list-button-show-more"
|
|
149
145
|
@click="${this._toggleHiddenTagVisibility}"
|
|
146
|
+
description="${this.localize('components.tag-list.show-more-description')}"
|
|
150
147
|
slim
|
|
151
148
|
text="${this.localize('components.tag-list.num-hidden', { count: hiddenCount })}">
|
|
152
149
|
</d2l-button-subtle>
|
|
@@ -158,7 +155,7 @@ class TagList extends LocalizeCoreElement(ArrowKeysMixin(LitElement)) {
|
|
|
158
155
|
};
|
|
159
156
|
|
|
160
157
|
const list = html`
|
|
161
|
-
<div role="list" class="tag-list-container" aria-
|
|
158
|
+
<div role="list" class="tag-list-container" aria-label="${this.description}" @d2l-tag-list-item-clear="${this._handleItemDeleted}">
|
|
162
159
|
<slot @slotchange="${this._handleSlotChange}"></slot>
|
|
163
160
|
${overflowButton}
|
|
164
161
|
<d2l-button-subtle
|
|
@@ -179,13 +176,12 @@ class TagList extends LocalizeCoreElement(ArrowKeysMixin(LitElement)) {
|
|
|
179
176
|
<div role="application" class="tag-list-outer-container" style="${styleMap(outerContainerStyles)}">
|
|
180
177
|
<d2l-button-subtle aria-hidden="true" slim text="${this.localize('components.tag-list.num-hidden', { count: '##' })}" class="d2l-tag-list-hidden-button"></d2l-button-subtle>
|
|
181
178
|
${this.arrowKeysContainer(list)}
|
|
182
|
-
<div id="d2l-tag-list-description" hidden>${this.description}</div>
|
|
183
179
|
</div>
|
|
184
180
|
`;
|
|
185
181
|
}
|
|
186
182
|
|
|
187
183
|
async arrowKeysFocusablesProvider() {
|
|
188
|
-
return this.
|
|
184
|
+
return this._getVisibleEffectiveChildren();
|
|
189
185
|
}
|
|
190
186
|
|
|
191
187
|
focus() {
|
|
@@ -214,7 +210,7 @@ class TagList extends LocalizeCoreElement(ArrowKeysMixin(LitElement)) {
|
|
|
214
210
|
|
|
215
211
|
for (let i = overflowingIndex; i < this._itemLayouts.length; i++) {
|
|
216
212
|
const itemLayout = this._itemLayouts[i];
|
|
217
|
-
const itemWidth = Math.min(itemLayout.width, this._availableWidth);
|
|
213
|
+
const itemWidth = Math.min(itemLayout.width + MARGIN_TOP_RIGHT, this._availableWidth);
|
|
218
214
|
|
|
219
215
|
if (!isOverflowing && ((showing.width + itemWidth) <= (this._availableWidth + MARGIN_TOP_RIGHT))) {
|
|
220
216
|
showing.width += itemWidth;
|
|
@@ -259,8 +255,6 @@ class TagList extends LocalizeCoreElement(ArrowKeysMixin(LitElement)) {
|
|
|
259
255
|
return {
|
|
260
256
|
isHidden: computedStyles.display === 'none',
|
|
261
257
|
width: Math.ceil(parseFloat(computedStyles.width) || 0)
|
|
262
|
-
+ parseInt(computedStyles.marginRight) || 0
|
|
263
|
-
+ parseInt(computedStyles.marginLeft) || 0
|
|
264
258
|
};
|
|
265
259
|
});
|
|
266
260
|
|
|
@@ -292,8 +286,9 @@ class TagList extends LocalizeCoreElement(ArrowKeysMixin(LitElement)) {
|
|
|
292
286
|
}
|
|
293
287
|
|
|
294
288
|
const showMoreButton = this.shadowRoot.querySelector('.d2l-tag-list-button') || [];
|
|
295
|
-
const clearButton = this.shadowRoot.querySelector('.d2l-tag-list-clear-button') || [];
|
|
296
|
-
|
|
289
|
+
const clearButton = !this.clearable ? [] : (this.shadowRoot.querySelector('.d2l-tag-list-clear-button') || []);
|
|
290
|
+
const items = this._showHiddenTags ? this._items : this._items.slice(0, this._chompIndex);
|
|
291
|
+
return items.concat(showMoreButton).concat(clearButton);
|
|
297
292
|
}
|
|
298
293
|
|
|
299
294
|
_handleClearAll(e) {
|
|
@@ -335,7 +330,7 @@ class TagList extends LocalizeCoreElement(ArrowKeysMixin(LitElement)) {
|
|
|
335
330
|
_handleSlotChange() {
|
|
336
331
|
if (!this._hasResized) return;
|
|
337
332
|
|
|
338
|
-
|
|
333
|
+
setTimeout(async() => {
|
|
339
334
|
this._items = await this._getTagListItems();
|
|
340
335
|
if (!this._items || this._items.length === 0) {
|
|
341
336
|
this._chompIndex = 10000;
|
|
@@ -349,17 +344,20 @@ class TagList extends LocalizeCoreElement(ArrowKeysMixin(LitElement)) {
|
|
|
349
344
|
});
|
|
350
345
|
this._chomp();
|
|
351
346
|
this.requestUpdate();
|
|
352
|
-
});
|
|
347
|
+
}, 40);
|
|
353
348
|
}
|
|
354
349
|
|
|
355
|
-
async _toggleHiddenTagVisibility() {
|
|
350
|
+
async _toggleHiddenTagVisibility(e) {
|
|
356
351
|
this._showHiddenTags = !this._showHiddenTags;
|
|
357
352
|
|
|
358
353
|
if (!this.shadowRoot) return;
|
|
359
354
|
|
|
360
355
|
await this.updateComplete;
|
|
361
|
-
|
|
362
|
-
|
|
356
|
+
if (e.target.classList.contains('d2l-tag-list-button-show-more')) this._items[this._chompIndex].focus();
|
|
357
|
+
else {
|
|
358
|
+
const button = this.shadowRoot.querySelector('.d2l-tag-list-button');
|
|
359
|
+
if (button) button.focus();
|
|
360
|
+
}
|
|
363
361
|
}
|
|
364
362
|
|
|
365
363
|
}
|
package/custom-elements.json
CHANGED
|
@@ -1525,6 +1525,9 @@
|
|
|
1525
1525
|
"name": "d2l-dialog-close",
|
|
1526
1526
|
"description": "Dispatched with the action value when the dialog is closed for any reason"
|
|
1527
1527
|
},
|
|
1528
|
+
{
|
|
1529
|
+
"name": "d2l-dialog-before-close"
|
|
1530
|
+
},
|
|
1528
1531
|
{
|
|
1529
1532
|
"name": "d2l-dialog-open",
|
|
1530
1533
|
"description": "Dispatched when the dialog is opened"
|
|
@@ -1596,6 +1599,9 @@
|
|
|
1596
1599
|
"name": "d2l-dialog-close",
|
|
1597
1600
|
"description": "Dispatched with the action value when the dialog is closed for any reason"
|
|
1598
1601
|
},
|
|
1602
|
+
{
|
|
1603
|
+
"name": "d2l-dialog-before-close"
|
|
1604
|
+
},
|
|
1599
1605
|
{
|
|
1600
1606
|
"name": "d2l-dialog-open",
|
|
1601
1607
|
"description": "Dispatched when the dialog is opened"
|
|
@@ -1697,6 +1703,9 @@
|
|
|
1697
1703
|
"name": "d2l-dialog-close",
|
|
1698
1704
|
"description": "Dispatched with the action value when the dialog is closed for any reason"
|
|
1699
1705
|
},
|
|
1706
|
+
{
|
|
1707
|
+
"name": "d2l-dialog-before-close"
|
|
1708
|
+
},
|
|
1700
1709
|
{
|
|
1701
1710
|
"name": "d2l-dialog-open",
|
|
1702
1711
|
"description": "Dispatched when the dialog is opened"
|
|
@@ -9771,7 +9780,7 @@
|
|
|
9771
9780
|
},
|
|
9772
9781
|
{
|
|
9773
9782
|
"name": "clearable",
|
|
9774
|
-
"description": "Enables the option to clear a tag list item. The `d2l-tag-list-item-
|
|
9783
|
+
"description": "Enables the option to clear a tag list item. The `d2l-tag-list-item-clear` event will be dispatched when the user selects to delete the item. The consumer must handle the actual item deletion.",
|
|
9775
9784
|
"type": "boolean",
|
|
9776
9785
|
"default": "false"
|
|
9777
9786
|
}
|
|
@@ -9786,14 +9795,14 @@
|
|
|
9786
9795
|
{
|
|
9787
9796
|
"name": "clearable",
|
|
9788
9797
|
"attribute": "clearable",
|
|
9789
|
-
"description": "Enables the option to clear a tag list item. The `d2l-tag-list-item-
|
|
9798
|
+
"description": "Enables the option to clear a tag list item. The `d2l-tag-list-item-clear` event will be dispatched when the user selects to delete the item. The consumer must handle the actual item deletion.",
|
|
9790
9799
|
"type": "boolean",
|
|
9791
9800
|
"default": "false"
|
|
9792
9801
|
}
|
|
9793
9802
|
],
|
|
9794
9803
|
"events": [
|
|
9795
9804
|
{
|
|
9796
|
-
"name": "d2l-tag-list-item-
|
|
9805
|
+
"name": "d2l-tag-list-item-clear",
|
|
9797
9806
|
"description": "Dispatched when a user selects to delete a tag list item. The consumer must handle the actual element deletion and focus behaviour if there are no remaining list items."
|
|
9798
9807
|
}
|
|
9799
9808
|
]
|
|
@@ -9809,7 +9818,7 @@
|
|
|
9809
9818
|
},
|
|
9810
9819
|
{
|
|
9811
9820
|
"name": "clearable",
|
|
9812
|
-
"description": "Enables the option to clear all inner tag list items. The `d2l-tag-list-item-
|
|
9821
|
+
"description": "Enables the option to clear all inner tag list items. The `d2l-tag-list-item-clear` event will be dispatched for each list item when the user selects to Clear All. The consumer must handle the actual item deletion.",
|
|
9813
9822
|
"type": "boolean",
|
|
9814
9823
|
"default": "false"
|
|
9815
9824
|
}
|
|
@@ -9824,7 +9833,7 @@
|
|
|
9824
9833
|
{
|
|
9825
9834
|
"name": "clearable",
|
|
9826
9835
|
"attribute": "clearable",
|
|
9827
|
-
"description": "Enables the option to clear all inner tag list items. The `d2l-tag-list-item-
|
|
9836
|
+
"description": "Enables the option to clear all inner tag list items. The `d2l-tag-list-item-clear` event will be dispatched for each list item when the user selects to Clear All. The consumer must handle the actual item deletion.",
|
|
9828
9837
|
"type": "boolean",
|
|
9829
9838
|
"default": "false"
|
|
9830
9839
|
},
|
|
@@ -9850,7 +9859,7 @@
|
|
|
9850
9859
|
},
|
|
9851
9860
|
{
|
|
9852
9861
|
"name": "clearable",
|
|
9853
|
-
"description": "Enables the option to clear a tag list item. The `d2l-tag-list-item-
|
|
9862
|
+
"description": "Enables the option to clear a tag list item. The `d2l-tag-list-item-clear` event will be dispatched when the user selects to delete the item. The consumer must handle the actual item deletion.",
|
|
9854
9863
|
"type": "boolean",
|
|
9855
9864
|
"default": "false"
|
|
9856
9865
|
}
|
|
@@ -9864,14 +9873,14 @@
|
|
|
9864
9873
|
{
|
|
9865
9874
|
"name": "clearable",
|
|
9866
9875
|
"attribute": "clearable",
|
|
9867
|
-
"description": "Enables the option to clear a tag list item. The `d2l-tag-list-item-
|
|
9876
|
+
"description": "Enables the option to clear a tag list item. The `d2l-tag-list-item-clear` event will be dispatched when the user selects to delete the item. The consumer must handle the actual item deletion.",
|
|
9868
9877
|
"type": "boolean",
|
|
9869
9878
|
"default": "false"
|
|
9870
9879
|
}
|
|
9871
9880
|
],
|
|
9872
9881
|
"events": [
|
|
9873
9882
|
{
|
|
9874
|
-
"name": "d2l-tag-list-item-
|
|
9883
|
+
"name": "d2l-tag-list-item-clear",
|
|
9875
9884
|
"description": "Dispatched when a user selects to delete a tag list item. The consumer must handle the actual element deletion and focus behaviour if there are no remaining list items."
|
|
9876
9885
|
}
|
|
9877
9886
|
]
|
package/lang/ar.js
CHANGED
|
@@ -26,13 +26,13 @@ export default {
|
|
|
26
26
|
"components.form-element.defaultError": "{label} غير صالحة.",
|
|
27
27
|
"components.form-element.defaultFieldLabel": "الحقل",
|
|
28
28
|
"components.form-element.input.email.typeMismatch": "البريد الإلكتروني غير صالح",
|
|
29
|
-
"components.form-element.input.number.rangeError": "
|
|
30
|
-
"components.form-element.input.number.rangeOverflow": "
|
|
31
|
-
"components.form-element.input.number.rangeUnderflow": "
|
|
29
|
+
"components.form-element.input.number.rangeError": "{minExclusive, select, true {{maxExclusive, select, true {Number must be greater than {min} and less than {max}.} other {Number must be greater than {min} and less than or equal to {max}.}}} other {{maxExclusive, select, true {Number must be greater than or equal to {min} and less than {max}.} other {Number must be greater than or equal to {min} and less than or equal to {max}.}}}}",
|
|
30
|
+
"components.form-element.input.number.rangeOverflow": "{maxExclusive, select, true {Number must be less than {max}.} other {Number must be less than or equal to {max}.}}",
|
|
31
|
+
"components.form-element.input.number.rangeUnderflow": "{minExclusive, select, true {Number must be greater than {min}.} other {Number must be greater than or equal to {min}.}}",
|
|
32
32
|
"components.form-element.input.text.tooShort": "يجب أن تتألف التسمية {label} من {minlength} من الأحرف على الأقل",
|
|
33
33
|
"components.form-element.input.url.typeMismatch": "عنوان URL غير صالح",
|
|
34
34
|
"components.form-element.valueMissing": "{label} مطلوبة.",
|
|
35
|
-
"components.form-error-summary.errorSummary": "
|
|
35
|
+
"components.form-error-summary.errorSummary": "{count, plural, one {There was 1 error found in the information you submitted} other {There were {count} errors found in the information you submitted}}",
|
|
36
36
|
"components.input-date-range.endDate": "تاريخ الانتهاء",
|
|
37
37
|
"components.input-date-range.errorBadInput": "يجب أن يكون تاريخ {startLabel} قبل {endLabel}",
|
|
38
38
|
"components.input-date-range.startDate": "تاريخ البدء",
|
|
@@ -101,6 +101,7 @@ export default {
|
|
|
101
101
|
"components.tag-list.cleared-item": "Removed tag list item {value}",
|
|
102
102
|
"components.tag-list.num-hidden": "+ {count} more",
|
|
103
103
|
"components.tag-list.show-less": "Show Less",
|
|
104
|
+
"components.tag-list.show-more-description": "Select to show hidden tag list items",
|
|
104
105
|
"templates.primary-secondary.adjustableSplitView": "تقسيم العرض القابل للضبط",
|
|
105
106
|
"templates.primary-secondary.keyboardHorizontal": "السهم المتّجه إلى اليسار أو إلى اليمين لضبط حجم لوحات العرض",
|
|
106
107
|
"templates.primary-secondary.keyboardVertical": "السهم المتّجه إلى الأعلى أو إلى الأسفل لضبط حجم لوحات العرض"
|
package/lang/cy.js
CHANGED
|
@@ -26,13 +26,13 @@ export default {
|
|
|
26
26
|
"components.form-element.defaultError": "Mae {label} yn annilys.",
|
|
27
27
|
"components.form-element.defaultFieldLabel": "Maes",
|
|
28
28
|
"components.form-element.input.email.typeMismatch": "Nid yw'r e-bost yn ddilys",
|
|
29
|
-
"components.form-element.input.number.rangeError": "
|
|
30
|
-
"components.form-element.input.number.rangeOverflow": "Rhaid i'r nifer fod
|
|
31
|
-
"components.form-element.input.number.rangeUnderflow": "Rhaid i'r nifer fod
|
|
29
|
+
"components.form-element.input.number.rangeError": "{minExclusive, select, true {{maxExclusive, select, true {Number must be greater than {min} and less than {max}.} other {Number must be greater than {min} and less than or equal to {max}.}}} other {{maxExclusive, select, true {Number must be greater than or equal to {min} and less than {max}.} other {Number must be greater than or equal to {min} and less than or equal to {max}.}}}}",
|
|
30
|
+
"components.form-element.input.number.rangeOverflow": "{maxExclusive, select, true {Rhaid i'r nifer fod yn llai na {max}.} other {Rhaid i'r nifer fod yn llai na neu’n hafal i {max}.}}",
|
|
31
|
+
"components.form-element.input.number.rangeUnderflow": "{minExclusive, select, true {Rhaid i'r nifer fod yn fwy na {min}.} other {Rhaid i'r nifer fod yn fwy na neu'n hafal i {min}.}}",
|
|
32
32
|
"components.form-element.input.text.tooShort": "Rhaid i {label} fod o leiaf {minlength} nod",
|
|
33
33
|
"components.form-element.input.url.typeMismatch": "Nid yw'r URL yn ddilys.",
|
|
34
34
|
"components.form-element.valueMissing": "Mae angen {label}.",
|
|
35
|
-
"components.form-error-summary.errorSummary": "
|
|
35
|
+
"components.form-error-summary.errorSummary": "{count, plural, one {Bu 1 gwall yn y wybodaeth a gyflwynwyd gennych} other {Bu {count} o wallau yn y wybodaeth a gyflwynwyd gennych}}",
|
|
36
36
|
"components.input-date-range.endDate": "Dyddiad Dod i Ben",
|
|
37
37
|
"components.input-date-range.errorBadInput": "Rhaid i {startLabel} fod cyn {endLabel}",
|
|
38
38
|
"components.input-date-range.startDate": "Dyddiad Dechrau",
|
|
@@ -101,6 +101,7 @@ export default {
|
|
|
101
101
|
"components.tag-list.cleared-item": "Removed tag list item {value}",
|
|
102
102
|
"components.tag-list.num-hidden": "+ {count} more",
|
|
103
103
|
"components.tag-list.show-less": "Show Less",
|
|
104
|
+
"components.tag-list.show-more-description": "Select to show hidden tag list items",
|
|
104
105
|
"templates.primary-secondary.adjustableSplitView": "Gwedd Hollt Addasadwy",
|
|
105
106
|
"templates.primary-secondary.keyboardHorizontal": "Saeth i'r chwith neu'r dde i addasu maint y paneli gweld",
|
|
106
107
|
"templates.primary-secondary.keyboardVertical": "Saeth i fyny neu i lawr i addasu maint y paneli gweld"
|
package/lang/da.js
CHANGED
|
@@ -26,13 +26,13 @@ export default {
|
|
|
26
26
|
"components.form-element.defaultError": "{label} er ugyldigt.",
|
|
27
27
|
"components.form-element.defaultFieldLabel": "Felt",
|
|
28
28
|
"components.form-element.input.email.typeMismatch": "E-mail er ikke gyldig",
|
|
29
|
-
"components.form-element.input.number.rangeError": "
|
|
30
|
-
"components.form-element.input.number.rangeOverflow": "
|
|
31
|
-
"components.form-element.input.number.rangeUnderflow": "
|
|
29
|
+
"components.form-element.input.number.rangeError": "{minExclusive, select, true {{maxExclusive, select, true {Number must be greater than {min} and less than {max}.} other {Number must be greater than {min} and less than or equal to {max}.}}} other {{maxExclusive, select, true {Number must be greater than or equal to {min} and less than {max}.} other {Number must be greater than or equal to {min} and less than or equal to {max}.}}}}",
|
|
30
|
+
"components.form-element.input.number.rangeOverflow": "{maxExclusive, select, true {Tal skal være mindre end {max}.} other {Tal skal være mindre end eller lig med {max}.}}",
|
|
31
|
+
"components.form-element.input.number.rangeUnderflow": "{minExclusive, select, true {Tal skal være større end {min}.} other {Tal skal være større end eller lig med {min}.}}",
|
|
32
32
|
"components.form-element.input.text.tooShort": "{label} skal være på mindst {minlength} tegn",
|
|
33
33
|
"components.form-element.input.url.typeMismatch": "URL-adresse er ikke gyldig",
|
|
34
34
|
"components.form-element.valueMissing": "{label} er påkrævet.",
|
|
35
|
-
"components.form-error-summary.errorSummary": "
|
|
35
|
+
"components.form-error-summary.errorSummary": "{count, plural, one {There was 1 error found in the information you submitted} other {There were {count} errors found in the information you submitted}}",
|
|
36
36
|
"components.input-date-range.endDate": "Slutdato",
|
|
37
37
|
"components.input-date-range.errorBadInput": "{startLabel} skal være før {endLabel}",
|
|
38
38
|
"components.input-date-range.startDate": "Startdato",
|
|
@@ -101,6 +101,7 @@ export default {
|
|
|
101
101
|
"components.tag-list.cleared-item": "Removed tag list item {value}",
|
|
102
102
|
"components.tag-list.num-hidden": "+ {count} more",
|
|
103
103
|
"components.tag-list.show-less": "Show Less",
|
|
104
|
+
"components.tag-list.show-more-description": "Select to show hidden tag list items",
|
|
104
105
|
"templates.primary-secondary.adjustableSplitView": "Justerbar delt visning",
|
|
105
106
|
"templates.primary-secondary.keyboardHorizontal": "Pil til venstre eller højre for at justere størrelsen på visningspaneler",
|
|
106
107
|
"templates.primary-secondary.keyboardVertical": "Pil op eller ned for at justere størrelsen på visningspaneler"
|
package/lang/de.js
CHANGED
|
@@ -26,13 +26,13 @@ export default {
|
|
|
26
26
|
"components.form-element.defaultError": "{label} ist ungültig.",
|
|
27
27
|
"components.form-element.defaultFieldLabel": "Feld",
|
|
28
28
|
"components.form-element.input.email.typeMismatch": "Die E-Mail-Adresse ist ungültig",
|
|
29
|
-
"components.form-element.input.number.rangeError": "
|
|
30
|
-
"components.form-element.input.number.rangeOverflow": "
|
|
31
|
-
"components.form-element.input.number.rangeUnderflow": "
|
|
29
|
+
"components.form-element.input.number.rangeError": "{minExclusive, select, true {{maxExclusive, select, true {Number must be greater than {min} and less than {max}.} other {Number must be greater than {min} and less than or equal to {max}.}}} other {{maxExclusive, select, true {Number must be greater than or equal to {min} and less than {max}.} other {Number must be greater than or equal to {min} and less than or equal to {max}.}}}}",
|
|
30
|
+
"components.form-element.input.number.rangeOverflow": "{maxExclusive, select, true {Die Zahl muss kleiner als {max} sein.} other {Die Zahl muss kleiner oder gleich {max} sein.}}",
|
|
31
|
+
"components.form-element.input.number.rangeUnderflow": "{minExclusive, select, true {Die Zahl muss größer als {min} sein.} other {Die Zahl muss größer oder gleich {min} sein.}}",
|
|
32
32
|
"components.form-element.input.text.tooShort": "{label} muss mindestens {minlength} Zeichen enthalten",
|
|
33
33
|
"components.form-element.input.url.typeMismatch": "URL ist ungültig",
|
|
34
34
|
"components.form-element.valueMissing": "{label} ist erforderlich.",
|
|
35
|
-
"components.form-error-summary.errorSummary": "In den von Ihnen übermittelten Informationen
|
|
35
|
+
"components.form-error-summary.errorSummary": "{count, plural, one {In den von Ihnen übermittelten Informationen ist 1 Fehler enthalten} other {In den von Ihnen übermittelten Informationen sind {count} Fehler enthalten}}",
|
|
36
36
|
"components.input-date-range.endDate": "Enddatum",
|
|
37
37
|
"components.input-date-range.errorBadInput": "{startLabel} muss vor {endLabel} liegen",
|
|
38
38
|
"components.input-date-range.startDate": "Startdatum",
|
|
@@ -101,6 +101,7 @@ export default {
|
|
|
101
101
|
"components.tag-list.cleared-item": "Removed tag list item {value}",
|
|
102
102
|
"components.tag-list.num-hidden": "+ {count} more",
|
|
103
103
|
"components.tag-list.show-less": "Show Less",
|
|
104
|
+
"components.tag-list.show-more-description": "Select to show hidden tag list items",
|
|
104
105
|
"templates.primary-secondary.adjustableSplitView": "Anpassbare geteilte Ansicht",
|
|
105
106
|
"templates.primary-secondary.keyboardHorizontal": "Pfeil nach links oder rechts, um die Größe der Ansichtsbereiche anzupassen",
|
|
106
107
|
"templates.primary-secondary.keyboardVertical": "Pfeil nach oben oder unten, um die Größe der Ansichtsbereiche anzupassen"
|
package/lang/en.js
CHANGED
|
@@ -26,13 +26,13 @@ export default {
|
|
|
26
26
|
"components.form-element.defaultError": "{label} is invalid.",
|
|
27
27
|
"components.form-element.defaultFieldLabel": "Field",
|
|
28
28
|
"components.form-element.input.email.typeMismatch": "Email is not valid",
|
|
29
|
-
"components.form-element.input.number.rangeError": "
|
|
30
|
-
"components.form-element.input.number.rangeOverflow": "
|
|
31
|
-
"components.form-element.input.number.rangeUnderflow": "
|
|
29
|
+
"components.form-element.input.number.rangeError": "{minExclusive, select, true {{maxExclusive, select, true {Number must be greater than {min} and less than {max}.} other {Number must be greater than {min} and less than or equal to {max}.}}} other {{maxExclusive, select, true {Number must be greater than or equal to {min} and less than {max}.} other {Number must be greater than or equal to {min} and less than or equal to {max}.}}}}",
|
|
30
|
+
"components.form-element.input.number.rangeOverflow": "{maxExclusive, select, true {Number must be less than {max}.} other {Number must be less than or equal to {max}.}}",
|
|
31
|
+
"components.form-element.input.number.rangeUnderflow": "{minExclusive, select, true {Number must be greater than {min}.} other {Number must be greater than or equal to {min}.}}",
|
|
32
32
|
"components.form-element.input.text.tooShort": "{label} must be at least {minlength} characters",
|
|
33
33
|
"components.form-element.input.url.typeMismatch": "URL is not valid",
|
|
34
34
|
"components.form-element.valueMissing": "{label} is required.",
|
|
35
|
-
"components.form-error-summary.errorSummary": "
|
|
35
|
+
"components.form-error-summary.errorSummary": "{count, plural, one {There was 1 error found in the information you submitted} other {There were {count} errors found in the information you submitted}}",
|
|
36
36
|
"components.input-date-range.endDate": "End Date",
|
|
37
37
|
"components.input-date-range.errorBadInput": "{startLabel} must be before {endLabel}",
|
|
38
38
|
"components.input-date-range.startDate": "Start Date",
|
|
@@ -101,6 +101,7 @@ export default {
|
|
|
101
101
|
"components.tag-list.cleared-item": "Removed tag list item {value}",
|
|
102
102
|
"components.tag-list.num-hidden": "+ {count} more",
|
|
103
103
|
"components.tag-list.show-less": "Show Less",
|
|
104
|
+
"components.tag-list.show-more-description": "Select to show hidden tag list items",
|
|
104
105
|
"templates.primary-secondary.adjustableSplitView": "Adjustable Split View",
|
|
105
106
|
"templates.primary-secondary.keyboardHorizontal": "Arrow left or right to adjust the size of the view panels",
|
|
106
107
|
"templates.primary-secondary.keyboardVertical": "Arrow up or down to adjust the size of the view panels"
|
package/lang/es-es.js
CHANGED
|
@@ -26,13 +26,13 @@ export default {
|
|
|
26
26
|
"components.form-element.defaultError": "{label} no es válido.",
|
|
27
27
|
"components.form-element.defaultFieldLabel": "Campo",
|
|
28
28
|
"components.form-element.input.email.typeMismatch": "El correo electrónico no es válido",
|
|
29
|
-
"components.form-element.input.number.rangeError": "
|
|
30
|
-
"components.form-element.input.number.rangeOverflow": "
|
|
31
|
-
"components.form-element.input.number.rangeUnderflow": "
|
|
29
|
+
"components.form-element.input.number.rangeError": "{minExclusive, select, true {{maxExclusive, select, true {Number must be greater than {min} and less than {max}.} other {Number must be greater than {min} and less than or equal to {max}.}}} other {{maxExclusive, select, true {Number must be greater than or equal to {min} and less than {max}.} other {Number must be greater than or equal to {min} and less than or equal to {max}.}}}}",
|
|
30
|
+
"components.form-element.input.number.rangeOverflow": "{maxExclusive, select, true {El número debe ser inferior a {max}.} other {El número debe ser inferior o igual a {max}.}}",
|
|
31
|
+
"components.form-element.input.number.rangeUnderflow": "{minExclusive, select, true {El número debe ser superior a {min}.} other {El número debe ser superior o igual a {min}.}}",
|
|
32
32
|
"components.form-element.input.text.tooShort": "{label} debe tener al menos {minlength} caracteres",
|
|
33
33
|
"components.form-element.input.url.typeMismatch": "La dirección URL no es válida",
|
|
34
34
|
"components.form-element.valueMissing": "{label} es obligatorio.",
|
|
35
|
-
"components.form-error-summary.errorSummary": "
|
|
35
|
+
"components.form-error-summary.errorSummary": "{count, plural, one {Se ha encontrado 1 error en la información enviada} other {Se han encontrado {count} errores en la información enviada}}",
|
|
36
36
|
"components.input-date-range.endDate": "Fecha final",
|
|
37
37
|
"components.input-date-range.errorBadInput": "{startLabel} debe ser anterior a {endLabel}",
|
|
38
38
|
"components.input-date-range.startDate": "Fecha de inicio",
|
|
@@ -101,6 +101,7 @@ export default {
|
|
|
101
101
|
"components.tag-list.cleared-item": "Removed tag list item {value}",
|
|
102
102
|
"components.tag-list.num-hidden": "+ {count} more",
|
|
103
103
|
"components.tag-list.show-less": "Show Less",
|
|
104
|
+
"components.tag-list.show-more-description": "Select to show hidden tag list items",
|
|
104
105
|
"templates.primary-secondary.adjustableSplitView": "Vista dividida ajustable",
|
|
105
106
|
"templates.primary-secondary.keyboardHorizontal": "Flecha hacia la izquierda o la derecha para ajustar el tamaño de los paneles de visualización",
|
|
106
107
|
"templates.primary-secondary.keyboardVertical": "Flecha hacia arriba o abajo para ajustar el tamaño de los paneles de visualización"
|
package/lang/es.js
CHANGED
|
@@ -26,13 +26,13 @@ export default {
|
|
|
26
26
|
"components.form-element.defaultError": "{label} no es válida.",
|
|
27
27
|
"components.form-element.defaultFieldLabel": "Campo",
|
|
28
28
|
"components.form-element.input.email.typeMismatch": "El correo electrónico no es válido",
|
|
29
|
-
"components.form-element.input.number.rangeError": "
|
|
30
|
-
"components.form-element.input.number.rangeOverflow": "
|
|
31
|
-
"components.form-element.input.number.rangeUnderflow": "
|
|
29
|
+
"components.form-element.input.number.rangeError": "{minExclusive, select, true {{maxExclusive, select, true {Number must be greater than {min} and less than {max}.} other {Number must be greater than {min} and less than or equal to {max}.}}} other {{maxExclusive, select, true {Number must be greater than or equal to {min} and less than {max}.} other {Number must be greater than or equal to {min} and less than or equal to {max}.}}}}",
|
|
30
|
+
"components.form-element.input.number.rangeOverflow": "{maxExclusive, select, true {El número debe ser menor que {max}.} other {El número debe ser menor o igual que {max}.}}",
|
|
31
|
+
"components.form-element.input.number.rangeUnderflow": "{minExclusive, select, true {El número debe ser mayor que {min}.} other {El número debe ser mayor o igual que {min}.}}",
|
|
32
32
|
"components.form-element.input.text.tooShort": "{label} debe tener al menos {minlength} caracteres",
|
|
33
33
|
"components.form-element.input.url.typeMismatch": "La dirección URL no es válida",
|
|
34
34
|
"components.form-element.valueMissing": "{label} es obligatoria.",
|
|
35
|
-
"components.form-error-summary.errorSummary": "{count, plural, one {
|
|
35
|
+
"components.form-error-summary.errorSummary": "{count, plural, one {Hubo 1 error detectado en la información que envió} other {Hubo {count} errores detectados en la información que envió}}",
|
|
36
36
|
"components.input-date-range.endDate": "Fecha final",
|
|
37
37
|
"components.input-date-range.errorBadInput": "{startLabel} debe estar antes de {endLabel}",
|
|
38
38
|
"components.input-date-range.startDate": "Fecha de inicio",
|
|
@@ -101,6 +101,7 @@ export default {
|
|
|
101
101
|
"components.tag-list.clear-all": "Clear All",
|
|
102
102
|
"components.tag-list.num-hidden": "+ {count} more",
|
|
103
103
|
"components.tag-list.show-less": "Show Less",
|
|
104
|
+
"components.tag-list.show-more-description": "Select to show hidden tag list items",
|
|
104
105
|
"templates.primary-secondary.adjustableSplitView": "Pantalla dividida ajustable",
|
|
105
106
|
"templates.primary-secondary.keyboardHorizontal": "Utilice la flecha izquierda o derecha para ajustar el tamaño de los paneles de visualización",
|
|
106
107
|
"templates.primary-secondary.keyboardVertical": "Utilice la flecha hacia arriba o hacia abajo para ajustar el tamaño de los paneles de visualización"
|
package/lang/fr-fr.js
CHANGED
|
@@ -26,13 +26,13 @@ export default {
|
|
|
26
26
|
"components.form-element.defaultError": "{label} n'est pas valide.",
|
|
27
27
|
"components.form-element.defaultFieldLabel": "Champ",
|
|
28
28
|
"components.form-element.input.email.typeMismatch": "L'adresse e-mail n'est pas valide.",
|
|
29
|
-
"components.form-element.input.number.rangeError": "
|
|
30
|
-
"components.form-element.input.number.rangeOverflow": "
|
|
31
|
-
"components.form-element.input.number.rangeUnderflow": "
|
|
29
|
+
"components.form-element.input.number.rangeError": "{minExclusive, select, true {{maxExclusive, select, true {Number must be greater than {min} and less than {max}.} other {Number must be greater than {min} and less than or equal to {max}.}}} other {{maxExclusive, select, true {Number must be greater than or equal to {min} and less than {max}.} other {Number must be greater than or equal to {min} and less than or equal to {max}.}}}}",
|
|
30
|
+
"components.form-element.input.number.rangeOverflow": "{maxExclusive, select, true {Le nombre doit être inférieur à {max}.} other {Le nombre doit être inférieur ou égal à {max}.}}",
|
|
31
|
+
"components.form-element.input.number.rangeUnderflow": "{minExclusive, select, true {Le nombre doit être supérieur à {min}.} other {Le nombre doit être supérieur ou égal à {min}.}}",
|
|
32
32
|
"components.form-element.input.text.tooShort": "{label} doit contenir au moins {minlength} caractères.",
|
|
33
33
|
"components.form-element.input.url.typeMismatch": "URL non valide",
|
|
34
34
|
"components.form-element.valueMissing": "{label} est requis.",
|
|
35
|
-
"components.form-error-summary.errorSummary": "
|
|
35
|
+
"components.form-error-summary.errorSummary": "{count, plural, one {Il y avait une erreur dans les informations que vous avez soumises.} other {Il y avait {count} erreurs dans les informations que vous avez soumises.}}",
|
|
36
36
|
"components.input-date-range.endDate": "Date de fin",
|
|
37
37
|
"components.input-date-range.errorBadInput": "{startLabel} doit être antérieur à {endLabel}",
|
|
38
38
|
"components.input-date-range.startDate": "Date de début",
|
|
@@ -40,7 +40,7 @@ export default {
|
|
|
40
40
|
"components.input-date-time-range.endDate": "Date de fin",
|
|
41
41
|
"components.input-date-time-range.errorBadInput": "{startLabel} doit être antérieur à {endLabel}",
|
|
42
42
|
"components.input-date-time-range.startDate": "Date de début",
|
|
43
|
-
"components.input-date-time.date": "Date",
|
|
43
|
+
"components.input-date-time.date": "Date", // mfv-translated
|
|
44
44
|
"components.input-date-time.errorMaxDateOnly": "La date doit être antérieure à {maxDate}",
|
|
45
45
|
"components.input-date-time.errorMinDateOnly": "La date doit être postérieure à {minDate}",
|
|
46
46
|
"components.input-date-time.errorOutsideRange": "La date doit être comprise entre {minDate} et {maxDate}",
|
|
@@ -101,6 +101,7 @@ export default {
|
|
|
101
101
|
"components.tag-list.cleared-item": "Removed tag list item {value}",
|
|
102
102
|
"components.tag-list.num-hidden": "+ {count} more",
|
|
103
103
|
"components.tag-list.show-less": "Show Less",
|
|
104
|
+
"components.tag-list.show-more-description": "Select to show hidden tag list items",
|
|
104
105
|
"templates.primary-secondary.adjustableSplitView": "Vue fractionnée réglable",
|
|
105
106
|
"templates.primary-secondary.keyboardHorizontal": "Flèche vers la gauche ou vers la droite pour régler la taille des panneaux d’affichage",
|
|
106
107
|
"templates.primary-secondary.keyboardVertical": "Flèche vers le haut ou vers le bas pour régler la taille des panneaux d’affichage"
|
package/lang/fr.js
CHANGED
|
@@ -26,13 +26,13 @@ export default {
|
|
|
26
26
|
"components.form-element.defaultError": "{label} n'est pas valide.",
|
|
27
27
|
"components.form-element.defaultFieldLabel": "Champ",
|
|
28
28
|
"components.form-element.input.email.typeMismatch": "L'adresse courriel n'est pas valide",
|
|
29
|
-
"components.form-element.input.number.rangeError": "
|
|
30
|
-
"components.form-element.input.number.rangeOverflow": "
|
|
31
|
-
"components.form-element.input.number.rangeUnderflow": "
|
|
29
|
+
"components.form-element.input.number.rangeError": "{minExclusive, select, true {{maxExclusive, select, true {Number must be greater than {min} and less than {max}.} other {Number must be greater than {min} and less than or equal to {max}.}}} other {{maxExclusive, select, true {Number must be greater than or equal to {min} and less than {max}.} other {Number must be greater than or equal to {min} and less than or equal to {max}.}}}}",
|
|
30
|
+
"components.form-element.input.number.rangeOverflow": "{maxExclusive, select, true {Le nombre doit être plus petit que {max}.} other {Le nombre doit être plus petit que ou égal à {max}.}}",
|
|
31
|
+
"components.form-element.input.number.rangeUnderflow": "{minExclusive, select, true {Le nombre doit être plus grand que {min}.} other {Le nombre doit être plus grand que ou égal à {min}.}}",
|
|
32
32
|
"components.form-element.input.text.tooShort": "{label} doit comprendre au moins {minlength} caractères",
|
|
33
33
|
"components.form-element.input.url.typeMismatch": "L'URL n'est pas valide",
|
|
34
34
|
"components.form-element.valueMissing": "{label} est requis.",
|
|
35
|
-
"components.form-error-summary.errorSummary": "
|
|
35
|
+
"components.form-error-summary.errorSummary": "{count, plural, one {L'information soumise comportait 1 erreur } other {L'information soumise comportait {count} erreurs}}",
|
|
36
36
|
"components.input-date-range.endDate": "Date de fin",
|
|
37
37
|
"components.input-date-range.errorBadInput": "{startLabel} doit précéder {endLabel}",
|
|
38
38
|
"components.input-date-range.startDate": "Date du début",
|
|
@@ -40,7 +40,7 @@ export default {
|
|
|
40
40
|
"components.input-date-time-range.endDate": "Date de fin",
|
|
41
41
|
"components.input-date-time-range.errorBadInput": "{startLabel} doit précéder {endLabel}",
|
|
42
42
|
"components.input-date-time-range.startDate": "Date du début",
|
|
43
|
-
"components.input-date-time.date": "Date",
|
|
43
|
+
"components.input-date-time.date": "Date", // mfv-translated
|
|
44
44
|
"components.input-date-time.errorMaxDateOnly": "La date doit être antérieure à {maxDate}",
|
|
45
45
|
"components.input-date-time.errorMinDateOnly": "La date doit être postérieure à {minDate}",
|
|
46
46
|
"components.input-date-time.errorOutsideRange": "La date doit être comprise entre {minDate} et {maxDate}",
|
|
@@ -101,6 +101,7 @@ export default {
|
|
|
101
101
|
"components.tag-list.cleared-item": "Removed tag list item {value}",
|
|
102
102
|
"components.tag-list.num-hidden": "+ {count} more",
|
|
103
103
|
"components.tag-list.show-less": "Show Less",
|
|
104
|
+
"components.tag-list.show-more-description": "Select to show hidden tag list items",
|
|
104
105
|
"templates.primary-secondary.adjustableSplitView": "Vue partagée réglable",
|
|
105
106
|
"templates.primary-secondary.keyboardHorizontal": "Utiliser la flèche vers la gauche ou vers la droite pour régler la taille des volets d'affichage",
|
|
106
107
|
"templates.primary-secondary.keyboardVertical": "Flèche vers le haut ou vers le bas pour régler la taille des volets d'affichage"
|
package/lang/hi.js
CHANGED
|
@@ -26,13 +26,13 @@ export default {
|
|
|
26
26
|
"components.form-element.defaultError": "{label} अमान्य है।",
|
|
27
27
|
"components.form-element.defaultFieldLabel": "फ़ील्ड",
|
|
28
28
|
"components.form-element.input.email.typeMismatch": "ईमेल मान्य नहीं है",
|
|
29
|
-
"components.form-element.input.number.rangeError": "
|
|
30
|
-
"components.form-element.input.number.rangeOverflow": "
|
|
31
|
-
"components.form-element.input.number.rangeUnderflow": "
|
|
29
|
+
"components.form-element.input.number.rangeError": "{minExclusive, select, true {{maxExclusive, select, true {Number must be greater than {min} and less than {max}.} other {Number must be greater than {min} and less than or equal to {max}.}}} other {{maxExclusive, select, true {Number must be greater than or equal to {min} and less than {max}.} other {Number must be greater than or equal to {min} and less than or equal to {max}.}}}}",
|
|
30
|
+
"components.form-element.input.number.rangeOverflow": "{maxExclusive, select, true {संख्या को इससे कम {max} होना आवश्यक है।} other {संख्या को इससे कम या इसके बराबर {max} होना आवश्यक है।}}",
|
|
31
|
+
"components.form-element.input.number.rangeUnderflow": "{minExclusive, select, true {संख्या को इससे बड़ा {min} होना आवश्यक है।} other {संख्या को इससे बड़ा है या इसके बराबर {min} होना आवश्यक है।}}",
|
|
32
32
|
"components.form-element.input.text.tooShort": "{label} कम से कम {minlength} वर्णों का होना चाहिए",
|
|
33
33
|
"components.form-element.input.url.typeMismatch": "URL मान्य नहीं है",
|
|
34
34
|
"components.form-element.valueMissing": "{label} आवश्यक है।",
|
|
35
|
-
"components.form-error-summary.errorSummary": "आपके द्वारा सबमिट की गई जानकारी में
|
|
35
|
+
"components.form-error-summary.errorSummary": "{count, plural, one {आपके द्वारा सबमिट की गई जानकारी में 1 त्रुटि मिली थी} other {आपके द्वारा सबमिट की गई जानकारी में {count} त्रुटियाँ मिली थी}}",
|
|
36
36
|
"components.input-date-range.endDate": "समाप्ति तारीख़",
|
|
37
37
|
"components.input-date-range.errorBadInput": "{startLabel} {endLabel} से पहले का होना चाहिए",
|
|
38
38
|
"components.input-date-range.startDate": "प्रारंभ तारीख़",
|
|
@@ -101,6 +101,7 @@ export default {
|
|
|
101
101
|
"components.tag-list.cleared-item": "Removed tag list item {value}",
|
|
102
102
|
"components.tag-list.num-hidden": "+ {count} more",
|
|
103
103
|
"components.tag-list.show-less": "Show Less",
|
|
104
|
+
"components.tag-list.show-more-description": "Select to show hidden tag list items",
|
|
104
105
|
"templates.primary-secondary.adjustableSplitView": "समायोजन योग्य विभाजन दृश्य",
|
|
105
106
|
"templates.primary-secondary.keyboardHorizontal": "दृश्य पैनल्स का आकार समायोजित करने के लिए तीर बाएँ या दाएँ करें",
|
|
106
107
|
"templates.primary-secondary.keyboardVertical": "दृश्य पैनल्स का आकार समायोजित करने के लिए तीर ऊपर या नीचे करें"
|
package/lang/ja.js
CHANGED
|
@@ -26,13 +26,13 @@ export default {
|
|
|
26
26
|
"components.form-element.defaultError": "{label} は無効です。",
|
|
27
27
|
"components.form-element.defaultFieldLabel": "フィールド",
|
|
28
28
|
"components.form-element.input.email.typeMismatch": "電子メールが無効です",
|
|
29
|
-
"components.form-element.input.number.rangeError": "
|
|
30
|
-
"components.form-element.input.number.rangeOverflow": "
|
|
31
|
-
"components.form-element.input.number.rangeUnderflow": "
|
|
29
|
+
"components.form-element.input.number.rangeError": "{minExclusive, select, true {{maxExclusive, select, true {Number must be greater than {min} and less than {max}.} other {Number must be greater than {min} and less than or equal to {max}.}}} other {{maxExclusive, select, true {Number must be greater than or equal to {min} and less than {max}.} other {Number must be greater than or equal to {min} and less than or equal to {max}.}}}}",
|
|
30
|
+
"components.form-element.input.number.rangeOverflow": "{maxExclusive, select, true {数値は {max} より小さくなければなりません。} other {数値は {max} 以下でなければなりません。}}",
|
|
31
|
+
"components.form-element.input.number.rangeUnderflow": "{minExclusive, select, true {数値は {min} より大きくなければなりません。} other {数値は {min} 以上でなければなりません。}}",
|
|
32
32
|
"components.form-element.input.text.tooShort": "{label} は {minlength} 文字以上である必要があります",
|
|
33
33
|
"components.form-element.input.url.typeMismatch": "URL が有効ではありません",
|
|
34
34
|
"components.form-element.valueMissing": "{label} は必須です。",
|
|
35
|
-
"components.form-error-summary.errorSummary": "
|
|
35
|
+
"components.form-error-summary.errorSummary": "{count, plural, other {送信した情報に {count} 件のエラー が見つかりました}}",
|
|
36
36
|
"components.input-date-range.endDate": "終了日",
|
|
37
37
|
"components.input-date-range.errorBadInput": "{startLabel} は {endLabel} より前にする必要があります",
|
|
38
38
|
"components.input-date-range.startDate": "開始日",
|
|
@@ -101,6 +101,7 @@ export default {
|
|
|
101
101
|
"components.tag-list.cleared-item": "Removed tag list item {value}",
|
|
102
102
|
"components.tag-list.num-hidden": "+ {count} more",
|
|
103
103
|
"components.tag-list.show-less": "Show Less",
|
|
104
|
+
"components.tag-list.show-more-description": "Select to show hidden tag list items",
|
|
104
105
|
"templates.primary-secondary.adjustableSplitView": "調整可能な分割ビュー",
|
|
105
106
|
"templates.primary-secondary.keyboardHorizontal": "左矢印または右矢印を使用して、ビューパネルのサイズを調整します",
|
|
106
107
|
"templates.primary-secondary.keyboardVertical": "上矢印または下矢印を使用して、ビューパネルのサイズを調整します"
|
package/lang/ko.js
CHANGED
|
@@ -26,13 +26,13 @@ export default {
|
|
|
26
26
|
"components.form-element.defaultError": "{label}이(가) 잘못되었습니다.",
|
|
27
27
|
"components.form-element.defaultFieldLabel": "필드",
|
|
28
28
|
"components.form-element.input.email.typeMismatch": "이메일이 유효하지 않습니다.",
|
|
29
|
-
"components.form-element.input.number.rangeError": "
|
|
30
|
-
"components.form-element.input.number.rangeOverflow": "
|
|
31
|
-
"components.form-element.input.number.rangeUnderflow": "
|
|
29
|
+
"components.form-element.input.number.rangeError": "{minExclusive, select, true {{maxExclusive, select, true {Number must be greater than {min} and less than {max}.} other {Number must be greater than {min} and less than or equal to {max}.}}} other {{maxExclusive, select, true {Number must be greater than or equal to {min} and less than {max}.} other {Number must be greater than or equal to {min} and less than or equal to {max}.}}}}",
|
|
30
|
+
"components.form-element.input.number.rangeOverflow": "{maxExclusive, select, true {숫자가 보다 작음 {max}여야 합니다.} other {숫자가 작거나 같음 {max}여야 합니다.}}",
|
|
31
|
+
"components.form-element.input.number.rangeUnderflow": "{minExclusive, select, true {숫자가 보다 큼 {min}여야 합니다.} other {숫자가 크거나 같음 {min}여야 합니다.}}",
|
|
32
32
|
"components.form-element.input.text.tooShort": "{label}은(는) {minlength}자 이상이어야 합니다",
|
|
33
33
|
"components.form-element.input.url.typeMismatch": "URL이 유효하지 않습니다",
|
|
34
34
|
"components.form-element.valueMissing": "{label}이(가) 필요합니다.",
|
|
35
|
-
"components.form-error-summary.errorSummary": "
|
|
35
|
+
"components.form-error-summary.errorSummary": "{count, plural, other {제출하신 정보에서 {count}개의 오류가 발견되었습니다}}",
|
|
36
36
|
"components.input-date-range.endDate": "종료일",
|
|
37
37
|
"components.input-date-range.errorBadInput": "{startLabel}은(는) {endLabel} 앞에 있어야 합니다",
|
|
38
38
|
"components.input-date-range.startDate": "시작일",
|
|
@@ -101,6 +101,7 @@ export default {
|
|
|
101
101
|
"components.tag-list.cleared-item": "Removed tag list item {value}",
|
|
102
102
|
"components.tag-list.num-hidden": "+ {count} more",
|
|
103
103
|
"components.tag-list.show-less": "Show Less",
|
|
104
|
+
"components.tag-list.show-more-description": "Select to show hidden tag list items",
|
|
104
105
|
"templates.primary-secondary.adjustableSplitView": "조정 가능한 분할 보기",
|
|
105
106
|
"templates.primary-secondary.keyboardHorizontal": "왼쪽 또는 오른쪽 화살표로 보기 패널의 크기 조정",
|
|
106
107
|
"templates.primary-secondary.keyboardVertical": "위 또는 아래 화살표로 보기 패널의 크기 조정"
|