@brightspace-ui/core 1.228.0 → 1.230.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.
Files changed (37) hide show
  1. package/components/inputs/input-number.js +6 -7
  2. package/components/list/README.md +2 -1
  3. package/components/list/demo/list.html +30 -5
  4. package/components/list/list-header.js +16 -0
  5. package/components/menu/menu-item-mixin.js +1 -3
  6. package/components/menu/menu-item-styles.js +4 -4
  7. package/components/menu/menu.js +1 -2
  8. package/components/overflow-group/overflow-group.js +1 -0
  9. package/components/selection/README.md +39 -0
  10. package/components/selection/demo/selection.html +12 -0
  11. package/components/selection/selection-action-menu-item.js +61 -0
  12. package/components/selection/selection-action-mixin.js +30 -0
  13. package/components/selection/selection-action.js +2 -16
  14. package/components/selection/selection-input.js +1 -0
  15. package/components/selection/selection-mixin.js +24 -9
  16. package/components/selection/selection-select-all-pages.js +48 -0
  17. package/components/selection/selection-select-all.js +2 -2
  18. package/components/selection/selection-summary.js +5 -1
  19. package/custom-elements.json +192 -12
  20. package/lang/ar.js +18 -18
  21. package/lang/cy.js +18 -18
  22. package/lang/da.js +18 -18
  23. package/lang/de.js +18 -18
  24. package/lang/en.js +1 -0
  25. package/lang/es-es.js +18 -18
  26. package/lang/es.js +18 -18
  27. package/lang/fr-fr.js +18 -18
  28. package/lang/fr.js +18 -18
  29. package/lang/ja.js +18 -18
  30. package/lang/ko.js +18 -18
  31. package/lang/nl.js +18 -18
  32. package/lang/pt.js +18 -18
  33. package/lang/sv.js +18 -18
  34. package/lang/tr.js +18 -18
  35. package/lang/zh-tw.js +18 -18
  36. package/lang/zh.js +18 -18
  37. package/package.json +2 -2
@@ -6678,6 +6678,12 @@
6678
6678
  "description": "How much padding to render list items with",
6679
6679
  "type": "'normal'|'slim'",
6680
6680
  "default": "\"normal\""
6681
+ },
6682
+ {
6683
+ "name": "select-all-pages-allowed",
6684
+ "description": "Whether all pages can be selected",
6685
+ "type": "boolean",
6686
+ "default": "false"
6681
6687
  }
6682
6688
  ],
6683
6689
  "properties": [
@@ -6692,6 +6698,13 @@
6692
6698
  "description": "How much padding to render list items with",
6693
6699
  "type": "'normal'|'slim'",
6694
6700
  "default": "\"normal\""
6701
+ },
6702
+ {
6703
+ "name": "selectAllPagesAllowed",
6704
+ "attribute": "select-all-pages-allowed",
6705
+ "description": "Whether all pages can be selected",
6706
+ "type": "boolean",
6707
+ "default": "false"
6695
6708
  }
6696
6709
  ],
6697
6710
  "slots": [
@@ -7352,6 +7365,12 @@
7352
7365
  "type": "boolean",
7353
7366
  "default": "false"
7354
7367
  },
7368
+ {
7369
+ "name": "item-count",
7370
+ "description": "Total number of items. Required when selecting all pages is allowed.",
7371
+ "type": "number",
7372
+ "default": "0"
7373
+ },
7355
7374
  {
7356
7375
  "name": "selection-single",
7357
7376
  "description": "Whether to render with single selection behaviour. If `selection-single` is specified, the nested `d2l-selection-input` elements will render radios instead of checkboxes, and the selection component will maintain a single selected item.",
@@ -7388,6 +7407,13 @@
7388
7407
  "type": "boolean",
7389
7408
  "default": "false"
7390
7409
  },
7410
+ {
7411
+ "name": "itemCount",
7412
+ "attribute": "item-count",
7413
+ "description": "Total number of items. Required when selecting all pages is allowed.",
7414
+ "type": "number",
7415
+ "default": "0"
7416
+ },
7391
7417
  {
7392
7418
  "name": "selectionSingle",
7393
7419
  "attribute": "selection-single",
@@ -8389,6 +8415,12 @@
8389
8415
  "name": "d2l-demo-selection",
8390
8416
  "path": "./components/selection/demo/demo-selection.js",
8391
8417
  "attributes": [
8418
+ {
8419
+ "name": "item-count",
8420
+ "description": "Total number of items. Required when selecting all pages is allowed.",
8421
+ "type": "number",
8422
+ "default": "0"
8423
+ },
8392
8424
  {
8393
8425
  "name": "selection-single",
8394
8426
  "description": "Whether to render with single selection behaviour. If `selection-single` is specified, the nested `d2l-selection-input` elements will render radios instead of checkboxes, and the selection component will maintain a single selected item.",
@@ -8397,6 +8429,13 @@
8397
8429
  }
8398
8430
  ],
8399
8431
  "properties": [
8432
+ {
8433
+ "name": "itemCount",
8434
+ "attribute": "item-count",
8435
+ "description": "Total number of items. Required when selecting all pages is allowed.",
8436
+ "type": "number",
8437
+ "default": "0"
8438
+ },
8400
8439
  {
8401
8440
  "name": "selectionSingle",
8402
8441
  "attribute": "selection-single",
@@ -8406,6 +8445,102 @@
8406
8445
  }
8407
8446
  ]
8408
8447
  },
