@brightspace-ui/core 3.132.0 → 3.133.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.
@@ -0,0 +1,116 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
5
+ <meta charset="UTF-8">
6
+ <link rel="stylesheet" href="../../components/demo/styles.css" type="text/css">
7
+ <script type="module">
8
+ import '../../components/demo/demo-page.js';
9
+ import '../../components/inputs/input-textarea.js';
10
+ </script>
11
+ </head>
12
+ <body unresolved>
13
+ <d2l-demo-page page-title="template-tags">
14
+
15
+ <h2>Basic Template - No Tag</h2>
16
+
17
+ <d2l-demo-snippet>
18
+ <template>
19
+ <d2l-input-textarea id="no-tag"></d2l-input-textarea>
20
+ <script type="module">
21
+ document.querySelector('#no-tag').value = `
22
+ A multiline template literal,
23
+ with in-code indentation
24
+ `;
25
+ </script>
26
+ </template>
27
+ </d2l-demo-snippet>
28
+
29
+ <h2>Basic Template - Tag</h2>
30
+
31
+ <d2l-demo-snippet>
32
+ <template>
33
+ <d2l-input-textarea id="normal-tag"></d2l-input-textarea>
34
+ <script type="module">
35
+ import { set } from '../../helpers/template-tags.js';
36
+ document.querySelector('#normal-tag').value =
37
+ set`A multiline template literal,
38
+ with in-code indentation`;
39
+ </script>
40
+ </template>
41
+ </d2l-demo-snippet>
42
+
43
+ <h2>Basic Template - Tag (whitespace)</h2>
44
+
45
+ <d2l-demo-snippet>
46
+ <template>
47
+ <d2l-input-textarea id="marked-tag"></d2l-input-textarea>
48
+ <script type="module">
49
+ import { set } from '../../helpers/template-tags.js';
50
+ document.querySelector('#marked-tag').value = set`
51
+ A multiline template literal,
52
+ with in-code indentation
53
+ `;
54
+ </script>
55
+ </template>
56
+ </d2l-demo-snippet>
57
+
58
+ <h2>Complex Template - No Tag</h2>
59
+
60
+ <d2l-demo-snippet>
61
+ <template>
62
+ <d2l-input-textarea id="complex-no-tag"></d2l-input-textarea>
63
+ <d2l-input-textarea id="complex-no-tag2"></d2l-input-textarea>
64
+ <script type="module">
65
+ document.querySelector('#complex-no-tag').value =
66
+ `{peopleCount, plural,
67
+ one {There is # person}
68
+ other {There are # people}
69
+ }`;
70
+ document.querySelector('#complex-no-tag2').value =
71
+ `{peopleCount, plural,
72
+ one {There is # person}
73
+ other {There are # people}
74
+ }`;
75
+ </script>
76
+ </template>
77
+ </d2l-demo-snippet>
78
+
79
+ <h2>Complex Template - Tag</h2>
80
+
81
+ <d2l-demo-snippet>
82
+ <template>
83
+ <d2l-input-textarea id="complex-normal-tag"></d2l-input-textarea>
84
+ <script type="module">
85
+ import { set } from '../../helpers/template-tags.js';
86
+ document.querySelector('#complex-normal-tag').value =
87
+ set`{peopleCount, plural,
88
+ one {There is # person}
89
+ other {There are # people}
90
+ }`;
91
+ </script>
92
+ </template>
93
+ </d2l-demo-snippet>
94
+
95
+ <h2>Complex Template - Tag (whitespace)</h2>
96
+
97
+ <d2l-demo-snippet>
98
+ <template>
99
+ <d2l-input-textarea id="complex-marked-tag"></d2l-input-textarea>
100
+ <script type="module">
101
+ import { set } from '../../helpers/template-tags.js';
102
+ const test = 'are';
103
+ document.querySelector('#complex-marked-tag').value = set`
104
+ {peopleCount, plural,
105
+ one {There is # person}
106
+ other {There ${test} # people}
107
+ }
108
+ `;
109
+ </script>
110
+ </template>
111
+ </d2l-demo-snippet>
112
+
113
+ </d2l-demo-page>
114
+
115
+ </body>
116
+ </html>
@@ -0,0 +1,23 @@
1
+ const emptyStartRe = /^\s*?\n/;
2
+ const emptyEndRe = /\n[^\S\n]+$/;
3
+ const indentRe = /^\s*/;
4
+ export function set(strings, ...expressions) {
5
+ let w = Number.MAX_SAFE_INTEGER;
6
+ const emptyStart = strings[0].match(emptyStartRe);
7
+ if (emptyStart) {
8
+ strings = [ strings[0].replace(emptyStartRe, ''), ...strings.slice(1) ];
9
+ strings[strings.length - 1] = strings.at(-1).replace(emptyEndRe, '');
10
+ }
11
+ strings
12
+ .forEach(s => s
13
+ .split('\n')
14
+ .forEach((s, idx) => {
15
+ if (idx) w = Math.min(s.match(indentRe)[0].length, w);
16
+ })
17
+ );
18
+
19
+ const re = new RegExp(`(^|\n)[^\\S\n]{${w}}`, 'g');
20
+ return strings.reduce((acc, i, idx) => {
21
+ return acc.push(i.replace(re, '$1'), expressions[idx] ?? '') && acc;
22
+ }, []).join('');
23
+ }
package/lang/ar.js CHANGED
@@ -22,10 +22,10 @@ export default {
22
22
  "components.filter.clearAnnounce": "جارٍ مسح عوامل التصفية لـ: {filterName}",
23
23
  "components.filter.clearDescription": "مسح عوامل التصفية لـ: {filterName}",
24
24
  "components.filter.loading": "يتم تحميل عوامل التصفية",
25
- "components.filter.filterCountDescription": "{number, plural, =0 {لم يتم تطبيق عوامل تصفية.} one {تم تطبيق {number} عامل تصفية} other {تم تطبيق {number} من عوامل التصفية.}}",
25
+ "components.filter.filterCountDescription": "{number, plural, =0 {لم يتم تطبيق عوامل تصفية.} one {تم تطبيق {number} عامل تصفية} other {تم تطبيق {number} من عوامل التصفية.}}",
26
26
  "components.filter.filters": "عوامل التصفية",
27
27
  "components.filter.noFilters": "ما من عوامل تصفية متوفرة",
28
- "components.filter.searchResults": "{number, plural, =0 {ما من نتائج بحث} one {{number} نتيجة بحث} other {{number} من نتائج البحث}}",
28
+ "components.filter.searchResults": "{number, plural, =0 {ما من نتائج بحث} one {{number} نتيجة بحث} other {{number} من نتائج البحث}}",
29
29
  "components.filter.selectedFirstListLabel": "{headerText}. تظهر عوامل التصفية المحددة أولاً.",
30
30
  "components.filter.singleDimensionDescription": "التصفية حسب: {filterName}",
31
31
  "components.filter-dimension-set-date-text-value.textHours": "{num, plural, =1 {آخر ساعة} other {آخر {num} من الساعات}}",
@@ -75,8 +75,8 @@ export default {
75
75
  "components.input-date.useDateFormat": "استخدم تنسيق التاريخ {format}.",
76
76
  "components.input-number.hintInteger": "يقبل هذا الحقل قيم الأعداد الصحيحة فقط (بدون أعداد عشرية)",
77
77
  "components.input-number.hintDecimalDuplicate": "يوجد عدد عشري في هذا الرقم",
78
- "components.input-number.hintDecimalIncorrectComma": "لإضافة عدد عشري، استخدم حرف الفاصلة \",\"",
79
- "components.input-number.hintDecimalIncorrectPeriod": "لإضافة عدد عشري، استخدم حرف النقطة \".\"",
78
+ "components.input-number.hintDecimalIncorrectComma": "لإضافة عدد عشري، استخدم حرف الفاصلة ”,“",
79
+ "components.input-number.hintDecimalIncorrectPeriod": "لإضافة عدد عشري، استخدم حرف النقطة ”.“",
80
80
  "components.input-search.clear": "مسح البحث",
81
81
  "components.input-search.defaultPlaceholder": "البحث...",
82
82
  "components.input-search.search": "بحث",
package/lang/cy.js CHANGED
@@ -5,10 +5,10 @@ export default {
5
5
  "components.button-split.otherOptions": "Other Options",
6
6
  "components.calendar.hasEvents": "Yn Cynnwys Digwyddiadau.",
7
7
  "components.calendar.notSelected": "Heb ei Ddewis.",
8
- "components.calendar.selected": "Wedi'i Ddewis.",
8
+ "components.calendar.selected": "Wedii Ddewis.",
9
9
  "components.calendar.show": "Dangos {month}",
10
10
  "components.count-badge.plus": "{number}+",
11
- "components.dialog.close": "Cau'r dialog hwn",
11
+ "components.dialog.close": "Caur dialog hwn",
12
12
  "components.dialog.critical": "Critigol!",
13
13
  "components.dropdown.close": "Cau",
14
14
  "components.filter.activeFilters": "Dim Hidlwyr Gweithredol:",
@@ -26,7 +26,7 @@ export default {
26
26
  "components.filter.filters": "Hidlyddion",
27
27
  "components.filter.noFilters": "Dim hidlyddion ar gael",
28
28
  "components.filter.searchResults": "{number, plural, =0 {Dim canlyniadau chwilio} one {{number} canlyniad chwilio} other {{number} canlyniadau chwilio}}",
29
- "components.filter.selectedFirstListLabel": "{headerText}. Mae'r hidlyddion a ddewiswyd yn ymddangos gyntaf.",
29
+ "components.filter.selectedFirstListLabel": "{headerText}. Maer hidlyddion a ddewiswyd yn ymddangos gyntaf.",
30
30
  "components.filter.singleDimensionDescription": "Hidlo yn ôl: {filterName}",
31
31
  "components.filter-dimension-set-date-text-value.textHours": "{num, plural, =1 {Awr ddiwethaf} other {{num} awr ddiwethaf}}",
32
32
  "components.filter-dimension-set-date-text-value.textDays": "{num, plural, =0 {Heddiw} one {{num} diwrnod diwethaf} other {{num} o ddiwrnodau diwethaf}}",
@@ -38,12 +38,12 @@ export default {
38
38
  "components.filter-dimension-set-date-time-range-value.text": "Ystod dyddiad pwrpasol",
39
39
  "components.form-element.defaultError": "Mae {label} yn annilys",
40
40
  "components.form-element.defaultFieldLabel": "Maes",
41
- "components.form-element.input.email.typeMismatch": "Nid yw'r e-bost yn ddilys",
42
- "components.form-element.input.number.rangeError": "{minExclusive, select, true {{maxExclusive, select, true {Rhaid i'r nifer fod yn fwy na {min} a llai na {max}.} other {Rhaid i'r nifer fod yn fwy na {min} a llai na neu'n hafal i {max}.}}} other {{maxExclusive, select, true {Rhaid i'r nifer fod yn fwy na neu'n hafal i {min} a llai na {max}.} other {Rhaid i'r nifer fod yn fwy na neu'n hafal i {min} a llai na neu'n hafal i {max}.}}}}",
43
- "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}.}}",
44
- "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}.}}",
41
+ "components.form-element.input.email.typeMismatch": "Nid ywr e-bost yn ddilys",
42
+ "components.form-element.input.number.rangeError": "{minExclusive, select, true {{maxExclusive, select, true {Rhaid ir nifer fod yn fwy na {min} a llai na {max}.} other {Rhaid ir nifer fod yn fwy na {min} a llai na neun hafal i {max}.}}} other {{maxExclusive, select, true {Rhaid ir nifer fod yn fwy na neun hafal i {min} a llai na {max}.} other {Rhaid ir nifer fod yn fwy na neun hafal i {min} a llai na neun hafal i {max}.}}}}",
43
+ "components.form-element.input.number.rangeOverflow": "{maxExclusive, select, true {Rhaid ir nifer fod yn llai na {max}.} other {Rhaid ir nifer fod yn llai na neu’n hafal i {max}.}}",
44
+ "components.form-element.input.number.rangeUnderflow": "{minExclusive, select, true {Rhaid ir nifer fod yn fwy na {min}.} other {Rhaid ir nifer fod yn fwy na neun hafal i {min}.}}",
45
45
  "components.form-element.input.text.tooShort": "Rhaid i {label} fod o leiaf {minlength} nod",
46
- "components.form-element.input.url.typeMismatch": "Nid yw'r URL yn ddilys.",
46
+ "components.form-element.input.url.typeMismatch": "Nid ywr URL yn ddilys.",
47
47
  "components.form-element.valueMissing": "Mae angen {label}",
48
48
  "components.form-error-summary.errorSummary": "{count, plural, one {Canfuwyd {count} gwall yn y wybodaeth a gyflwynoch} other {Canfuwyd {count} gwall yn y wybodaeth a gyflwynoch}}",
49
49
  "components.form-error-summary.text": "Toglo manylion gwall",
@@ -61,23 +61,23 @@ export default {
61
61
  "components.input-date-time.date": "Dyddiad",
62
62
  "components.input-date-time.errorMaxDateOnly": "Rhaid i’r dyddiad fod cyn neu ar {maxDate}",
63
63
  "components.input-date-time.errorMinDateOnly": "Rhaid i’r dyddiad fod ar neu ar ôl {minDate}",
64
- "components.input-date-time.errorOutsideRange": "Rhaid i'r dyddiad fod rhwng {minDate} a {maxDate}",
64
+ "components.input-date-time.errorOutsideRange": "Rhaid ir dyddiad fod rhwng {minDate} a {maxDate}",
65
65
  "components.input-date-time.time": "Amser",
66
66
  "components.input-date-time-range.interactive-label": "Mewnbwn ystod dyddiad ac amser",
67
67
  "components.input-date.clear": "Clirio",
68
68
  "components.input-date.errorMaxDateOnly": "Rhaid i’r dyddiad fod cyn neu ar {maxDate}",
69
69
  "components.input-date.errorMinDateOnly": "Rhaid i’r dyddiad fod ar neu ar ôl {minDate}",
70
- "components.input-date.errorOutsideRange": "Rhaid i'r dyddiad fod rhwng {minDate} a {maxDate}",
70
+ "components.input-date.errorOutsideRange": "Rhaid ir dyddiad fod rhwng {minDate} a {maxDate}",
71
71
  "components.input-date.openInstructions": "Defnyddio fformat dyddiad {format}. Pwyswch saeth i lawr neu Enter i gael mynediad at galendr bach.",
72
72
  "components.input-date.now": "Nawr",
73
- "components.input-date.revert": "Mae {label} wedi'i ddychwelyd i'r gwerth blaenorol.",
73
+ "components.input-date.revert": "Mae {label} wedii ddychwelyd ir gwerth blaenorol.",
74
74
  "components.input-date.today": "Heddiw",
75
75
  "components.input-date.useDateFormat": "Defnyddio fformat dyddiad {format}.",
76
- "components.input-number.hintInteger": "Mae'r maes hwn yn derbyn gwerthoedd cyfanrif yn unig (dim degolion)",
76
+ "components.input-number.hintInteger": "Maer maes hwn yn derbyn gwerthoedd cyfanrif yn unig (dim degolion)",
77
77
  "components.input-number.hintDecimalDuplicate": "Mae degol eisoes yn y nifer hwn",
78
- "components.input-number.hintDecimalIncorrectComma": "I ychwanegu degol defnyddiwch y nod coma \",”",
79
- "components.input-number.hintDecimalIncorrectPeriod": "I ychwanegu degol defnyddiwch y nod atalnod llawn \".\"",
80
- "components.input-search.clear": "Clirio'r Chwilio",
78
+ "components.input-number.hintDecimalIncorrectComma": "I ychwanegu degol defnyddiwch y nod coma “,”",
79
+ "components.input-number.hintDecimalIncorrectPeriod": "I ychwanegu degol defnyddiwch y nod atalnod llawn “.”",
80
+ "components.input-search.clear": "Clirior Chwilio",
81
81
  "components.input-search.defaultPlaceholder": "Chwilio...",
82
82
  "components.input-search.search": "Chwilio",
83
83
  "components.input-time-range.endTime": "Amser Gorffen",
@@ -85,20 +85,20 @@ export default {
85
85
  "components.input-time-range.startTime": "Amser Dechrau",
86
86
  "components.interactive.instructions": "Pwyswch Enter i ryngweithio, Escape i adael",
87
87
  "components.link.open-in-new-window": "Yn agor mewn ffenestr newydd",
88
- "components.list.keyboard": "Defnyddiwch y <b>bysellau saeth</b> i symud ffocws y tu mewn i'r rhestr hon, neu <b>tudalen i fyny/i lawr</b> i symud i fyny neu i lawr erbyn 5",
88
+ "components.list.keyboard": "Defnyddiwch y <b>bysellau saeth</b> i symud ffocws y tu mewn ir rhestr hon, neu <b>tudalen i fyny/i lawr</b> i symud i fyny neu i lawr erbyn 5",
89
89
  "components.list-controls.label": "Camau gweithredu ar gyfer rhestr",
90
90
  "components.list-item.addItem": "Ychwanegu Eitem",
91
91
  "components.list-item-drag-handle.default": "Aildrefnu gweithred eitem ar gyfer {name}",
92
- "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.",
92
+ "components.list-item-drag-handle.keyboard": "Aildrefnu eitemau, safle presennol {currentPosition} allan o {size}. I symud yr eitem hon, pwyswch y saeth i fyny neur saeth i lawr.",
93
93
  "components.list-item-drag-handle-tooltip.title": "Rheolaethau bysellfwrdd ar gyfer aildrefnu:",
94
94
  "components.list-item-drag-handle-tooltip.enter-key": "Nodi",
95
- "components.list-item-drag-handle-tooltip.enter-desc": "Toglo'r modd aildrefnu bysellfwrdd.",
95
+ "components.list-item-drag-handle-tooltip.enter-desc": "Toglor modd aildrefnu bysellfwrdd.",
96
96
  "components.list-item-drag-handle-tooltip.up-down-key": "I Fyny/I Lawr",
97
97
  "components.list-item-drag-handle-tooltip.up-down-desc": "Symud yr eitem i fyny neu i lawr yn y rhestr.",
98
98
  "components.list-item-drag-handle-tooltip.left-right-key": "Chwith/De",
99
99
  "components.list-item-drag-handle-tooltip.left-right-desc": "Newid y lefel nythu.",
100
- "components.menu-item-return.return": "Dychwelyd i'r ddewislen flaenorol.",
101
- "components.menu-item-return.returnCurrentlyShowing": "Dychwelyd i'r ddewislen flaenorol. Rydych chi'n edrych ar {menuTitle}.",
100
+ "components.menu-item-return.return": "Dychwelyd ir ddewislen flaenorol.",
101
+ "components.menu-item-return.returnCurrentlyShowing": "Dychwelyd ir ddewislen flaenorol. Rydych chin edrych ar {menuTitle}.",
102
102
  "components.meter-mixin.commaSeperatedAria": "{term1}, {term2}",
103
103
  "components.meter-mixin.fraction": "{x}∕{y}",
104
104
  "components.meter-mixin.fractionAria": "{x} allan o {y}",
@@ -112,8 +112,8 @@ export default {
112
112
  "components.pageable.info": "{count, plural, one {{countFormatted} eitem} other {{countFormatted} o eitemau}}",
113
113
  "components.pageable.info-with-total": "{totalCount, plural, one {{countFormatted} o {totalCountFormatted} eitem} other {{countFormatted} o {totalCountFormatted} eitemau}}",
114
114
  "components.pager-load-more.status-loading": "Llwytho rhagor o eitemau",
115
- "components.selection.action-max-hint": "{count, plural, one {Wedi'i analluogi pan fydd mwy nag {countFormatted} eitem yn cael ei ddewis} other {Wedi'i analluogi pan fydd mwy na {countFormatted} eitem yn cael eu dewis}}",
116
- "components.selection.action-required-hint": "Rhaid i chi ddewis eitem i gyflawni'r weithred hon",
115
+ "components.selection.action-max-hint": "{count, plural, one {Wedii analluogi pan fydd mwy nag {countFormatted} eitem yn cael ei ddewis} other {Wedii analluogi pan fydd mwy na {countFormatted} eitem yn cael eu dewis}}",
116
+ "components.selection.action-required-hint": "Rhaid i chi ddewis eitem i gyflawnir weithred hon",
117
117
  "components.selection.select-all": "Dewis y Cyfan",
118
118
  "components.selection.select-all-items": "Dewis Pob {count} Eitem",
119
119
  "components.selection.selected": "{count} wedi’u dewis.",
package/lang/da.js CHANGED
@@ -75,8 +75,8 @@ export default {
75
75
  "components.input-date.useDateFormat": "Brug datoformatet {format}.",
76
76
  "components.input-number.hintInteger": "Dette felt accepterer kun heltalsværdier (ingen decimaler)",
77
77
  "components.input-number.hintDecimalDuplicate": "Der er allerede en decimal i dette tal",
78
- "components.input-number.hintDecimalIncorrectComma": "Hvis du vil tilføje en decimal, skal du bruge komma-tegnet \",\"",
79
- "components.input-number.hintDecimalIncorrectPeriod": "Hvis du vil tilføje en decimal, skal du bruge tegnet \".\"",
78
+ "components.input-number.hintDecimalIncorrectComma": "Hvis du vil tilføje en decimal, skal du bruge komma-tegnet “,”",
79
+ "components.input-number.hintDecimalIncorrectPeriod": "Hvis du vil tilføje en decimal, skal du bruge tegnet “.”",
80
80
  "components.input-search.clear": "Ryd søgning",
81
81
  "components.input-search.defaultPlaceholder": "Søg ...",
82
82
  "components.input-search.search": "Søg",
package/lang/de.js CHANGED
@@ -75,8 +75,8 @@ export default {
75
75
  "components.input-date.useDateFormat": "Das Datumsformat {format} verwenden.",
76
76
  "components.input-number.hintInteger": "Dieses Feld akzeptiert nur Ganzzahlen (keine Dezimalstellen)",
77
77
  "components.input-number.hintDecimalDuplicate": "Diese Zahl enthält bereits eine Dezimale",
78
- "components.input-number.hintDecimalIncorrectComma": "Verwenden Sie zum Hinzufügen einer Dezimalstelle das Komma \",“",
79
- "components.input-number.hintDecimalIncorrectPeriod": "Verwenden Sie zum Hinzufügen einer Dezimalstelle das Zeichen \".“",
78
+ "components.input-number.hintDecimalIncorrectComma": "Verwenden Sie zum Hinzufügen einer Dezimalstelle das Komma „,“",
79
+ "components.input-number.hintDecimalIncorrectPeriod": "Verwenden Sie zum Hinzufügen einer Dezimalstelle das Zeichen „.“",
80
80
  "components.input-search.clear": "Suche löschen",
81
81
  "components.input-search.defaultPlaceholder": "Suchen...",
82
82
  "components.input-search.search": "Suchen",
package/lang/en-gb.js CHANGED
@@ -74,9 +74,9 @@ export default {
74
74
  "components.input-date.today": "Today",
75
75
  "components.input-date.useDateFormat": "Use date format {format}.",
76
76
  "components.input-number.hintInteger": "This field only accepts integer values (no decimals)",
77
- "components.input-number.hintDecimalDuplicate": "There's already a decimal in this number",
78
- "components.input-number.hintDecimalIncorrectComma": "To add a decimal use the comma \",\" character",
79
- "components.input-number.hintDecimalIncorrectPeriod": "To add a decimal use the period \".\" character",
77
+ "components.input-number.hintDecimalDuplicate": "Theres already a decimal in this number",
78
+ "components.input-number.hintDecimalIncorrectComma": "To add a decimal use the comma ‘,’ character",
79
+ "components.input-number.hintDecimalIncorrectPeriod": "To add a decimal use the period ‘.’ character",
80
80
  "components.input-search.clear": "Clear Search",
81
81
  "components.input-search.defaultPlaceholder": "Search...",
82
82
  "components.input-search.search": "Search",
package/lang/en.js CHANGED
@@ -74,9 +74,9 @@ export default {
74
74
  "components.input-date.today": "Today",
75
75
  "components.input-date.useDateFormat": "Use date format {format}.",
76
76
  "components.input-number.hintInteger": "This field only accepts integer values (no decimals)",
77
- "components.input-number.hintDecimalDuplicate": "There's already a decimal in this number",
78
- "components.input-number.hintDecimalIncorrectComma": "To add a decimal use the comma \",\" character",
79
- "components.input-number.hintDecimalIncorrectPeriod": "To add a decimal use the period \".\" character",
77
+ "components.input-number.hintDecimalDuplicate": "Theres already a decimal in this number",
78
+ "components.input-number.hintDecimalIncorrectComma": "To add a decimal use the comma “,” character",
79
+ "components.input-number.hintDecimalIncorrectPeriod": "To add a decimal use the period “.” character",
80
80
  "components.input-search.clear": "Clear Search",
81
81
  "components.input-search.defaultPlaceholder": "Search...",
82
82
  "components.input-search.search": "Search",
package/lang/es-es.js CHANGED
@@ -75,8 +75,8 @@ export default {
75
75
  "components.input-date.useDateFormat": "Usar formato de fecha {format}.",
76
76
  "components.input-number.hintInteger": "Este campo sólo acepta valores enteros (sin decimales)",
77
77
  "components.input-number.hintDecimalDuplicate": "Ya hay un decimal en este número",
78
- "components.input-number.hintDecimalIncorrectComma": "Para agregar un decimal, utilice la coma \",\"",
79
- "components.input-number.hintDecimalIncorrectPeriod": "Para agregar un decimal, utilice el punto \".\"",
78
+ "components.input-number.hintDecimalIncorrectComma": "Para agregar un decimal, utilice la coma “,”",
79
+ "components.input-number.hintDecimalIncorrectPeriod": "Para agregar un decimal, utilice el punto “.”",
80
80
  "components.input-search.clear": "Borrar búsqueda",
81
81
  "components.input-search.defaultPlaceholder": "Buscar…",
82
82
  "components.input-search.search": "Buscar",
package/lang/fr-fr.js CHANGED
@@ -1,5 +1,5 @@
1
1
  export default {
2
- "components.alert.close": "Fermer l'alerte",
2
+ "components.alert.close": "Fermer lalerte",
3
3
  "components.breadcrumbs.breadcrumb": "Chemin de navigation",
4
4
  "components.button-add.addItem": "Ajouter un élément",
5
5
  "components.button-split.otherOptions": "Other Options",
@@ -38,7 +38,7 @@ export default {
38
38
  "components.filter-dimension-set-date-time-range-value.text": "Période personnalisée",
39
39
  "components.form-element.defaultError": "{label} n’est pas valide",
40
40
  "components.form-element.defaultFieldLabel": "Champ",
41
- "components.form-element.input.email.typeMismatch": "L'adresse e-mail n'est pas valide.",
41
+ "components.form-element.input.email.typeMismatch": "Ladresse e-mail nest pas valide.",
42
42
  "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}.}}}}",
43
43
  "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}.}}",
44
44
  "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}.}}",
@@ -88,15 +88,15 @@ export default {
88
88
  "components.list.keyboard": "Utilisez les <b>touches fléchées</b> pour vous concentrer sur cette liste, ou <b>faites défiler la page vers le haut/bas</b> pour la faire défiler de 5",
89
89
  "components.list-controls.label": "Actions pour la liste",
90
90
  "components.list-item.addItem": "Ajouter un élément",
91
- "components.list-item-drag-handle.default": "Action de réorganisation de l'élément pour {name}",
91
+ "components.list-item-drag-handle.default": "Action de réorganisation de l’élément pour {name}",
92
92
  "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.",
93
93
  "components.list-item-drag-handle-tooltip.title": "Commandes du clavier pour la réorganisation :",
94
94
  "components.list-item-drag-handle-tooltip.enter-key": "Saisir",
95
95
  "components.list-item-drag-handle-tooltip.enter-desc": "Basculez le mode de réorganisation du clavier.",
96
96
  "components.list-item-drag-handle-tooltip.up-down-key": "Haut/bas",
97
- "components.list-item-drag-handle-tooltip.up-down-desc": "Déplacez l'élément vers le haut ou vers le bas dans la liste.",
97
+ "components.list-item-drag-handle-tooltip.up-down-desc": "Déplacez l’élément vers le haut ou vers le bas dans la liste.",
98
98
  "components.list-item-drag-handle-tooltip.left-right-key": "Gauche/droite",
99
- "components.list-item-drag-handle-tooltip.left-right-desc": "Modifiez le niveau d'imbrication.",
99
+ "components.list-item-drag-handle-tooltip.left-right-desc": "Modifiez le niveau dimbrication.",
100
100
  "components.menu-item-return.return": "Revenir au menu précédent.",
101
101
  "components.menu-item-return.returnCurrentlyShowing": "Revenir au menu précédent. Vous consultez {menuTitle}.",
102
102
  "components.meter-mixin.commaSeperatedAria": "{term1}, {term2}",
@@ -106,7 +106,7 @@ export default {
106
106
  "components.more-less.less": "moins",
107
107
  "components.more-less.more": "plus",
108
108
  "components.object-property-list.item-placeholder-text": "Élément d’espace réservé",
109
- "components.overflow-group.moreActions": "Plus d'actions",
109
+ "components.overflow-group.moreActions": "Plus dactions",
110
110
  "components.pager-load-more.action": "Charger plus",
111
111
  "components.pager-load-more.action-with-page-size": "Charger {count} supplémentaire(s)",
112
112
  "components.pageable.info": "{count, plural, one {{countFormatted} élément} other {{countFormatted} éléments}}",
@@ -127,8 +127,8 @@ export default {
127
127
  "components.table-col-sort-button.changeSortOrder": "Sélectionner pour modifier l’ordre de tri",
128
128
  "components.table-col-sort-button.title": "{sourceType, select, dates {{direction, select, desc {Tri du plus récent au plus ancien} other {Tri du plus ancien au plus récent}}} numbers {{direction, select, desc {Tri du plus petit au plus grand} other {Tri du plus grand au plus petit}}} words {{direction, select, desc {Tri de Z à A} other {Tri de A à Z}}} value {Tri par {selectedMenuItemText}} other {{direction, select, desc {Tri par ordre décroissant} other {Tri par ordre croissant}}}}",
129
129
  "components.table-controls.label": "Actions du tableau",
130
- "components.tabs.next": "Faire défiler vers l'avant",
131
- "components.tabs.previous": "Faire défiler vers l'arrière",
130
+ "components.tabs.next": "Faire défiler vers lavant",
131
+ "components.tabs.previous": "Faire défiler vers larrière",
132
132
  "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}",
133
133
  "components.tag-list.clear-all": "Tout effacer",
134
134
  "components.tag-list.cleared-all": "Suppression de tous les éléments de la liste d’étiquettes",
package/lang/fr.js CHANGED
@@ -1,5 +1,5 @@
1
1
  export default {
2
- "components.alert.close": "Fermer l'alerte",
2
+ "components.alert.close": "Fermer lalerte",
3
3
  "components.breadcrumbs.breadcrumb": "Chemin de navigation",
4
4
  "components.button-add.addItem": "Ajouter un élément",
5
5
  "components.button-split.otherOptions": "Other Options",
@@ -36,19 +36,19 @@ export default {
36
36
  "components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "Après {startValue}",
37
37
  "components.filter-dimension-set-date-time-range-value.valueTextRangeEndOnly": "Avant {endValue}",
38
38
  "components.filter-dimension-set-date-time-range-value.text": "Période personnalisée",
39
- "components.form-element.defaultError": "{label} n'est pas valide",
39
+ "components.form-element.defaultError": "{label} nest pas valide",
40
40
  "components.form-element.defaultFieldLabel": "Champ",
41
- "components.form-element.input.email.typeMismatch": "L'adresse courriel n'est pas valide",
41
+ "components.form-element.input.email.typeMismatch": "Ladresse courriel nest pas valide",
42
42
  "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}.}}}}",
43
43
  "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}.}}",
44
44
  "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}.}}",
45
45
  "components.form-element.input.text.tooShort": "{label} doit comprendre au moins {minlength} caractères",
46
- "components.form-element.input.url.typeMismatch": "L'URL n'est pas valide",
46
+ "components.form-element.input.url.typeMismatch": "LURL nest pas valide",
47
47
  "components.form-element.valueMissing": "{label} est requis",
48
48
  "components.form-error-summary.errorSummary": "{count, plural, one {Il y avait {count} erreur trouvée dans les informations que vous avez soumises} other {Il y avait {count} erreurs trouvées dans les informations que vous avez soumises}}",
49
- "components.form-error-summary.text": "Afficher les détails de l'erreur",
49
+ "components.form-error-summary.text": "Afficher les détails de lerreur",
50
50
  "components.input-color.backgroundColor": "Couleur d’arrière-plan",
51
- "components.input-color.foregroundColor": "Couleur de l'avant-plan",
51
+ "components.input-color.foregroundColor": "Couleur de lavant-plan",
52
52
  "components.input-color.none": "Aucun",
53
53
  "components.input-date-range.endDate": "Date de fin",
54
54
  "components.input-date-range.errorBadInput": "{startLabel} doit précéder {endLabel}",
@@ -68,10 +68,10 @@ export default {
68
68
  "components.input-date.errorMaxDateOnly": "La date doit être {maxDate} ou une date antérieure",
69
69
  "components.input-date.errorMinDateOnly": "La date doit être {minDate} ou une date ultérieure",
70
70
  "components.input-date.errorOutsideRange": "La date doit être comprise entre {minDate} et {maxDate}",
71
- "components.input-date.openInstructions": "Utiliser le format de date {format}. Utiliser la flèche vers le bas ou la touche d'entrée pour accéder au mini-calendrier.",
71
+ "components.input-date.openInstructions": "Utiliser le format de date {format}. Utiliser la flèche vers le bas ou la touche dentrée pour accéder au mini-calendrier.",
72
72
  "components.input-date.now": "Maintenant",
73
73
  "components.input-date.revert": "La valeur précédente a été réattribuée à {label}.",
74
- "components.input-date.today": "Aujourd'hui",
74
+ "components.input-date.today": "Aujourdhui",
75
75
  "components.input-date.useDateFormat": "Utiliser le format de date {format}.",
76
76
  "components.input-number.hintInteger": "Ce champ accepte uniquement les valeurs entières (sans décimales)",
77
77
  "components.input-number.hintDecimalDuplicate": "Ce nombre comporte déjà une décimale",
@@ -88,15 +88,15 @@ export default {
88
88
  "components.list.keyboard": "Utiliser les <b>touches fléchées</b> pour parcourir cette liste ou les touches <b>page up/down</b> pour monter ou descendre 5 éléments à la fois.",
89
89
  "components.list-controls.label": "Actions pour la liste",
90
90
  "components.list-item.addItem": "Ajouter un élément",
91
- "components.list-item-drag-handle.default": "Réordonner l'action de l'élément pour {name}",
91
+ "components.list-item-drag-handle.default": "Réordonner laction de l’élément pour {name}",
92
92
  "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.",
93
93
  "components.list-item-drag-handle-tooltip.title": "Commandes du clavier pour la réorganisation :",
94
94
  "components.list-item-drag-handle-tooltip.enter-key": "Entrée",
95
95
  "components.list-item-drag-handle-tooltip.enter-desc": "Basculer en mode réorganiser le clavier.",
96
96
  "components.list-item-drag-handle-tooltip.up-down-key": "Haut/bas",
97
- "components.list-item-drag-handle-tooltip.up-down-desc": "Déplacer l'élément vers le haut ou vers le bas dans la liste.",
97
+ "components.list-item-drag-handle-tooltip.up-down-desc": "Déplacer l’élément vers le haut ou vers le bas dans la liste.",
98
98
  "components.list-item-drag-handle-tooltip.left-right-key": "Gauche/droite",
99
- "components.list-item-drag-handle-tooltip.left-right-desc": "Changer le niveau d'imbrication.",
99
+ "components.list-item-drag-handle-tooltip.left-right-desc": "Changer le niveau dimbrication.",
100
100
  "components.menu-item-return.return": "Retour au menu précédent.",
101
101
  "components.menu-item-return.returnCurrentlyShowing": "Retour au menu précédent. Vous voyez actuellement {menuTitle}.",
102
102
  "components.meter-mixin.commaSeperatedAria": "{term1}, {term2}",
@@ -106,12 +106,12 @@ export default {
106
106
  "components.more-less.less": "moins",
107
107
  "components.more-less.more": "plus",
108
108
  "components.object-property-list.item-placeholder-text": "Élément de paramètre fictif",
109
- "components.overflow-group.moreActions": "Plus d'actions",
109
+ "components.overflow-group.moreActions": "Plus dactions",
110
110
  "components.pager-load-more.action": "En télécharger plus",
111
111
  "components.pager-load-more.action-with-page-size": "Charger {count} de plus",
112
112
  "components.pageable.info": "{count, plural, one {{countFormatted} élément} other {{countFormatted} éléments}}",
113
113
  "components.pageable.info-with-total": "{totalCount, plural, one {{countFormatted} de {totalCountFormatted} élément} other {{countFormatted} de {totalCountFormatted} éléments}}",
114
- "components.pager-load-more.status-loading": "Chargement d'autres d'éléments",
114
+ "components.pager-load-more.status-loading": "Chargement dautres d’éléments",
115
115
  "components.selection.action-max-hint": "{count, plural, one {Désactivé lorsque plus de {countFormatted} élément est sélectionné} other {Désactivé lorsque plus de {countFormatted} éléments sont sélectionnés}}",
116
116
  "components.selection.action-required-hint": "Sélectionnez un élément pour exécuter cette action",
117
117
  "components.selection.select-all": "Tout sélectionner",
@@ -124,7 +124,7 @@ export default {
124
124
  "components.switch.hidden": "Masqué",
125
125
  "components.switch.conditions": "Les conditions doivent être remplies",
126
126
  "components.table-col-sort-button.addSortOrder": "Sélectionner pour ajouter un ordre de tri",
127
- "components.table-col-sort-button.changeSortOrder": "Sélectionner pour modifier l'ordre de tri",
127
+ "components.table-col-sort-button.changeSortOrder": "Sélectionner pour modifier lordre de tri",
128
128
  "components.table-col-sort-button.title": "{sourceType, select, dates {{direction, select, desc {Trié du plus récent au plus ancien} other {Trié du plus ancien au plus récent}}} numbers {{direction, select, desc {Trié du plus élevé au moins élevé} other {Trié du moins élevé au plus élevé}}} words {{direction, select, desc {Trié de Z à A} other {Trié de A à Z}}} value {Trié {selectedMenuItemText}} other {{direction, select, desc {Trié en ordre décroissant} other {Trié en ordre croissant}}}}",
129
129
  "components.table-controls.label": "Actions pour la table",
130
130
  "components.tabs.next": "Défilement avant",
package/lang/haw.js CHANGED
@@ -75,8 +75,8 @@ export default {
75
75
  "components.input-date.useDateFormat": "E hoʻohana i ka hōʻano lā {format}.",
76
76
  "components.input-number.hintInteger": "ʻAe kēia kahua i nā waiwai helu helu (ʻaʻohe decimals)",
77
77
  "components.input-number.hintDecimalDuplicate": "Aia he decimal i kēia helu",
78
- "components.input-number.hintDecimalIncorrectComma": "E hoʻohui i kahi decimal e hoʻohana i ke koma \",\" ʻano",
79
- "components.input-number.hintDecimalIncorrectPeriod": "No ka hoʻohui ʻana i kahi decimal e hoʻohana i ka manawa \".\" ʻano ʻano",
78
+ "components.input-number.hintDecimalIncorrectComma": "E hoʻohui i kahi decimal e hoʻohana i ke koma “,” ʻano",
79
+ "components.input-number.hintDecimalIncorrectPeriod": "No ka hoʻohui ʻana i kahi decimal e hoʻohana i ka manawa “.” ʻano ʻano",
80
80
  "components.input-search.clear": "Holoi Huli",
81
81
  "components.input-search.defaultPlaceholder": "Huli...",
82
82
  "components.input-search.search": "Huli",
package/lang/hi.js CHANGED
@@ -75,8 +75,8 @@ export default {
75
75
  "components.input-date.useDateFormat": "तारीख फ़ॉर्मेट {format} का उपयोग करें।",
76
76
  "components.input-number.hintInteger": "यह फ़ील्ड केवल पूर्णांक मानों (कोई दशमलव नहीं) को स्वीकार करती है",
77
77
  "components.input-number.hintDecimalDuplicate": "इस संख्या में पहले से ही कोई दशमलव है",
78
- "components.input-number.hintDecimalIncorrectComma": "दशमलव जोड़ने के लिए, अल्पविराम \",\" वर्ण उपयोग करें",
79
- "components.input-number.hintDecimalIncorrectPeriod": "कोई दशमलव जोड़ने के लिए, पीरियड \".\" वर्ण का उपयोग करें",
78
+ "components.input-number.hintDecimalIncorrectComma": "दशमलव जोड़ने के लिए, अल्पविराम “,” वर्ण उपयोग करें",
79
+ "components.input-number.hintDecimalIncorrectPeriod": "कोई दशमलव जोड़ने के लिए, पीरियड “.” वर्ण का उपयोग करें",
80
80
  "components.input-search.clear": "खोज साफ़ करें",
81
81
  "components.input-search.defaultPlaceholder": "खोजें...",
82
82
  "components.input-search.search": "खोजें",
package/lang/ja.js CHANGED
@@ -28,7 +28,7 @@ export default {
28
28
  "components.filter.searchResults": "{number, plural, =0 {検索結果なし} other {{number} 件の検索結果}}",
29
29
  "components.filter.selectedFirstListLabel": "{headerText}。選択したフィルタが最初に表示されます。",
30
30
  "components.filter.singleDimensionDescription": "フィルタ条件: {filterName}",
31
- "components.filter-dimension-set-date-text-value.textHours": "{num, plural, =1 {過去 1 時間} other {過去 {num} 時間}}",
31
+ "components.filter-dimension-set-date-text-value.textHours": "{num, plural, other {過去 {num} 時間}}",
32
32
  "components.filter-dimension-set-date-text-value.textDays": "{num, plural, =0 {今日} other {過去 {num} 日間}}",
33
33
  "components.filter-dimension-set-date-text-value.textMonths": "過去 {num} ヵ月",
34
34
  "components.filter-dimension-set-date-time-range-value.label": "{text}、展開して日付を選択",
package/lang/ko.js CHANGED
@@ -28,7 +28,7 @@ export default {
28
28
  "components.filter.searchResults": "{number, plural, =0 {검색 결과 없음} other {{number}개 검색 결과}}",
29
29
  "components.filter.selectedFirstListLabel": "{headerText}. 선택한 필터가 먼저 나타납니다.",
30
30
  "components.filter.singleDimensionDescription": "필터 기준: {filterName}",
31
- "components.filter-dimension-set-date-text-value.textHours": "{num, plural, =1 {지난 1시간} other {지난 {num}시간}}",
31
+ "components.filter-dimension-set-date-text-value.textHours": "{num, plural, other {지난 {num}시간}}",
32
32
  "components.filter-dimension-set-date-text-value.textDays": "{num, plural, =0 {오늘} other {지난 {num}일}}",
33
33
  "components.filter-dimension-set-date-text-value.textMonths": "지난 {num}개월",
34
34
  "components.filter-dimension-set-date-time-range-value.label": "{text}, 확장하여 날짜 선택",
@@ -75,8 +75,8 @@ export default {
75
75
  "components.input-date.useDateFormat": "{format} 날짜 형식을 사용하십시오.",
76
76
  "components.input-number.hintInteger": "이 필드는 정수 값만 허용합니다(소수점 없음)",
77
77
  "components.input-number.hintDecimalDuplicate": "이 숫자에 이미 소수점이 있습니다",
78
- "components.input-number.hintDecimalIncorrectComma": "소수점을 추가하려면 쉼표 \",\" 문자를 사용합니다",
79
- "components.input-number.hintDecimalIncorrectPeriod": "소수점을 추가하려면 마침표 \".\" 문자를 사용합니다",
78
+ "components.input-number.hintDecimalIncorrectComma": "소수점을 추가하려면 쉼표 “,” 문자를 사용합니다",
79
+ "components.input-number.hintDecimalIncorrectPeriod": "소수점을 추가하려면 마침표 “.” 문자를 사용합니다",
80
80
  "components.input-search.clear": "검색 지우기",
81
81
  "components.input-search.defaultPlaceholder": "검색...",
82
82
  "components.input-search.search": "검색",
package/lang/nl.js CHANGED
@@ -75,8 +75,8 @@ export default {
75
75
  "components.input-date.useDateFormat": "Gebruik datumnotatie {format}.",
76
76
  "components.input-number.hintInteger": "Dit veld accepteert alleen gehele getallen (geen decimalen)",
77
77
  "components.input-number.hintDecimalDuplicate": "Dit getal bevat al een decimaal",
78
- "components.input-number.hintDecimalIncorrectComma": "Als u een decimaal wilt toevoegen, gebruikt u het teken ','",
79
- "components.input-number.hintDecimalIncorrectPeriod": "Als u een decimaal wilt toevoegen, gebruikt u de punt '.'",
78
+ "components.input-number.hintDecimalIncorrectComma": "Als u een decimaal wilt toevoegen, gebruikt u het teken ‘,’",
79
+ "components.input-number.hintDecimalIncorrectPeriod": "Als u een decimaal wilt toevoegen, gebruikt u de punt ‘.’",
80
80
  "components.input-search.clear": "Zoekopdracht wissen",
81
81
  "components.input-search.defaultPlaceholder": "Zoeken...",
82
82
  "components.input-search.search": "Zoeken",
package/lang/sv.js CHANGED
@@ -75,8 +75,8 @@ export default {
75
75
  "components.input-date.useDateFormat": "Använd datumformatet {format}.",
76
76
  "components.input-number.hintInteger": "I det här fältet accepteras endast heltalsvärden (inga decimaler)",
77
77
  "components.input-number.hintDecimalDuplicate": "Det finns redan en decimal i det här talet",
78
- "components.input-number.hintDecimalIncorrectComma": "Om du vill lägga till en decimal använder du kommatecknet \",\"",
79
- "components.input-number.hintDecimalIncorrectPeriod": "Om du vill lägga till en decimal använder du punkttecknet \".\"",
78
+ "components.input-number.hintDecimalIncorrectComma": "Om du vill lägga till en decimal använder du kommatecknet ”,”",
79
+ "components.input-number.hintDecimalIncorrectPeriod": "Om du vill lägga till en decimal använder du punkttecknet ”.”",
80
80
  "components.input-search.clear": "Rensa sökning",
81
81
  "components.input-search.defaultPlaceholder": "Sök ...",
82
82
  "components.input-search.search": "Sökning",
package/lang/tr.js CHANGED
@@ -75,8 +75,8 @@ export default {
75
75
  "components.input-date.useDateFormat": "{format} tarih formatını kullanın.",
76
76
  "components.input-number.hintInteger": "Bu alanda yalnızca tam sayı değerleri kabul edilir (ondalık sayı kabul edilmez)",
77
77
  "components.input-number.hintDecimalDuplicate": "Bu sayıda zaten bir ondalık var",
78
- "components.input-number.hintDecimalIncorrectComma": "Ondalık sayı eklemek için virgül \",\" karakterini kullanın",
79
- "components.input-number.hintDecimalIncorrectPeriod": "Ondalık sayı eklemek için nokta \".\" karakterini kullanın",
78
+ "components.input-number.hintDecimalIncorrectComma": "Ondalık sayı eklemek için virgül “,” karakterini kullanın",
79
+ "components.input-number.hintDecimalIncorrectPeriod": "Ondalık sayı eklemek için nokta “.” karakterini kullanın",
80
80
  "components.input-search.clear": "Aramayı Temizle",
81
81
  "components.input-search.defaultPlaceholder": "Ara...",
82
82
  "components.input-search.search": "Arama",
@@ -125,7 +125,7 @@ export default {
125
125
  "components.switch.conditions": "Koşullar karşılanmalıdır",
126
126
  "components.table-col-sort-button.addSortOrder": "Sıralama düzeni eklemek için seçin",
127
127
  "components.table-col-sort-button.changeSortOrder": "Sıralama düzenini değiştirmek için seçin",
128
- "components.table-col-sort-button.title": "{sourceType, select, dates {{direction, select, desc {Yeniden eskiye sıralandı} other {Eskiden yeniye sıralandı}}} numbers {{direction, select, desc {Yüksekten düşüğe sıralandı} other {Düşükten yükseğe sıralandı}}} words {{direction, select, desc {Z'den A'ya sıralandı} other {A'dan Z'ye sıralandı}}} value {{selectedMenuItemText} sıralandı} other {{direction, select, desc {Azalan şekilde sıralandı} other {Artan şekilde sıralandı}}}}",
128
+ "components.table-col-sort-button.title": "{sourceType, select, dates {{direction, select, desc {Yeniden eskiye sıralandı} other {Eskiden yeniye sıralandı}}} numbers {{direction, select, desc {Yüksekten düşüğe sıralandı} other {Düşükten yükseğe sıralandı}}} words {{direction, select, desc {Zden Aya sıralandı} other {Adan Zye sıralandı}}} value {{selectedMenuItemText} sıralandı} other {{direction, select, desc {Azalan şekilde sıralandı} other {Artan şekilde sıralandı}}}}",
129
129
  "components.table-controls.label": "Tablo için eylemler",
130
130
  "components.tabs.next": "İleri Kaydır",
131
131
  "components.tabs.previous": "Geri Kaydır",
package/lang/zh-cn.js CHANGED
@@ -19,8 +19,8 @@ export default {
19
19
  "components.filter.clearAllAnnounceOverride": "正在清除 {filterText} 的所有筛选器",
20
20
  "components.filter.clearAllDescription": "清除所有筛选器",
21
21
  "components.filter.clearAllDescriptionOverride": "清除 {filterText} 的所有筛选器",
22
- "components.filter.clearAnnounce": "正在清除筛选器:{ filterName }",
23
- "components.filter.clearDescription": "清除筛选条件:{ filterName }",
22
+ "components.filter.clearAnnounce": "正在清除筛选器:{filterName}",
23
+ "components.filter.clearDescription": "清除筛选条件:{filterName}",
24
24
  "components.filter.loading": "正在加载筛选器",
25
25
  "components.filter.filterCountDescription": "{number, plural, =0 {未应用筛选器。} other {已应用 {number} 个筛选器。}}",
26
26
  "components.filter.filters": "个筛选条件",
@@ -28,7 +28,7 @@ export default {
28
28
  "components.filter.searchResults": "{number, plural, =0 {无搜索结果} other {{number} 个搜索结果}}",
29
29
  "components.filter.selectedFirstListLabel": "{headerText}。先显示所选筛选器。",
30
30
  "components.filter.singleDimensionDescription": "筛选依据:{filterName}",
31
- "components.filter-dimension-set-date-text-value.textHours": "{num, plural, =1 {过去 1 小时} other {过去 {num} 小时}}",
31
+ "components.filter-dimension-set-date-text-value.textHours": "{num, plural, other {过去 {num} 小时}}",
32
32
  "components.filter-dimension-set-date-text-value.textDays": "{num, plural, =0 {今天} other {过去 {num} 天}}",
33
33
  "components.filter-dimension-set-date-text-value.textMonths": "过去 {num} 个月",
34
34
  "components.filter-dimension-set-date-time-range-value.label": "{text},扩展以选择日期",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brightspace-ui/core",
3
- "version": "3.132.0",
3
+ "version": "3.133.0",
4
4
  "description": "A collection of accessible, free, open-source web components for building Brightspace applications",
5
5
  "type": "module",
6
6
  "repository": "https://github.com/BrightspaceUI/core.git",
@@ -22,7 +22,7 @@
22
22
  "test": "npm run lint && npm run test:translations && npm run test:unit && npm run test:axe",
23
23
  "test:axe": "d2l-test-runner axe --chrome",
24
24
  "test:unit": "d2l-test-runner",
25
- "test:translations": "mfv -e -s en -p ./lang/ -i untranslated",
25
+ "test:translations": "mfv -s en -p ./lang/ -i untranslated,category-missing",
26
26
  "test:vdiff": "d2l-test-runner vdiff --timeout 10000",
27
27
  "test:wca": "node ./cli/validate-wca.js"
28
28
  },
@@ -56,7 +56,7 @@
56
56
  "eslint-config-brightspace": "^2.0.0",
57
57
  "eslint-plugin-unicorn": "^59",
58
58
  "glob-all": "^3",
59
- "messageformat-validator": "^2",
59
+ "messageformat-validator": "^3.0.0-beta",
60
60
  "rollup": "^4",
61
61
  "rollup-plugin-copy": "^3",
62
62
  "rollup-plugin-delete": "^3",