@brightspace-ui/labs 2.20.1 → 2.20.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -98,5 +98,5 @@
98
98
  "resize-observer-polyfill": "^1",
99
99
  "webvtt-parser": "^2.1.2"
100
100
  },
101
- "version": "2.20.1"
101
+ "version": "2.20.3"
102
102
  }
@@ -1,7 +1,6 @@
1
1
  import '@brightspace-ui/core/components/colors/colors.js';
2
2
  import '@brightspace-ui/core/components/expand-collapse/expand-collapse-content.js';
3
3
  import '@brightspace-ui/core/components/inputs/input-checkbox.js';
4
- import '@brightspace-ui/core/components/inputs/input-checkbox-spacer.js';
5
4
  import '@brightspace-ui/core/components/icons/icon.js';
6
5
  import { css, html, LitElement } from 'lit';
7
6
  import { bodyCompactStyles } from '@brightspace-ui/core/components/typography/styles.js';
@@ -26,7 +25,7 @@ class CheckboxDrawer extends LocalizeLabsElement(SkeletonMixin(LitElement)) {
26
25
  display: block;
27
26
  }
28
27
 
29
- .d2l-input-checkbox, .d2l-input-checkbox-spacer {
28
+ .d2l-input-checkbox {
30
29
  margin-bottom: 0;
31
30
  }
32
31
 
@@ -44,6 +43,9 @@ class CheckboxDrawer extends LocalizeLabsElement(SkeletonMixin(LitElement)) {
44
43
  display: inline-block;
45
44
  margin-left: 0.5rem;
46
45
  }
46
+ .d2l-input-read-only-spacer {
47
+ padding-inline-start: 1.7rem;
48
+ }
47
49
  `];
48
50
  }
49
51
 
@@ -54,27 +56,34 @@ class CheckboxDrawer extends LocalizeLabsElement(SkeletonMixin(LitElement)) {
54
56
  }
55
57
 
56
58
  render() {
57
- return html`
58
- ${this.readOnly ? html `
59
+ if (this.readOnly) {
60
+ return html `
59
61
  <d2l-icon class="d2l-skeletize" icon="${this.checked ? 'tier1:check' : 'tier1:close-default'}"></d2l-icon>
60
62
  <div class="d2l-body-compact d2l-input-read-only-label d2l-skeletize">${this.label}</div>
61
- ` : html`
62
- <d2l-input-checkbox
63
- ?checked="${this.checked}"
64
- class="d2l-input-checkbox"
65
- ?skeleton="${this.skeleton}"
66
- description=${this.localize(`components:checkboxDrawer:checkbox${this.checked ? 'Expanded' : 'Collapsed'}`)}
67
- @change="${this._onCheckboxChange}">${this.label}</d2l-input-checkbox>
68
- `}
69
- <d2l-input-checkbox-spacer class="d2l-input-checkbox-spacer">
70
- <div class="d2l-input-checkbox-description d2l-skeletize">${this.description}</div>
71
- </d2l-input-checkbox-spacer>
72
- <d2l-input-checkbox-spacer class="d2l-input-checkbox-spacer">
73
- <d2l-expand-collapse-content ?expanded="${this.checked}" aria-busy=${this._expandCollapseBusy ? 'true' : 'false'} @d2l-expand-collapse-content-expand="${this._onExpandCollapseContentToggled}" @d2l-expand-collapse-content-collapse="${this._onExpandCollapseContentToggled}">
74
- <div class="d2l-checkbox-content-margin"></div>
63
+ <div class="d2l-input-read-only-spacer">
64
+ <div class="d2l-input-checkbox-description d2l-skeletize">${this.description}</div>
65
+ </div>
66
+ <div class="d2l-input-read-only-spacer">
67
+ <d2l-expand-collapse-content ?expanded="${this.checked}" aria-busy=${this._expandCollapseBusy ? 'true' : 'false'} @d2l-expand-collapse-content-expand="${this._onExpandCollapseContentToggled}" @d2l-expand-collapse-content-collapse="${this._onExpandCollapseContentToggled}">
68
+ <div class="d2l-checkbox-content-margin"></div>
69
+ <slot></slot>
70
+ </d2l-expand-collapse-content>
71
+ </div>
72
+ `;
73
+ }
74
+ return html`
75
+ <d2l-input-checkbox
76
+ ?checked="${this.checked}"
77
+ class="d2l-input-checkbox"
78
+ ?skeleton="${this.skeleton}"
79
+ description=${this.localize(`components:checkboxDrawer:checkbox${this.checked ? 'Expanded' : 'Collapsed'}`)}
80
+ @change="${this._onCheckboxChange}">
81
+ ${this.label}
82
+ <div slot="inline-help">${this.description}</div>
83
+ <d2l-expand-collapse-content slot="supporting" ?expanded="${this.checked}" aria-busy=${this._expandCollapseBusy ? 'true' : 'false'} @d2l-expand-collapse-content-expand="${this._onExpandCollapseContentToggled}" @d2l-expand-collapse-content-collapse="${this._onExpandCollapseContentToggled}">
75
84
  <slot></slot>
76
85
  </d2l-expand-collapse-content>
77
- </d2l-input-checkbox-spacer>
86
+ </d2l-input-checkbox>
78
87
  `;
79
88
  }