8448
+ {
8449
+ "name": "d2l-selection-action-menu-item",
8450
+ "path": "./components/selection/selection-action-menu-item.js",
8451
+ "description": "An action menu-item component used within selection controls such as d2l-list and d2l-list-header.",
8452
+ "attributes": [
8453
+ {
8454
+ "name": "requires-selection",
8455
+ "description": "Whether the action requires one or more selected items",
8456
+ "type": "boolean",
8457
+ "default": "false"
8458
+ },
8459
+ {
8460
+ "name": "selection-for",
8461
+ "description": "Id of the `SelectionMixin` component this component wants to observe (if not located within that component)",
8462
+ "type": "string"
8463
+ },
8464
+ {
8465
+ "name": "text",
8466
+ "description": "REQUIRED: Text displayed by the menu item",
8467
+ "type": "string"
8468
+ },
8469
+ {
8470
+ "name": "description",
8471
+ "description": "Provide a description for the menu item that will be used by screen readers",
8472
+ "type": "string"
8473
+ },
8474
+ {
8475
+ "name": "disabled",
8476
+ "description": "Disables the menu item",
8477
+ "type": "boolean",
8478
+ "default": "false"
8479
+ }
8480
+ ],
8481
+ "properties": [
8482
+ {
8483
+ "name": "requiresSelection",
8484
+ "attribute": "requires-selection",
8485
+ "description": "Whether the action requires one or more selected items",
8486
+ "type": "boolean",
8487
+ "default": "false"
8488
+ },
8489
+ {
8490
+ "name": "selectionFor",
8491
+ "attribute": "selection-for",
8492
+ "description": "Id of the `SelectionMixin` component this component wants to observe (if not located within that component)",
8493
+ "type": "string"
8494
+ },
8495
+ {
8496
+ "name": "selectionInfo",
8497
+ "type": "SelectionInfo"
8498
+ },
8499
+ {
8500
+ "name": "text",
8501
+ "attribute": "text",
8502
+ "description": "REQUIRED: Text displayed by the menu item",
8503
+ "type": "string"
8504
+ },
8505
+ {
8506
+ "name": "description",
8507
+ "attribute": "description",
8508
+ "description": "Provide a description for the menu item that will be used by screen readers",
8509
+ "type": "string"
8510
+ },
8511
+ {
8512
+ "name": "disabled",
8513
+ "attribute": "disabled",
8514
+ "description": "Disables the menu item",
8515
+ "type": "boolean",
8516
+ "default": "false"
8517
+ }
8518
+ ],
8519
+ "events": [
8520
+ {
8521
+ "name": "d2l-selection-action-click",
8522
+ "description": "Dispatched when the user clicks the action button. The `SelectionInfo` is provided as the event `detail`. If `requires-selection` was specified then the event will only be dispatched if items are selected."
8523
+ },
8524
+ {
8525
+ "name": "d2l-selection-observer-subscribe",
8526
+ "description": "Internal event"
8527
+ },
8528
+ {
8529
+ "name": "d2l-menu-item-select",
8530
+ "description": "Dispatched when the menu item is selected"
8531
+ },
8532
+ {
8533
+ "name": "d2l-menu-item-visibility-change",
8534
+ "description": "Dispatched when the visibility of the menu item changes"
8535
+ }
8536
+ ],
8537
+ "slots": [
8538
+ {
8539
+ "name": "supporting",
8540
+ "description": "Allows supporting information to be displayed on the right-most side of the menu item"
8541
+ }
8542
+ ]
8543
+ },
8409
8544
  {
8410
8545
  "name": "d2l-selection-action",
8411
8546
  "path": "./components/selection/selection-action.js",
@@ -8416,16 +8551,17 @@
8416
8551
  "description": "Preset icon key (e.g. `tier1:gear`)",
8417
8552
  "type": "string"
8418
8553
  },
