@brightspace-ui/core 3.280.0 → 3.280.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.
@@ -215,6 +215,9 @@ class Page extends ProviderMixin(LocalizeCoreElement(LitElement)) {
215
215
  .supporting-panel.animate .supporting-panel-content {
216
216
  transition: width 400ms cubic-bezier(0, 0.7, 0.5, 1);
217
217
  }
218
+ .divider.animate {
219
+ transition: margin 400ms cubic-bezier(0, 0.7, 0.5, 1);
220
+ }
218
221
  .side-nav-panel.animate.collapsed,
219
222
  .supporting-panel.animate.collapsed {
220
223
  transition: width 400ms cubic-bezier(0, 0.7, 0.5, 1), visibility 0s 400ms;
@@ -376,9 +379,13 @@ class Page extends ProviderMixin(LocalizeCoreElement(LitElement)) {
376
379
  }
377
380
 
378
381
  #renderDivider(panelKey, label, panelPosition) {
382
+ const classes = {
383
+ 'divider': true,
384
+ 'animate': this._panelState.getAnimate(panelKey)
385
+ };
379
386
  return html`
380
387
  <d2l-page-divider-internal
381
- class="divider"
388
+ class="${classMap(classes)}"
382
389
  data-panel-key="${panelKey}"
383
390
  label="${label}"
384
391
  ?collapsed="${this._panelState.getCollapsed(panelKey)}"
@@ -13584,7 +13584,7 @@
13584
13584
  "properties": [
13585
13585
  {
13586
13586
  "name": "styles",
13587
- "default": "\"css`\\n\\t\\t:host {\\n\\t\\t\\t--d2l-page-header-max-width: 1230px;\\n\\t\\t\\t--d2l-page-content-max-width: 1230px;\\n\\t\\t\\t--d2l-page-footer-max-width: 1230px;\\n\\t\\t\\t--d2l-page-margin-inline: auto;\\n\\t\\t\\t--d2l-page-padding: 30px;\\n\\t\\t}\\n\\n\\t\\t:host([width-type=\\\"wide\\\"]) {\\n\\t\\t\\t--d2l-page-header-max-width: 1440px;\\n\\t\\t\\t--d2l-page-content-max-width: 1440px;\\n\\t\\t\\t--d2l-page-footer-max-width: 1440px;\\n\\t\\t}\\n\\n\\t\\t:host([width-type=\\\"fullscreen\\\"]) {\\n\\t\\t\\t--d2l-page-header-max-width: 100%;\\n\\t\\t\\t--d2l-page-content-max-width: 100%;\\n\\t\\t\\t--d2l-page-footer-max-width: 100%;\\n\\t\\t}\\n\\n\\t\\t@media (max-width: 929px) {\\n\\t\\t\\t:host {\\n\\t\\t\\t\\t--d2l-page-padding: 24px;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t\\t@media (max-width: 767px) {\\n\\t\\t\\t:host {\\n\\t\\t\\t\\t--d2l-page-padding: 18px;\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t.header {\\n\\t\\t\\tposition: relative;\\n\\t\\t\\tz-index: 16; /* To be over sticky content of our core components and the divider */\\n\\t\\t}\\n\\n\\t\\t.page.header-sticky .header {\\n\\t\\t\\tposition: sticky;\\n\\t\\t\\ttop: 0;\\n\\t\\t}\\n\\n\\t\\t.content {\\n\\t\\t\\tbox-sizing: border-box;\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\tmargin-inline: var(--d2l-page-margin-inline, 0);\\n\\t\\t\\tmax-width: var(--d2l-page-content-max-width, 100%);\\n\\t\\t\\tpadding-bottom: var(--d2l-page-footer-height, 0); /* Reserve space for fixed footer */\\n\\t\\t}\\n\\t\\t.content.has-panels {\\n\\t\\t\\tmin-height: calc(100vh - var(--d2l-page-header-height-measured, 0px));\\n\\t\\t}\\n\\n\\t\\tmain {\\n\\t\\t\\tflex: 1;\\n\\t\\t\\tmin-width: min(${MAIN_MIN_WIDTH}px, 100%);\\n\\t\\t}\\n\\n\\t\\t.side-nav,\\n\\t\\t.supporting {\\n\\t\\t\\tdisplay: contents;\\n\\t\\t}\\n\\n\\t\\t.side-nav-panel,\\n\\t\\t.supporting-panel {\\n\\t\\t\\toverflow: hidden;\\n\\t\\t}\\n\\n\\t\\t.side-nav-panel,\\n\\t\\t.supporting-panel,\\n\\t\\t.divider {\\n\\t\\t\\tposition: sticky;\\n\\t\\t\\ttop: var(--d2l-page-header-height, 0);\\n\\t\\t}\\n\\n\\t\\t.side-nav-panel,\\n\\t\\t.supporting-panel,\\n\\t\\t.side-nav-panel-content,\\n\\t\\t.supporting-panel-content,\\n\\t\\t.divider {\\n\\t\\t\\tmax-height: calc(100vh - var(--d2l-page-header-height, 0) - var(--d2l-page-footer-height, 0));\\n\\t\\t}\\n\\n\\t\\t.side-nav-panel-content,\\n\\t\\t.supporting-panel-content {\\n\\t\\t\\tbox-sizing: border-box;\\n\\t\\t\\toverflow: clip auto;\\n\\t\\t}\\n\\t\\t.side-nav-panel-content {\\n\\t\\t\\tfloat: inline-end;\\n\\t\\t}\\n\\t\\t.supporting-panel-content {\\n\\t\\t\\tfloat: inline-start;\\n\\t\\t}\\n\\n\\t\\t.divider {\\n\\t\\t\\tz-index: 15; /* To be over d2l-page-* panel headers */\\n\\t\\t}\\n\\n\\t\\t.side-nav .divider[collapsed] {\\n\\t\\t\\tmargin-inline-start: 18px;\\n\\t\\t}\\n\\t\\t.supporting .divider[collapsed] {\\n\\t\\t\\tmargin-inline-end: 18px;\\n\\t\\t}\\n\\t\\t.side-nav-panel.collapsed,\\n\\t\\t.supporting-panel.collapsed {\\n\\t\\t\\tvisibility: hidden;\\n\\t\\t}\\n\\t\\t@media (prefers-reduced-motion: no-preference) {\\n\\t\\t\\t.side-nav-panel.animate,\\n\\t\\t\\t.supporting-panel.animate,\\n\\t\\t\\t.side-nav-panel.animate .side-nav-panel-content,\\n\\t\\t\\t.supporting-panel.animate .supporting-panel-content {\\n\\t\\t\\t\\ttransition: width 400ms cubic-bezier(0, 0.7, 0.5, 1);\\n\\t\\t\\t}\\n\\t\\t\\t.side-nav-panel.animate.collapsed,\\n\\t\\t\\t.supporting-panel.animate.collapsed {\\n\\t\\t\\t\\ttransition: width 400ms cubic-bezier(0, 0.7, 0.5, 1), visibility 0s 400ms;\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t.footer:not([hidden]),\\n\\t\\t.floating-buttons-container {\\n\\t\\t\\tdisplay: inline;\\n\\t\\t}\\n\\t\\t.fixed-footer {\\n\\t\\t\\tbackground-color: white;\\n\\t\\t\\tbox-shadow: 0 -2px 4px rgba(32, 33, 34, 0.2); /* ferrite */\\n\\t\\t\\tinset: auto 0 0;\\n\\t\\t\\tpadding-block-start: 0.75rem;\\n\\t\\t\\tposition: fixed;\\n\\t\\t\\tz-index: 15; /* To be over sticky content of our core components and divider */\\n\\t\\t}\\n\\t\\t.footer-contents {\\n\\t\\t\\tmargin-inline: var(--d2l-page-margin-inline, 0);\\n\\t\\t\\tmax-width: var(--d2l-page-footer-max-width, 100%);\\n\\t\\t}\\n\\t`\""
13587
+ "default": "\"css`\\n\\t\\t:host {\\n\\t\\t\\t--d2l-page-header-max-width: 1230px;\\n\\t\\t\\t--d2l-page-content-max-width: 1230px;\\n\\t\\t\\t--d2l-page-footer-max-width: 1230px;\\n\\t\\t\\t--d2l-page-margin-inline: auto;\\n\\t\\t\\t--d2l-page-padding: 30px;\\n\\t\\t}\\n\\n\\t\\t:host([width-type=\\\"wide\\\"]) {\\n\\t\\t\\t--d2l-page-header-max-width: 1440px;\\n\\t\\t\\t--d2l-page-content-max-width: 1440px;\\n\\t\\t\\t--d2l-page-footer-max-width: 1440px;\\n\\t\\t}\\n\\n\\t\\t:host([width-type=\\\"fullscreen\\\"]) {\\n\\t\\t\\t--d2l-page-header-max-width: 100%;\\n\\t\\t\\t--d2l-page-content-max-width: 100%;\\n\\t\\t\\t--d2l-page-footer-max-width: 100%;\\n\\t\\t}\\n\\n\\t\\t@media (max-width: 929px) {\\n\\t\\t\\t:host {\\n\\t\\t\\t\\t--d2l-page-padding: 24px;\\n\\t\\t\\t}\\n\\t\\t}\\n\\t\\t@media (max-width: 767px) {\\n\\t\\t\\t:host {\\n\\t\\t\\t\\t--d2l-page-padding: 18px;\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t.header {\\n\\t\\t\\tposition: relative;\\n\\t\\t\\tz-index: 16; /* To be over sticky content of our core components and the divider */\\n\\t\\t}\\n\\n\\t\\t.page.header-sticky .header {\\n\\t\\t\\tposition: sticky;\\n\\t\\t\\ttop: 0;\\n\\t\\t}\\n\\n\\t\\t.content {\\n\\t\\t\\tbox-sizing: border-box;\\n\\t\\t\\tdisplay: flex;\\n\\t\\t\\tmargin-inline: var(--d2l-page-margin-inline, 0);\\n\\t\\t\\tmax-width: var(--d2l-page-content-max-width, 100%);\\n\\t\\t\\tpadding-bottom: var(--d2l-page-footer-height, 0); /* Reserve space for fixed footer */\\n\\t\\t}\\n\\t\\t.content.has-panels {\\n\\t\\t\\tmin-height: calc(100vh - var(--d2l-page-header-height-measured, 0px));\\n\\t\\t}\\n\\n\\t\\tmain {\\n\\t\\t\\tflex: 1;\\n\\t\\t\\tmin-width: min(${MAIN_MIN_WIDTH}px, 100%);\\n\\t\\t}\\n\\n\\t\\t.side-nav,\\n\\t\\t.supporting {\\n\\t\\t\\tdisplay: contents;\\n\\t\\t}\\n\\n\\t\\t.side-nav-panel,\\n\\t\\t.supporting-panel {\\n\\t\\t\\toverflow: hidden;\\n\\t\\t}\\n\\n\\t\\t.side-nav-panel,\\n\\t\\t.supporting-panel,\\n\\t\\t.divider {\\n\\t\\t\\tposition: sticky;\\n\\t\\t\\ttop: var(--d2l-page-header-height, 0);\\n\\t\\t}\\n\\n\\t\\t.side-nav-panel,\\n\\t\\t.supporting-panel,\\n\\t\\t.side-nav-panel-content,\\n\\t\\t.supporting-panel-content,\\n\\t\\t.divider {\\n\\t\\t\\tmax-height: calc(100vh - var(--d2l-page-header-height, 0) - var(--d2l-page-footer-height, 0));\\n\\t\\t}\\n\\n\\t\\t.side-nav-panel-content,\\n\\t\\t.supporting-panel-content {\\n\\t\\t\\tbox-sizing: border-box;\\n\\t\\t\\toverflow: clip auto;\\n\\t\\t}\\n\\t\\t.side-nav-panel-content {\\n\\t\\t\\tfloat: inline-end;\\n\\t\\t}\\n\\t\\t.supporting-panel-content {\\n\\t\\t\\tfloat: inline-start;\\n\\t\\t}\\n\\n\\t\\t.divider {\\n\\t\\t\\tz-index: 15; /* To be over d2l-page-* panel headers */\\n\\t\\t}\\n\\n\\t\\t.side-nav .divider[collapsed] {\\n\\t\\t\\tmargin-inline-start: 18px;\\n\\t\\t}\\n\\t\\t.supporting .divider[collapsed] {\\n\\t\\t\\tmargin-inline-end: 18px;\\n\\t\\t}\\n\\t\\t.side-nav-panel.collapsed,\\n\\t\\t.supporting-panel.collapsed {\\n\\t\\t\\tvisibility: hidden;\\n\\t\\t}\\n\\t\\t@media (prefers-reduced-motion: no-preference) {\\n\\t\\t\\t.side-nav-panel.animate,\\n\\t\\t\\t.supporting-panel.animate,\\n\\t\\t\\t.side-nav-panel.animate .side-nav-panel-content,\\n\\t\\t\\t.supporting-panel.animate .supporting-panel-content {\\n\\t\\t\\t\\ttransition: width 400ms cubic-bezier(0, 0.7, 0.5, 1);\\n\\t\\t\\t}\\n\\t\\t\\t.divider.animate {\\n\\t\\t\\t\\ttransition: margin 400ms cubic-bezier(0, 0.7, 0.5, 1);\\n\\t\\t\\t}\\n\\t\\t\\t.side-nav-panel.animate.collapsed,\\n\\t\\t\\t.supporting-panel.animate.collapsed {\\n\\t\\t\\t\\ttransition: width 400ms cubic-bezier(0, 0.7, 0.5, 1), visibility 0s 400ms;\\n\\t\\t\\t}\\n\\t\\t}\\n\\n\\t\\t.footer:not([hidden]),\\n\\t\\t.floating-buttons-container {\\n\\t\\t\\tdisplay: inline;\\n\\t\\t}\\n\\t\\t.fixed-footer {\\n\\t\\t\\tbackground-color: white;\\n\\t\\t\\tbox-shadow: 0 -2px 4px rgba(32, 33, 34, 0.2); /* ferrite */\\n\\t\\t\\tinset: auto 0 0;\\n\\t\\t\\tpadding-block-start: 0.75rem;\\n\\t\\t\\tposition: fixed;\\n\\t\\t\\tz-index: 15; /* To be over sticky content of our core components and divider */\\n\\t\\t}\\n\\t\\t.footer-contents {\\n\\t\\t\\tmargin-inline: var(--d2l-page-margin-inline, 0);\\n\\t\\t\\tmax-width: var(--d2l-page-footer-max-width, 100%);\\n\\t\\t}\\n\\t`\""
13588
13588
  },
13589
13589
  {
13590
13590
  "name": "widthType",
package/helpers/dom.js CHANGED
@@ -84,7 +84,7 @@ export function getComposedChildren(node, predicate = () => true) {
84
84
  if (!node) {
85
85
  return null;
86
86
  }
87
- if (node.nodeType !== 1 && node.nodeType !== 9 && node.nodeType !== 11) {
87
+ if (node.nodeType !== Node.ELEMENT_NODE && node.nodeType !== Node.DOCUMENT_NODE && node.nodeType !== Node.DOCUMENT_FRAGMENT_NODE) {
88
88
  return null;
89
89
  }
90
90
 
@@ -94,6 +94,7 @@ export function getComposedChildren(node, predicate = () => true) {
94
94
  if (node.tagName === 'CONTENT') {
95
95
  nodes = node.getDistributedNodes();
96
96
  } else if (node.tagName === 'SLOT') {
97
+ // note: this is not handling default slot content
97
98
  nodes = node.assignedNodes({ flatten: true });
98
99
  } else {
99
100
  if (node.shadowRoot) {
@@ -103,7 +104,7 @@ export function getComposedChildren(node, predicate = () => true) {
103
104
  }
104
105
 
105
106
  for (let i = 0; i < nodes.length; i++) {
106
- if (nodes[i].nodeType === 1) {
107
+ if (nodes[i].nodeType === Node.ELEMENT_NODE) {
107
108
  if (predicate(nodes[i])) {
108
109
  children.push(nodes[i]);
109
110
  }
@@ -243,7 +244,7 @@ export function getFirstVisibleAncestor(node) {
243
244
 
244
245
  export function querySelectorComposed(node, selector) {
245
246
 
246
- if (!node || (node.nodeType !== 1 && node.nodeType !== 9 && node.nodeType !== 11)) {
247
+ if (!node || (node.nodeType !== Node.ELEMENT_NODE && node.nodeType !== Node.DOCUMENT_NODE && node.nodeType !== Node.DOCUMENT_FRAGMENT_NODE)) {
247
248
  throw new TypeError('Invalid node. Must be nodeType document, element or document fragment');
248
249
  }
249
250
  if (typeof selector !== 'string') {
package/helpers/focus.js CHANGED
@@ -210,7 +210,7 @@ export function getPreviousFocusableAncestor(node, includeHidden, includeTabbabl
210
210
 
211
211
  export function isFocusable(node, includeHidden, includeTabbablesOnly, includeDisabled) {
212
212
 
213
- if (!node || node.nodeType !== 1 || (!includeDisabled && node.disabled)) return false;
213
+ if (!node || node.nodeType !== Node.ELEMENT_NODE || (!includeDisabled && node.disabled)) return false;
214
214
 
215
215
  if (includeTabbablesOnly === undefined) includeTabbablesOnly = true;
216
216
 
package/lang/pl.js CHANGED
@@ -1,256 +1,277 @@
1
1
  export default {
2
- "components.alert.close": "Close Alert",
3
- "components.backdrop-loading.loadingAnnouncement": "Loading.",
4
- "components.backdrop-loading.loadingCompleteAnnouncement": "Loading Complete.",
2
+ "components.alert.close": "Zamknij alert",
3
+ "components.backdrop-loading.loadingAnnouncement": "Wczytywanie.",
4
+ "components.backdrop-loading.loadingCompleteAnnouncement": "Wczytywanie zakończone.",
5
5
  "components.backdrop-stale-overlay.message": "This data is out of date.",
6
- "components.breadcrumbs.breadcrumb": "Breadcrumb",
7
- "components.button-add.addItem": "Add Item",
8
- "components.button-copy.copied": "Copied!",
9
- "components.button-copy.error": "Copy failed. Try again, or try copying manually.",
10
- "components.button-split.otherOptions": "Other Options",
11
- "components.calendar.hasEvents": "Has Events.",
12
- "components.calendar.notSelected": "Not Selected.",
13
- "components.calendar.selected": "Selected.",
14
- "components.calendar.show": "Show {month}",
6
+ "components.breadcrumbs.breadcrumb": "Menu okruszkowe",
7
+ "components.button-add.addItem": "Dodaj element",
8
+ "components.button-copy.copied": "Skopiowano!",
9
+ "components.button-copy.error": "Kopiowanie nie powiodło się. Spróbuj ponownie lub spróbuj wykonać kopię ręcznie.",
10
+ "components.button-split.otherOptions": "Inne opcje",
11
+ "components.calendar.hasEvents": "Zawiera wydarzenia.",
12
+ "components.calendar.notSelected": "Nie wybrano.",
13
+ "components.calendar.selected": "Wybrano.",
14
+ "components.calendar.show": "Pokaż {month}",
15
15
  "components.count-badge.plus": "{number}+",
16
- "components.dialog.close": "Close this dialog",
17
- "components.dialog.critical": "Critical!",
18
- "components.dropdown.close": "Close",
19
- "components.filter.activeFilters": "Active Filters:",
20
- "components.filter.additionalContentTooltip": "Use <b>left/right arrow keys</b> to move focus inside this list item",
21
- "components.filter.clear": "Clear",
22
- "components.filter.clearAll": "Clear All",
23
- "components.filter.clearAllAnnounce": "Clearing all filters",
24
- "components.filter.clearAllAnnounceOverride": "Clearing all filters for: {filterText}",
25
- "components.filter.clearAllDescription": "Clear all filters",
26
- "components.filter.clearAllDescriptionOverride": "Clear all filters for: {filterText}",
27
- "components.filter.clearAnnounce": "Clearing filters for: {filterName}",
28
- "components.filter.clearDescription": "Clear filters for: {filterName}",
16
+ "components.dialog.close": "Zamknij to okno dialogowe",
17
+ "components.dialog.critical": "Krytyczne!",
18
+ "components.dropdown.close": "Zamknij",
19
+ "components.filter.activeFilters": "Aktywne filtry:",
20
+ "components.filter.additionalContentTooltip": "Użyj <b>klawiszy strzałek lewo/prawo</b>, aby przesunąć zaznaczenie wewnątrz tego elementu listy",
21
+ "components.filter.clear": "Wyczyść",
22
+ "components.filter.clearAll": "Wyczyść wszystko",
23
+ "components.filter.clearAllAnnounce": "Czyszczenie wszystkich filtrów",
24
+ "components.filter.clearAllAnnounceOverride": "Usuwanie wszystkich filtrów dla: {filterText}",
25
+ "components.filter.clearAllDescription": "Wyczyść wszystkie filtry",
26
+ "components.filter.clearAllDescriptionOverride": "Wyczyść wszystkie filtry dla: {filterText}",
27
+ "components.filter.clearAnnounce": "Czyszczenie filtrów dla: {filterName}",
28
+ "components.filter.clearDescription": "Wyczyść filtry dla: {filterName}",
29
29
  "components.filter.filterCountDescription":
30
30
  `{number, plural,
31
- =0 {No filters applied.}
32
- one {{number} filter applied.}
33
- other {{number} filters applied.}
31
+ =0 {Brak zastosowanych filtrów.}
32
+ one {Zastosowano {number} filtr.}
33
+ few {Zastosowano {number} filtry.}
34
+ many {Zastosowano {number} filtrów.}
35
+ other {Zastosowano {number} filtrów.}
34
36
  }`,
35
- "components.filter.filters": "Filters",
36
- "components.filter.loading": "Loading filters",
37
- "components.filter.noFilters": "No available filters",
37
+ "components.filter.filters": "Filtry",
38
+ "components.filter.loading": "Wczytywanie filtrów",
39
+ "components.filter.noFilters": "Brak dostępnych filtrów",
38
40
  "components.filter.searchResults":
39
41
  `{number, plural,
40
- =0 {No search results}
41
- one {{number} search result}
42
- other {{number} search results}
42
+ =0 {Brak wyników wyszukiwania}
43
+ one {{number} wynik wyszukiwania}
44
+ few {{number} wyniki wyszukiwania}
45
+ many {{number} wyników wyszukiwania}
46
+ other {{number} wyników wyszukiwania}
43
47
  }`,
44
- "components.filter.selectedFirstListLabel": "{headerText}. Selected filters appear first.",
45
- "components.filter.singleDimensionDescription": "Filter by: {filterName}",
48
+ "components.filter.selectedFirstListLabel": "{headerText}. Wybrane filtry wyświetlane jako pierwsze.",
49
+ "components.filter.singleDimensionDescription": "Filtruj według: {filterName}",
46
50
  "components.filter-dimension-set-date-text-value.textDays":
47
51
  `{num, plural,
48
- =0 {Today}
49
- one {Last {num} day}
50
- other {Last {num} days}
52
+ =0 {Dzisiaj}
53
+ one {Ostatni {num} dzień}
54
+ few {Ostatnie {num} dni}
55
+ many {Ostatnich {num} dni}
56
+ other {Ostatnich {num} dni}
51
57
  }`,
52
58
  "components.filter-dimension-set-date-text-value.textHours":
53
59
  `{num, plural,
54
- =1 {Last hour}
55
- other {Last {num} hours}
60
+ =1 {Ostatnia godzina}
61
+ few {Ostatnie {num} godziny}
62
+ many {Ostatnich {num} godzin}
63
+ other {Ostatnich {num} godzin}
56
64
  }`,
57
- "components.filter-dimension-set-date-text-value.textMonths": "Last {num} months",
58
- "components.filter-dimension-set-date-time-range-value.label": "{text}, expand to choose dates",
59
- "components.filter-dimension-set-date-time-range-value.text": "Custom date range",
60
- "components.filter-dimension-set-date-time-range-value.valueTextRange": "{startValue} to {endValue}",
61
- "components.filter-dimension-set-date-time-range-value.valueTextRangeEndOnly": "Before {endValue}",
62
- "components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "After {startValue}",
63
- "components.form-element.defaultError": "{label} is invalid",
64
- "components.form-element.defaultFieldLabel": "Field",
65
- "components.form-element.input.email.typeMismatch": "Email is not valid",
65
+ "components.filter-dimension-set-date-text-value.textMonths": "Ostatnie(-ch) {num} miesiące(-ęcy)",
66
+ "components.filter-dimension-set-date-time-range-value.label": "{text} rozwiń, aby wybrać daty",
67
+ "components.filter-dimension-set-date-time-range-value.text": "Niestandardowy zakres dat",
68
+ "components.filter-dimension-set-date-time-range-value.valueTextRange": "Od {startValue} do {endValue}",
69
+ "components.filter-dimension-set-date-time-range-value.valueTextRangeEndOnly": "Przed {endValue}",
70
+ "components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "Po {startValue}",
71
+ "components.form-element.defaultError": "{label} jest nieprawidłowy",
72
+ "components.form-element.defaultFieldLabel": "Pole",
73
+ "components.form-element.input.email.typeMismatch": "E-mail jest nieprawidłowy",
66
74
  "components.form-element.input.number.rangeError":
67
75
  `{minExclusive, select,
68
76
  true {{maxExclusive, select,
69
- true {Number must be greater than {min} and less than {max}.}
70
- other {Number must be greater than {min} and less than or equal to {max}.}
77
+ true {Liczba musi być większa niż {min} i mniejsza niż {max}.}
78
+ other {Liczba musi być większa niż {min} i mniejsza lub równa {max}.}
71
79
  }}
72
80
  other {{maxExclusive, select,
73
- true {Number must be greater than or equal to {min} and less than {max}.}
74
- other {Number must be greater than or equal to {min} and less than or equal to {max}.}
81
+ true {Liczba musi być większa lub równa {min} i mniejsza niż {max}.}
82
+ other {Liczba musi być większa lub równa {min} i mniejsza lub równa {max}.}
75
83
  }}
76
84
  }`,
77
85
  "components.form-element.input.number.rangeOverflow":
78
86
  `{maxExclusive, select,
79
- true {Number must be less than {max}.}
80
- other {Number must be less than or equal to {max}.}
87
+ true {Liczba musi być mniejsza niż {max}.}
88
+ other {Liczba musi być mniejsza lub równa {max}.}
81
89
  }`,
82
90
  "components.form-element.input.number.rangeUnderflow":
83
91
  `{minExclusive, select,
84
- true {Number must be greater than {min}.}
85
- other {Number must be greater than or equal to {min}.}
92
+ true {Liczba musi być większa niż {min}.}
93
+ other {Liczba musi być większa lub równa {min}.}
86
94
  }`,
87
- "components.form-element.input.text.tooShort": "{label} must be at least {minlength} characters",
88
- "components.form-element.input.url.typeMismatch": "URL is not valid",
89
- "components.form-element.valueMissing": "{label} is required",
95
+ "components.form-element.input.text.tooShort": "{label} musi mieć co najmniej {minlength} znaków",
96
+ "components.form-element.input.url.typeMismatch": "Adres URL jest nieprawidłowy",
97
+ "components.form-element.valueMissing": "Wymagany jest {label}",
90
98
  "components.form-error-summary.errorSummary":
91
99
  `{count, plural,
92
- one {There was {count} error found in the information you submitted}
93
- other {There were {count} errors found in the information you submitted}
100
+ one {W przesłanych danych był {count} błąd.}
101
+ few {W przesłanych danych były {count} błędy.}
102
+ many {W przesłanych danych było {count} błędów.}
103
+ other {W przesłanych danych było {count} błędu.}
94
104
  }`,
95
- "components.form-error-summary.text": "Toggle error details",
96
- "components.input-color.backgroundColor": "Background Color",
97
- "components.input-color.foregroundColor": "Foreground Color",
98
- "components.input-color.none": "None",
99
- "components.input-date.clear": "Clear",
100
- "components.input-date.errorMaxDateOnly": "Date must be before or on {maxDate}",
101
- "components.input-date.errorMinDateOnly": "Date must be on or after {minDate}",
102
- "components.input-date.errorOutsideRange": "Date must be between {minDate} and {maxDate}",
103
- "components.input-date.now": "Now",
104
- "components.input-date.openInstructions": "Use date format {format}. Arrow down or press enter to access mini-calendar.",
105
- "components.input-date.revert": "{label} reverted to previous value.",
106
- "components.input-date.today": "Today",
107
- "components.input-date.useDateFormat": "Use date format {format}.",
108
- "components.input-date-range.endDate": "End Date",
109
- "components.input-date-range.errorBadInput": "{startLabel} must be before {endLabel}",
110
- "components.input-date-range.interactive-label": "Date range input",
111
- "components.input-date-range.startDate": "Start Date",
112
- "components.input-date-time.date": "Date",
113
- "components.input-date-time.errorMaxDateOnly": "Date must be before or on {maxDate}",
114
- "components.input-date-time.errorMinDateOnly": "Date must be on or after {minDate}",
115
- "components.input-date-time.errorOutsideRange": "Date must be between {minDate} and {maxDate}",
116
- "components.input-date-time.time": "Time",
117
- "components.input-date-time-range.endDate": "End Date",
118
- "components.input-date-time-range.errorBadInput": "{startLabel} must be before {endLabel}",
119
- "components.input-date-time-range.interactive-label": "Date and time range input",
120
- "components.input-date-time-range.startDate": "Start Date",
121
- "components.input-date-time-range-to.to": "to",
122
- "components.input-number.hintDecimalDuplicate": "There’s already a decimal in this number",
123
- "components.input-number.hintDecimalIncorrectComma": "To add a decimal use the comma “,” character",
124
- "components.input-number.hintDecimalIncorrectPeriod": "To add a decimal use the period “.” character",
125
- "components.input-number.hintInteger": "This field only accepts integer values (no decimals)",
126
- "components.input-search.clear": "Clear Search",
127
- "components.input-search.defaultPlaceholder": "Search...",
128
- "components.input-search.search": "Search",
129
- "components.input-time-range.endTime": "End Time",
130
- "components.input-time-range.errorBadInput": "{startLabel} must be before {endLabel}",
131
- "components.input-time-range.startTime": "Start Time",
132
- "components.interactive.instructions": "Press Enter to interact, Escape to exit",
133
- "components.link.open-in-new-window": "Opens in a new window.",
134
- "components.list.keyboard": "Use <b>arrow keys</b> to move focus inside this list, or <b>page up/down</b> to move up or down by 5",
135
- "components.list-controls.label": "Actions for list",
136
- "components.list-item.addItem": "Add Item",
137
- "components.list-item-drag-handle.default": "Reorder item action for {name}",
138
- "components.list-item-drag-handle.keyboard": "Reorder item, current position {currentPosition} out of {size}. To move this item, press up or down arrows.",
105
+ "components.form-error-summary.text": "Przełącz szczegóły błędów",
106
+ "components.input-color.backgroundColor": "Kolor tła",
107
+ "components.input-color.foregroundColor": "Kolor pierwszego planu",
108
+ "components.input-color.none": "Brak",
109
+ "components.input-date.clear": "Wyczyść",
110
+ "components.input-date.errorMaxDateOnly": "Data musi przypadać na lub przed {maxDate}",
111
+ "components.input-date.errorMinDateOnly": "Data musi przypadać na lub po {minDate}",
112
+ "components.input-date.errorOutsideRange": "Data musi znajdować się pomiędzy {minDate} a {maxDate}",
113
+ "components.input-date.now": "Teraz",
114
+ "components.input-date.openInstructions": "Użyj formatu daty {format}. Użyj strzałki w dół lub naciśnij klawisz Enter, aby uzyskać dostęp do mini-kalendarza.",
115
+ "components.input-date.revert": "Wartość {label} została przywrócona do poprzedniej wartości.",
116
+ "components.input-date.today": "Dzisiaj",
117
+ "components.input-date.useDateFormat": "Użyj formatu daty {format}.",
118
+ "components.input-date-range.endDate": "Data zakończenia",
119
+ "components.input-date-range.errorBadInput": "{startLabel} musi poprzedzać {endLabel}",
120
+ "components.input-date-range.interactive-label": "Wprowadzanie zakresu dat",
121
+ "components.input-date-range.startDate": "Data rozpoczęcia",
122
+ "components.input-date-time.date": "Data",
123
+ "components.input-date-time.errorMaxDateOnly": "Data musi przypadać na lub przed {maxDate}",
124
+ "components.input-date-time.errorMinDateOnly": "Data musi przypadać na lub po {minDate}",
125
+ "components.input-date-time.errorOutsideRange": "Data musi znajdować się pomiędzy {minDate} a {maxDate}",
126
+ "components.input-date-time.time": "Godzina",
127
+ "components.input-date-time-range.endDate": "Data zakończenia",
128
+ "components.input-date-time-range.errorBadInput": "{startLabel} musi poprzedzać {endLabel}",
129
+ "components.input-date-time-range.interactive-label": "Wprowadzanie zakresu daty i godziny",
130
+ "components.input-date-time-range.startDate": "Data rozpoczęcia",
131
+ "components.input-date-time-range-to.to": "do",
132
+ "components.input-number.hintDecimalDuplicate": "Ta liczba zawiera już ułamek dziesiętny",
133
+ "components.input-number.hintDecimalIncorrectComma": "Aby dodać części dziesiętne, użyj znaku przecinka „,”",
134
+ "components.input-number.hintDecimalIncorrectPeriod": "Aby dodać części dziesiętne, użyj znaku kropki „.”",
135
+ "components.input-number.hintInteger": "To pole akceptuje tylko liczby całkowite (bez części dziesiętnych)",
136
+ "components.input-search.clear": "Wyczyść wyszukiwanie",
137
+ "components.input-search.defaultPlaceholder": "Wyszukaj...",
138
+ "components.input-search.search": "Wyszukiwanie",
139
+ "components.input-time-range.endTime": "Czas zakończenia",
140
+ "components.input-time-range.errorBadInput": "{startLabel} musi poprzedzać {endLabel}",
141
+ "components.input-time-range.startTime": "Czas rozpoczęcia",
142
+ "components.interactive.instructions": "Naciśnij Enter, aby wejść w interakcję, Escape, aby wyjść",
143
+ "components.link.open-in-new-window": "Otwiera się w nowym oknie.",
144
+ "components.list.keyboard": "Użyj <b>klawiszy strzałek</b>, aby przesunąć fokus wewnątrz tej listy, lub <b>klawiszy Page Up/Page Down</b>, aby przesunąć w górę lub w dół o 5",
145
+ "components.list-controls.label": "Działania związane z listą",
146
+ "components.list-item.addItem": "Dodaj element",
147
+ "components.list-item-drag-handle.default": "Działanie zmiany kolejności elementu dla {name}",
148
+ "components.list-item-drag-handle.keyboard": "Zmień kolejność elementu, obecna pozycja: {currentPosition} z {size}. Aby przenieść ten element, naciśnij strzałkę w górę lub w dół.",
139
149
  "components.list-item-drag-handle.side-to-side.keyboard": "Reorder item, current position {currentPosition} out of {size}. To move this item, press left or right arrows.",
140
- "components.list-item-drag-handle-tooltip.enter-desc": "Toggle keyboard reorder mode.",
141
- "components.list-item-drag-handle-tooltip.enter-key": "Enter",
142
- "components.list-item-drag-handle-tooltip.left-right-desc": "Change the nesting level.",
143
- "components.list-item-drag-handle-tooltip.left-right-key": "Left/Right",
150
+ "components.list-item-drag-handle-tooltip.enter-desc": "Przełącz tryb zmiany kolejności za pomocą klawiatury.",
151
+ "components.list-item-drag-handle-tooltip.enter-key": "Wpisz",
152
+ "components.list-item-drag-handle-tooltip.left-right-desc": "Zmień poziom gniazdowania.",
153
+ "components.list-item-drag-handle-tooltip.left-right-key": "Lewo/Prawo",
144
154
  "components.list-item-drag-handle-tooltip.side-to-side.left-right-desc": "Move item left or right in the list.",
145
155
  "components.list-item-drag-handle-tooltip.side-to-side.up-down-desc": "Move item left or right in the list.",
146
- "components.list-item-drag-handle-tooltip.title": "Keyboard Controls for Reordering:",
147
- "components.list-item-drag-handle-tooltip.up-down-desc": "Move item up or down in the list.",
148
- "components.list-item-drag-handle-tooltip.up-down-key": "Up/Down",
149
- "components.menu-item-return.return": "Return to previous menu.",
150
- "components.menu-item-return.returnCurrentlyShowing": "Return to previous menu. You are viewing {menuTitle}.",
156
+ "components.list-item-drag-handle-tooltip.title": "Elementy sterujące klawiatury do zmiany kolejności:",
157
+ "components.list-item-drag-handle-tooltip.up-down-desc": "Przesuń element w górę lub w dół na liście.",
158
+ "components.list-item-drag-handle-tooltip.up-down-key": "W górę/w dół",
159
+ "components.menu-item-return.return": "Powrót do poprzedniego menu.",
160
+ "components.menu-item-return.returnCurrentlyShowing": "Powrót do poprzedniego menu. Przeglądasz {menuTitle}.",
151
161
  "components.meter-mixin.commaSeperatedAria": "{term1}, {term2}",
152
162
  "components.meter-mixin.fraction": "{x}∕{y}",
153
- "components.meter-mixin.fractionAria": "{x} out of {y}",
154
- "components.meter-mixin.progressIndicator": "Progress Indicator",
155
- "components.more-less.less": "less",
156
- "components.more-less.more": "more",
157
- "components.object-property-list.item-placeholder-text": "Placeholder Item",
158
- "components.overflow-group.moreActions": "More Actions",
163
+ "components.meter-mixin.fractionAria": "{x} z {y}",
164
+ "components.meter-mixin.progressIndicator": "Wskaźnik postępu",
165
+ "components.more-less.less": "mniej",
166
+ "components.more-less.more": "więcej",
167
+ "components.object-property-list.item-placeholder-text": "Element zastępczy",
168
+ "components.overflow-group.moreActions": "Więcej działań",
159
169
  "components.page.footer-region-label": "Footer",
160
- "components.page.header-nav-label": "Main",
170
+ "components.page.header-nav-label": "Główna",
161
171
  "components.page.side-nav-divider-label": "Side Navigation Divider",
162
- "components.page.side-nav-label": "Side",
172
+ "components.page.side-nav-label": "Strona boczna",
163
173
  "components.page.supporting-divider-label": "Supporting Panel Divider",
164
174
  "components.page.supporting-panel-label": "Supporting",
165
175
  "components.pageable.info":
166
176
  `{count, plural,
167
- one {{countFormatted} item}
168
- other {{countFormatted} items}
177
+ one {{countFormatted} element}
178
+ few {{countFormatted} elementy}
179
+ many {{countFormatted} elementów}
180
+ other {{countFormatted} elementów}
169
181
  }`,
170
182
  "components.pageable.info-with-total":
171
183
  `{totalCount, plural,
172
- one {{countFormatted} of {totalCountFormatted} item}
173
- other {{countFormatted} of {totalCountFormatted} items}
184
+ one {{countFormatted} z {totalCountFormatted} elementu}
185
+ few {{countFormatted} z {totalCountFormatted} elementów}
186
+ many {{countFormatted} z {totalCountFormatted} elementów}
187
+ other {{countFormatted} z {totalCountFormatted} elementów}
174
188
  }`,
175
- "components.pager-load-more.action": "Load More",
176
- "components.pager-load-more.action-with-page-size": "Load {count} More",
177
- "components.pager-load-more.status-loading": "Loading more items",
178
- "components.scroll-wrapper.scroll-left": "Scroll left",
179
- "components.scroll-wrapper.scroll-right": "Scroll right",
189
+ "components.pager-load-more.action": "Wczytaj więcej",
190
+ "components.pager-load-more.action-with-page-size": "Wczytaj {count} więcej",
191
+ "components.pager-load-more.status-loading": "Wczytywanie większej liczby elementów",
192
+ "components.scroll-wrapper.scroll-left": "Przewiń w lewo",
193
+ "components.scroll-wrapper.scroll-right": "Przewiń w prawo",
180
194
  "components.selection.action-max-hint":
181
195
  `{count, plural,
182
- one {Disabled when more than {countFormatted} item is selected}
183
- other {Disabled when more than {countFormatted} items are selected}
196
+ one {Wyłączone, gdy wybrano więcej niż {countFormatted} element}
197
+ few {Wyłączone, gdy wybrano więcej niż {countFormatted} elementy}
198
+ many {Wyłączone, gdy wybrano więcej niż {countFormatted} elementów}
199
+ other {Wyłączone, gdy wybrano więcej niż {countFormatted} elementu}
184
200
  }`,
185
- "components.selection.action-required-hint": "Select an item to perform this action",
186
- "components.selection.select-all": "Select All",
201
+ "components.selection.action-required-hint": "Wybierz element, aby wykonać to działanie",
202
+ "components.selection.select-all": "Zaznacz wszystko",
187
203
  "components.selection.select-all-items":
188
204
  `{count, plural,
189
- =1 {Select Item}
190
- one {Select All {countFormatted} Item}
191
- other {Select All {countFormatted} Items}
205
+ one {Wybierz element}
206
+ few {Wybierz wszystkie {countFormatted} elementy}
207
+ many {Wybierz wszystkich {countFormatted} elementów}
208
+ other {Wybierz wszystkich {countFormatted} elementów}
192
209
  }`,
193
- "components.selection.selected": "{count} selected",
194
- "components.selection.selected-plus": "{count}+ selected",
195
- "components.selection-controls.label": "Actions for selection",
196
- "components.skip-nav.skipToMainContent": "skip to main content",
197
- "components.sort.label": "Sort",
198
- "components.sort.text": "Sort: {selectedItemText}",
199
- "components.switch.conditions": "Conditions must be met",
200
- "components.switch.hidden": "Hidden",
201
- "components.switch.visible": "Visible",
202
- "components.switch.visibleWithPeriod": "Visible.",
203
- "components.table-col-sort-button.addSortOrder": "Select to add sort order",
204
- "components.table-col-sort-button.changeSortOrder": "Select to change sort order",
210
+ "components.selection.selected": "Liczba wybranych opcji: {count}",
211
+ "components.selection.selected-plus": "Wybrano {count}+ opcji",
212
+ "components.selection-controls.label": "Działania związane z wyborem",
213
+ "components.skip-nav.skipToMainContent": "przejdź do głównej zawartości",
214
+ "components.sort.label": "Sortuj",
215
+ "components.sort.text": "Sortowanie: {selectedItemText}",
216
+ "components.switch.conditions": "Warunki muszą być spełnione",
217
+ "components.switch.hidden": "Ukryte",
218
+ "components.switch.visible": "Widoczny",
219
+ "components.switch.visibleWithPeriod": "Widoczna.",
220
+ "components.table-col-sort-button.addSortOrder": "Wybierz, aby dodać kolejność sortowania",
221
+ "components.table-col-sort-button.changeSortOrder": "Wybierz, aby zmienić kolejność sortowania",
205
222
  "components.table-col-sort-button.title":
206
223
  `{sourceType, select,
207
224
  dates {{direction, select,
208
- desc {Sorted new to old}
209
- other {Sorted old to new}
225
+ desc {Posortowane od nowego do starego}
226
+ other {Posortowane od starego do nowego}
210
227
  }}
211
228
  numbers {{direction, select,
212
- desc {Sorted high to low}
213
- other {Sorted low to high}
229
+ desc {Posortowane od najwyższego do najniższego}
230
+ other {Posortowane od niskiego do wysokiego}
214
231
  }}
215
232
  words {{direction, select,
216
- desc {Sorted Z to A}
217
- other {Sorted A to Z}
233
+ desc {Posortowane od Z do A}
234
+ other {Posortowane od A do Z}
218
235
  }}
219
- value {Sorted {selectedMenuItemText}}
236
+ value {Posortowano {selectedMenuItemText}}
220
237
  other {{direction, select,
221
- desc {Sorted descending}
222
- other {Sorted ascending}
238
+ desc {Posortowane malejąco}
239
+ other {Posortowane rosnąco}
223
240
  }}
224
241
  }`,
225
- "components.table-controls.label": "Actions for table",
226
- "components.tabs.next": "Scroll Forward",
227
- "components.tabs.previous": "Scroll Backward",
228
- "components.tag-list.clear": "Click, press backspace, or press delete key to remove item {value}",
229
- "components.tag-list.clear-all": "Clear All",
230
- "components.tag-list.cleared-all": "Removed all tag list items",
231
- "components.tag-list.cleared-item": "Removed tag list item {value}",
232
- "components.tag-list.interactive-label": "Tag List, {count} items",
233
- "components.tag-list.num-hidden": "+ {count} more",
242
+ "components.table-controls.label": "Działania związane z tabelą",
243
+ "components.tabs.next": "Przewiń do przodu",
244
+ "components.tabs.previous": "Przewiń do tyłu",
245
+ "components.tag-list.clear": "Kliknij, naciśnij klawisz Backspace lub naciśnij klawisz Delete, aby usunąć element {value}",
246
+ "components.tag-list.clear-all": "Wyczyść wszystko",
247
+ "components.tag-list.cleared-all": "Usunięto wszystkie elementy listy tagów",
248
+ "components.tag-list.cleared-item": "Usunięto pozycję listy tagów {value}",
249
+ "components.tag-list.interactive-label": "Lista tagów, elementy {count}",
250
+ "components.tag-list.num-hidden": "+{count} więcej",
234
251
  "components.tag-list.role-description":
235
252
  `{count, plural,
236
- =0 {Tag List with 0 items}
237
- one {Tag List with {count} item}
238
- other {Tag List with {count} items}
253
+ =0 {Lista tagów, która zawiera 0 elementów}
254
+ one {Lista tagów, która zawiera {count} element}
255
+ few {Lista tagów, która zawiera {count} elementy}
256
+ many {Lista tagów, która zawiera {count} elementów}
257
+ other {Lista tagów, która zawiera {count} elementów}
239
258
  }`,
240
- "components.tag-list.show-less": "Show Less",
241
- "components.tag-list.show-more-description": "Select to show hidden tag list items",
259
+ "components.tag-list.show-less": "Pokaż mniej",
260
+ "components.tag-list.show-more-description": "Zaznacz, aby pokazać ukryte elementy listy tagów",
242
261
  "components.tag-list-item.role-description": "Tag",
243
- "components.tag-list-item.tooltip-arrow-keys": "Arrow Keys",
244
- "components.tag-list-item.tooltip-arrow-keys-desc": "Move between tags",
262
+ "components.tag-list-item.tooltip-arrow-keys": "Klawisze strzałek",
263
+ "components.tag-list-item.tooltip-arrow-keys-desc": "Poruszanie się między tagami",
245
264
  "components.tag-list-item.tooltip-delete-key": "Backspace/Delete",
246
- "components.tag-list-item.tooltip-delete-key-desc": "Delete the focused tag",
247
- "components.tag-list-item.tooltip-title": "Keyboard Controls",
265
+ "components.tag-list-item.tooltip-delete-key-desc": "Usuń aktywny tag",
266
+ "components.tag-list-item.tooltip-title": "Sterowanie klawiaturą",
248
267
  "components.view-switcher.role-description":
249
268
  `{count, plural,
250
- =0 {View Switcher with 0 items}
251
- one {View Switcher with {count} item}
252
- other {View Switcher with {count} items}
269
+ =0 {Przełącznik widoków, który zawiera 0 elementów}
270
+ one {Przełącznik widoków, który zawiera {count} element}
271
+ few {Przełącznik widoków, który zawiera {count} elementy}
272
+ many {Przełącznik widoków, który zawiera {count} elementów}
273
+ other {Przełącznik widoków, który zawiera {count} elementów}
253
274
  }`,
254
- "templates.primary-secondary.divider": "Secondary panel divider",
255
- "templates.primary-secondary.secondary-panel": "Secondary panel"
275
+ "templates.primary-secondary.divider": "Separator panelu dodatkowego",
276
+ "templates.primary-secondary.secondary-panel": "Panel dodatkowy"
256
277
  };
package/lang/ru.js CHANGED
@@ -1,256 +1,278 @@
1
1
  export default {
2
- "components.alert.close": "Close Alert",
3
- "components.backdrop-loading.loadingAnnouncement": "Loading.",
4
- "components.backdrop-loading.loadingCompleteAnnouncement": "Loading Complete.",
2
+ "components.alert.close": "Закрыть предупреждение",
3
+ "components.backdrop-loading.loadingAnnouncement": "Загрузка",
4
+ "components.backdrop-loading.loadingCompleteAnnouncement": "Загрузка завершена.",
5
5
  "components.backdrop-stale-overlay.message": "This data is out of date.",
6
- "components.breadcrumbs.breadcrumb": "Breadcrumb",
7
- "components.button-add.addItem": "Add Item",
8
- "components.button-copy.copied": "Copied!",
9
- "components.button-copy.error": "Copy failed. Try again, or try copying manually.",
10
- "components.button-split.otherOptions": "Other Options",
11
- "components.calendar.hasEvents": "Has Events.",
12
- "components.calendar.notSelected": "Not Selected.",
13
- "components.calendar.selected": "Selected.",
14
- "components.calendar.show": "Show {month}",
6
+ "components.breadcrumbs.breadcrumb": "Хлебная крошка",
7
+ "components.button-add.addItem": "Добавить элемент",
8
+ "components.button-copy.copied": "Скопировано!",
9
+ "components.button-copy.error": "Неудачное копирование. Попробуйте еще раз или попробуйте скопировать вручную.",
10
+ "components.button-split.otherOptions": "Другие варианты",
11
+ "components.calendar.hasEvents": "Имеет события.",
12
+ "components.calendar.notSelected": "Не выбрано.",
13
+ "components.calendar.selected": "Выбран.",
14
+ "components.calendar.show": "Показать {month}",
15
15
  "components.count-badge.plus": "{number}+",
16
- "components.dialog.close": "Close this dialog",
17
- "components.dialog.critical": "Critical!",
18
- "components.dropdown.close": "Close",
19
- "components.filter.activeFilters": "Active Filters:",
20
- "components.filter.additionalContentTooltip": "Use <b>left/right arrow keys</b> to move focus inside this list item",
21
- "components.filter.clear": "Clear",
22
- "components.filter.clearAll": "Clear All",
23
- "components.filter.clearAllAnnounce": "Clearing all filters",
24
- "components.filter.clearAllAnnounceOverride": "Clearing all filters for: {filterText}",
25
- "components.filter.clearAllDescription": "Clear all filters",
26
- "components.filter.clearAllDescriptionOverride": "Clear all filters for: {filterText}",
27
- "components.filter.clearAnnounce": "Clearing filters for: {filterName}",
28
- "components.filter.clearDescription": "Clear filters for: {filterName}",
16
+ "components.dialog.close": "Закрыть этот диалог",
17
+ "components.dialog.critical": "Критично!",
18
+ "components.dropdown.close": "Закрыть",
19
+ "components.filter.activeFilters": "Активные фильтры:",
20
+ "components.filter.additionalContentTooltip": "Используйте <b>клавиши со стрелками влево/вправо</b> для перемещения фокуса внутри этого элемента списка",
21
+ "components.filter.clear": "Очистить",
22
+ "components.filter.clearAll": "Очистить все",
23
+ "components.filter.clearAllAnnounce": "Очистка всех фильтров",
24
+ "components.filter.clearAllAnnounceOverride": "Очистка всех фильтров для: {filterText}",
25
+ "components.filter.clearAllDescription": "Очистить все фильтры",
26
+ "components.filter.clearAllDescriptionOverride": "Очистить все фильтры для: {filterText}",
27
+ "components.filter.clearAnnounce": "Очистка фильтров для: {filterName}",
28
+ "components.filter.clearDescription": "Очистить фильтры для: {filterName}",
29
29
  "components.filter.filterCountDescription":
30
30
  `{number, plural,
31
- =0 {No filters applied.}
32
- one {{number} filter applied.}
33
- other {{number} filters applied.}
31
+ =0 {Фильтры не применены.}
32
+ one {Применен {number} фильтр.}
33
+ few {Применено {number} фильтра.}
34
+ many {Применено {number} фильтров.}
35
+ other {Применено {number} фильтра.}
34
36
  }`,
35
- "components.filter.filters": "Filters",
36
- "components.filter.loading": "Loading filters",
37
- "components.filter.noFilters": "No available filters",
37
+ "components.filter.filters": "Фильтры",
38
+ "components.filter.loading": "Загрузка фильтров",
39
+ "components.filter.noFilters": "Нет доступных фильтров",
38
40
  "components.filter.searchResults":
39
41
  `{number, plural,
40
- =0 {No search results}
41
- one {{number} search result}
42
- other {{number} search results}
42
+ =0 {Нет результатов поиска}
43
+ one {{number} результат поиска}
44
+ few {{number} результата поиска}
45
+ many {{number} результатов поиска}
46
+ other {{number} результата поиска}
43
47
  }`,
44
- "components.filter.selectedFirstListLabel": "{headerText}. Selected filters appear first.",
45
- "components.filter.singleDimensionDescription": "Filter by: {filterName}",
48
+ "components.filter.selectedFirstListLabel": "{headerText} первыми отображаются выбранные фильтры.",
49
+ "components.filter.singleDimensionDescription": "Фильтр по: {filterName}",
46
50
  "components.filter-dimension-set-date-text-value.textDays":
47
51
  `{num, plural,
48
- =0 {Today}
49
- one {Last {num} day}
50
- other {Last {num} days}
52
+ =0 {Сегодня}
53
+ one {За последний {num} день}
54
+ few {За последние {num} дня}
55
+ many {За последние {num} дней}
56
+ other {За последние {num} дня}
51
57
  }`,
52
58
  "components.filter-dimension-set-date-text-value.textHours":
53
59
  `{num, plural,
54
- =1 {Last hour}
55
- other {Last {num} hours}
60
+ =1 {За последний час}
61
+ few {За последние {num} часа}
62
+ many {За последние {num} часов}
63
+ other {За последние {num} часа}
56
64
  }`,
57
- "components.filter-dimension-set-date-text-value.textMonths": "Last {num} months",
58
- "components.filter-dimension-set-date-time-range-value.label": "{text}, expand to choose dates",
59
- "components.filter-dimension-set-date-time-range-value.text": "Custom date range",
60
- "components.filter-dimension-set-date-time-range-value.valueTextRange": "{startValue} to {endValue}",
61
- "components.filter-dimension-set-date-time-range-value.valueTextRangeEndOnly": "Before {endValue}",
62
- "components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "After {startValue}",
63
- "components.form-element.defaultError": "{label} is invalid",
64
- "components.form-element.defaultFieldLabel": "Field",
65
- "components.form-element.input.email.typeMismatch": "Email is not valid",
65
+ "components.filter-dimension-set-date-text-value.textMonths": "Последние {num} месяцев",
66
+ "components.filter-dimension-set-date-time-range-value.label": "{text} расширить для выбора дат",
67
+ "components.filter-dimension-set-date-time-range-value.text": "Настраиваемый диапазон дат",
68
+ "components.filter-dimension-set-date-time-range-value.valueTextRange": "От {startValue} до {endValue}",
69
+ "components.filter-dimension-set-date-time-range-value.valueTextRangeEndOnly": "До {endValue}",
70
+ "components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "После {startValue}",
71
+ "components.form-element.defaultError": "Параметр {label} недействителен",
72
+ "components.form-element.defaultFieldLabel": "Поле",
73
+ "components.form-element.input.email.typeMismatch": "Адрес электронной почты недействителен",
66
74
  "components.form-element.input.number.rangeError":
67
75
  `{minExclusive, select,
68
76
  true {{maxExclusive, select,
69
- true {Number must be greater than {min} and less than {max}.}
70
- other {Number must be greater than {min} and less than or equal to {max}.}
77
+ true {Число должно быть больше {min} и меньше {max}.}
78
+ other {Число должно быть больше {min} и меньше или равно {max}.}
71
79
  }}
72
80
  other {{maxExclusive, select,
73
- true {Number must be greater than or equal to {min} and less than {max}.}
74
- other {Number must be greater than or equal to {min} and less than or equal to {max}.}
81
+ true {Число должно быть больше или равно {min} и меньше {max}.}
82
+ other {Число должно быть больше или равно {min} и меньше или равно {max}.}
75
83
  }}
76
84
  }`,
77
85
  "components.form-element.input.number.rangeOverflow":
78
86
  `{maxExclusive, select,
79
- true {Number must be less than {max}.}
80
- other {Number must be less than or equal to {max}.}
87
+ true {Число должно быть меньше {max}.}
88
+ other {Число должно быть меньше или равно {max}.}
81
89
  }`,
82
90
  "components.form-element.input.number.rangeUnderflow":
83
91
  `{minExclusive, select,
84
- true {Number must be greater than {min}.}
85
- other {Number must be greater than or equal to {min}.}
92
+ true {Число должно быть больше {min}.}
93
+ other {Число должно быть больше или равно {min}.}
86
94
  }`,
87
- "components.form-element.input.text.tooShort": "{label} must be at least {minlength} characters",
88
- "components.form-element.input.url.typeMismatch": "URL is not valid",
89
- "components.form-element.valueMissing": "{label} is required",
95
+ "components.form-element.input.text.tooShort": "{label} должен содержать не менее {minlength} символов",
96
+ "components.form-element.input.url.typeMismatch": "URL неверен",
97
+ "components.form-element.valueMissing": "Обязателен параметр {label}",
90
98
  "components.form-error-summary.errorSummary":
91
99
  `{count, plural,
92
- one {There was {count} error found in the information you submitted}
93
- other {There were {count} errors found in the information you submitted}
100
+ one {В предоставленной вами информации обнаружена {count} ошибка}
101
+ few {В предоставленной вами информации обнаружено {count} ошибки}
102
+ many {В предоставленной вами информации обнаружено {count} ошибок}
103
+ other {В предоставленной вами информации обнаружено {count} ошибки}
94
104
  }`,
95
- "components.form-error-summary.text": "Toggle error details",
96
- "components.input-color.backgroundColor": "Background Color",
97
- "components.input-color.foregroundColor": "Foreground Color",
98
- "components.input-color.none": "None",
99
- "components.input-date.clear": "Clear",
100
- "components.input-date.errorMaxDateOnly": "Date must be before or on {maxDate}",
101
- "components.input-date.errorMinDateOnly": "Date must be on or after {minDate}",
102
- "components.input-date.errorOutsideRange": "Date must be between {minDate} and {maxDate}",
103
- "components.input-date.now": "Now",
104
- "components.input-date.openInstructions": "Use date format {format}. Arrow down or press enter to access mini-calendar.",
105
- "components.input-date.revert": "{label} reverted to previous value.",
106
- "components.input-date.today": "Today",
107
- "components.input-date.useDateFormat": "Use date format {format}.",
108
- "components.input-date-range.endDate": "End Date",
109
- "components.input-date-range.errorBadInput": "{startLabel} must be before {endLabel}",
110
- "components.input-date-range.interactive-label": "Date range input",
111
- "components.input-date-range.startDate": "Start Date",
112
- "components.input-date-time.date": "Date",
113
- "components.input-date-time.errorMaxDateOnly": "Date must be before or on {maxDate}",
114
- "components.input-date-time.errorMinDateOnly": "Date must be on or after {minDate}",
115
- "components.input-date-time.errorOutsideRange": "Date must be between {minDate} and {maxDate}",
116
- "components.input-date-time.time": "Time",
117
- "components.input-date-time-range.endDate": "End Date",
118
- "components.input-date-time-range.errorBadInput": "{startLabel} must be before {endLabel}",
119
- "components.input-date-time-range.interactive-label": "Date and time range input",
120
- "components.input-date-time-range.startDate": "Start Date",
121
- "components.input-date-time-range-to.to": "to",
122
- "components.input-number.hintDecimalDuplicate": "There’s already a decimal in this number",
123
- "components.input-number.hintDecimalIncorrectComma": "To add a decimal use the comma “,” character",
124
- "components.input-number.hintDecimalIncorrectPeriod": "To add a decimal use the period “.” character",
125
- "components.input-number.hintInteger": "This field only accepts integer values (no decimals)",
126
- "components.input-search.clear": "Clear Search",
127
- "components.input-search.defaultPlaceholder": "Search...",
128
- "components.input-search.search": "Search",
129
- "components.input-time-range.endTime": "End Time",
130
- "components.input-time-range.errorBadInput": "{startLabel} must be before {endLabel}",
131
- "components.input-time-range.startTime": "Start Time",
132
- "components.interactive.instructions": "Press Enter to interact, Escape to exit",
133
- "components.link.open-in-new-window": "Opens in a new window.",
134
- "components.list.keyboard": "Use <b>arrow keys</b> to move focus inside this list, or <b>page up/down</b> to move up or down by 5",
135
- "components.list-controls.label": "Actions for list",
136
- "components.list-item.addItem": "Add Item",
137
- "components.list-item-drag-handle.default": "Reorder item action for {name}",
138
- "components.list-item-drag-handle.keyboard": "Reorder item, current position {currentPosition} out of {size}. To move this item, press up or down arrows.",
105
+ "components.form-error-summary.text": "Переключить сведения об ошибках",
106
+ "components.input-color.backgroundColor": "Цвет фона",
107
+ "components.input-color.foregroundColor": "Цвет переднего плана",
108
+ "components.input-color.none": "Нет",
109
+ "components.input-date.clear": "Очистить",
110
+ "components.input-date.errorMaxDateOnly": "Дата должна быть не позднее {maxDate}",
111
+ "components.input-date.errorMinDateOnly": "Дата должна быть не ранее {minDate}",
112
+ "components.input-date.errorOutsideRange": "Дата должна находиться между {minDate} и {maxDate}",
113
+ "components.input-date.now": "Сейчас",
114
+ "components.input-date.openInstructions": "Используйте формат даты {format}. Нажмите клавишу «стрелка вниз» или Enter для доступа к мини-календарю.",
115
+ "components.input-date.revert": "Параметр {label} восстановлен к предыдущему значению.",
116
+ "components.input-date.today": "Сегодня",
117
+ "components.input-date.useDateFormat": "Используйте формат даты {format}",
118
+ "components.input-date-range.endDate": "Дата окончания",
119
+ "components.input-date-range.errorBadInput": "{startLabel} должен предшествовать {endLabel}",
120
+ "components.input-date-range.interactive-label": "Ввод диапазона дат",
121
+ "components.input-date-range.startDate": "Дата начала",
122
+ "components.input-date-time.date": "Дата",
123
+ "components.input-date-time.errorMaxDateOnly": "Дата должна быть не позднее {maxDate}",
124
+ "components.input-date-time.errorMinDateOnly": "Дата должна быть не ранее {minDate}",
125
+ "components.input-date-time.errorOutsideRange": "Дата должна находиться между {minDate} и {maxDate}",
126
+ "components.input-date-time.time": "Время",
127
+ "components.input-date-time-range.endDate": "Дата окончания",
128
+ "components.input-date-time-range.errorBadInput": "{startLabel} должен предшествовать {endLabel}",
129
+ "components.input-date-time-range.interactive-label": "Ввод даты и временного диапазона",
130
+ "components.input-date-time-range.startDate": "Дата начала",
131
+ "components.input-date-time-range-to.to": "до",
132
+ "components.input-number.hintDecimalDuplicate": "В этом числе уже есть десятичный разделитель",
133
+ "components.input-number.hintDecimalIncorrectComma": "Для добавления десятичного разделителя используйте символ запятой «,»",
134
+ "components.input-number.hintDecimalIncorrectPeriod": "Для добавления десятичного разделителя используйте символ точки «.»",
135
+ "components.input-number.hintInteger": "Это поле принимает только целые значения (без десятичных знаков)",
136
+ "components.input-search.clear": "Очистить поиск",
137
+ "components.input-search.defaultPlaceholder": "Поиск...",
138
+ "components.input-search.search": "Поиск",
139
+ "components.input-time-range.endTime": "Время окончания",
140
+ "components.input-time-range.errorBadInput": "{startLabel} должен предшествовать {endLabel}",
141
+ "components.input-time-range.startTime": "Время начала",
142
+ "components.interactive.instructions": "Нажмите Enter для взаимодействия, Escape для выхода",
143
+ "components.link.open-in-new-window": "Открывается в новом окне.",
144
+ "components.list.keyboard": "Используйте <b>клавиши со стрелками</b> для перемещения фокуса внутри этого списка или клавиши <b>Page Up/Down</b> для перемещения вверх или вниз на 5",
145
+ "components.list-controls.label": "Действия для списка",
146
+ "components.list-item.addItem": "Добавить элемент",
147
+ "components.list-item-drag-handle.default": "Действие по изменению порядка элементов для {name}",
148
+ "components.list-item-drag-handle.keyboard": "Изменить порядок элемента, текущее положение {currentPosition} из {size} . Чтобы переместить этот элемент, нажмите стрелки вверх или вниз.",
139
149
  "components.list-item-drag-handle.side-to-side.keyboard": "Reorder item, current position {currentPosition} out of {size}. To move this item, press left or right arrows.",
140
- "components.list-item-drag-handle-tooltip.enter-desc": "Toggle keyboard reorder mode.",
141
- "components.list-item-drag-handle-tooltip.enter-key": "Enter",
142
- "components.list-item-drag-handle-tooltip.left-right-desc": "Change the nesting level.",
143
- "components.list-item-drag-handle-tooltip.left-right-key": "Left/Right",
150
+ "components.list-item-drag-handle-tooltip.enter-desc": "Переключить режим изменения порядка с помощью клавиатуры.",
151
+ "components.list-item-drag-handle-tooltip.enter-key": "Войти",
152
+ "components.list-item-drag-handle-tooltip.left-right-desc": "Измените уровень вложенности.",
153
+ "components.list-item-drag-handle-tooltip.left-right-key": "Слева/Справа",
144
154
  "components.list-item-drag-handle-tooltip.side-to-side.left-right-desc": "Move item left or right in the list.",
145
155
  "components.list-item-drag-handle-tooltip.side-to-side.up-down-desc": "Move item left or right in the list.",
146
- "components.list-item-drag-handle-tooltip.title": "Keyboard Controls for Reordering:",
147
- "components.list-item-drag-handle-tooltip.up-down-desc": "Move item up or down in the list.",
148
- "components.list-item-drag-handle-tooltip.up-down-key": "Up/Down",
149
- "components.menu-item-return.return": "Return to previous menu.",
150
- "components.menu-item-return.returnCurrentlyShowing": "Return to previous menu. You are viewing {menuTitle}.",
156
+ "components.list-item-drag-handle-tooltip.title": "Элементы управления клавиатуры для изменения порядка:",
157
+ "components.list-item-drag-handle-tooltip.up-down-desc": "Перемещение элемента вверх или вниз в списке.",
158
+ "components.list-item-drag-handle-tooltip.up-down-key": "Вверх/вниз",
159
+ "components.menu-item-return.return": "Вернуться к предыдущему меню.",
160
+ "components.menu-item-return.returnCurrentlyShowing": "Вернуться к предыдущему меню. Вы просматриваете {menuTitle}.",
151
161
  "components.meter-mixin.commaSeperatedAria": "{term1}, {term2}",
152
162
  "components.meter-mixin.fraction": "{x}∕{y}",
153
- "components.meter-mixin.fractionAria": "{x} out of {y}",
154
- "components.meter-mixin.progressIndicator": "Progress Indicator",
155
- "components.more-less.less": "less",
156
- "components.more-less.more": "more",
157
- "components.object-property-list.item-placeholder-text": "Placeholder Item",
158
- "components.overflow-group.moreActions": "More Actions",
163
+ "components.meter-mixin.fractionAria": "{x} из {y}",
164
+ "components.meter-mixin.progressIndicator": "Показатель прогресса",
165
+ "components.more-less.less": "меньше",
166
+ "components.more-less.more": "подробнее",
167
+ "components.object-property-list.item-placeholder-text": "Заместительная позиция",
168
+ "components.overflow-group.moreActions": "Другие действия",
159
169
  "components.page.footer-region-label": "Footer",
160
- "components.page.header-nav-label": "Main",
170
+ "components.page.header-nav-label": "Главная",
161
171
  "components.page.side-nav-divider-label": "Side Navigation Divider",
162
- "components.page.side-nav-label": "Side",
172
+ "components.page.side-nav-label": "Сторона",
163
173
  "components.page.supporting-divider-label": "Supporting Panel Divider",
164
174
  "components.page.supporting-panel-label": "Supporting",
165
175
  "components.pageable.info":
166
176
  `{count, plural,
167
- one {{countFormatted} item}
168
- other {{countFormatted} items}
177
+ one {{countFormatted} элемент}
178
+ few {{countFormatted} элемента}
179
+ many {{countFormatted} элементов}
180
+ other {{countFormatted} элемента}
169
181
  }`,
170
182
  "components.pageable.info-with-total":
171
183
  `{totalCount, plural,
172
- one {{countFormatted} of {totalCountFormatted} item}
173
- other {{countFormatted} of {totalCountFormatted} items}
184
+ one {{countFormatted} из {totalCountFormatted} элемента}
185
+ few {{countFormatted} из {totalCountFormatted} элементов}
186
+ many {{countFormatted} из {totalCountFormatted} элементов}
187
+ other {{countFormatted} из {totalCountFormatted} элемента}
174
188
  }`,
175
- "components.pager-load-more.action": "Load More",
176
- "components.pager-load-more.action-with-page-size": "Load {count} More",
177
- "components.pager-load-more.status-loading": "Loading more items",
178
- "components.scroll-wrapper.scroll-left": "Scroll left",
179
- "components.scroll-wrapper.scroll-right": "Scroll right",
189
+ "components.pager-load-more.action": "Загрузка еще",
190
+ "components.pager-load-more.action-with-page-size": "Загрузить еще {count}",
191
+ "components.pager-load-more.status-loading": "Загрузка дополнительных элементов",
192
+ "components.scroll-wrapper.scroll-left": "Прокрутите влево",
193
+ "components.scroll-wrapper.scroll-right": "Прокрутите вправо",
180
194
  "components.selection.action-max-hint":
181
195
  `{count, plural,
182
- one {Disabled when more than {countFormatted} item is selected}
183
- other {Disabled when more than {countFormatted} items are selected}
196
+ one {Отключено, если выбрано более {countFormatted} элемента}
197
+ few {Отключено, если выбрано более {countFormatted} элементов}
198
+ many {Отключено, если выбрано более {countFormatted} элементов}
199
+ other {Отключено, если выбрано более {countFormatted} элемента}
184
200
  }`,
185
- "components.selection.action-required-hint": "Select an item to perform this action",
186
- "components.selection.select-all": "Select All",
201
+ "components.selection.action-required-hint": "Выберите элемент для выполнения этого действия",
202
+ "components.selection.select-all": "Выбрать все",
187
203
  "components.selection.select-all-items":
188
204
  `{count, plural,
189
- =1 {Select Item}
190
- one {Select All {countFormatted} Item}
191
- other {Select All {countFormatted} Items}
205
+ =1 {Выбрать элемент}
206
+ one {Выбрать все элементы ({countFormatted})}
207
+ few {Выбрать все элементы ({countFormatted})}
208
+ many {Выбрать все элементы ({countFormatted})}
209
+ other {Выбрать все элементы ({countFormatted})}
192
210
  }`,
193
- "components.selection.selected": "{count} selected",
194
- "components.selection.selected-plus": "{count}+ selected",
195
- "components.selection-controls.label": "Actions for selection",
196
- "components.skip-nav.skipToMainContent": "skip to main content",
197
- "components.sort.label": "Sort",
198
- "components.sort.text": "Sort: {selectedItemText}",
199
- "components.switch.conditions": "Conditions must be met",
200
- "components.switch.hidden": "Hidden",
201
- "components.switch.visible": "Visible",
202
- "components.switch.visibleWithPeriod": "Visible.",
203
- "components.table-col-sort-button.addSortOrder": "Select to add sort order",
204
- "components.table-col-sort-button.changeSortOrder": "Select to change sort order",
211
+ "components.selection.selected": "Выбран параметр {count}",
212
+ "components.selection.selected-plus": "Выбран параметр {count}+",
213
+ "components.selection-controls.label": "Действия для выбранных элементов",
214
+ "components.skip-nav.skipToMainContent": "перейти к основному контенту",
215
+ "components.sort.label": "Сортировать",
216
+ "components.sort.text": "сортировать: {selectedItemText}",
217
+ "components.switch.conditions": "Необходимо соблюдать условия",
218
+ "components.switch.hidden": "Скрыто",
219
+ "components.switch.visible": "Видимый",
220
+ "components.switch.visibleWithPeriod": "Видимый",
221
+ "components.table-col-sort-button.addSortOrder": "Выберите, чтобы добавить порядок сортировки",
222
+ "components.table-col-sort-button.changeSortOrder": "Выберите, чтобы изменить порядок сортировки",
205
223
  "components.table-col-sort-button.title":
206
224
  `{sourceType, select,
207
225
  dates {{direction, select,
208
- desc {Sorted new to old}
209
- other {Sorted old to new}
226
+ desc {Отсортировано от нового к старому}
227
+ other {Отсортировано от старого к новому}
210
228
  }}
211
229
  numbers {{direction, select,
212
- desc {Sorted high to low}
213
- other {Sorted low to high}
230
+ desc {Отсортировано от большего к меньшему}
231
+ other {Отсортировано от меньшего к большему}
214
232
  }}
215
233
  words {{direction, select,
216
- desc {Sorted Z to A}
217
- other {Sorted A to Z}
234
+ desc {Отсортировано от Я до А}
235
+ other {Отсортировано от А до Я}
218
236
  }}
219
- value {Sorted {selectedMenuItemText}}
237
+ value {Отсортировано {selectedMenuItemText}}
220
238
  other {{direction, select,
221
- desc {Sorted descending}
222
- other {Sorted ascending}
239
+ desc {Отсортировано по убыванию}
240
+ other {Отсортировано по возрастанию}
223
241
  }}
224
242
  }`,
225
- "components.table-controls.label": "Actions for table",
226
- "components.tabs.next": "Scroll Forward",
227
- "components.tabs.previous": "Scroll Backward",
228
- "components.tag-list.clear": "Click, press backspace, or press delete key to remove item {value}",
229
- "components.tag-list.clear-all": "Clear All",
230
- "components.tag-list.cleared-all": "Removed all tag list items",
231
- "components.tag-list.cleared-item": "Removed tag list item {value}",
232
- "components.tag-list.interactive-label": "Tag List, {count} items",
233
- "components.tag-list.num-hidden": "+ {count} more",
243
+ "components.table-controls.label": "Действия для таблицы",
244
+ "components.tabs.next": "Прокрутите вперед",
245
+ "components.tabs.previous": "Прокрутка назад",
246
+ "components.tag-list.clear": "Щелкните, нажмите клавишу Backspace или нажмите клавишу Delete, чтобы удалить элемент {value}",
247
+ "components.tag-list.clear-all": "Очистить все",
248
+ "components.tag-list.cleared-all": "Удалены все элементы списка тегов",
249
+ "components.tag-list.cleared-item": "Удален элемент списка тегов {value}",
250
+ "components.tag-list.interactive-label": "Список тегов, элементы {count}",
251
+ "components.tag-list.num-hidden": "+ {count} еще",
234
252
  "components.tag-list.role-description":
235
253
  `{count, plural,
236
- =0 {Tag List with 0 items}
237
- one {Tag List with {count} item}
238
- other {Tag List with {count} items}
254
+ =0 {Список тегов с 0 элементов}
255
+ one {Список тегов с {count} элементом}
256
+ few {Список тегов с {count} элементами}
257
+ many {Список тегов с {count} элементами}
258
+ other {Список тегов с {count} элемента}
239
259
  }`,
240
- "components.tag-list.show-less": "Show Less",
241
- "components.tag-list.show-more-description": "Select to show hidden tag list items",
242
- "components.tag-list-item.role-description": "Tag",
243
- "components.tag-list-item.tooltip-arrow-keys": "Arrow Keys",
244
- "components.tag-list-item.tooltip-arrow-keys-desc": "Move between tags",
245
- "components.tag-list-item.tooltip-delete-key": "Backspace/Delete",
246
- "components.tag-list-item.tooltip-delete-key-desc": "Delete the focused tag",
247
- "components.tag-list-item.tooltip-title": "Keyboard Controls",
260
+ "components.tag-list.show-less": "Показать меньше",
261
+ "components.tag-list.show-more-description": "Выберите для отображения скрытых элементов списка тегов",
262
+ "components.tag-list-item.role-description": "Тег",
263
+ "components.tag-list-item.tooltip-arrow-keys": "Клавиши со стрелками",
264
+ "components.tag-list-item.tooltip-arrow-keys-desc": "Перемещение между тегами",
265
+ "components.tag-list-item.tooltip-delete-key": "Backspace/Удалить",
266
+ "components.tag-list-item.tooltip-delete-key-desc": "Удалить тег в фокусе",
267
+ "components.tag-list-item.tooltip-title": "Управление клавиатурой",
248
268
  "components.view-switcher.role-description":
249
269
  `{count, plural,
250
- =0 {View Switcher with 0 items}
251
- one {View Switcher with {count} item}
252
- other {View Switcher with {count} items}
270
+ =0 {Смотреть переключатель с 0 элементов}
271
+ one {Смотреть переключатель с {count} элементом}
272
+ few {Смотреть переключатель с {count} элементами}
273
+ many {Смотреть переключатель с {count} элементами}
274
+ other {Смотреть переключатель с {count} элемента}
253
275
  }`,
254
- "templates.primary-secondary.divider": "Secondary panel divider",
255
- "templates.primary-secondary.secondary-panel": "Secondary panel"
276
+ "templates.primary-secondary.divider": "Вторичный разделитель панели",
277
+ "templates.primary-secondary.secondary-panel": "Вторичная группа"
256
278
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brightspace-ui/core",
3
- "version": "3.280.0",
3
+ "version": "3.280.2",
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",