@brightspace-ui/core 1.197.0 → 1.197.4

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 (73) hide show
  1. package/components/dropdown/README.md +4 -0
  2. package/components/dropdown/demo/dropdown-button.html +30 -0
  3. package/components/dropdown/dropdown-content-styles.js +13 -0
  4. package/components/dropdown/dropdown-opener-mixin.js +235 -24
  5. package/components/filter/README.md +15 -6
  6. package/components/filter/filter-dimension-set-value.js +3 -0
  7. package/components/filter/filter-dimension-set.js +5 -1
  8. package/components/filter/screenshots/filter-mobile.png +0 -0
  9. package/components/filter/screenshots/filter-multi-dim.png +0 -0
  10. package/components/filter/screenshots/filter.png +0 -0
  11. package/components/form/form-mixin.js +1 -0
  12. package/components/form/form-native.js +0 -1
  13. package/components/form/form.js +0 -1
  14. package/components/html-block/html-block.js +8 -0
  15. package/components/inputs/docs/input-date-time.md +7 -7
  16. package/components/inputs/input-date-range.js +9 -1
  17. package/components/inputs/input-date-time-range-to.js +3 -0
  18. package/components/inputs/input-date-time-range.js +10 -1
  19. package/components/inputs/input-date-time.js +7 -1
  20. package/components/inputs/input-date.js +7 -1
  21. package/components/inputs/input-fieldset.js +3 -0
  22. package/components/inputs/input-time-range.js +10 -1
  23. package/components/inputs/input-time.js +6 -1
  24. package/components/link/README.md +1 -1
  25. package/components/list/README.md +10 -10
  26. package/components/list/list-item-button-mixin.js +1 -0
  27. package/components/list/list-item-button.js +0 -3
  28. package/components/list/list-item-checkbox-mixin.js +1 -0
  29. package/components/list/list-item-drag-drop-mixin.js +2 -0
  30. package/components/list/list-item-link-mixin.js +1 -0
  31. package/components/list/list-item.js +0 -3
  32. package/components/list/list.js +2 -0
  33. package/components/menu/menu-item-checkbox.js +0 -4
  34. package/components/menu/menu-item-link.js +0 -2
  35. package/components/menu/menu-item-mixin.js +3 -0
  36. package/components/menu/menu-item-radio.js +0 -3
  37. package/components/menu/menu-item-selectable-mixin.js +2 -0
  38. package/components/menu/menu-item.js +0 -2
  39. package/components/overflow-group/overflow-group.js +4 -3
  40. package/components/scroll-wrapper/scroll-wrapper.js +1 -2
  41. package/components/selection/selection-action.js +4 -0
  42. package/components/selection/selection-input.js +5 -0
  43. package/components/selection/selection-mixin.js +2 -1
  44. package/components/selection/selection-observer-mixin.js +3 -1
  45. package/components/selection/selection-select-all.js +2 -0
  46. package/components/selection/selection-summary.js +3 -1
  47. package/components/skeleton/skeleton-mixin.js +1 -0
  48. package/components/status-indicator/status-indicator.js +2 -0
  49. package/components/switch/switch-visibility.js +3 -0
  50. package/components/switch/switch.js +3 -0
  51. package/components/table/table-col-sort-button.js +0 -2
  52. package/components/table/table-wrapper.js +0 -2
  53. package/components/tabs/tab-panel-mixin.js +2 -0
  54. package/components/tabs/tab-panel.js +0 -2
  55. package/custom-elements.json +118 -48
  56. package/lang/ar.js +7 -7
  57. package/lang/cy.js +7 -7
  58. package/lang/da.js +7 -7
  59. package/lang/de.js +7 -7
  60. package/lang/es-es.js +7 -7
  61. package/lang/es.js +8 -8
  62. package/lang/fr-fr.js +8 -8
  63. package/lang/fr.js +7 -7
  64. package/lang/ja.js +8 -8
  65. package/lang/ko.js +7 -7
  66. package/lang/nl.js +8 -8
  67. package/lang/pt.js +7 -7
  68. package/lang/sv.js +7 -7
  69. package/lang/tr.js +7 -7
  70. package/lang/zh-tw.js +7 -7
  71. package/lang/zh.js +8 -8
  72. package/package.json +1 -1
  73. package/templates/primary-secondary/primary-secondary.js +2 -0
@@ -1686,6 +1686,12 @@
1686
1686
  "type": "boolean",
1687
1687
  "default": "false"
1688
1688
  },
1689
+ {
1690
+ "name": "open-on-hover",
1691
+ "description": "Optionally open dropdown on click or hover action",
1692
+ "type": "boolean",
1693
+ "default": "false"
1694
+ },
1689
1695
  {
1690
1696
  "name": "disabled",
1691
1697
  "description": "Disables the dropdown opener",
@@ -1718,6 +1724,13 @@
1718
1724
  "type": "boolean",
1719
1725
  "default": "false"
1720
1726
  },