8419
- {
8420
- "name": "requires-selection",
8421
- "description": "Whether the action requires one or more selected items",
8422
- "type": "boolean"
8423
- },
8424
8554
  {
8425
8555
  "name": "text",
8426
8556
  "description": "REQUIRED: The text for the action",
8427
8557
  "type": "string"
8428
8558
  },
8559
+ {
8560
+ "name": "requires-selection",
8561
+ "description": "Whether the action requires one or more selected items",
8562
+ "type": "boolean",
8563
+ "default": "false"
8564
+ },
8429
8565
  {
8430
8566
  "name": "selection-for",
8431
8567
  "description": "Id of the `SelectionMixin` component this component wants to observe (if not located within that component)",
@@ -8450,18 +8586,19 @@
8450
8586
  "description": "Preset icon key (e.g. `tier1:gear`)",
8451
8587
  "type": "string"
8452
8588
  },
8453
- {
8454
- "name": "requiresSelection",
8455
- "attribute": "requires-selection",
8456
- "description": "Whether the action requires one or more selected items",
8457
- "type": "boolean"
8458
- },
8459
8589
  {
8460
8590
  "name": "text",
8461
8591
  "attribute": "text",
8462
8592
  "description": "REQUIRED: The text for the action",
8463
8593
  "type": "string"
8464
8594
  },
8595
+ {
8596
+ "name": "requiresSelection",
8597
+ "attribute": "requires-selection",
8598
+ "description": "Whether the action requires one or more selected items",
8599
+ "type": "boolean",
8600
+ "default": "false"
8601
+ },
8465
8602
  {
8466
8603
  "name": "selectionFor",
8467
8604
  "attribute": "selection-for",
@@ -8469,7 +8606,8 @@
8469
8606
  "type": "string"
8470
8607
  },
8471
8608
  {
8472
- "name": "selectionInfo"
8609
+ "name": "selectionInfo",
8610
+ "type": "SelectionInfo"
8473
8611
  },
8474
8612
  {
8475
8613
  "name": "disabledTooltip",
@@ -8590,6 +8728,35 @@
8590
8728
  }
8591
8729
  ]
8592
8730
  },
