@brightspace-ui/core 2.20.0 → 2.21.2

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.
@@ -422,7 +422,7 @@ class Calendar extends LocalizeCoreElement(RtlMixin(LitElement)) {
422
422
 
423
423
  this.addEventListener('blur', () => this._isInitialFocusDate = true);
424
424
 
425
- this.addEventListener('d2l-localize-behavior-language-changed', () => {
425
+ this.addEventListener('d2l-localize-resources-change', () => {
426
426
  calendarData = null;
427
427
  getCalendarData(true);
428
428
  this.requestUpdate();
@@ -200,7 +200,7 @@ class InputDate extends FocusMixin(LabelledMixin(SkeletonMixin(FormElementMixin(
200
200
  this._textInput = this.shadowRoot.querySelector('d2l-input-text');
201
201
 
202
202
  this.addEventListener('blur', this._handleBlur);
203
- this.addEventListener('d2l-localize-behavior-language-changed', () => {
203
+ this.addEventListener('d2l-localize-resources-change', () => {
204
204
  this._dateTimeDescriptor = getDateTimeDescriptorShared(true);
205
205
  this.requestUpdate();
206
206
  this.updateComplete.then(() => {
@@ -308,7 +308,7 @@ class InputNumber extends FocusMixin(LabelledMixin(SkeletonMixin(FormElementMixi
308
308
 
309
309
  firstUpdated(changedProperties) {
310
310
  super.firstUpdated(changedProperties);
311
- this.addEventListener('d2l-localize-behavior-language-changed', () => {
311
+ this.addEventListener('d2l-localize-resources-change', () => {
312
312
  this._descriptor = getNumberDescriptor();
313
313
  if (this._formattedValue.length > 0) {
314
314
  this._updateFormattedValue();
@@ -123,6 +123,7 @@ class InputTextArea extends FocusMixin(LabelledMixin(FormElementMixin(SkeletonMi
123
123
  /* mirror dimensions must match textarea - match border + padding */
124
124
  .d2l-input-textarea-mirror {
125
125
  line-height: 1rem;
126
+ overflow: hidden;
126
127
  padding-bottom: 0.5rem;
127
128
  padding-top: 0.5rem;
128
129
  visibility: hidden;
@@ -271,7 +271,7 @@ class InputTime extends FocusMixin(LabelledMixin(SkeletonMixin(FormElementMixin(
271
271
  }
272
272
 
273
273
  const hiddenContent = this.shadowRoot.querySelector('.d2l-input-time-hidden-content');
274
- this.addEventListener('d2l-localize-behavior-language-changed', async() => {
274
+ this.addEventListener('d2l-localize-resources-change', async() => {
275
275
  await this.updateComplete;
276
276
  this._formattedValue = formatTime(getDateFromISOTime(this.value));
277
277
  INTERVALS.clear();
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": "{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}.}}",
29
+ "components.form-element.input.number.rangeError": "{minExclusive, select, true {{maxExclusive, select, true {يجب أن يكون الرقم أكبر من {min} وأقل من {max}.} other {يجب أن يكون الرقم أكبر من {min} وأقل من أو مساويًا لـ {max}.}}} other {{maxExclusive, select, true {يجب أن يكون الرقم أكبر من أو مساويًا لـ {min} وأقل من {max}.} other {يجب أن يكون الرقم أكبر من أو مساويًا لـ {min} وأقل من أو مساويًا لـ {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": "{count, plural, one {There was 1 error found in the information you submitted} other {There were {count} errors found in the information you submitted}}",
35
+ "components.form-error-summary.errorSummary": "{count, plural, one {تم العثور على خطأ واحد في المعلومات التي أرسلتها} 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": "تاريخ البدء",
@@ -62,7 +62,7 @@ export default {
62
62
  "components.input-time-range.endTime": "وقت النهاية",
63
63
  "components.input-time-range.errorBadInput": "يجب أن يكون تاريخ {startLabel} قبل {endLabel}",
64
64
  "components.input-time-range.startTime": "وقت البدء",
65
- "components.interactive.instructions": "Press Enter to interact, Escape to exit",
65
+ "components.interactive.instructions": "اضغط على Enter للتفاعل، وEscape للخروج",
66
66
  "components.list-item-drag-handle.default": "إعادة ترتيب إجراء المادة لـ {name}",
67
67
  "components.list-item-drag-handle.keyboard": "إعادة ترتيب المواد، الموضع الحالي {currentPosition} من أصل {size}. لنقل هذه المادة، اضغط على السهم المتجه إلى أعلى أو السهم المتجه إلى أسفل.",
68
68
  "components.list-item-tooltip.title": "التنقل عبر لوحة المفاتيح للقوائم:",
@@ -96,19 +96,19 @@ export default {
96
96
  "components.switch.visibility": "إمكانية الرؤية",
97
97
  "components.tabs.next": "التمرير إلى الأمام",
98
98
  "components.tabs.previous": "التمرير إلى الخلف",
99
- "components.tag-list.clear": "Click to remove item {value}",
100
- "components.tag-list.clear-all": "Clear All",
101
- "components.tag-list.cleared-all": "Removed all tag list items",
102
- "components.tag-list.cleared-item": "Removed tag list item {value}",
103
- "components.tag-list.interactive-label": "Tag List, {count} items",
99
+ "components.tag-list.clear": "انقر فوق، أو اضغط على مسافة للخلف، أو اضغط على مفتاح حذف لإزالة العنصر {value}",
100
+ "components.tag-list.clear-all": "مسح الكل",
101
+ "components.tag-list.cleared-all": "تمت إزالة كل عناصر قائمة العلامات",
102
+ "components.tag-list.cleared-item": "تمت إزالة عنصر قائمة العلامات {value}",
103
+ "components.tag-list.interactive-label": "قائمة العلامات، {count} من العناصر",
104
104
  "components.tag-list.num-hidden": "زيادة {count} إضافي",
105
105
  "components.tag-list.show-less": "إظهار أقل",
106
- "components.tag-list.show-more-description": "Select to show hidden tag list items",
107
- "components.tag-list-item.tooltip-arrow-keys": "Arrow Keys",
108
- "components.tag-list-item.tooltip-arrow-keys-desc": "Move between tags",
109
- "components.tag-list-item.tooltip-delete-key": "Backspace/Delete",
110
- "components.tag-list-item.tooltip-delete-key-desc": "Delete the focused tag",
111
- "components.tag-list-item.tooltip-title": "Keyboard Controls",
106
+ "components.tag-list.show-more-description": "حدد لإظهار عناصر قائمة العلامات المخفية",
107
+ "components.tag-list-item.tooltip-arrow-keys": "مفاتيح الأسهم",
108
+ "components.tag-list-item.tooltip-arrow-keys-desc": "التنقل بين العلامات",
109
+ "components.tag-list-item.tooltip-delete-key": "مسافة للخلف/حذف",
110
+ "components.tag-list-item.tooltip-delete-key-desc": "حذف العلامة المركّز عليها",
111
+ "components.tag-list-item.tooltip-title": "عناصر التحكم في لوحة المفاتيح",
112
112
  "templates.primary-secondary.adjustableSplitView": "تقسيم العرض القابل للضبط",
113
113
  "templates.primary-secondary.keyboardHorizontal": "السهم المتّجه إلى اليسار أو إلى اليمين لضبط حجم لوحات العرض",
114
114
  "templates.primary-secondary.keyboardVertical": "السهم المتّجه إلى الأعلى أو إلى الأسفل لضبط حجم لوحات العرض"
package/lang/cy.js CHANGED
@@ -62,7 +62,7 @@ export default {
62
62
  "components.input-time-range.endTime": "Amser Gorffen",
63
63
  "components.input-time-range.errorBadInput": "Rhaid i {startLabel} fod cyn {endLabel}",
64
64
  "components.input-time-range.startTime": "Amser Dechrau",
65
- "components.interactive.instructions": "Press Enter to interact, Escape to exit",
65
+ "components.interactive.instructions": "Pwyswch Enter i ryngweithio, Escape i adael",
66
66
  "components.list-item-drag-handle.default": "Aildrefnu gweithred eitem ar gyfer {name}",
67
67
  "components.list-item-drag-handle.keyboard": "Aildrefnu eitemau, safle presennol {currentPosition} allan o {size}. I symud yr eitem hon, pwyswch y saeth i fyny neu'r saeth i lawr.",
68
68
  "components.list-item-tooltip.title": "Llywio Bysellfwrdd ar gyfer Rhestrau:",
@@ -96,19 +96,19 @@ export default {
96
96
  "components.switch.visibility": "Gwelededd",
97
97
  "components.tabs.next": "Sgrolio Ymlaen",
98
98
  "components.tabs.previous": "Sgrolio Yn Ôl",
99
- "components.tag-list.clear": "Click to remove item {value}",
100
- "components.tag-list.clear-all": "Clear All",
101
- "components.tag-list.cleared-all": "Removed all tag list items",
102
- "components.tag-list.cleared-item": "Removed tag list item {value}",
103
- "components.tag-list.interactive-label": "Tag List, {count} items",
99
+ "components.tag-list.clear": "Cliciwch, pwyswch yn ôl, neu pwyswch y bysell dileu i dynnu’r eitem {value}",
100
+ "components.tag-list.clear-all": "Clirio’r Cyfan",
101
+ "components.tag-list.cleared-all": "Wedi tynnu’r holl eitemau rhestr tag.",
102
+ "components.tag-list.cleared-item": "Wedi tynnu’r eitem rhestr tag {value}",
103
+ "components.tag-list.interactive-label": "Rhestr Tag, {count} o eitemau",
104
104
  "components.tag-list.num-hidden": "+ {count} yn rhagor",
105
105
  "components.tag-list.show-less": "Dangos Llai",
106
- "components.tag-list.show-more-description": "Select to show hidden tag list items",
107
- "components.tag-list-item.tooltip-arrow-keys": "Arrow Keys",
108
- "components.tag-list-item.tooltip-arrow-keys-desc": "Move between tags",
109
- "components.tag-list-item.tooltip-delete-key": "Backspace/Delete",
110
- "components.tag-list-item.tooltip-delete-key-desc": "Delete the focused tag",
111
- "components.tag-list-item.tooltip-title": "Keyboard Controls",
106
+ "components.tag-list.show-more-description": "Dewis i ddangos eitemau rhestr tag cudd",
107
+ "components.tag-list-item.tooltip-arrow-keys": "Byselli Saeth",
108
+ "components.tag-list-item.tooltip-arrow-keys-desc": "Symud rhwng tagiau",
109
+ "components.tag-list-item.tooltip-delete-key": "Yn ôl/Dileu",
110
+ "components.tag-list-item.tooltip-delete-key-desc": "Dileu’r tag â ffocws",
111
+ "components.tag-list-item.tooltip-title": "Rheolyddion Bysellfwrdd",
112
112
  "templates.primary-secondary.adjustableSplitView": "Gwedd Hollt Addasadwy",
113
113
  "templates.primary-secondary.keyboardHorizontal": "Saeth i'r chwith neu'r dde i addasu maint y paneli gweld",
114
114
  "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": "{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}.}}}}",
29
+ "components.form-element.input.number.rangeError": "{minExclusive, select, true {{maxExclusive, select, true {Tallet skal være større end {min} og mindre end {max}.} other {Tallet skal være større end {min} og mindre eller lig med {max}.}}} other {{maxExclusive, select, true {Tallet skal være større end eller lig med {min} og mindre end {max}.} other {Tallet skal være større end eller lig med {min} og mindre end eller lig med {max}.}}}}",
30
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
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": "{count, plural, one {There was 1 error found in the information you submitted} other {There were {count} errors found in the information you submitted}}",
35
+ "components.form-error-summary.errorSummary": "{count, plural, one {Der blev fundet 1 fejl i de oplysninger, du indsendte} other {Der blev fundet {count} fejl i de oplysninger, du indsendte}}",
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",
@@ -62,7 +62,7 @@ export default {
62
62
  "components.input-time-range.endTime": "Sluttidspunkt",
63
63
  "components.input-time-range.errorBadInput": "{startLabel} skal være før {endLabel}",
64
64
  "components.input-time-range.startTime": "Starttidspunkt",
65
- "components.interactive.instructions": "Press Enter to interact, Escape to exit",
65
+ "components.interactive.instructions": "Tryk Enter for at interagere, Escape for at afslutte",
66
66
  "components.list-item-drag-handle.default": "Omarranger elementhandling for {name}",
67
67
  "components.list-item-drag-handle.keyboard": "Omarranger element, aktuel position {currentPosition} ud af {size}. For at flytte dette element skal du trykke på pil op eller pil ned.",
68
68
  "components.list-item-tooltip.title": "Tastaturnavigering for lister:",
@@ -96,19 +96,19 @@ export default {
96
96
  "components.switch.visibility": "Synlighed",
97
97
  "components.tabs.next": "Rul frem",
98
98
  "components.tabs.previous": "Rul tilbage",
99
- "components.tag-list.clear": "Click to remove item {value}",
100
- "components.tag-list.clear-all": "Clear All",
101
- "components.tag-list.cleared-all": "Removed all tag list items",
102
- "components.tag-list.cleared-item": "Removed tag list item {value}",
103
- "components.tag-list.interactive-label": "Tag List, {count} items",
99
+ "components.tag-list.clear": "Klik, tryk tilbagetasten, eller tryk på slettasten for at fjerne element {value}",
100
+ "components.tag-list.clear-all": "Ryd alle",
101
+ "components.tag-list.cleared-all": "Fjernede alle taglisteelementer",
102
+ "components.tag-list.cleared-item": "Fjernede taglisteelement {value}",
103
+ "components.tag-list.interactive-label": "Tagliste, {count} elementer",
104
104
  "components.tag-list.num-hidden": "+ {count} mere",
105
105
  "components.tag-list.show-less": "Vis færre",
106
- "components.tag-list.show-more-description": "Select to show hidden tag list items",
107
- "components.tag-list-item.tooltip-arrow-keys": "Arrow Keys",
108
- "components.tag-list-item.tooltip-arrow-keys-desc": "Move between tags",
109
- "components.tag-list-item.tooltip-delete-key": "Backspace/Delete",
110
- "components.tag-list-item.tooltip-delete-key-desc": "Delete the focused tag",
111
- "components.tag-list-item.tooltip-title": "Keyboard Controls",
106
+ "components.tag-list.show-more-description": "Vælg for at vist skjulte taglisteelementer",
107
+ "components.tag-list-item.tooltip-arrow-keys": "Piletaster",
108
+ "components.tag-list-item.tooltip-arrow-keys-desc": "Flyt mellem tags",
109
+ "components.tag-list-item.tooltip-delete-key": "Tilbage/Slet",
110
+ "components.tag-list-item.tooltip-delete-key-desc": "Slet det fokuserede tag",
111
+ "components.tag-list-item.tooltip-title": "Kontrolelementer på tastaturet",
112
112
  "templates.primary-secondary.adjustableSplitView": "Justerbar delt visning",
113
113
  "templates.primary-secondary.keyboardHorizontal": "Pil til venstre eller højre for at justere størrelsen på visningspaneler",
114
114
  "templates.primary-secondary.keyboardVertical": "Pil op eller ned for at justere størrelsen på visningspaneler"
package/lang/de.js CHANGED
@@ -26,9 +26,9 @@ 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": "{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.}}",
29
+ "components.form-element.input.number.rangeError": "{minExclusive, select, true {{maxExclusive, select, true {Zahl muss größer als {min} und kleiner als {max} sein.} other {Zahl muss größer als {min} und kleiner als oder gleich {max} sein.}}} other {{maxExclusive, select, true {Zahl muss größer als oder gleich {min} und kleiner als {max} sein.} other { Zahl muss größer als oder gleich {min} und kleiner als oder gleich {max} sein.}}}}",
30
+ "components.form-element.input.number.rangeOverflow": "{maxExclusive, select, true {Zahl muss kleiner als {max} sein.} other {Zahl muss kleiner als oder gleich {max} sein.}}",
31
+ "components.form-element.input.number.rangeUnderflow": "{minExclusive, select, true {Zahl muss größer als {min} sein.} other {Zahl muss größer als 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.",
@@ -62,7 +62,7 @@ export default {
62
62
  "components.input-time-range.endTime": "Endzeit",
63
63
  "components.input-time-range.errorBadInput": "{startLabel} muss vor {endLabel} liegen",
64
64
  "components.input-time-range.startTime": "Startzeit",
65
- "components.interactive.instructions": "Press Enter to interact, Escape to exit",
65
+ "components.interactive.instructions": "Drücken Sie die Eingabetaste zum Interagieren oder die Escape-Taste, um das Fenster zu schließen",
66
66
  "components.list-item-drag-handle.default": "Elementaktion für {name} neu anordnen",
67
67
  "components.list-item-drag-handle.keyboard": "Elemente neu anordnen; aktuelle Position: {currentPosition} von {size}. Drücken Sie zum Bewegen dieses Elements auf den Pfeil nach oben oder den Pfeil nach unten.",
68
68
  "components.list-item-tooltip.title": "Tastaturnavigation für Listen:",
@@ -96,19 +96,19 @@ export default {
96
96
  "components.switch.visibility": "Sichtbarkeit",
97
97
  "components.tabs.next": "Weiterblättern",
98
98
  "components.tabs.previous": "Zurückblättern",
99
- "components.tag-list.clear": "Click to remove item {value}",
100
- "components.tag-list.clear-all": "Clear All",
101
- "components.tag-list.cleared-all": "Removed all tag list items",
102
- "components.tag-list.cleared-item": "Removed tag list item {value}",
103
- "components.tag-list.interactive-label": "Tag List, {count} items",
99
+ "components.tag-list.clear": "Klicken Sie, drücken Sie die Rücktaste, oder drücken Sie die Entfernen-Taste, um das Element {value} zu entfernen",
100
+ "components.tag-list.clear-all": "Alle löschen",
101
+ "components.tag-list.cleared-all": "Alle Elemente der Tag-Liste wurden entfernt",
102
+ "components.tag-list.cleared-item": "Element {value} der Tag-Liste wurde entfernt",
103
+ "components.tag-list.interactive-label": "Tag-Liste, {count} Elemente",
104
104
  "components.tag-list.num-hidden": "+ {count} weitere",
105
105
  "components.tag-list.show-less": "Weniger anzeigen",
106
- "components.tag-list.show-more-description": "Select to show hidden tag list items",
107
- "components.tag-list-item.tooltip-arrow-keys": "Arrow Keys",
108
- "components.tag-list-item.tooltip-arrow-keys-desc": "Move between tags",
109
- "components.tag-list-item.tooltip-delete-key": "Backspace/Delete",
110
- "components.tag-list-item.tooltip-delete-key-desc": "Delete the focused tag",
111
- "components.tag-list-item.tooltip-title": "Keyboard Controls",
106
+ "components.tag-list.show-more-description": "Wählen Sie diese Option, um ausgeblendete Elemente der Tag-Liste anzuzeigen",
107
+ "components.tag-list-item.tooltip-arrow-keys": "Pfeiltasten",
108
+ "components.tag-list-item.tooltip-arrow-keys-desc": "Zwischen Tags wechseln",
109
+ "components.tag-list-item.tooltip-delete-key": "Rücktaste/Entfernen",
110
+ "components.tag-list-item.tooltip-delete-key-desc": "Ausgewählten Tag löschen",
111
+ "components.tag-list-item.tooltip-title": "Tastatursteuerung",
112
112
  "templates.primary-secondary.adjustableSplitView": "Anpassbare geteilte Ansicht",
113
113
  "templates.primary-secondary.keyboardHorizontal": "Pfeil nach links oder rechts, um die Größe der Ansichtsbereiche anzupassen",
114
114
  "templates.primary-secondary.keyboardVertical": "Pfeil nach oben oder unten, um die Größe der Ansichtsbereiche anzupassen"
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": "{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}.}}",
29
+ "components.form-element.input.number.rangeError": "{minExclusive, select, true {{maxExclusive, select, true {El número debe ser mayor que {min} y menor que {max}.} other {El número debe ser mayor que {min} y menor o igual que {max}.}}} other {{maxExclusive, select, true {El número debe ser mayor o igual que {min} y menor que {max}.} other {El número debe ser mayor o igual que {min} y menor o igual que {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 obligatorio.",
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}}",
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 que ha enviado}}",
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",
@@ -62,7 +62,7 @@ export default {
62
62
  "components.input-time-range.endTime": "Hora de finalización",
63
63
  "components.input-time-range.errorBadInput": "{startLabel} debe ser anterior a {endLabel}",
64
64
  "components.input-time-range.startTime": "Hora de inicio",
65
- "components.interactive.instructions": "Press Enter to interact, Escape to exit",
65
+ "components.interactive.instructions": "Pulse Enter para interactuar y Escape para salir",
66
66
  "components.list-item-drag-handle.default": "Reordenar acción de elemento para {name}",
67
67
  "components.list-item-drag-handle.keyboard": "Reordenar elementos, posición actual {currentPosition} de {size}. Para mover este elemento, pulse las flechas arriba o abajo.",
68
68
  "components.list-item-tooltip.title": "Navegación de listas con el teclado:",
@@ -96,19 +96,19 @@ export default {
96
96
  "components.switch.visibility": "Visibilidad",
97
97
  "components.tabs.next": "Desplazarse hacia delante",
98
98
  "components.tabs.previous": "Desplazarse hacia atrás",
99
- "components.tag-list.clear": "Click to remove item {value}",
100
- "components.tag-list.clear-all": "Clear All",
101
- "components.tag-list.cleared-all": "Removed all tag list items",
102
- "components.tag-list.cleared-item": "Removed tag list item {value}",
103
- "components.tag-list.interactive-label": "Tag List, {count} items",
99
+ "components.tag-list.clear": "Haga clic, pulse Retroceso o pulse la tecla Supr para eliminar el elemento {value}",
100
+ "components.tag-list.clear-all": "Borrar todo",
101
+ "components.tag-list.cleared-all": "Se han eliminado todos los elementos de la lista de etiquetas",
102
+ "components.tag-list.cleared-item": "Se ha eliminado el elemento {value} de la lista de etiquetas",
103
+ "components.tag-list.interactive-label": "Lista de etiquetas, {count} elementos",
104
104
  "components.tag-list.num-hidden": "+ {count} más",
105
105
  "components.tag-list.show-less": "Mostrar menos",
106
- "components.tag-list.show-more-description": "Select to show hidden tag list items",
107
- "components.tag-list-item.tooltip-arrow-keys": "Arrow Keys",
108
- "components.tag-list-item.tooltip-arrow-keys-desc": "Move between tags",
109
- "components.tag-list-item.tooltip-delete-key": "Backspace/Delete",
110
- "components.tag-list-item.tooltip-delete-key-desc": "Delete the focused tag",
111
- "components.tag-list-item.tooltip-title": "Keyboard Controls",
106
+ "components.tag-list.show-more-description": "Seleccione esta opción para mostrar los elementos ocultos de la lista de etiquetas",
107
+ "components.tag-list-item.tooltip-arrow-keys": "Teclas de flecha",
108
+ "components.tag-list-item.tooltip-arrow-keys-desc": "Desplazamiento entre etiquetas",
109
+ "components.tag-list-item.tooltip-delete-key": "Retroceso/Eliminar",
110
+ "components.tag-list-item.tooltip-delete-key-desc": "Eliminar la etiqueta seleccionada",
111
+ "components.tag-list-item.tooltip-title": "Controles del teclado",
112
112
  "templates.primary-secondary.adjustableSplitView": "Vista dividida ajustable",
113
113
  "templates.primary-secondary.keyboardHorizontal": "Flecha hacia la izquierda o la derecha para ajustar el tamaño de los paneles de visualización",
114
114
  "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,7 +26,7 @@ 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": "{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}.}}}}",
29
+ "components.form-element.input.number.rangeError": "{minExclusive, select, true {{maxExclusive, select, true {El número debe ser mayor que {min} y menor que {max}.} other {El número debe ser mayor que {min} y menor o igual que {max}.}}} other {{maxExclusive, select, true {El número debe ser mayor o igual que {min} y menor que {max}.} other {El número debe ser mayor o igual que {min} y menor o igual que {max}.}}}}",
30
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
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",
@@ -62,7 +62,7 @@ export default {
62
62
  "components.input-time-range.endTime": "Hora de finalización",
63
63
  "components.input-time-range.errorBadInput": "{startLabel} debe estar antes de {endLabel}",
64
64
  "components.input-time-range.startTime": "Hora de inicio",
65
- "components.interactive.instructions": "Press Enter to interact, Escape to exit",
65
+ "components.interactive.instructions": "Presione Intro para interactuar y Escape para salir",
66
66
  "components.list-item-drag-handle.default": "Acción de reordenar elemento de {name}",
67
67
  "components.list-item-drag-handle.keyboard": "Reordenar elemento, posición actual {currentPosition} de {size}. Para mover este elemento, presione las flechas hacia arriba o hacia abajo.",
68
68
  "components.list-item-tooltip.title": "Navegación con el teclado para listas:",
@@ -96,19 +96,19 @@ export default {
96
96
  "components.switch.visibility": "Visibilidad",
97
97
  "components.tabs.next": "Desplazarse hacia adelante",
98
98
  "components.tabs.previous": "Desplazarse hacia atrás",
99
- "components.tag-list.clear": "Click to remove item {value}",
100
- "components.tag-list.clear-all": "Clear All",
101
- "components.tag-list.cleared-all": "Removed all tag list items",
102
- "components.tag-list.cleared-item": "Removed tag list item {value}",
103
- "components.tag-list.interactive-label": "Tag List, {count} items",
99
+ "components.tag-list.clear": "Haga clic, presione Retroceso o presione la tecla Suprimir para eliminar el elemento {value}",
100
+ "components.tag-list.clear-all": "Borrar todo",
101
+ "components.tag-list.cleared-all": "Se eliminaron todos los elementos de la lista de etiquetas",
102
+ "components.tag-list.cleared-item": "Se eliminó el elemento {value} de la lista de etiquetas",
103
+ "components.tag-list.interactive-label": "Lista de etiquetas, {count} elementos",
104
104
  "components.tag-list.num-hidden": "+ {count} más",
105
105
  "components.tag-list.show-less": "Mostrar menos",
106
- "components.tag-list.show-more-description": "Select to show hidden tag list items",
107
- "components.tag-list-item.tooltip-arrow-keys": "Arrow Keys",
108
- "components.tag-list-item.tooltip-arrow-keys-desc": "Move between tags",
109
- "components.tag-list-item.tooltip-delete-key": "Backspace/Delete",
110
- "components.tag-list-item.tooltip-delete-key-desc": "Delete the focused tag",
111
- "components.tag-list-item.tooltip-title": "Keyboard Controls",
106
+ "components.tag-list.show-more-description": "Seleccione para mostrar los elementos ocultos de la lista de etiquetas",
107
+ "components.tag-list-item.tooltip-arrow-keys": "Teclas de flecha",
108
+ "components.tag-list-item.tooltip-arrow-keys-desc": "Mover entre etiquetas",
109
+ "components.tag-list-item.tooltip-delete-key": "Retroceso/Suprimir",
110
+ "components.tag-list-item.tooltip-delete-key-desc": "Eliminar la etiqueta enfocada",
111
+ "components.tag-list-item.tooltip-title": "Controles del teclado",
112
112
  "templates.primary-secondary.adjustableSplitView": "Pantalla dividida ajustable",
113
113
  "templates.primary-secondary.keyboardHorizontal": "Utilice la flecha izquierda o derecha para ajustar el tamaño de los paneles de visualización",
114
114
  "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": "{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}.}}}}",
29
+ "components.form-element.input.number.rangeError": "{minExclusive, select, true {{maxExclusive, select, true {Le nombre doit être supérieur à {min} et inférieur à {max}.} other {Le nombre doit être supérieur à {min} et inférieur à ou égal à {max}.}}} other {{maxExclusive, select, true {Le nombre doit être supérieur ou égal à {min} et inférieur à {max}.} other {Le nombre doit être supérieur ou égal à {min} et inférieur ou égal à {max}.}}}}",
30
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
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": "{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.}}",
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",
@@ -62,7 +62,7 @@ export default {
62
62
  "components.input-time-range.endTime": "Heure de fin",
63
63
  "components.input-time-range.errorBadInput": "{startLabel} doit être antérieur à {endLabel}",
64
64
  "components.input-time-range.startTime": "Heure de début",
65
- "components.interactive.instructions": "Press Enter to interact, Escape to exit",
65
+ "components.interactive.instructions": "Appuyer sur entrée pour interagir, sur Echap pour quitter",
66
66
  "components.list-item-drag-handle.default": "Action de réorganisation de l'élément pour {name}",
67
67
  "components.list-item-drag-handle.keyboard": "Réordonner les éléments, position actuelle {currentPosition} sur {size}. Pour déplacer cet élément, appuyez sur les flèches vers le haut ou vers le bas.",
68
68
  "components.list-item-tooltip.title": "Navigation au clavier pour les listes :",
@@ -96,19 +96,19 @@ export default {
96
96
  "components.switch.visibility": "Visibilité",
97
97
  "components.tabs.next": "Faire défiler vers l'avant",
98
98
  "components.tabs.previous": "Faire défiler vers l'arrière",
99
- "components.tag-list.clear": "Click to remove item {value}",
100
- "components.tag-list.clear-all": "Clear All",
101
- "components.tag-list.cleared-all": "Removed all tag list items",
102
- "components.tag-list.cleared-item": "Removed tag list item {value}",
103
- "components.tag-list.interactive-label": "Tag List, {count} items",
99
+ "components.tag-list.clear": "Cliquez sur l’élément, appuyez sur la touche Retour arrière ou sur la touche Suppr pour supprimer l’élément {value}",
100
+ "components.tag-list.clear-all": "Tout effacer",
101
+ "components.tag-list.cleared-all": "Suppression de tous les éléments de la liste d’étiquettes",
102
+ "components.tag-list.cleared-item": "Suppression de l’élément de liste d’étiquettes {value}",
103
+ "components.tag-list.interactive-label": "Liste d’étiquettes, {count} éléments",
104
104
  "components.tag-list.num-hidden": "{count} de plus",
105
105
  "components.tag-list.show-less": "Afficher moins",
106
- "components.tag-list.show-more-description": "Select to show hidden tag list items",
107
- "components.tag-list-item.tooltip-arrow-keys": "Arrow Keys",
108
- "components.tag-list-item.tooltip-arrow-keys-desc": "Move between tags",
109
- "components.tag-list-item.tooltip-delete-key": "Backspace/Delete",
110
- "components.tag-list-item.tooltip-delete-key-desc": "Delete the focused tag",
111
- "components.tag-list-item.tooltip-title": "Keyboard Controls",
106
+ "components.tag-list.show-more-description": "Sélectionnez cette option pour afficher les éléments de la liste d’étiquettes masquées",
107
+ "components.tag-list-item.tooltip-arrow-keys": "Touches fléchées",
108
+ "components.tag-list-item.tooltip-arrow-keys-desc": "Passez d’une étiquette à l’autre",
109
+ "components.tag-list-item.tooltip-delete-key": "Retour arrière/Supprimer",
110
+ "components.tag-list-item.tooltip-delete-key-desc": "Supprimez l’étiquette ciblée",
111
+ "components.tag-list-item.tooltip-title": "Commandes du clavier",
112
112
  "templates.primary-secondary.adjustableSplitView": "Vue fractionnée réglable",
113
113
  "templates.primary-secondary.keyboardHorizontal": "Flèche vers la gauche ou vers la droite pour régler la taille des panneaux d’affichage",
114
114
  "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": "{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}.}}",
29
+ "components.form-element.input.number.rangeError": "{minExclusive, select, true {{maxExclusive, select, true {Le nombre doit être supérieur à {min} et inférieur à {max}.} other {Le nombre doit être supérieur à {min} et inférieur ou égal à {max}.}}} other {{maxExclusive, select, true {Le nombre doit être supérieur ou égal à {min} et inférieur à {max}.} other {Le nombre doit être supérieur ou égal à {min} et inférieur ou égal à {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 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": "{count, plural, one {L'information soumise comportait 1 erreur } other {L'information soumise comportait {count} erreurs}}",
35
+ "components.form-error-summary.errorSummary": "{count, plural, one {Il y avait 1 erreur trouvée dans les informations que vous avez soumises} other {Il y avait {count} erreurs trouvées dans les informations que vous avez soumises}}",
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",
@@ -62,7 +62,7 @@ export default {
62
62
  "components.input-time-range.endTime": "Heure de fin",
63
63
  "components.input-time-range.errorBadInput": "{startLabel} doit précéder {endLabel}",
64
64
  "components.input-time-range.startTime": "Heure de début",
65
- "components.interactive.instructions": "Press Enter to interact, Escape to exit",
65
+ "components.interactive.instructions": "Appuyez sur Entrée pour interagir, sur Échapper pour quitter",
66
66
  "components.list-item-drag-handle.default": "Réordonner l'action de l'élément pour {name}",
67
67
  "components.list-item-drag-handle.keyboard": "Réorganiser les éléments, position actuelle {currentPosition} de {size}. Pour déplacer cet élément, utilisez les flèches vers le haut et vers le bas.",
68
68
  "components.list-item-tooltip.title": "Navigation au clavier pour les listes :",
@@ -96,19 +96,19 @@ export default {
96
96
  "components.switch.visibility": "Visibilité",
97
97
  "components.tabs.next": "Défilement avant",
98
98
  "components.tabs.previous": "Défilement arrière",
99
- "components.tag-list.clear": "Click to remove item {value}",
100
- "components.tag-list.clear-all": "Clear All",
101
- "components.tag-list.cleared-all": "Removed all tag list items",
102
- "components.tag-list.cleared-item": "Removed tag list item {value}",
103
- "components.tag-list.interactive-label": "Tag List, {count} items",
99
+ "components.tag-list.clear": "Cliquez sur le bouton, appuyez sur retour arrière ou appuyez sur la touche de suppression pour supprimer l’élément {value}",
100
+ "components.tag-list.clear-all": "Effacer tout",
101
+ "components.tag-list.cleared-all": "Suppression de tous les éléments de la liste des balises",
102
+ "components.tag-list.cleared-item": "Élément {value} de la liste des balises supprimé",
103
+ "components.tag-list.interactive-label": "Liste des balises, {count} éléments",
104
104
  "components.tag-list.num-hidden": "+ {count} de plus",
105
105
  "components.tag-list.show-less": "Afficher moins",
106
- "components.tag-list.show-more-description": "Select to show hidden tag list items",
107
- "components.tag-list-item.tooltip-arrow-keys": "Arrow Keys",
108
- "components.tag-list-item.tooltip-arrow-keys-desc": "Move between tags",
109
- "components.tag-list-item.tooltip-delete-key": "Backspace/Delete",
110
- "components.tag-list-item.tooltip-delete-key-desc": "Delete the focused tag",
111
- "components.tag-list-item.tooltip-title": "Keyboard Controls",
106
+ "components.tag-list.show-more-description": "Sélectionnez cette option pour afficher les éléments de la liste des balises cachées",
107
+ "components.tag-list-item.tooltip-arrow-keys": "Touches fléchées",
108
+ "components.tag-list-item.tooltip-arrow-keys-desc": "Passer d’une balise à l’autre",
109
+ "components.tag-list-item.tooltip-delete-key": "Retour arrière/suppression",
110
+ "components.tag-list-item.tooltip-delete-key-desc": "Supprimer la balise ciblée",
111
+ "components.tag-list-item.tooltip-title": "Commandes du clavier",
112
112
  "templates.primary-secondary.adjustableSplitView": "Vue partagée réglable",
113
113
  "templates.primary-secondary.keyboardHorizontal": "Utiliser la flèche vers la gauche ou vers la droite pour régler la taille des volets d'affichage",
114
114
  "templates.primary-secondary.keyboardVertical": "Flèche vers le haut ou vers le bas pour régler la taille des volets d'affichage"