1727
+ {
1728
+ "name": "openOnHover",
1729
+ "attribute": "open-on-hover",
1730
+ "description": "Optionally open dropdown on click or hover action",
1731
+ "type": "boolean",
1732
+ "default": "false"
1733
+ },
1721
1734
  {
1722
1735
  "name": "disabled",
1723
1736
  "attribute": "disabled",
@@ -1755,6 +1768,12 @@
1755
1768
  "type": "boolean",
1756
1769
  "default": "false"
1757
1770
  },
1771
+ {
1772
+ "name": "open-on-hover",
1773
+ "description": "Optionally open dropdown on click or hover action",
1774
+ "type": "boolean",
1775
+ "default": "false"
1776
+ },
1758
1777
  {
1759
1778
  "name": "disabled",
1760
1779
  "description": "Disables the dropdown opener",
@@ -1788,6 +1807,13 @@
1788
1807
  "type": "boolean",
1789
1808
  "default": "false"
1790
1809
  },
1810
+ {
1811
+ "name": "openOnHover",
1812
+ "attribute": "open-on-hover",
1813
+ "description": "Optionally open dropdown on click or hover action",
1814
+ "type": "boolean",
1815
+ "default": "false"
1816
+ },
1791
1817
  {
1792
1818
  "name": "disabled",
1793
1819
  "attribute": "disabled",
@@ -2087,6 +2113,12 @@
2087
2113
  "type": "boolean",
2088
2114
  "default": "false"
2089
2115
  },
2116
+ {
2117
+ "name": "open-on-hover",
2118
+ "description": "Optionally open dropdown on click or hover action",
2119
+ "type": "boolean",
2120
+ "default": "false"
2121
+ },
2090
2122
  {
2091
2123
  "name": "disabled",
2092
2124
  "description": "Disables the dropdown opener",
@@ -2120,6 +2152,13 @@
2120
2152
  "type": "boolean",
2121
2153
  "default": "false"
2122
2154
  },
2155
+ {
2156
+ "name": "openOnHover",
2157
+ "attribute": "open-on-hover",
2158
+ "description": "Optionally open dropdown on click or hover action",
2159
+ "type": "boolean",
2160
+ "default": "false"
2161
+ },
2123
2162
  {
2124
2163
  "name": "disabled",
2125
2164
  "attribute": "disabled",
@@ -2424,6 +2463,12 @@
2424
2463
  "type": "boolean",
2425
2464
  "default": "false"
2426
2465
  },
2466
+ {
2467
+ "name": "open-on-hover",
2468
+ "description": "Optionally open dropdown on click or hover action",
2469
+ "type": "boolean",
2470
+ "default": "false"
2471
+ },
2427
2472
  {
2428
2473
  "name": "disabled",
2429
2474
  "description": "Disables the dropdown opener",
@@ -2457,6 +2502,13 @@
2457
2502
  "type": "boolean",
2458
2503
  "default": "false"
2459
2504
  },
2505
+ {
2506
+ "name": "openOnHover",
2507
+ "attribute": "open-on-hover",
2508
+ "description": "Optionally open dropdown on click or hover action",
2509
+ "type": "boolean",
2510
+ "default": "false"
2511
+ },
2460
2512
  {
2461
2513
  "name": "disabled",
2462
2514
  "attribute": "disabled",
@@ -2750,6 +2802,12 @@
2750
2802
  "type": "boolean",
2751
2803
  "default": "false"
2752
2804
  },
2805
+ {
2806
+ "name": "open-on-hover",
2807
+ "description": "Optionally open dropdown on click or hover action",
2808
+ "type": "boolean",
2809
+ "default": "false"
2810
+ },
2753
2811
  {
2754
2812
  "name": "disabled",
2755
2813
  "description": "Disables the dropdown opener",
@@ -2770,6 +2828,13 @@
2770
2828
  "type": "boolean",
2771
2829
  "default": "false"
2772
2830
  },
2831
+ {
2832
+ "name": "openOnHover",
2833
+ "attribute": "open-on-hover",
2834
+ "description": "Optionally open dropdown on click or hover action",
2835
+ "type": "boolean",
2836
+ "default": "false"
2837
+ },
2773
2838
  {
2774
2839
  "name": "disabled",
2775
2840
  "attribute": "disabled",
@@ -2961,11 +3026,6 @@
2961
3026
  "default": "\"\""
2962
3027
  }
2963
3028
  ],