8731
+ {
8732
+ "name": "d2l-selection-select-all-pages",
8733
+ "path": "./components/selection/selection-select-all-pages.js",
8734
+ "description": "A subtle button that selects all items for all pages.",
8735
+ "attributes": [
8736
+ {
8737
+ "name": "selection-for",
8738
+ "description": "Id of the `SelectionMixin` component this component wants to observe (if not located within that component)",
8739
+ "type": "string"
8740
+ }
8741
+ ],
8742
+ "properties": [
8743
+ {
8744
+ "name": "selectionFor",
8745
+ "attribute": "selection-for",
8746
+ "description": "Id of the `SelectionMixin` component this component wants to observe (if not located within that component)",
8747
+ "type": "string"
8748
+ },
8749
+ {
8750
+ "name": "selectionInfo"
8751
+ }
8752
+ ],
8753
+ "events": [
8754
+ {
8755
+ "name": "d2l-selection-observer-subscribe",
8756
+ "description": "Internal event"
8757
+ }
8758
+ ]
8759
+ },
8593
8760
  {
8594
8761
  "name": "d2l-selection-select-all",
8595
8762
  "path": "./components/selection/selection-select-all.js",
@@ -8676,6 +8843,12 @@
8676
8843
  "name": "d2l-test-selection",
8677
8844
  "path": "./components/selection/test/selection-component.js",
8678
8845
  "attributes": [
8846
+ {
8847
+ "name": "item-count",
8848
+ "description": "Total number of items. Required when selecting all pages is allowed.",
8849
+ "type": "number",
8850
+ "default": "0"
8851
+ },
8679
8852
  {
8680
8853
  "name": "selection-single",
8681
8854
  "description": "Whether to render with single selection behaviour. If `selection-single` is specified, the nested `d2l-selection-input` elements will render radios instead of checkboxes, and the selection component will maintain a single selected item.",
@@ -8684,6 +8857,13 @@
8684
8857
  }
8685
8858
  ],
8686
8859
  "properties": [
8860
+ {
8861
+ "name": "itemCount",
8862
+ "attribute": "item-count",
8863
+ "description": "Total number of items. Required when selecting all pages is allowed.",
8864
+ "type": "number",
8865
+ "default": "0"
8866
+ },
8687
8867
  {
8688
8868
  "name": "selectionSingle",
8689
8869
  "attribute": "selection-single",
package/lang/ar.js CHANGED
@@ -1,12 +1,11 @@
1
1
  /* eslint quotes: 0 */
2
-
3
2
  export default {
4
3
  "components.alert.close": "إغلاق التنبيه",
5
4
  "components.breadcrumbs.breadcrumb": "شريط التنقل",
6
5
  "components.calendar.notSelected": "لم يتم التحديد.",
7
6
  "components.calendar.selected": "تم التحديد.",
8
7
  "components.calendar.show": "إظهار {month}",
9
- "components.count-badge.plus" : "{number}+",
8
+ "components.count-badge.plus": "{number}+",
10
9
  "components.dialog.close": "إغلاق مربع الحوار هذا",
11
10
  "components.dropdown.close": "إغلاق",
12
11
  "components.filter.clear": "مسح",
@@ -17,9 +16,9 @@ export default {
17
16
  "components.filter.clearAnnounceSingle": "جارٍ مسح عوامل التصفية",
18
17
  "components.filter.clearDescription": "مسح عوامل التصفية لـ: {filterName}",
19
18
  "components.filter.clearDescriptionSingle": "مسح عوامل التصفية",
20
- "components.filter.loading": "يتم تحميل عوامل التصفية",
21
19
  "components.filter.filterCountDescription": "{number, plural, zero {لم يتم تطبيق عوامل تصفية.} one {تم تطبيق عامل تصفية واحد.} other {{number} من عوامل التصفية التي تم تطبيقها.}}",
22
20
  "components.filter.filters": "عوامل التصفية",
21
+ "components.filter.loading": "يتم تحميل عوامل التصفية",
23
22
  "components.filter.noFilters": "ما من عوامل تصفية متوفرة",
24
23
  "components.filter.searchResults": "{number, plural, zero {ما من نتائج بحث} one {نتيجة بحث واحدة} other {{number} من نتائج البحث}}",
25
24
  "components.filter.singleDimensionDescription": "التصفية حسب: {filterName}",
@@ -49,37 +48,37 @@ export default {
49
48
  "components.input-date.errorMaxDateOnly": "يجب أن يكون التاريخ قبل {maxDate}",
50
49
  "components.input-date.errorMinDateOnly": "يجب أن يكون التاريخ بعد {minDate}",
51
50
  "components.input-date.errorOutsideRange": "يجب أن يكون التاريخ بين {minDate} و{maxDate}",
52
- "components.input-date.openInstructions": "استخدم تنسيق التاريخ {format}. انتقل إلى الأسفل أو اضغط على Enter للوصول إلى التقويم المصغّر.",
53
51
  "components.input-date.now": "الآن",
52
+ "components.input-date.openInstructions": "استخدم تنسيق التاريخ {format}. انتقل إلى الأسفل أو اضغط على Enter للوصول إلى التقويم المصغّر.",
54
53
  "components.input-date.today": "اليوم",
55
- "components.input-number.hintInteger": "يقبل هذا الحقل قيم الأعداد الصحيحة فقط (بدون أعداد عشرية)",
56
54
  "components.input-number.hintDecimalDuplicate": "يوجد عدد عشري في هذا الرقم",
57
55
  "components.input-number.hintDecimalIncorrectComma": "لإضافة عدد عشري، استخدم حرف الفاصلة \",\"",
58
56
  "components.input-number.hintDecimalIncorrectPeriod": "لإضافة عدد عشري، استخدم حرف النقطة \".\"",
57
+ "components.input-number.hintInteger": "يقبل هذا الحقل قيم الأعداد الصحيحة فقط (بدون أعداد عشرية)",
59
58
  "components.input-search.clear": "مسح البحث",
60
59
  "components.input-search.defaultPlaceholder": "البحث...",
61
60
  "components.input-search.search": "بحث",
62
61
  "components.input-time-range.endTime": "وقت النهاية",
63
62
  "components.input-time-range.errorBadInput": "يجب أن يكون تاريخ {startLabel} قبل {endLabel}",
64
63
  "components.input-time-range.startTime": "وقت البدء",
64
+ "components.list-item-drag-handle-tooltip.enter-desc": "تبديل وضع إعادة ترتيب لوحة المفاتيح.",
65
+ "components.list-item-drag-handle-tooltip.enter-key": "إدخال",
66
+ "components.list-item-drag-handle-tooltip.left-right-desc": "غيِّر مستوى التداخل.",
67
+ "components.list-item-drag-handle-tooltip.left-right-key": "يسار/يمين",
68
+ "components.list-item-drag-handle-tooltip.title": "عناصر التحكم بلوحة المفاتيح لإعادة الترتيب:",
69
+ "components.list-item-drag-handle-tooltip.up-down-desc": "نقل المادة إلى الأعلى أو الأسفل في القائمة.",
70
+ "components.list-item-drag-handle-tooltip.up-down-key": "أعلى/أسفل",
65
71
  "components.list-item-drag-handle.default": "إعادة ترتيب إجراء المادة لـ {name}",
66
72
  "components.list-item-drag-handle.keyboard": "إعادة ترتيب المواد، الموضع الحالي {currentPosition} من أصل {size}. لنقل هذه المادة، اضغط على السهم المتجه إلى أعلى أو السهم المتجه إلى أسفل.",
67
- "components.list-item-tooltip.title": "التنقل عبر لوحة المفاتيح للقوائم:",
68
- "components.list-item-tooltip.enter-key": "إدخال",
69
73
  "components.list-item-tooltip.enter-desc": "تنشيط خيار التركيز.",
70
- "components.list-item-tooltip.up-down-key": "أعلى/أسفل",
71
- "components.list-item-tooltip.up-down-desc": "نقل التركيز بين مواد القائمة.",
72
- "components.list-item-tooltip.left-right-key": "يسار/يمين",
74
+ "components.list-item-tooltip.enter-key": "إدخال",
73
75
  "components.list-item-tooltip.left-right-desc": "نقل التركيز ضمن المادة الحالية.",
74
- "components.list-item-tooltip.page-up-down-key": "صفحة إلى الأعلى/الأسفل",
76
+ "components.list-item-tooltip.left-right-key": "يسار/يمين",
75
77
  "components.list-item-tooltip.page-up-down-desc": "نقل التركيز لـ 5 مواد في كل مرة.",
76
- "components.list-item-drag-handle-tooltip.title": "عناصر التحكم بلوحة المفاتيح لإعادة الترتيب:",
77
- "components.list-item-drag-handle-tooltip.enter-key": "إدخال",
78
- "components.list-item-drag-handle-tooltip.enter-desc": "تبديل وضع إعادة ترتيب لوحة المفاتيح.",
79
- "components.list-item-drag-handle-tooltip.up-down-key": "أعلى/أسفل",
80
- "components.list-item-drag-handle-tooltip.up-down-desc": "نقل المادة إلى الأعلى أو الأسفل في القائمة.",
81
- "components.list-item-drag-handle-tooltip.left-right-key": "يسار/يمين",
82
- "components.list-item-drag-handle-tooltip.left-right-desc": "غيِّر مستوى التداخل.",
78
+ "components.list-item-tooltip.page-up-down-key": "صفحة إلى الأعلى/الأسفل",
79
+ "components.list-item-tooltip.title": "التنقل عبر لوحة المفاتيح للقوائم:",
80
+ "components.list-item-tooltip.up-down-desc": "نقل التركيز بين مواد القائمة.",
81
+ "components.list-item-tooltip.up-down-key": "أعلى/أسفل",
83
82
  "components.menu-item-return.return": "العودة إلى القائمة السابقة.",
84
83
  "components.menu-item-return.returnCurrentlyShowing": "العودة إلى القائمة السابقة. يتم عرض {menuTitle}.",
85
84
  "components.meter-mixin.commaSeperatedAria": "{term1}، ‏{term2}",
@@ -90,6 +89,7 @@ export default {
90
89
  "components.overflow-group.moreActions": "مزيد من الإجراءات",
91
90
  "components.selection.action-hint": "حدد مادة لتنفيذ هذا الإجراء.",
92
91
  "components.selection.select-all": "تحديد الكل",
92
+ "components.selection.select-all-items": "Select All {count} Items",
93
93
  "components.selection.selected": "تم تحديد {count}",
94
94
  "components.switch.visibility": "إمكانية الرؤية",
95
95
  "components.tabs.next": "التمرير إلى الأمام",
package/lang/cy.js CHANGED
@@ -1,12 +1,11 @@
1
1
  /* eslint quotes: 0 */
2
-
3
2
  export default {
4
3
  "components.alert.close": "Cau Hysbysiad",
5
4
  "components.breadcrumbs.breadcrumb": "Briwsionyn Bara",
6
5
  "components.calendar.notSelected": "Heb ei Ddewis.",
7
6
  "components.calendar.selected": "Wedi'i Ddewis.",
8
7
  "components.calendar.show": "Dangos {month}",
9
- "components.count-badge.plus" : "{number}+",
8
+ "components.count-badge.plus": "{number}+",
10
9
  "components.dialog.close": "Cau'r dialog hwn",
11
10
  "components.dropdown.close": "Cau",
12
11
  "components.filter.clear": "Clirio",
@@ -17,9 +16,9 @@ export default {
17
16
  "components.filter.clearAnnounceSingle": "Wrthi'n clirio hidlwyr",
18
17
  "components.filter.clearDescription": "Wrthi’n clirio hidlwyd ar gyfer: {filterName}",
19
18
  "components.filter.clearDescriptionSingle": "Clirio Hidlwyr",
20
- "components.filter.loading": "Wrthi’n llwytho hidlyddion",
21
19
  "components.filter.filterCountDescription": "{number, plural, zero {Ni chymhwyswyd hidlwyr.} one {1 hidlydd wedi'i gymhwyso.} other {{number} hidlydd wedi'u cymhwyso.}}",
22
20
  "components.filter.filters": "Hidlyddion",
21
+ "components.filter.loading": "Wrthi’n llwytho hidlyddion",
23
22
  "components.filter.noFilters": "Dim hidlyddion ar gael",
24
23
  "components.filter.searchResults": "{number, plural, zero {Dim canlyniadau chwilio} one {1 canlyniad chwilio} other {{number} o ganlyniadau chwilio}}",
25
24
  "components.filter.singleDimensionDescription": "Hidlo yn ôl: {filterName}",
@@ -49,37 +48,37 @@ export default {
49
48
  "components.input-date.errorMaxDateOnly": "Rhaid i'r dyddiad fod cyn {maxDate}",
50
49
  "components.input-date.errorMinDateOnly": "Rhaid i'r dyddiad fod ar ôl {minDate}",
51
50
  "components.input-date.errorOutsideRange": "Rhaid i'r dyddiad fod rhwng {minDate} a {maxDate}",
52
- "components.input-date.openInstructions": "Defnyddio fformat dyddiad {format}. Pwyswch saeth i lawr neu Enter i gael mynediad at galendr bach.",
53
51
  "components.input-date.now": "Nawr",
52
+ "components.input-date.openInstructions": "Defnyddio fformat dyddiad {format}. Pwyswch saeth i lawr neu Enter i gael mynediad at galendr bach.",
54
53
  "components.input-date.today": "Heddiw",
55
- "components.input-number.hintInteger": "Mae'r maes hwn yn derbyn gwerthoedd cyfanrif yn unig (dim degolion)",
56
54
  "components.input-number.hintDecimalDuplicate": "Mae degol eisoes yn y nifer hwn",
57
55
  "components.input-number.hintDecimalIncorrectComma": "I ychwanegu degol defnyddiwch y nod coma \",”",
58
56
  "components.input-number.hintDecimalIncorrectPeriod": "I ychwanegu degol defnyddiwch y nod atalnod llawn \".\"",
57
+ "components.input-number.hintInteger": "Mae'r maes hwn yn derbyn gwerthoedd cyfanrif yn unig (dim degolion)",
59
58
  "components.input-search.clear": "Clirio'r Chwilio",
60
59
  "components.input-search.defaultPlaceholder": "Chwilio...",
61
60
  "components.input-search.search": "Chwilio",
62
61
  "components.input-time-range.endTime": "Amser Gorffen",
63
62
  "components.input-time-range.errorBadInput": "Rhaid i {startLabel} fod cyn {endLabel}",
64
63
  "components.input-time-range.startTime": "Amser Dechrau",
64
+ "components.list-item-drag-handle-tooltip.enter-desc": "Toglo'r modd aildrefnu bysellfwrdd.",
65
+ "components.list-item-drag-handle-tooltip.enter-key": "Nodi",
66
+ "components.list-item-drag-handle-tooltip.left-right-desc": "Newid y lefel nythu.",
67
+ "components.list-item-drag-handle-tooltip.left-right-key": "Chwith/De",
68
+ "components.list-item-drag-handle-tooltip.title": "Rheolaethau bysellfwrdd ar gyfer aildrefnu:",
69
+ "components.list-item-drag-handle-tooltip.up-down-desc": "Symud yr eitem i fyny neu i lawr yn y rhestr.",
70
+ "components.list-item-drag-handle-tooltip.up-down-key": "I Fyny/I Lawr",
65
71
  "components.list-item-drag-handle.default": "Aildrefnu gweithred eitem ar gyfer {name}",
66
72
  "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.",
67
- "components.list-item-tooltip.title": "Llywio Bysellfwrdd ar gyfer Rhestrau:",
68
- "components.list-item-tooltip.enter-key": "Nodi",
69
73
  "components.list-item-tooltip.enter-desc": "Gweithredu'r opsiwn ffocysu.",
70
- "components.list-item-tooltip.up-down-key": "I Fyny/I Lawr",
71
- "components.list-item-tooltip.up-down-desc": "Symud y ffocws rhwng eitemau rhestr.",
72
- "components.list-item-tooltip.left-right-key": "Chwith/De",
74
+ "components.list-item-tooltip.enter-key": "Nodi",
73
75
  "components.list-item-tooltip.left-right-desc": "Symud y ffocws o fewn yr eitem bresennol.",
74
- "components.list-item-tooltip.page-up-down-key": "Tudalen I Fyny/I Lawr",
76
+ "components.list-item-tooltip.left-right-key": "Chwith/De",
75
77
  "components.list-item-tooltip.page-up-down-desc": "Symud y ffocws 5 eitem ar y tro.",
76
- "components.list-item-drag-handle-tooltip.title": "Rheolaethau bysellfwrdd ar gyfer aildrefnu:",
77
- "components.list-item-drag-handle-tooltip.enter-key": "Nodi",
78
- "components.list-item-drag-handle-tooltip.enter-desc": "Toglo'r modd aildrefnu bysellfwrdd.",
79
- "components.list-item-drag-handle-tooltip.up-down-key": "I Fyny/I Lawr",
80
- "components.list-item-drag-handle-tooltip.up-down-desc": "Symud yr eitem i fyny neu i lawr yn y rhestr.",
81
- "components.list-item-drag-handle-tooltip.left-right-key": "Chwith/De",
82
- "components.list-item-drag-handle-tooltip.left-right-desc": "Newid y lefel nythu.",
78
+ "components.list-item-tooltip.page-up-down-key": "Tudalen I Fyny/I Lawr",
79
+ "components.list-item-tooltip.title": "Llywio Bysellfwrdd ar gyfer Rhestrau:",
80
+ "components.list-item-tooltip.up-down-desc": "Symud y ffocws rhwng eitemau rhestr.",
81
+ "components.list-item-tooltip.up-down-key": "I Fyny/I Lawr",
83
82
  "components.menu-item-return.return": "Dychwelyd i'r ddewislen flaenorol.",
84
83
  "components.menu-item-return.returnCurrentlyShowing": "Dychwelyd i'r ddewislen flaenorol. Rydych chi'n edrych ar {menuTitle}.",
85
84
  "components.meter-mixin.commaSeperatedAria": "{term1}, {term2}",
@@ -90,6 +89,7 @@ export default {
90
89
  "components.overflow-group.moreActions": "Rhagor o Gamau Gweithredu",
91
90
  "components.selection.action-hint": "Dewiswch eitem i gyflawni'r weithred hon.",
92
91
  "components.selection.select-all": "Dewis y Cyfan",
92
+ "components.selection.select-all-items": "Select All {count} Items",
93
93
  "components.selection.selected": "{count} wedi’u dewis.",
94
94
  "components.switch.visibility": "Gwelededd",
95
95
  "components.tabs.next": "Sgrolio Ymlaen",
package/lang/da.js CHANGED
@@ -1,12 +1,11 @@
1
1
  /* eslint quotes: 0 */
2
-
3
2
  export default {
4
3
  "components.alert.close": "Luk besked",
5
4
  "components.breadcrumbs.breadcrumb": "Brødkrumme",
6
5
  "components.calendar.notSelected": "Ikke valgt.",
7
6
  "components.calendar.selected": "Valgt.",
8
7
  "components.calendar.show": "Vis {month}",
9
- "components.count-badge.plus" : "{number}+",
8
+ "components.count-badge.plus": "{number}+",
10
9
  "components.dialog.close": "Luk denne dialogboks",
11
10
  "components.dropdown.close": "Luk",
12
11
  "components.filter.clear": "Ryd",
@@ -17,9 +16,9 @@ export default {
17
16
  "components.filter.clearAnnounceSingle": "Rydder filtre",
18
17
  "components.filter.clearDescription": "Ryd filtre for: {filterName}",
19
18
  "components.filter.clearDescriptionSingle": "Ryd filtre",
20
- "components.filter.loading": "Indlæser filtre",
21
19
  "components.filter.filterCountDescription": "{number, plural, zero {Ingen filtre anvendt.} one {1 filter anvendt.} other {{number} filtre anvendt.}}",
22
20
  "components.filter.filters": "Filtre",
21
+ "components.filter.loading": "Indlæser filtre",
23
22
  "components.filter.noFilters": "Ingen tilgængelige filtre",
24
23
  "components.filter.searchResults": "{number, plural, zero {No search results} one {1 search result} other {{number} search results}}",
25
24
  "components.filter.singleDimensionDescription": "Filtrer efter: {filterName}",
@@ -49,37 +48,37 @@ export default {
49
48
  "components.input-date.errorMaxDateOnly": "Datoen skal være før {maxDate}",
50
49
  "components.input-date.errorMinDateOnly": "Datoen skal være efter {minDate}",
51
50
  "components.input-date.errorOutsideRange": "Datoen skal være mellem {minDate} og {maxDate}",
52
- "components.input-date.openInstructions": "Brug datoformatet {format}. Tryk på Pil ned eller Enter for at få adgang til minikalender.",
53
51
  "components.input-date.now": "Nu",
52
+ "components.input-date.openInstructions": "Brug datoformatet {format}. Tryk på Pil ned eller Enter for at få adgang til minikalender.",
54
53
  "components.input-date.today": "I dag",
55
- "components.input-number.hintInteger": "Dette felt accepterer kun heltalsværdier (ingen decimaler)",
56
54
  "components.input-number.hintDecimalDuplicate": "Der er allerede en decimal i dette tal",
57
55
  "components.input-number.hintDecimalIncorrectComma": "Hvis du vil tilføje en decimal, skal du bruge komma-tegnet \",\"",
58
56
  "components.input-number.hintDecimalIncorrectPeriod": "Hvis du vil tilføje en decimal, skal du bruge tegnet \".\"",
57
+ "components.input-number.hintInteger": "Dette felt accepterer kun heltalsværdier (ingen decimaler)",
59
58
  "components.input-search.clear": "Ryd søgning",
60
59
  "components.input-search.defaultPlaceholder": "Søg ...",
61
60
  "components.input-search.search": "Søg",
62
61
  "components.input-time-range.endTime": "Sluttidspunkt",
63
62
  "components.input-time-range.errorBadInput": "{startLabel} skal være før {endLabel}",
64
63
  "components.input-time-range.startTime": "Starttidspunkt",
64
+ "components.list-item-drag-handle-tooltip.enter-desc": "Skift tilstand for omorganisering af tastatur.",
65
+ "components.list-item-drag-handle-tooltip.enter-key": "Indtast",
66
+ "components.list-item-drag-handle-tooltip.left-right-desc": "Skift indlejringsniveauet.",
67
+ "components.list-item-drag-handle-tooltip.left-right-key": "Venstre/højre",
68
+ "components.list-item-drag-handle-tooltip.title": "Tastaturkontrolelementer for omorganisering:",
69
+ "components.list-item-drag-handle-tooltip.up-down-desc": "Flyt element op eller ned på listen.",
70
+ "components.list-item-drag-handle-tooltip.up-down-key": "Op/ned",
65
71
  "components.list-item-drag-handle.default": "Omarranger elementhandling for {name}",
66
72
  "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.",
67
- "components.list-item-tooltip.title": "Tastaturnavigering for lister:",
68
- "components.list-item-tooltip.enter-key": "Indtast",
69
73
  "components.list-item-tooltip.enter-desc": "Aktivér den fokuserede indstilling.",
70
- "components.list-item-tooltip.up-down-key": "Op/ned",
71
- "components.list-item-tooltip.up-down-desc": "Flyt fokus mellem listeelementer.",
72
- "components.list-item-tooltip.left-right-key": "Venstre/højre",
74
+ "components.list-item-tooltip.enter-key": "Indtast",
73
75
  "components.list-item-tooltip.left-right-desc": "Flyt fokus inden for det aktuelle element.",
74
- "components.list-item-tooltip.page-up-down-key": "Side op/ned",
76
+ "components.list-item-tooltip.left-right-key": "Venstre/højre",
75
77
  "components.list-item-tooltip.page-up-down-desc": "Flyt fokus 5 elementer ad gangen.",
76
- "components.list-item-drag-handle-tooltip.title": "Tastaturkontrolelementer for omorganisering:",
77
- "components.list-item-drag-handle-tooltip.enter-key": "Indtast",
78
- "components.list-item-drag-handle-tooltip.enter-desc": "Skift tilstand for omorganisering af tastatur.",
79
- "components.list-item-drag-handle-tooltip.up-down-key": "Op/ned",
80
- "components.list-item-drag-handle-tooltip.up-down-desc": "Flyt element op eller ned på listen.",
81
- "components.list-item-drag-handle-tooltip.left-right-key": "Venstre/højre",
82
- "components.list-item-drag-handle-tooltip.left-right-desc": "Skift indlejringsniveauet.",
78
+ "components.list-item-tooltip.page-up-down-key": "Side op/ned",
79
+ "components.list-item-tooltip.title": "Tastaturnavigering for lister:",
80
+ "components.list-item-tooltip.up-down-desc": "Flyt fokus mellem listeelementer.",
81
+ "components.list-item-tooltip.up-down-key": "Op/ned",
83
82
  "components.menu-item-return.return": "Gå tilbage til forrige menu.",
84
83
  "components.menu-item-return.returnCurrentlyShowing": "Gå tilbage til forrige menu. Du ser på {menuTitle}.",
85
84
  "components.meter-mixin.commaSeperatedAria": "{term1}, {term2}",
@@ -90,6 +89,7 @@ export default {
90
89
  "components.overflow-group.moreActions": "Flere handlinger",
91
90
  "components.selection.action-hint": "Vælg et element for at udføre denne handling.",
92
91
  "components.selection.select-all": "Vælg alle",
92
+ "components.selection.select-all-items": "Select All {count} Items",
93
93
  "components.selection.selected": "{count} valgt",
94
94
  "components.switch.visibility": "Synlighed",
95
95
  "components.tabs.next": "Rul frem",