80
89
 
@@ -168,7 +168,7 @@ class Link extends LocalizeCoreElement(FocusMixin(LitElement)) {
168
168
  const target = this.newWindow && this.target === undefined
169
169
  ? '_blank'
170
170
  : this.target;
171
- /* eslint-disable indent */
171
+ /* eslint-disable @stylistic/indent */
172
172
  return html`
173
173
  <a
174
174
  aria-label="${ifDefined(this.ariaLabel)}"
@@ -186,7 +186,7 @@ class Link extends LocalizeCoreElement(FocusMixin(LitElement)) {
186
186
  </span>
187
187
  </a>`;
188
188
  }
189
- /* eslint-enable indent */
189
+ /* eslint-enable @stylistic/indent */
190
190
 
191
191
  }
192
192
  customElements.define('d2l-labs-link-temp', Link);
@@ -49,10 +49,9 @@ class D2LWizard extends LitElement {
49
49
  render() {
50
50
  return html`
51
51
  <div class="d2l-labs-wizard-header">
52
- ${this.stepTitles.map((title, index) =>
53
- html`
54
- <d2l-labs-single-step-header total-steps="${this.stepCount}" current-step="${index}" selected-step="${this.selectedStep}" step-title="${title}" ?fill-header-width="${this.fillHeaderWidth}"></d2l-labs-single-step-header>
55
- `)}
52
+ ${this.stepTitles.map((title, index) => html`
53
+ <d2l-labs-single-step-header total-steps="${this.stepCount}" current-step="${index}" selected-step="${this.selectedStep}" step-title="${title}" ?fill-header-width="${this.fillHeaderWidth}"></d2l-labs-single-step-header>
54
+ `)}
56
55
 
57
56
  </div>
58
57
  <slot @slotchange="${this.#handleSlotChange}"></slot>
package/src/lang/mi.js ADDED
@@ -0,0 +1,115 @@
1
+ export default {
2
+ "components:accessibilityDisabilitySimulator:blurLevel": "Taumata Blur", // Label for input slider that users can use to change the level of blurriness
3
+ "components:accessibilityDisabilitySimulator:colorblindAchromatopsia": "Achromatopsia", // Disability simulation option for users with Achromatiopsia colorblindness
4
+ "components:accessibilityDisabilitySimulator:colorblindDeuteranopia": "Deuteranopia", // Disability simulation option for users with Deuteranopia colorblindness
5
+ "components:accessibilityDisabilitySimulator:colorblindProtanopia": "Protanopia", // Disability simulation option for users with Protanopia colorblindness
6
+ "components:accessibilityDisabilitySimulator:colorblindTritanopia": "Tritanopia", // Disability simulation option for users with Tritanopia colorblindness
7
+ "components:accessibilityDisabilitySimulator:colorblindness": "Taeblindness", // Disability simulation option for users with Colorblindness
8
+ "components:accessibilityDisabilitySimulator:keyboardOnly": "Papapātuhi Anake", // Disability simulation option for users who can only use the keyboard for navigation
9
+ "components:accessibilityDisabilitySimulator:lowVision": "Kitenga Iti", // Disability simulation option for users with a limited ability to see
10
+ "components:accessibilityDisabilitySimulator:noVision": "Kāore he Kitenga", // Disability simulation option for users without the ability to see
11
+ "components:accessibilityDisabilitySimulator:none": "Kore", // Disability simulation option that represents having no disability
12
+ "components:accessibilityDisabilitySimulator:screenreaderAndTabAlert": "Whakahohea tō pānui mata me te ripa ki te ihirangi", // Alert that prompts the user to use a screenreader and tabbing to view content
13
+ "components:accessibilityDisabilitySimulator:simulationType": "Momo kōwae:", // Label for the disability simulation options
14
+ "components:attributePicker:addValue": "Click to add value {value}", // Label for screen readers to inform user that they can click to add the given value
15
+ "components:attributePicker:limitReached": "You've reached the limit of {value} selected values", // Tooltip that appears when the user has reach the maximum amount of attributes
16
+ "components:attributePicker:minimumRequirement": "At least one value must be set", // Tooltip that appears when no values have been set and we need to inform the user that this is an invalid state
17
+ "components:attributePicker:removeValue": "Pāwhiritia, pēhia te mokowāmuri, pēhia rānei te pātuhi muku hei tango i te tūemi {value}", // Label to inform user how they can remove the given value
18
+ "components:checkboxDrawer:checkboxCollapsed": "Kua hinga te Pouakataki", // Read by screen readers when focusing the collapsed (unchecked) checkbox, with the inner content hidden
19
+ "components:checkboxDrawer:checkboxExpanded": "Kua roha te Pouakataki", // Read by screen readers when focusing the expanded (checked) checkbox, with the inner content shown
20
+ "components:fileUploader:file_upload_text": "Tō ka whakataka, ka whakataka rānei",
21
+ "components:fileUploader:browse": "tirotiro",
22
+ "components:fileUploader:browse_files": "Pūtirotirohia ngā kōnae",
23
+ "components:fileUploader:choose_one_file_to_upload": "Kōwhiria tētahi kōnae hei tukuatu",
24
+ "components:gradeResult:cannotBeNegative": "(kāore e taea te iti iho i te 0)",
25
+ "components:gradeResult:clearManualOverride": "Ūkui Whakakore ā-Ringa",
26
+ "components:gradeResult:gradeScoreLabel": "Tapeke kōeke",
27
+ "components:gradeResult:manuallyOverrideGrade": "Kōeke Whakakore ā-ringa",
28
+ "components:gradeResult:numeratorOutOfDenominator": "{numerator} mai i {denominator}",
29
+ "components:gradeResult:outOfDenominator": "mai i te {denominator}",
30
+ "components:gradeResult:overallGrade": "Kōeke Katoa",
31
+ "components:gradeResult:studentGradePreviewLabel": "Learner View of Grade",
32
+ "components:gradeResult:studentGradePreviewNotShown": "Grade not shown to learners",
33
+ "components:mediaPlayer:captions": "Ngā Tapanga",
34
+ "components:mediaPlayer:captionsVtt": "Ngā Tapanga (.vtt)",
35
+ "components:mediaPlayer:closedCaptionsAcronym": "P",
36
+ "components:mediaPlayer:default": "Taunoa",
37
+ "components:mediaPlayer:download": "Tikiake",
38
+ "components:mediaPlayer:exitFullscreen": "Puta i Mata Katoa",
39
+ "components:mediaPlayer:fullscreen": "Mata Whānui",
40
+ "components:mediaPlayer:language": "Reo",
41
+ "components:mediaPlayer:loadErrorMessage": "Oops, he raru te utanga o tēnei kōnae pāpāho",
42
+ "components:mediaPlayer:loadSuccessMessage": "Kua uta tikahia te pāpāho",
43
+ "components:mediaPlayer:menu": "tahua",
44
+ "components:mediaPlayer:mute": "Whakangū",
45
+ "components:mediaPlayer:off": "Whakaweto",
46
+ "components:mediaPlayer:pause": "Tatari",
47
+ "components:mediaPlayer:play": "Tākaro",
48
+ "components:mediaPlayer:playbackSpeed": "Terenga purei anō",
49
+ "components:mediaPlayer:quality": "Kounga",
50
+ "components:mediaPlayer:retry": "Whakamātau anō",
51
+ "components:mediaPlayer:searchPlaceholder": "Rapua...",
52
+ "components:mediaPlayer:seekSlider": "rapu rēreti",
53
+ "components:mediaPlayer:settings": "Ngā Tautuhinga",
54
+ "components:mediaPlayer:showSearchInput": "Whakaaturia te tāuru rapu",
55
+ "components:mediaPlayer:sliderBarProgress": "kaunuku pae rēreti",
56
+ "components:mediaPlayer:speed": "Tere",
57
+ "components:mediaPlayer:transcriptTxt": "Transcript (.txt)",
58
+ "components:mediaPlayer:unableToDownload": "Kāore i taea te tiki ake i. Tāmata koa i te whārangi ka ngana anō.",
59
+ "components:mediaPlayer:unmute": "Kāore e taea te tango",
60
+ "components:mediaPlayer:volumeSlider": "Te rēreti kahaoro",
61
+ "components:navigation:back": "Whakamuri",
62
+ "components:navigation:next": "Panuku",
63
+ "components:navigation:previous": "Tōmua",
64
+ "components:navigation:skipNav": "tīpoka ki te ihirangi matua",
65
+ "components:optInFlyout:cancel": "Whakakore",
66
+ "components:optInFlyout:close": "Katia tēnei kōrero",
67
+ "components:optInFlyout:done": "Kua oti",
68
+ "components:optInFlyout:feedbackChooseReason": "-- Kōwhiritia koa tētahi take --",
69
+ "components:optInFlyout:feedbackLabel": "He aha tā mātou mahi hei mahi i tēnei mea e hiahia ana koe ki te whakamahi?",
70
+ "components:optInFlyout:feedbackReasonJustCheckingSomething": "Me whakahoki noa iho hei taki i tētahi mea",
71
+ "components:optInFlyout:feedbackReasonLabel": "E hiahia ana koe ki te kōrero mai he aha koe e whakawhiti mai ai?",
72
+ "components:optInFlyout:feedbackReasonMissingFeature": "Kei te ngaro tētahi āhuahira e whakamahia ana e au",
73
+ "components:optInFlyout:feedbackReasonNotReadyForSomethingNew": "Ehara i te wā pai ki a au te whakamātau i tēnei putanga",
74
+ "components:optInFlyout:feedbackReasonOther": "Tētahi atu",
75
+ "components:optInFlyout:feedbackReasonPreferOldExperience": "Ki taku whakaaro he wheako pai ake te putanga tawhito",
76
+ "components:optInFlyout:feedbackTitle": "Me mōhio tātau me pēhea te whakapai ake!",
77
+ "components:optInFlyout:helpMessage": "Pānuitia ā mātou tuhinga *help* kia tīmata ai!",
78
+ "components:optInFlyout:leaveOff": "Waiho",
79
+ "components:optInFlyout:leaveOn": "Waiho kia kā",
80
+ "components:optInFlyout:openOptIn": "Whakatuwheratia te kōrero kōwhiri-mai",
81
+ "components:optInFlyout:openOptOut": "Whakatuwheratia te kōrero kōwhiri-atu",
82
+ "components:optInFlyout:turnOff": "Whakawetongia",
83
+ "components:optInFlyout:turnOn": "Whakakāia",
84
+ "components:optInFlyout:tutorialAndHelpMessage": "Mātakina ā mātou *akoranga*, pānui rānei i ā mātou tuhinga ~āwhina~ kia tīmata ai!",
85
+ "components:optInFlyout:tutorialMessage": "Mātakina ā mātou akoranga *akoranga* hei āwhina i a koe kia tīmata!",
86
+ "components:ouFilter:orgUnitFilter:nameAllSelected": "Wae Org: Katoa",
87
+ "components:ouFilter:orgUnitFilter:nameSomeSelected": "Wae Org: Ngā Tīpakonga Kua Hoatu",
88
+ "components:ouFilter:orgUnitFilter:name": "Wae Org",
89
+ "components:ouFilter:treeFilter:nodeName": "{orgUnitName} (Id: {id})",
90
+ "components:ouFilter:treeFilter:nodeName:root": "pakiaka",
91
+ "components:ouFilter:treeSelector:filterBy": "Tātari mā:",
92
+ "components:ouFilter:treeSelector:selectAllLabel": "Tīpako Katoa",
93
+ "components:ouFilter:treeSelector:clearLabel": "Mahea",
94
+ "components:ouFilter:treeSelector:searchLabel": "Rapua",
95
+ "components:ouFilter:treeSelector:loadMoreLabel": "Utaina Anō",
96
+ "components:ouFilter:treeSelector:noSearchResults": "Kāore he hua rapu",
97
+ "components:ouFilter:treeSelector:noFiltersAvailable": "Kāore he tātari wātea",
98
+ "components:ouFilter:treeSelector:parentLoadMore:ariaLabel": "Utaina ētahi atu wae org tamariki",
99
+ "components:ouFilter:treeSelector:searchLoadMore:ariaLabel": "Utaina ētahi atu hua rapu",
100
+ "components:ouFilter:treeSelector:searchPlaceholder": "Rapua...",
101
+ "components:ouFilter:treeSelector:dropdownAction": "Whakatuwheratia {name} filter",
102
+ "components:ouFilter:treeSelector:arrowLabel:closed": "Whakaroha {name} i te taumata {level}, child of {parentName}",
103
+ "components:ouFilter:treeSelector:arrowLabel:open": "Tiango {name} i te taumata {level}, tamaiti o {parentName}",
104
+ "components:ouFilter:treeSelector:node:ariaLabel": "{name}, tamaiti o {parentName},",
105
+ "components:pagination:amountPerPage": "{count} mō ia whārangi",
106
+ "components:pagination:currentPage": "Tau whārangi {pageNumber} o {maxPageNumber}",
107
+ "components:pagination:nextPage": "Whārangi whai ake",
108
+ "components:pagination:previousPage": "Whārangi o mua",
109
+ "components:pagination:resultsPerPage": "Ngā kitenga mō ia whārangi",
110
+ "components:wizard:aria.steplabel": "Hipanga {currentStep} o {totalSteps}",
111
+ "components:wizard:stepper.defaults.next": "Next",
112
+ "components:wizard:stepper.defaults.restart": "Restart",
113
+ "components:wizard:restart.button.tooltip": "Back to first step",
114
+ "components:wizard:next.button.tooltip": "Proceed to next step"
115
+ };
package/src/lang/zh-cn.js CHANGED
@@ -30,34 +30,34 @@ export default {
30
30
  "components:gradeResult:overallGrade": "总成绩",
31
31
  "components:gradeResult:studentGradePreviewLabel": "学员成绩视图",
32
32
  "components:gradeResult:studentGradePreviewNotShown": "不向学员显示成绩",
33
- "components:mediaPlayer:captions": "Captions",
34
- "components:mediaPlayer:captionsVtt": "Captions (.vtt)",
35
- "components:mediaPlayer:closedCaptionsAcronym": "CC",
36
- "components:mediaPlayer:default": "Default",
37
- "components:mediaPlayer:download": "Download",
38
- "components:mediaPlayer:exitFullscreen": "Exit fullscreen",
39
- "components:mediaPlayer:fullscreen": "Fullscreen",
40
- "components:mediaPlayer:language": "Language",
41
- "components:mediaPlayer:loadErrorMessage": "Oops, there was a problem loading this media file",
42
- "components:mediaPlayer:loadSuccessMessage": "The media has loaded successfully",
43
- "components:mediaPlayer:menu": "menu",
44
- "components:mediaPlayer:mute": "Mute",
45
- "components:mediaPlayer:off": "Off",
46
- "components:mediaPlayer:pause": "Pause",
47
- "components:mediaPlayer:play": "Play",
48
- "components:mediaPlayer:playbackSpeed": "Playback speed",
49
- "components:mediaPlayer:quality": "Quality",
50
- "components:mediaPlayer:retry": "Retry",
51
- "components:mediaPlayer:searchPlaceholder": "Search...",
52
- "components:mediaPlayer:seekSlider": "seek slider",
53
- "components:mediaPlayer:settings": "settings",
54
- "components:mediaPlayer:showSearchInput": "Show search input",
55
- "components:mediaPlayer:sliderBarProgress": "slider bar progress",
56
- "components:mediaPlayer:speed": "speed",
57
- "components:mediaPlayer:transcriptTxt": "Transcript (.txt)",
58
- "components:mediaPlayer:unableToDownload": "Unable to download. Please refresh the page and try again.",
59
- "components:mediaPlayer:unmute": "Unmute",
60
- "components:mediaPlayer:volumeSlider": "volume slider",
33
+ "components:mediaPlayer:captions": "字幕",
34
+ "components:mediaPlayer:captionsVtt": "‌字幕 (.vtt)",
35
+ "components:mediaPlayer:closedCaptionsAcronym": "字幕",
36
+ "components:mediaPlayer:default": "‌默认值",
37
+ "components:mediaPlayer:download": "‌下载",
38
+ "components:mediaPlayer:exitFullscreen": "‌退出全屏",
39
+ "components:mediaPlayer:fullscreen": "‌全屏",
40
+ "components:mediaPlayer:language": "‌语言",
41
+ "components:mediaPlayer:loadErrorMessage": "‌糟糕,加载此媒体文件时出现问题",
42
+ "components:mediaPlayer:loadSuccessMessage": "‌媒体已成功加载",
43
+ "components:mediaPlayer:menu": "‌菜单",
44
+ "components:mediaPlayer:mute": "‌静音",
45
+ "components:mediaPlayer:off": "‌关闭",
46
+ "components:mediaPlayer:pause": "‌暂停",
47
+ "components:mediaPlayer:play": "‌播放",
48
+ "components:mediaPlayer:playbackSpeed": "‌播放速度",
49
+ "components:mediaPlayer:quality": "‌质量",
50
+ "components:mediaPlayer:retry": "‌重试",
51
+ "components:mediaPlayer:searchPlaceholder": "‌搜索...",
52
+ "components:mediaPlayer:seekSlider": "‌搜索滑块",
53
+ "components:mediaPlayer:settings": "‌设置",
54
+ "components:mediaPlayer:showSearchInput": "显示搜索输入",
55
+ "components:mediaPlayer:sliderBarProgress": "‌滑块进度",
56
+ "components:mediaPlayer:speed": "‌速度",
57
+ "components:mediaPlayer:transcriptTxt": "‌转录文稿 (.txt)",
58
+ "components:mediaPlayer:unableToDownload": "‌无法下载。 ‌请刷新页面并重试。",
59
+ "components:mediaPlayer:unmute": "‌取消静音",
60
+ "components:mediaPlayer:volumeSlider": "‌音量滑块",
61
61
  "components:navigation:back": "返回",
62
62
  "components:navigation:next": "下一个",
63
63
  "components:navigation:previous": "上一个",
@@ -83,32 +83,32 @@ export default {
83
83
  "components:optInFlyout:turnOn": "开启",
84
84
  "components:optInFlyout:tutorialAndHelpMessage": "观看我们的*教程*或阅读我们的~帮助文档~,以便快速入门!",
85
85
  "components:optInFlyout:tutorialMessage": "观看我们的*教程*帮助您快速入门!",
86
- "components:ouFilter:orgUnitFilter:nameAllSelected": "Org Unit: All",
87
- "components:ouFilter:orgUnitFilter:nameSomeSelected": "Org Unit: Selections Applied",
88
- "components:ouFilter:orgUnitFilter:name": "Org Unit",
86
+ "components:ouFilter:orgUnitFilter:nameAllSelected": "‌组织单位:全部",
87
+ "components:ouFilter:orgUnitFilter:nameSomeSelected": "‌组织单位:应用的选择",
88
+ "components:ouFilter:orgUnitFilter:name": "‌组织单位",
89
89
  "components:ouFilter:treeFilter:nodeName": "{orgUnitName} (Id: {id})",
90
- "components:ouFilter:treeFilter:nodeName:root": "root",
91
- "components:ouFilter:treeSelector:filterBy": "Filter By",
92
- "components:ouFilter:treeSelector:selectAllLabel": "Select all",
93
- "components:ouFilter:treeSelector:clearLabel": "Clear",
94
- "components:ouFilter:treeSelector:searchLabel": "Search",
95
- "components:ouFilter:treeSelector:loadMoreLabel": "Load More",
96
- "components:ouFilter:treeSelector:noSearchResults": "No search results",
97
- "components:ouFilter:treeSelector:noFiltersAvailable": "No available filters",
98
- "components:ouFilter:treeSelector:parentLoadMore:ariaLabel": "Load more child org units",
99
- "components:ouFilter:treeSelector:searchLoadMore:ariaLabel": "Load more search results",
100
- "components:ouFilter:treeSelector:searchPlaceholder": "Search...",
101
- "components:ouFilter:treeSelector:dropdownAction": "Open {name} filter",
102
- "components:ouFilter:treeSelector:arrowLabel:closed": "Expand {name} at level {level}, child of {parentName}",
103
- "components:ouFilter:treeSelector:arrowLabel:open": "Collapse {name} at level {level}, child of {parentName}",
104
- "components:ouFilter:treeSelector:node:ariaLabel": "{name}, child of {parentName},",
90
+ "components:ouFilter:treeFilter:nodeName:root": "‌根",
91
+ "components:ouFilter:treeSelector:filterBy": "‌筛选条件",
92
+ "components:ouFilter:treeSelector:selectAllLabel": "‌全选",
93
+ "components:ouFilter:treeSelector:clearLabel": "‌清除",
94
+ "components:ouFilter:treeSelector:searchLabel": "‌搜索",
95
+ "components:ouFilter:treeSelector:loadMoreLabel": "‌加载更多",
96
+ "components:ouFilter:treeSelector:noSearchResults": "‌没有搜索结果",
97
+ "components:ouFilter:treeSelector:noFiltersAvailable": "‌无可用筛选器",
98
+ "components:ouFilter:treeSelector:parentLoadMore:ariaLabel": "‌加载更多子组织单位",
99
+ "components:ouFilter:treeSelector:searchLoadMore:ariaLabel": "‌加载更多搜索结果",
100
+ "components:ouFilter:treeSelector:searchPlaceholder": "‌搜索‌...",
101
+ "components:ouFilter:treeSelector:dropdownAction": "‌打开 {name} 筛选器",
102
+ "components:ouFilter:treeSelector:arrowLabel:closed": "‌在 {parentName} 的子项 {level} 级别展开 {name}",
103
+ "components:ouFilter:treeSelector:arrowLabel:open": " {parentName} 的子项 {level} 级别折叠 {name}",
104
+ "components:ouFilter:treeSelector:node:ariaLabel": "‌‌{name}{parentName} 的子项,",
105
105
  "components:pagination:amountPerPage": "每页 {count} 个结果",
106
106
  "components:pagination:currentPage": "第 {pageNumber} 页,共 {maxPageNumber} 页",
107
107
  "components:pagination:nextPage": "下一页",
108
108
  "components:pagination:previousPage": "上一页",
109
109
  "components:pagination:resultsPerPage": "每页结果数",
110
110
  "components:wizard:aria.steplabel": "全部 {currentStep} 步中的 {totalSteps} 步",
111
- "components:wizard:stepper.defaults.next": "Next",
111
+ "components:wizard:stepper.defaults.next": "下一个",
112
112
  "components:wizard:stepper.defaults.restart": "重新开始",
113
113
  "components:wizard:restart.button.tooltip": "返回第一步",
114
114
  "components:wizard:next.button.tooltip": "继续下一步"