2964
- "events": [
2965
- {
2966
- "name": "d2l-filter-dimension-data-change"
2967
- }
2968
- ],
2969
3029
  "slots": [
2970
3030
  {
2971
3031
  "name": "",
@@ -3161,13 +3221,13 @@
3161
3221
  "name": "submit",
3162
3222
  "description": "Dispatched when the form is submitted. Cancelling this event will prevent form submission."
3163
3223
  },
3164
- {
3165
- "name": "d2l-form-dirty",
3166
- "description": "Dispatched whenever any form element fires an `input` or `change` event. Can be used to track whether the form is dirty or not."
3167
- },
3168
3224
  {
3169
3225
  "name": "formdata",
3170
3226
  "description": "Dispatched after the entry list representing the form's data is constructed. This happens when the form is submitted just prior to submission. The form data can be obtained from the `detail`'s `formData` property."
3227
+ },
3228
+ {
3229
+ "name": "d2l-form-dirty",
3230
+ "description": "Dispatched whenever any form element fires an `input` or `change` event. Can be used to track whether the form is dirty or not."
3171
3231
  }
3172
3232
  ],
3173
3233
  "slots": [
@@ -3210,10 +3270,6 @@
3210
3270
  }
3211
3271
  ],
3212
3272
  "events": [
3213
- {
3214
- "name": "d2l-form-dirty",
3215
- "description": "Dispatched whenever any form element fires an `input` or `change` event. Can be used to track whether the form is dirty or not."
3216
- },
3217
3273
  {
3218
3274
  "name": "d2l-form-invalid",
3219
3275
  "description": "Dispatched when the form fails validation. The error map can be obtained from the `detail`'s `errors` property."
@@ -3221,6 +3277,10 @@
3221
3277
  {
3222
3278
  "name": "d2l-form-submit",
3223
3279
  "description": "Dispatched when the form is submitted. The form data can be obtained from the `detail`'s `formData` property."
3280
+ },
3281
+ {
3282
+ "name": "d2l-form-dirty",
3283
+ "description": "Dispatched whenever any form element fires an `input` or `change` event. Can be used to track whether the form is dirty or not."
3224
3284
  }
3225
3285
  ],
3226
3286
  "slots": [
@@ -3816,7 +3876,7 @@
3816
3876
  "events": [
3817
3877
  {
3818
3878
  "name": "change",
3819
- "description": "Dispatched when there is a change to selected start date or selected end date. \"start-value\" and \"end-value\" correspond to the selected values and are formatted in ISO 8601 calendar date format (\"YYYY-MM-DD\")."
3879
+ "description": "Dispatched when there is a change to selected start date or selected end date. `start-value` and `end-value` correspond to the selected values and are formatted in ISO 8601 calendar date format (`YYYY-MM-DD`)."
3820
3880
  }
3821
3881
  ]
3822
3882
  },
@@ -4102,7 +4162,7 @@
4102
4162
  "events": [
4103
4163
  {
4104
4164
  "name": "change",
4105
- "description": "Dispatched when there is a change to selected start date-time or selected end date-time. \"start-value\" and \"end-value\" correspond to the selected values and are formatted in ISO 8601 combined date and time format (\"YYYY-MM-DDTHH:mm:ss.sssZ\")."
4165
+ "description": "Dispatched when there is a change to selected start date-time or selected end date-time. `start-value` and `end-value` correspond to the selected values and are formatted in ISO 8601 combined date and time format (`YYYY-MM-DDTHH:mm:ss.sssZ`)."
4106
4166
  }
4107
4167
  ],
4108
4168
  "slots": [
@@ -4278,7 +4338,7 @@
4278
4338
  "events": [
4279
4339
  {
4280
4340
  "name": "change",
4281
- "description": "Dispatched when there is a change to selected date or selected time. \"value\" corresponds to the selected value and is formatted in ISO 8601 combined date and time format (\"YYYY-MM-DDTHH:mm:ss.sssZ\")."
4341
+ "description": "Dispatched when there is a change to selected date or selected time. `value` corresponds to the selected value and is formatted in ISO 8601 combined date and time format (`YYYY-MM-DDTHH:mm:ss.sssZ`)."
4282
4342
  }
4283
4343
  ]
4284
4344
  },
@@ -4433,7 +4493,7 @@
4433
4493
  "events": [
4434
4494
  {
4435
4495
  "name": "change",
4436
- "description": "Dispatched when there is a change to selected date. \"value\" corresponds to the selected value and is formatted in ISO 8601 calendar date format (\"YYYY-MM-DD\")."
4496
+ "description": "Dispatched when there is a change to selected date. `value` corresponds to the selected value and is formatted in ISO 8601 calendar date format (`YYYY-MM-DD`)."
4437
4497
  }
4438
4498
  ]
4439
4499
  },
