@brightspace-ui/core 3.166.1 → 3.167.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/list/list-item-expand-collapse-mixin.js +2 -4
- package/components/list/list-item-mixin.js +4 -14
- package/components/selection/selection-select-all-pages.js +2 -1
- package/components/selection/selection-summary.js +3 -2
- package/lang/ar.js +6 -1
- package/lang/cy.js +6 -1
- package/lang/da.js +6 -1
- package/lang/de.js +6 -1
- package/lang/en-gb.js +6 -1
- package/lang/en.js +6 -1
- package/lang/es-es.js +6 -1
- package/lang/es.js +6 -1
- package/lang/fr-fr.js +6 -1
- package/lang/fr.js +6 -1
- package/lang/haw.js +6 -1
- package/lang/hi.js +6 -1
- package/lang/ja.js +4 -1
- package/lang/ko.js +4 -1
- package/lang/mi.js +6 -1
- package/lang/nl.js +6 -1
- package/lang/pt.js +6 -1
- package/lang/sv.js +6 -1
- package/lang/th.js +4 -1
- package/lang/tr.js +6 -1
- package/lang/vi.js +4 -1
- package/lang/zh-cn.js +4 -1
- package/lang/zh-tw.js +4 -1
- package/package.json +1 -1
@@ -37,9 +37,6 @@ export const ListItemExpandCollapseMixin = superclass => class extends SkeletonM
|
|
37
37
|
line-height: 0;
|
38
38
|
width: 0;
|
39
39
|
}
|
40
|
-
:host([dir="rtl"][_render-expand-collapse-slot]) .d2l-list-expand-collapse {
|
41
|
-
padding: 0.55rem 0 0 0.3rem;
|
42
|
-
}
|
43
40
|
.d2l-list-expand-collapse d2l-button-icon {
|
44
41
|
--d2l-button-icon-min-height: 1.2rem;
|
45
42
|
--d2l-button-icon-min-width: 1.2rem;
|
@@ -49,7 +46,8 @@ export const ListItemExpandCollapseMixin = superclass => class extends SkeletonM
|
|
49
46
|
border-radius: var(--d2l-button-icon-border-radius);
|
50
47
|
}
|
51
48
|
:host([_render-expand-collapse-slot]) .d2l-list-expand-collapse {
|
52
|
-
padding: 0.55rem
|
49
|
+
padding-block-start: 0.55rem;
|
50
|
+
padding-inline-end: 0.3rem;
|
53
51
|
width: 1.2rem;
|
54
52
|
}
|
55
53
|
.d2l-list-expand-collapse-action {
|
@@ -20,7 +20,6 @@ import { ListItemDragDropMixin } from './list-item-drag-drop-mixin.js';
|
|
20
20
|
import { ListItemExpandCollapseMixin } from './list-item-expand-collapse-mixin.js';
|
21
21
|
import { ListItemRoleMixin } from './list-item-role-mixin.js';
|
22
22
|
import { LocalizeCoreElement } from '../../helpers/localize-core-element.js';
|
23
|
-
import { RtlMixin } from '../../mixins/rtl/rtl-mixin.js';
|
24
23
|
import { SkeletonMixin } from '../skeleton/skeleton-mixin.js';
|
25
24
|
import { styleMap } from 'lit/directives/style-map.js';
|
26
25
|
import { waitForElem } from '../../helpers/internal/waitForElem.js';
|
@@ -62,7 +61,6 @@ export const ListItemMixin = superclass => class extends composeMixins(
|
|
62
61
|
ListItemDragDropMixin,
|
63
62
|
ListItemCheckboxMixin,
|
64
63
|
ListItemRoleMixin,
|
65
|
-
RtlMixin,
|
66
64
|
SkeletonMixin) {
|
67
65
|
|
68
66
|
static get properties() {
|
@@ -293,7 +291,8 @@ export const ListItemMixin = superclass => class extends composeMixins(
|
|
293
291
|
}
|
294
292
|
|
295
293
|
d2l-selection-input {
|
296
|
-
margin: 0.55rem
|
294
|
+
margin-block: 0.55rem;
|
295
|
+
margin-inline-end: 0.55rem;
|
297
296
|
}
|
298
297
|
:host(:not([_render-expand-collapse-slot])) .d2l-list-item-content-extend-separators d2l-selection-input {
|
299
298
|
margin-inline-start: 0.9rem;
|
@@ -305,10 +304,6 @@ export const ListItemMixin = superclass => class extends composeMixins(
|
|
305
304
|
d2l-list-item-drag-handle {
|
306
305
|
margin: 0.25rem 0.3rem;
|
307
306
|
}
|
308
|
-
:host([dir="rtl"]) d2l-selection-input {
|
309
|
-
margin-left: 0.9rem;
|
310
|
-
margin-right: 0;
|
311
|
-
}
|
312
307
|
|
313
308
|
[slot="outside-control-container"] {
|
314
309
|
border: 1px solid transparent;
|
@@ -328,18 +323,13 @@ export const ListItemMixin = superclass => class extends composeMixins(
|
|
328
323
|
margin-inline-end: -12px;
|
329
324
|
}
|
330
325
|
|
331
|
-
:host([_has-color-slot]) .d2l-list-item-content-extend-separators [slot="outside-control-container"]
|
332
|
-
:host([dir="rtl"][_has-color-slot]) .d2l-list-item-content-extend-separators [slot="outside-control-container"] {
|
326
|
+
:host([_has-color-slot]) .d2l-list-item-content-extend-separators [slot="outside-control-container"] {
|
333
327
|
margin-inline-end: 0 !important;
|
334
328
|
margin-inline-start: 0 !important;
|
335
329
|
}
|
336
330
|
|
337
331
|
:host(:not([draggable])[_has-color-slot]) [slot="outside-control-container"] {
|
338
|
-
margin-
|
339
|
-
}
|
340
|
-
:host(:not([draggable])[dir="rtl"][_has-color-slot]) [slot="outside-control-container"] {
|
341
|
-
margin-left: 0;
|
342
|
-
margin-right: -6px;
|
332
|
+
margin-inline-start: -6px;
|
343
333
|
}
|
344
334
|
|
345
335
|
:host([_hovering-control]) [slot="outside-control-container"],
|
@@ -1,6 +1,7 @@
|
|
1
1
|
import '../button/button-subtle.js';
|
2
2
|
import { css, html, LitElement } from 'lit';
|
3
3
|
import { FocusMixin } from '../../mixins/focus/focus-mixin.js';
|
4
|
+
import { formatNumber } from '@brightspace-ui/intl/lib/number.js';
|
4
5
|
import { LocalizeCoreElement } from '../../helpers/localize-core-element.js';
|
5
6
|
import { SelectionInfo } from './selection-mixin.js';
|
6
7
|
import { SelectionObserverMixin } from './selection-observer-mixin.js';
|
@@ -35,7 +36,7 @@ class SelectAllPages extends FocusMixin(LocalizeCoreElement(SelectionObserverMix
|
|
35
36
|
return html`
|
36
37
|
<d2l-button-subtle
|
37
38
|
@click="${this._handleClick}"
|
38
|
-
text="${this.localize('components.selection.select-all-items',
|
39
|
+
text="${this.localize('components.selection.select-all-items', { count: this._provider.itemCount, countFormatted: formatNumber(this._provider.itemCount) })}">
|
39
40
|
</d2l-button-subtle>`;
|
40
41
|
}
|
41
42
|
|
@@ -1,5 +1,6 @@
|
|
1
1
|
import { css, html, LitElement, nothing } from 'lit';
|
2
2
|
import { bodyCompactStyles } from '../typography/styles.js';
|
3
|
+
import { formatNumber } from '@brightspace-ui/intl/lib/number.js';
|
3
4
|
import { LocalizeCoreElement } from '../../helpers/localize-core-element.js';
|
4
5
|
import { SelectionInfo } from './selection-mixin.js';
|
5
6
|
import { SelectionObserverMixin } from './selection-observer-mixin.js';
|
@@ -77,9 +78,9 @@ class Summary extends LocalizeCoreElement(SelectionObserverMixin(LitElement)) {
|
|
77
78
|
if (this.selectionInfo.state === SelectionInfo.states.none && this.noSelectionText) {
|
78
79
|
this._summary = this.noSelectionText;
|
79
80
|
} else if (includePlus) {
|
80
|
-
this._summary = this.localize('components.selection.selected-plus', 'count', count);
|
81
|
+
this._summary = this.localize('components.selection.selected-plus', 'count', formatNumber(count));
|
81
82
|
} else {
|
82
|
-
this._summary = this.localize('components.selection.selected', 'count', count);
|
83
|
+
this._summary = this.localize('components.selection.selected', 'count', formatNumber(count));
|
83
84
|
}
|
84
85
|
}
|
85
86
|
|
package/lang/ar.js
CHANGED
@@ -170,7 +170,12 @@ export default {
|
|
170
170
|
}`,
|
171
171
|
"components.selection.action-required-hint": "حدد عنصرًا لتنفيذ هذا الإجراء",
|
172
172
|
"components.selection.select-all": "تحديد الكل",
|
173
|
-
"components.selection.select-all-items":
|
173
|
+
"components.selection.select-all-items":
|
174
|
+
`{count, plural,
|
175
|
+
=1 {Select Item}
|
176
|
+
one {Select All {countFormatted} Item}
|
177
|
+
other {تحديد كل المواد الـ {countFormatted}}
|
178
|
+
}`,
|
174
179
|
"components.selection.selected": "تم تحديد {count}",
|
175
180
|
"components.selection.selected-plus": "تم تحديد {count}+",
|
176
181
|
"components.selection-controls.label": "إجراءات التحديد",
|
package/lang/cy.js
CHANGED
@@ -170,7 +170,12 @@ export default {
|
|
170
170
|
}`,
|
171
171
|
"components.selection.action-required-hint": "Rhaid i chi ddewis eitem i gyflawni’r weithred hon",
|
172
172
|
"components.selection.select-all": "Dewis y Cyfan",
|
173
|
-
"components.selection.select-all-items":
|
173
|
+
"components.selection.select-all-items":
|
174
|
+
`{count, plural,
|
175
|
+
=1 {Select Item}
|
176
|
+
one {Select All {countFormatted} Item}
|
177
|
+
other {Dewis Pob {countFormatted} Eitem}
|
178
|
+
}`,
|
174
179
|
"components.selection.selected": "{count} wedi’u dewis.",
|
175
180
|
"components.selection.selected-plus": "{count}+ wedi’u dewis",
|
176
181
|
"components.selection-controls.label": "Camau gweithredu ar gyfer detholiad",
|
package/lang/da.js
CHANGED
@@ -170,7 +170,12 @@ export default {
|
|
170
170
|
}`,
|
171
171
|
"components.selection.action-required-hint": "Vælg et element for at udføre denne handling",
|
172
172
|
"components.selection.select-all": "Vælg alle",
|
173
|
-
"components.selection.select-all-items":
|
173
|
+
"components.selection.select-all-items":
|
174
|
+
`{count, plural,
|
175
|
+
=1 {Select Item}
|
176
|
+
one {Select All {countFormatted} Item}
|
177
|
+
other {Vælg alle {countFormatted} elementer}
|
178
|
+
}`,
|
174
179
|
"components.selection.selected": "{count} valgt",
|
175
180
|
"components.selection.selected-plus": "{count}+ valgt",
|
176
181
|
"components.selection-controls.label": "Handlinger for valg",
|
package/lang/de.js
CHANGED
@@ -170,7 +170,12 @@ export default {
|
|
170
170
|
}`,
|
171
171
|
"components.selection.action-required-hint": "Wählen Sie ein Element aus, um diese Aktion auszuführen",
|
172
172
|
"components.selection.select-all": "Alle auswählen",
|
173
|
-
"components.selection.select-all-items":
|
173
|
+
"components.selection.select-all-items":
|
174
|
+
`{count, plural,
|
175
|
+
=1 {Select Item}
|
176
|
+
one {Select All {countFormatted} Item}
|
177
|
+
other {Alle {countFormatted} Elemente auswählen}
|
178
|
+
}`,
|
174
179
|
"components.selection.selected": "{count} ausgewählt",
|
175
180
|
"components.selection.selected-plus": "{count}+ ausgewählt",
|
176
181
|
"components.selection-controls.label": "Aktionen für Auswahl",
|
package/lang/en-gb.js
CHANGED
@@ -170,7 +170,12 @@ export default {
|
|
170
170
|
}`,
|
171
171
|
"components.selection.action-required-hint": "Select an item to perform this action",
|
172
172
|
"components.selection.select-all": "Select All",
|
173
|
-
"components.selection.select-all-items":
|
173
|
+
"components.selection.select-all-items":
|
174
|
+
`{count, plural,
|
175
|
+
=1 {Select Item}
|
176
|
+
one {Select All {countFormatted} Item}
|
177
|
+
other {Select All {countFormatted} Items}
|
178
|
+
}`,
|
174
179
|
"components.selection.selected": "{count} selected",
|
175
180
|
"components.selection.selected-plus": "{count}+ selected",
|
176
181
|
"components.selection-controls.label": "Actions for selection",
|
package/lang/en.js
CHANGED
@@ -170,7 +170,12 @@ export default {
|
|
170
170
|
}`,
|
171
171
|
"components.selection.action-required-hint": "Select an item to perform this action",
|
172
172
|
"components.selection.select-all": "Select All",
|
173
|
-
"components.selection.select-all-items":
|
173
|
+
"components.selection.select-all-items":
|
174
|
+
`{count, plural,
|
175
|
+
=1 {Select Item}
|
176
|
+
one {Select All {countFormatted} Item}
|
177
|
+
other {Select All {countFormatted} Items}
|
178
|
+
}`,
|
174
179
|
"components.selection.selected": "{count} selected",
|
175
180
|
"components.selection.selected-plus": "{count}+ selected",
|
176
181
|
"components.selection-controls.label": "Actions for selection",
|
package/lang/es-es.js
CHANGED
@@ -170,7 +170,12 @@ export default {
|
|
170
170
|
}`,
|
171
171
|
"components.selection.action-required-hint": "Seleccione un elemento para realizar esta acción",
|
172
172
|
"components.selection.select-all": "Seleccionar todo",
|
173
|
-
"components.selection.select-all-items":
|
173
|
+
"components.selection.select-all-items":
|
174
|
+
`{count, plural,
|
175
|
+
=1 {Select Item}
|
176
|
+
one {Select All {countFormatted} Item}
|
177
|
+
other {Seleccione los {countFormatted} elementos}
|
178
|
+
}`,
|
174
179
|
"components.selection.selected": "{count} seleccionados",
|
175
180
|
"components.selection.selected-plus": "{count}+ seleccionados",
|
176
181
|
"components.selection-controls.label": "Acciones para la selección",
|
package/lang/es.js
CHANGED
@@ -170,7 +170,12 @@ export default {
|
|
170
170
|
}`,
|
171
171
|
"components.selection.action-required-hint": "Seleccione un elemento para realizar esta acción",
|
172
172
|
"components.selection.select-all": "Seleccionar todo",
|
173
|
-
"components.selection.select-all-items":
|
173
|
+
"components.selection.select-all-items":
|
174
|
+
`{count, plural,
|
175
|
+
=1 {Select Item}
|
176
|
+
one {Select All {countFormatted} Item}
|
177
|
+
other {Seleccione todos los {countFormatted} elementos}
|
178
|
+
}`,
|
174
179
|
"components.selection.selected": "{count} seleccionados",
|
175
180
|
"components.selection.selected-plus": "Más de {count} seleccionados",
|
176
181
|
"components.selection-controls.label": "Acciones para la selección",
|
package/lang/fr-fr.js
CHANGED
@@ -170,7 +170,12 @@ export default {
|
|
170
170
|
}`,
|
171
171
|
"components.selection.action-required-hint": "Sélectionnez un élément pour exécuter cette action",
|
172
172
|
"components.selection.select-all": "Tout sélectionner",
|
173
|
-
"components.selection.select-all-items":
|
173
|
+
"components.selection.select-all-items":
|
174
|
+
`{count, plural,
|
175
|
+
=1 {Select Item}
|
176
|
+
one {Select All {countFormatted} Item}
|
177
|
+
other {Sélectionner tous les {countFormatted} éléments}
|
178
|
+
}`,
|
174
179
|
"components.selection.selected": "{count} sélectionnés",
|
175
180
|
"components.selection.selected-plus": "{count}+ sélectionné(e)(s)",
|
176
181
|
"components.selection-controls.label": "Actions pour la sélection",
|
package/lang/fr.js
CHANGED
@@ -170,7 +170,12 @@ export default {
|
|
170
170
|
}`,
|
171
171
|
"components.selection.action-required-hint": "Sélectionnez un élément pour exécuter cette action",
|
172
172
|
"components.selection.select-all": "Tout sélectionner",
|
173
|
-
"components.selection.select-all-items":
|
173
|
+
"components.selection.select-all-items":
|
174
|
+
`{count, plural,
|
175
|
+
=1 {Select Item}
|
176
|
+
one {Select All {countFormatted} Item}
|
177
|
+
other {Sélectionner tous les {countFormatted} éléments}
|
178
|
+
}`,
|
174
179
|
"components.selection.selected": "{count} sélectionné(s)",
|
175
180
|
"components.selection.selected-plus": "{count}+ sélectionné",
|
176
181
|
"components.selection-controls.label": "Actions à sélectionner",
|
package/lang/haw.js
CHANGED
@@ -170,7 +170,12 @@ export default {
|
|
170
170
|
}`,
|
171
171
|
"components.selection.action-required-hint": "E koho i kahi mea e hana ai i kēia hana",
|
172
172
|
"components.selection.select-all": "E koho i nā mea a pau",
|
173
|
-
"components.selection.select-all-items":
|
173
|
+
"components.selection.select-all-items":
|
174
|
+
`{count, plural,
|
175
|
+
=1 {Select Item}
|
176
|
+
one {Select All {countFormatted} Item}
|
177
|
+
other {E koho i nā mea a pau {countFormatted}}
|
178
|
+
}`,
|
174
179
|
"components.selection.selected": "{count} koho",
|
175
180
|
"components.selection.selected-plus": "{count}+ i koho ʻia",
|
176
181
|
"components.selection-controls.label": "Nā hana no ke koho",
|
package/lang/hi.js
CHANGED
@@ -170,7 +170,12 @@ export default {
|
|
170
170
|
}`,
|
171
171
|
"components.selection.action-required-hint": "यह कार्रवाई करने के लिए किसी आइटम का चयन करें",
|
172
172
|
"components.selection.select-all": "सभी का चयन करें",
|
173
|
-
"components.selection.select-all-items":
|
173
|
+
"components.selection.select-all-items":
|
174
|
+
`{count, plural,
|
175
|
+
=1 {Select Item}
|
176
|
+
one {Select All {countFormatted} Item}
|
177
|
+
other {सभी {countFormatted} आइटम चुनें।}
|
178
|
+
}`,
|
174
179
|
"components.selection.selected": "{count} चयनित",
|
175
180
|
"components.selection.selected-plus": "{count} से अधिक चयनित",
|
176
181
|
"components.selection-controls.label": "चयन के लिए क्रियाएँ",
|
package/lang/ja.js
CHANGED
@@ -162,7 +162,10 @@ export default {
|
|
162
162
|
}`,
|
163
163
|
"components.selection.action-required-hint": "この操作を実行するための項目を選択します",
|
164
164
|
"components.selection.select-all": "すべて選択",
|
165
|
-
"components.selection.select-all-items":
|
165
|
+
"components.selection.select-all-items":
|
166
|
+
`{count, plural,
|
167
|
+
other {{countFormatted} 個の項目をすべて選択}
|
168
|
+
}`,
|
166
169
|
"components.selection.selected": "{count} 個を選択済み",
|
167
170
|
"components.selection.selected-plus": "{count} 個以上を選択済み",
|
168
171
|
"components.selection-controls.label": "選択のアクション",
|
package/lang/ko.js
CHANGED
@@ -162,7 +162,10 @@ export default {
|
|
162
162
|
}`,
|
163
163
|
"components.selection.action-required-hint": "이 작업을 수행할 항목을 선택하십시오",
|
164
164
|
"components.selection.select-all": "모두 선택",
|
165
|
-
"components.selection.select-all-items":
|
165
|
+
"components.selection.select-all-items":
|
166
|
+
`{count, plural,
|
167
|
+
other {{countFormatted}개 항목을 모두 선택하십시오}
|
168
|
+
}`,
|
166
169
|
"components.selection.selected": "{count}개 선택됨",
|
167
170
|
"components.selection.selected-plus": "{count}+개 선택됨",
|
168
171
|
"components.selection-controls.label": "선택 작업",
|
package/lang/mi.js
CHANGED
@@ -170,7 +170,12 @@ export default {
|
|
170
170
|
}`,
|
171
171
|
"components.selection.action-required-hint": "Tīpakohia tētahi tūemi hei whakahaere i tēnei mahi",
|
172
172
|
"components.selection.select-all": "Tīpako Katoa",
|
173
|
-
"components.selection.select-all-items":
|
173
|
+
"components.selection.select-all-items":
|
174
|
+
`{count, plural,
|
175
|
+
=1 {Select Item}
|
176
|
+
one {Select All {countFormatted} Item}
|
177
|
+
other {Tīpakohia Ngā Tūemi {countFormatted} Katoa}
|
178
|
+
}`,
|
174
179
|
"components.selection.selected": "{count} kua tīpakohia",
|
175
180
|
"components.selection.selected-plus": "{count}+ kua tīpakohia",
|
176
181
|
"components.selection-controls.label": "Ngā mahinga mō te tīpakonga",
|
package/lang/nl.js
CHANGED
@@ -170,7 +170,12 @@ export default {
|
|
170
170
|
}`,
|
171
171
|
"components.selection.action-required-hint": "Selecteer een item om deze actie uit te voeren",
|
172
172
|
"components.selection.select-all": "Alles selecteren",
|
173
|
-
"components.selection.select-all-items":
|
173
|
+
"components.selection.select-all-items":
|
174
|
+
`{count, plural,
|
175
|
+
=1 {Select Item}
|
176
|
+
one {Select All {countFormatted} Item}
|
177
|
+
other {Alle {countFormatted} records selecteren}
|
178
|
+
}`,
|
174
179
|
"components.selection.selected": "{count} geselecteerd",
|
175
180
|
"components.selection.selected-plus": "Meer dan {count} geselecteerd",
|
176
181
|
"components.selection-controls.label": "Acties voor selectie",
|
package/lang/pt.js
CHANGED
@@ -170,7 +170,12 @@ export default {
|
|
170
170
|
}`,
|
171
171
|
"components.selection.action-required-hint": "Selecione um item para realizar esta ação",
|
172
172
|
"components.selection.select-all": "Selecionar Tudo",
|
173
|
-
"components.selection.select-all-items":
|
173
|
+
"components.selection.select-all-items":
|
174
|
+
`{count, plural,
|
175
|
+
=1 {Select Item}
|
176
|
+
one {Select All {countFormatted} Item}
|
177
|
+
other {Selecione todos os {countFormatted} itens}
|
178
|
+
}`,
|
174
179
|
"components.selection.selected": "{count} selecionados",
|
175
180
|
"components.selection.selected-plus": "Mais de {count} selecionados",
|
176
181
|
"components.selection-controls.label": "Ações para seleção",
|
package/lang/sv.js
CHANGED
@@ -170,7 +170,12 @@ export default {
|
|
170
170
|
}`,
|
171
171
|
"components.selection.action-required-hint": "Välj ett objekt för att utföra åtgärden",
|
172
172
|
"components.selection.select-all": "Välj alla",
|
173
|
-
"components.selection.select-all-items":
|
173
|
+
"components.selection.select-all-items":
|
174
|
+
`{count, plural,
|
175
|
+
=1 {Select Item}
|
176
|
+
one {Select All {countFormatted} Item}
|
177
|
+
other {Välj alla {countFormatted} objekt}
|
178
|
+
}`,
|
174
179
|
"components.selection.selected": "{count} valda",
|
175
180
|
"components.selection.selected-plus": "Över {count} valda",
|
176
181
|
"components.selection-controls.label": "Åtgärder för val",
|
package/lang/th.js
CHANGED
@@ -163,7 +163,10 @@ export default {
|
|
163
163
|
}`,
|
164
164
|
"components.selection.action-required-hint": "เลือกรายการที่จะดำเนินการนี้",
|
165
165
|
"components.selection.select-all": "เลือกทั้งหมด",
|
166
|
-
"components.selection.select-all-items":
|
166
|
+
"components.selection.select-all-items":
|
167
|
+
`{count, plural,
|
168
|
+
other {เลือกทั้ง {countFormatted} รายการ}
|
169
|
+
}`,
|
167
170
|
"components.selection.selected": "{count} ที่เลือกแล้ว",
|
168
171
|
"components.selection.selected-plus": "{count}+ ที่เลือกแล้ว",
|
169
172
|
"components.selection-controls.label": "การดำเนินการสำหรับการเลือก",
|
package/lang/tr.js
CHANGED
@@ -170,7 +170,12 @@ export default {
|
|
170
170
|
}`,
|
171
171
|
"components.selection.action-required-hint": "Bu eylemi gerçekleştirebilmek için bir öğe seçin",
|
172
172
|
"components.selection.select-all": "Tümünü Seç",
|
173
|
-
"components.selection.select-all-items":
|
173
|
+
"components.selection.select-all-items":
|
174
|
+
`{count, plural,
|
175
|
+
=1 {Select Item}
|
176
|
+
one {Select All {countFormatted} Item}
|
177
|
+
other {{countFormatted} Öğenin Tamamını Seç}
|
178
|
+
}`,
|
174
179
|
"components.selection.selected": "{count} öğe seçildi",
|
175
180
|
"components.selection.selected-plus": "{count}+ öğe seçildi",
|
176
181
|
"components.selection-controls.label": "Seçim için eylemler",
|
package/lang/vi.js
CHANGED
@@ -163,7 +163,10 @@ export default {
|
|
163
163
|
}`,
|
164
164
|
"components.selection.action-required-hint": "Chọn một mục để thực hiện tác vụ này",
|
165
165
|
"components.selection.select-all": "Chọn tất cả",
|
166
|
-
"components.selection.select-all-items":
|
166
|
+
"components.selection.select-all-items":
|
167
|
+
`{count, plural,
|
168
|
+
other {Chọn tất cả các mục {countFormatted}}
|
169
|
+
}`,
|
167
170
|
"components.selection.selected": "{count} mục được chọn",
|
168
171
|
"components.selection.selected-plus": "{count}+ mục được chọn",
|
169
172
|
"components.selection-controls.label": "Các thao tác để chọn",
|
package/lang/zh-cn.js
CHANGED
@@ -162,7 +162,10 @@ export default {
|
|
162
162
|
}`,
|
163
163
|
"components.selection.action-required-hint": "选择一个项目后才能执行此操作",
|
164
164
|
"components.selection.select-all": "全选",
|
165
|
-
"components.selection.select-all-items":
|
165
|
+
"components.selection.select-all-items":
|
166
|
+
`{count, plural,
|
167
|
+
other {选择全部 {countFormatted} 个项目}
|
168
|
+
}`,
|
166
169
|
"components.selection.selected": "已选 {count}",
|
167
170
|
"components.selection.selected-plus": "已选 + {count}",
|
168
171
|
"components.selection-controls.label": "针对所选内容的操作",
|
package/lang/zh-tw.js
CHANGED
@@ -163,7 +163,10 @@ export default {
|
|
163
163
|
}`,
|
164
164
|
"components.selection.action-required-hint": "選取項目以執行此動作",
|
165
165
|
"components.selection.select-all": "全選",
|
166
|
-
"components.selection.select-all-items":
|
166
|
+
"components.selection.select-all-items":
|
167
|
+
`{count, plural,
|
168
|
+
other {選取所有 {countFormatted} 個項目}
|
169
|
+
}`,
|
167
170
|
"components.selection.selected": "已選取 {count} 個",
|
168
171
|
"components.selection.selected-plus": "已選取 {count}+ 個",
|
169
172
|
"components.selection-controls.label": "選擇的動作",
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@brightspace-ui/core",
|
3
|
-
"version": "3.
|
3
|
+
"version": "3.167.1",
|
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",
|