@@ -5862,7 +5922,7 @@
5862
5922
  "events": [
5863
5923
  {
5864
5924
  "name": "change",
5865
- "description": "Dispatched when there is a change to selected start time or selected end time. \"start-value\" and \"end-value\" correspond to the selected values and are formatted in ISO 8601 calendar time format (\"hh:mm:ss\")."
5925
+ "description": "Dispatched when there is a change to selected start time or selected end time. `start-value` and `end-value` correspond to the selected values and are formatted in ISO 8601 calendar time format (`hh:mm:ss`)."
5866
5926
  }
5867
5927
  ]
5868
5928
  },
@@ -6028,7 +6088,7 @@
6028
6088
  "events": [
6029
6089
  {
6030
6090
  "name": "change",
6031
- "description": "Dispatched when there is a change to selected time. \"value\" corresponds to the selected value and is formatted in ISO 8601 time format (\"hh:mm:ss\")."
6091
+ "description": "Dispatched when there is a change to selected time. `value` corresponds to the selected value and is formatted in ISO 8601 time format (`hh:mm:ss`)."
6032
6092
  }
6033
6093
  ]
6034
6094
  },
@@ -6324,10 +6384,12 @@
6324
6384
  ],
6325
6385
  "events": [
6326
6386
  {
6327
- "name": "d2l-list-item-position-change"
6387
+ "name": "d2l-list-item-position-change",
6388
+ "description": "Dispatched when a draggable list item's position changes in the list. See [Event Details: d2l-list-item-position-change](#event-details%3A-d2l-list-item-position-change)."
6328
6389
  },
6329
6390
  {
6330
- "name": "d2l-list-item-selected"
6391
+ "name": "d2l-list-item-selected",
6392
+ "description": "Dispatched when the component item is selected"
6331
6393
  }
6332
6394
  ]
6333
6395
  },
@@ -6892,7 +6954,7 @@
6892
6954
  },
6893
6955
  {
6894
6956
  "name": "selection-single",
6895
- "description": "Whether the selection control is limited to single selection.",
6957
+ "description": "Whether the selection control is limited to single selection",
6896
6958
  "type": "boolean",
6897
6959
  "default": "false"
6898
6960
  }
@@ -6922,7 +6984,7 @@
6922
6984
  {
6923
6985
  "name": "selectionSingle",
6924
6986
  "attribute": "selection-single",
6925
- "description": "Whether the selection control is limited to single selection.",
6987
+ "description": "Whether the selection control is limited to single selection",
6926
6988
  "type": "boolean",
6927
6989
  "default": "false"
6928
6990
  }
@@ -7036,10 +7098,12 @@
7036
7098
  ],
7037
7099
  "events": [
7038
7100
  {
7039
- "name": "d2l-menu-item-select"
7101
+ "name": "d2l-menu-item-select",
7102
+ "description": "Dispatched when the menu item is selected"
7040
7103
  },
7041
7104
  {
7042
- "name": "d2l-menu-item-visibility-change"
7105
+ "name": "d2l-menu-item-visibility-change",
7106
+ "description": "Dispatched when the visibility of the menu item changes"
7043
7107
  }
7044
7108
  ]
7045
7109
  },
@@ -7115,10 +7179,6 @@
7115
7179
  }
7116
7180
  ],
7117
7181
  "events": [
7118
- {
7119
- "name": "click",
7120
- "description": "Dispatched when the link is clicked"
7121
- },
7122
7182
  {
7123
7183
  "name": "d2l-menu-item-change",
7124
7184
  "description": "Dispatched when the selected menu item changes"
@@ -7298,7 +7358,7 @@
7298
7358
  },
7299
7359
  {
7300
7360
  "name": "d2l-menu-item-select",
7301
- "description": "Dispatched when a menu item is selected"
7361
+ "description": "Dispatched when the menu item is selected"
7302
7362
  },
7303
7363
  {
7304
7364
  "name": "d2l-menu-item-visibility-change",
@@ -7350,10 +7410,12 @@
7350
7410
  ],
7351
7411
  "events": [
7352
7412
  {
7353
- "name": "d2l-menu-item-select"
7413
+ "name": "d2l-menu-item-select",
7414
+ "description": "Dispatched when the menu item is selected"
7354
7415
  },
7355
7416
  {
7356
- "name": "d2l-menu-item-visibility-change"
7417
+ "name": "d2l-menu-item-visibility-change",
7418
+ "description": "Dispatched when the visibility of the menu item changes"
7357
7419
  }
7358
7420
  ]
7359
7421
  },
@@ -7408,7 +7470,7 @@
7408
7470
  "events": [
7409
7471
  {
7410
7472
  "name": "d2l-menu-item-select",
7411
- "description": "Dispatched when a menu item is selected"
7473
+ "description": "Dispatched when the menu item is selected"
7412
7474
  },
7413
7475
  {
7414
7476
  "name": "d2l-menu-item-visibility-change",
@@ -7752,7 +7814,7 @@
7752
7814
  {
7753
7815
  "name": "d2l-overflow-group",
7754
7816
  "path": "./components/overflow-group/overflow-group.js",
7755
- "description": "A component that can be used to display a set of buttons, links or menus that will be put into a\ndropdown menu when they no longer fit on the first line of their container",
7817
+ "description": "A component that can be used to display a set of buttons, links or menus that will be put into a dropdown menu when they no longer fit on the first line of their container",
7756
7818
  "attributes": [
7757
7819
  {
7758
7820
  "name": "auto-show",
@@ -7931,7 +7993,8 @@
7931
7993
  },
7932
7994
  {
7933
7995
  "name": "selectionInfo",
7934
- "description": "The selection info (set by the selection component)."
7996
+ "description": "The selection info (set by the selection component)",
7997
+ "type": "object"
7935
7998
  },
7936
7999
  {
7937
8000
  "name": "disabled-tooltip",
@@ -7973,7 +8036,8 @@
7973
8036
  {
7974
8037
  "name": "selectionInfo",
7975
8038
  "attribute": "selectionInfo",
7976
- "description": "The selection info (set by the selection component)."
8039
+ "description": "The selection info (set by the selection component)",
8040
+ "type": "object"
7977
8041
  },
7978
8042
  {
7979
8043
  "name": "disabledTooltip",
@@ -7995,7 +8059,8 @@
7995
8059
  "description": "Dispatched when the user clicks the action; provides the selection info"
7996
8060
  },
7997
8061
  {
7998
- "name": "d2l-selection-observer-subscribe"
8062
+ "name": "d2l-selection-observer-subscribe",
8063
+ "description": "Internal event"
7999
8064
  }
8000
8065
  ]
8001
8066
  },
@@ -8099,7 +8164,8 @@
8099
8164
  "description": "Dispatched when the selected state changes"
8100
8165
  },
8101
8166
  {
8102
- "name": "d2l-selection-input-subscribe"
8167
+ "name": "d2l-selection-input-subscribe",
8168
+ "description": "Internal event"
8103
8169
  }
8104
8170
  ]
8105
8171
  },
@@ -8121,7 +8187,7 @@
8121
8187
  },
8122
8188
  {
8123
8189
  "name": "selectionInfo",
8124
- "description": "The selection info (set by the selection component).",
8190
+ "description": "The selection info (set by the selection component)",
8125
8191
  "type": "object"
8126
8192
  }
8127
8193
  ],
@@ -8142,13 +8208,14 @@
8142
8208
  {
8143
8209
  "name": "selectionInfo",
8144
8210
  "attribute": "selectionInfo",
8145
- "description": "The selection info (set by the selection component).",
8211
+ "description": "The selection info (set by the selection component)",
8146
8212
  "type": "object"
8147
8213
  }
8148
8214
  ],
8149
8215
  "events": [
8150
8216
  {
8151
- "name": "d2l-selection-observer-subscribe"
8217
+ "name": "d2l-selection-observer-subscribe",
8218
+ "description": "Internal event"
8152
8219
  }
8153
8220
  ]
8154
8221
  },
@@ -8159,7 +8226,7 @@
8159
8226
  "attributes": [
8160
8227
  {
8161
8228
  "name": "no-selection-text",
8162
- "description": "Text to display if no items are selected.",
8229
+ "description": "Text to display if no items are selected",
8163
8230
  "type": "string"
8164
8231
  },
8165
8232
  {
@@ -8169,7 +8236,7 @@
8169
8236
  },
8170
8237
  {
8171
8238
  "name": "selectionInfo",
8172
- "description": "The selection info (set by the selection component).",
8239
+ "description": "The selection info (set by the selection component)",
8173
8240
  "type": "object"
8174
8241
  }
8175
8242
  ],
@@ -8177,7 +8244,7 @@
8177
8244
  {
8178
8245
  "name": "noSelectionText",
8179
8246
  "attribute": "no-selection-text",
8180
- "description": "Text to display if no items are selected.",
8247
+ "description": "Text to display if no items are selected",
8181
8248
  "type": "string"
8182
8249
  },
8183
8250
  {
@@ -8189,13 +8256,14 @@
8189
8256
  {
8190
8257
  "name": "selectionInfo",
8191
8258
  "attribute": "selectionInfo",
8192
- "description": "The selection info (set by the selection component).",
8259
+ "description": "The selection info (set by the selection component)",
8193
8260
  "type": "object"
8194
8261
  }
8195
8262
  ],
8196
8263
  "events": [
8197
8264
  {
8198
- "name": "d2l-selection-observer-subscribe"
8265
+ "name": "d2l-selection-observer-subscribe",
8266
+ "description": "Internal event"
8199
8267
  }
8200
8268
  ]
8201
8269
  },
@@ -8205,7 +8273,7 @@
8205
8273
  "attributes": [
8206
8274
  {
8207
8275
  "name": "selection-single",
8208
- "description": "Whether the selection control is limited to single selection.",
8276
+ "description": "Whether the selection control is limited to single selection",
8209
8277
  "type": "boolean",
8210
8278
  "default": "false"
8211
8279
  }
@@ -8214,7 +8282,7 @@
8214
8282
  {
8215
8283
  "name": "selectionSingle",
8216
8284
  "attribute": "selection-single",
8217
- "description": "Whether the selection control is limited to single selection.",
8285
+ "description": "Whether the selection control is limited to single selection",
8218
8286
  "type": "boolean",
8219
8287
  "default": "false"
8220
8288
  }
@@ -8474,6 +8542,7 @@
8474
8542
  {
8475
8543
  "name": "d2l-switch-visibility",
8476
8544
  "path": "./components/switch/switch-visibility.js",
8545
+ "description": "A variant of the generic switch configured with special icons and default text for toggling \"visibility\".",
8477
8546
  "attributes": [
8478
8547
  {
8479
8548
  "name": "text",
@@ -8562,6 +8631,7 @@
8562
8631
  {
8563
8632
  "name": "d2l-switch",
8564
8633
  "path": "./components/switch/switch.js",
8634
+ "description": "A generic switch with on/off semantics.",
8565
8635
  "attributes": [
8566
8636
  {
8567
8637
  "name": "text",
package/lang/ar.js CHANGED
@@ -10,13 +10,13 @@ export default {
10
10
  "components.dialog.close": "إغلاق مربع الحوار هذا",
11
11
  "components.dropdown.close": "إغلاق",
12
12
  "components.filter.clear": "مسح",
13
- "components.filter.clearAll": "Clear All",
14
- "components.filter.clearAllAnnounce": "Clearing all filters",
15
- "components.filter.clearAllDescription": "Clear all filters",
16
- "components.filter.clearAnnounce": "Clearing filters for: {filterName}",
17
- "components.filter.clearAnnounceSingle": "Clearing filters",
18
- "components.filter.clearDescription": "Clear filters for: {filterName}",
19
- "components.filter.clearDescriptionSingle": "Clear filters",
13
+ "components.filter.clearAll": "مسح الكل",
14
+ "components.filter.clearAllAnnounce": "جارٍ مسح كل عوامل التصفية",
15
+ "components.filter.clearAllDescription": "مسح كل عوامل التصفية",
16
+ "components.filter.clearAnnounce": "جارٍ مسح عوامل التصفية لـ: {filterName}",
17
+ "components.filter.clearAnnounceSingle": "جارٍ مسح عوامل التصفية",
18
+ "components.filter.clearDescription": "مسح عوامل التصفية لـ: {filterName}",
19
+ "components.filter.clearDescriptionSingle": "مسح عوامل التصفية",
20
20
  "components.filter.loading": "يتم تحميل عوامل التصفية",
21
21
  "components.filter.filterCountDescription": "{number, plural, zero {لم يتم تطبيق عوامل تصفية.} one {تم تطبيق عامل تصفية واحد.} other {{number} من عوامل التصفية التي تم تطبيقها.}}",
22
22
  "components.filter.filters": "عوامل التصفية",
package/lang/cy.js CHANGED
@@ -10,13 +10,13 @@ export default {
10
10
  "components.dialog.close": "Cau'r dialog hwn",
11
11
  "components.dropdown.close": "Cau",
12
12
  "components.filter.clear": "Clirio",
13
- "components.filter.clearAll": "Clear All",
14
- "components.filter.clearAllAnnounce": "Clearing all filters",
15
- "components.filter.clearAllDescription": "Clear all filters",
16
- "components.filter.clearAnnounce": "Clearing filters for: {filterName}",
17
- "components.filter.clearAnnounceSingle": "Clearing filters",
18
- "components.filter.clearDescription": "Clear filters for: {filterName}",
19
- "components.filter.clearDescriptionSingle": "Clear filters",
13
+ "components.filter.clearAll": "Clirio’r Cyfan",
14
+ "components.filter.clearAllAnnounce": "Wrthi’n clirio’r holl hidlwyr",
15
+ "components.filter.clearAllDescription": "Clirio’r holl hidlwyr",
16
+ "components.filter.clearAnnounce": "Wrthi’n clirio hidlwyr ar gyfer: {filterName}",
17
+ "components.filter.clearAnnounceSingle": "Wrthi'n clirio hidlwyr",
18
+ "components.filter.clearDescription": "Wrthi’n clirio hidlwyd ar gyfer: {filterName}",
19
+ "components.filter.clearDescriptionSingle": "Clirio Hidlwyr",
20
20
  "components.filter.loading": "Wrthi’n llwytho hidlyddion",
21
21
  "components.filter.filterCountDescription": "{number, plural, zero {Ni chymhwyswyd hidlwyr.} one {1 hidlydd wedi'i gymhwyso.} other {{number} hidlydd wedi'u cymhwyso.}}",
22
22
  "components.filter.filters": "Hidlyddion",
package/lang/da.js CHANGED
@@ -10,13 +10,13 @@ export default {
10
10
  "components.dialog.close": "Luk denne dialogboks",
11
11
  "components.dropdown.close": "Luk",
12
12
  "components.filter.clear": "Ryd",
13
- "components.filter.clearAll": "Clear All",
14
- "components.filter.clearAllAnnounce": "Clearing all filters",
15
- "components.filter.clearAllDescription": "Clear all filters",
16
- "components.filter.clearAnnounce": "Clearing filters for: {filterName}",
17
- "components.filter.clearAnnounceSingle": "Clearing filters",
18
- "components.filter.clearDescription": "Clear filters for: {filterName}",
19
- "components.filter.clearDescriptionSingle": "Clear filters",
13
+ "components.filter.clearAll": "Ryd alle",
14
+ "components.filter.clearAllAnnounce": "Rydder alle filtre",
15
+ "components.filter.clearAllDescription": "Ryd alle filtre",
16
+ "components.filter.clearAnnounce": "Rydder filtre for: {filterName}",
17
+ "components.filter.clearAnnounceSingle": "Rydder filtre",
18
+ "components.filter.clearDescription": "Ryd filtre for: {filterName}",
19
+ "components.filter.clearDescriptionSingle": "Ryd filtre",
20
20
  "components.filter.loading": "Indlæser filtre",
21
21
  "components.filter.filterCountDescription": "{number, plural, zero {Ingen filtre anvendt.} one {1 filter anvendt.} other {{number} filtre anvendt.}}",
22
22
  "components.filter.filters": "Filtre",
package/lang/de.js CHANGED
@@ -10,13 +10,13 @@ export default {
10
10
  "components.dialog.close": "Dieses Dialogfeld schließen",
11
11
  "components.dropdown.close": "Schließen",
12
12
  "components.filter.clear": "Löschen",
13
- "components.filter.clearAll": "Clear All",
14
- "components.filter.clearAllAnnounce": "Clearing all filters",
15
- "components.filter.clearAllDescription": "Clear all filters",
16
- "components.filter.clearAnnounce": "Clearing filters for: {filterName}",
17
- "components.filter.clearAnnounceSingle": "Clearing filters",
18
- "components.filter.clearDescription": "Clear filters for: {filterName}",
19
- "components.filter.clearDescriptionSingle": "Clear filters",
13
+ "components.filter.clearAll": "Alle löschen",
14
+ "components.filter.clearAllAnnounce": "Alle Filter werden gelöscht",
15
+ "components.filter.clearAllDescription": "Alle Filter löschen",
16
+ "components.filter.clearAnnounce": "Filter für {filterName} werden gelöscht",
17
+ "components.filter.clearAnnounceSingle": "Filter werden gelöscht",
18
+ "components.filter.clearDescription": "Filter für {filterName} löschen",
19
+ "components.filter.clearDescriptionSingle": "Filter löschen",
20
20
  "components.filter.loading": "Filter werden geladen",
21
21
  "components.filter.filterCountDescription": "{number, plural, zero {Keine Filter angewendet.} one {1 Filter angewendet.} other {{number} Filter angewendet.}}",
22
22
  "components.filter.filters": "Filter",
package/lang/es-es.js CHANGED
@@ -10,13 +10,13 @@ export default {
10
10
  "components.dialog.close": "Cerrar este cuadro de diálogo",
11
11
  "components.dropdown.close": "Cerrar",
12
12
  "components.filter.clear": "Borrar",
13
- "components.filter.clearAll": "Clear All",
14
- "components.filter.clearAllAnnounce": "Clearing all filters",
15
- "components.filter.clearAllDescription": "Clear all filters",
16
- "components.filter.clearAnnounce": "Clearing filters for: {filterName}",
17
- "components.filter.clearAnnounceSingle": "Clearing filters",
18
- "components.filter.clearDescription": "Clear filters for: {filterName}",
19
- "components.filter.clearDescriptionSingle": "Clear filters",
13
+ "components.filter.clearAll": "Borrar todo",
14
+ "components.filter.clearAllAnnounce": "Borrando todos los filtros",
15
+ "components.filter.clearAllDescription": "Borrar todos los filtros",
16
+ "components.filter.clearAnnounce": "Borrando filtros para: {filterName}",
17
+ "components.filter.clearAnnounceSingle": "Borrando filtros",
18
+ "components.filter.clearDescription": "Borrar filtros para: {filterName}",
19
+ "components.filter.clearDescriptionSingle": "Borrar filtros",
20
20
  "components.filter.loading": "Cargando filtros",
21
21
  "components.filter.filterCountDescription": "{number, plural, zero {Sin filtros aplicados.} one {1 filtro aplicado.} other {{number} filtros aplicados.}}",
22
22
  "components.filter.filters": "Filtros",
package/lang/es.js CHANGED
@@ -6,17 +6,17 @@ export default {
6
6
  "components.calendar.notSelected": "No seleccionado.",
7
7
  "components.calendar.selected": "Seleccionado.",
8
8
  "components.calendar.show": "Mostrar {month}",
9
- "components.count-badge.plus" : "{number}+",
9
+ "components.count-badge.plus" : "Más de {number}",
10
10
  "components.dialog.close": "Cerrar este cuadro de diálogo",
11
11
  "components.dropdown.close": "Cerrar",
12
12
  "components.filter.clear": "Borrar",
13
- "components.filter.clearAll": "Clear All",
14
- "components.filter.clearAllAnnounce": "Clearing all filters",
15
- "components.filter.clearAllDescription": "Clear all filters",
16
- "components.filter.clearAnnounce": "Clearing filters for: {filterName}",
17
- "components.filter.clearAnnounceSingle": "Clearing filters",
18
- "components.filter.clearDescription": "Clear filters for: {filterName}",
19
- "components.filter.clearDescriptionSingle": "Clear filters",
13
+ "components.filter.clearAll": "Borrar todo",
14
+ "components.filter.clearAllAnnounce": "Borrando todos los filtros",
15
+ "components.filter.clearAllDescription": "Borrar todos los filtros",
16
+ "components.filter.clearAnnounce": "Borrando filtros para: {filterName}",
17
+ "components.filter.clearAnnounceSingle": "Borrando filtros",
18
+ "components.filter.clearDescription": "Borrar filtros para: {filterName}",
19
+ "components.filter.clearDescriptionSingle": "Borrar filtros",
20
20
  "components.filter.loading": "Cargando filtros",
21
21
  "components.filter.filterCountDescription": "{number, plural, zero {Sin filtros aplicados.} one {1 filtro aplicado.} other {{number} filtros aplicados.}}",
22
22
  "components.filter.filters": "Filtros",
package/lang/fr-fr.js CHANGED
@@ -6,17 +6,17 @@ export default {
6
6
  "components.calendar.notSelected": "Non sélectionné.",
7
7
  "components.calendar.selected": "Sélectionné.",
8
8
  "components.calendar.show": "Afficher {month}",
9
- "components.count-badge.plus" : "{number}+",
9
+ "components.count-badge.plus" : "Plus de {number}",
10
10
  "components.dialog.close": "Fermer cette boîte de dialogue",
11
11
  "components.dropdown.close": "Fermer",
12
12
  "components.filter.clear": "Effacer",
13
- "components.filter.clearAll": "Clear All",
14
- "components.filter.clearAllAnnounce": "Clearing all filters",
15
- "components.filter.clearAllDescription": "Clear all filters",
16
- "components.filter.clearAnnounce": "Clearing filters for: {filterName}",
17
- "components.filter.clearAnnounceSingle": "Clearing filters",
18
- "components.filter.clearDescription": "Clear filters for: {filterName}",
19
- "components.filter.clearDescriptionSingle": "Clear filters",
13
+ "components.filter.clearAll": "Tout effacer",
14
+ "components.filter.clearAllAnnounce": "Suppression de tous les filtres",
15
+ "components.filter.clearAllDescription": "Supprimer tous les filtres",
16
+ "components.filter.clearAnnounce": "Suppression des filtres pour : {filterName}",
17
+ "components.filter.clearAnnounceSingle": "Suppression des filtres",
18
+ "components.filter.clearDescription": "Supprimer les filtres pour : {filterName}",
19
+ "components.filter.clearDescriptionSingle": "Supprimer les filtres",
20
20
  "components.filter.loading": "Chargement des filtres",
21
21
  "components.filter.filterCountDescription": "{number, plural, zero {Aucun filtre appliqué.} one {1 filtre appliqué.} other {{number} filtres appliqués.}}",
22
22
  "components.filter.filters": "Filtres",