@brightspace-ui/labs 2.34.2 → 2.35.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -88,7 +88,7 @@
88
88
  "rollup": "^4",
89
89
  "rollup-plugin-copy": "^3",
90
90
  "rollup-plugin-delete": "^3",
91
- "sinon": "^20",
91
+ "sinon": "^21",
92
92
  "stylelint": "^16"
93
93
  },
94
94
  "files": [
@@ -114,5 +114,5 @@
114
114
  "resize-observer-polyfill": "^1",
115
115
  "webvtt-parser": "^2.1.2"
116
116
  },
117
- "version": "2.34.2"
117
+ "version": "2.35.1"
118
118
  }
@@ -10,11 +10,11 @@ Components used for rendering grades in Brightspace.
10
10
  import '@brightspace-ui/labs/components/grade-result/grade-result-presentational.js';
11
11
  </script>
12
12
  <d2l-labs-grade-result-presentational
13
- gradeType="Numeric"
14
- labelText="Overall Grade"
15
- labelHeadingLevel="3"
16
- scoreNumerator="5"
17
- scoreDenominator="20"
13
+ grade-type="Numeric"
14
+ label-text="Overall Grade"
15
+ label-heading-level="3"
16
+ score-numerator="5"
17
+ score-denominator="20"
18
18
  display-student-grade-preview
19
19
  student-grade-preview='{"score": 5, "symbol": "Fine", "colour": "#FFCC00"}'
20
20
  ></d2l-labs-grade-result-presentational>
@@ -26,16 +26,16 @@ Components used for rendering grades in Brightspace.
26
26
  import '@brightspace-ui/labs/components/grade-result/grade-result-presentational.js';
27
27
  </script>
28
28
  <d2l-labs-grade-result-presentational
29
- gradeType="LetterGrade"
30
- labelText="Overall Grade"
31
- letterGradeOptions='{ "0": { "LetterGrade": "None", "PercentStart": null}, "1": { "LetterGrade": "A", "PercentStart": "75"}, "2": { "LetterGrade": "B", "PercentStart": "50"}}'
32
- selectedLetterGrade="2"
33
- scoreDenominator="20"
34
- isManualOverrideActive
35
- includeGradeButton
36
- gradeButtonTooltip="Assignment 1 Grade Item Attached"
37
- includeReportsButton
38
- reportsButtonTooltip="Class and user statistics"
29
+ grade-type="LetterGrade"
30
+ label-text="Overall Grade"
31
+ letter-grade-options='{ "0": { "LetterGrade": "None", "PercentStart": null}, "1": { "LetterGrade": "A", "PercentStart": "75"}, "2": { "LetterGrade": "B", "PercentStart": "50"}}'
32
+ selected-letter-grade="2"
33
+ score-denominator="20"
34
+ is-manual-override-active
35
+ include-grade-button
36
+ grade-button-tooltip="Assignment 1 Grade Item Attached"
37
+ include-reports-button
38
+ reports-button-tooltip="Class and user statistics"
39
39
  display-student-grade-preview
40
40
  student-grade-preview='{"score": 10, "symbol": "Very Good", "colour": "#00FFFF"}'
41
41
  ></d2l-labs-grade-result-presentational>
@@ -47,25 +47,25 @@ Components used for rendering grades in Brightspace.
47
47
 
48
48
  | Property | GradeType | Type | Default | Description |
49
49
  | ----------------------------------| -------------- | --------------------------- | ----------- | ------------------------------------------------------------ |
50
- | `gradeType` | All | `string ('Numeric' or 'LetterGrade')` | `'Numeric'` | Specifies the type of grade that the component is meant to render. |
51
- | `labelText` | All | `string` | `''` | The text that appears above the component. |
52
- | `scoreNumerator` | Numeric | `number` | `0` | The numerator of the numeric score that is given. |
53
- | `scoreDenominator` | Numeric | `number` | `0` | The denominator of the numeric score that is given. |
54
- | `selectedLetterGrade` | LetterGrade | `string` | `''` | The current selected letter grade of the options given. |
55
- | `letterGradeOptions` | LetterGrade | `Object` | `null` | A dictionary where the key is a unique id and the value is an object containing the LetterGrade text and the PercentStart. |
56
- | `includeGradeButton` | All | `boolean` | `false` | Determines whether the grades icon button is rendered. |
57
- | `includeReportsButton` | All | `boolean` | `false` | Determines whether the reports icon button is rendered. |
58
- | `gradeButtonTooltip` | All | `string` | `''` | The text that is inside of the tooltip when hovering over the grades button. |
59
- | `reportsButtonTooltip` | All | `string` | `''` | The text that is inside of the tooltip when hovering over the reports button. |
50
+ | `grade-type` | All | `string ('Numeric' or 'LetterGrade')` | `'Numeric'` | Specifies the type of grade that the component is meant to render. |
51
+ | `label-text` | All | `string` | `''` | The text that appears above the component. |
52
+ | `score-numerator` | Numeric | `number` | `0` | The numerator of the numeric score that is given. |
53
+ | `score-denominator` | Numeric | `number` | `0` | The denominator of the numeric score that is given. |
54
+ | `selected-letter-grade` | LetterGrade | `string` | `''` | The current selected letter grade of the options given. |
55
+ | `letter-grade-options` | LetterGrade | `Object` | `null` | A dictionary where the key is a unique id and the value is an object containing the LetterGrade text and the PercentStart. |
56
+ | `include-grade-button` | All | `boolean` | `false` | Determines whether the grades icon button is rendered. |
57
+ | `include-reports-button` | All | `boolean` | `false` | Determines whether the reports icon button is rendered. |
58
+ | `grade-button-tooltip` | All | `string` | `''` | The text that is inside of the tooltip when hovering over the grades button. |
59
+ | `reports-button-tooltip` | All | `string` | `''` | The text that is inside of the tooltip when hovering over the reports button. |
60
60
  | `readonly` | All | `boolean` | `false` | Set to `true` if the user does not have permissions to edit the grade. |
61
- | `isManualOverrideActive` | All | `boolean` | `false` | Set to `true` if the user is currently manually overriding the grade. This will display the button to 'Clear Manual Override'. |
62
- | `hideTitle` | All | `boolean` | `false` | This property will hide the "Overall Grade" title above the component. |
63
- | `customManualOverrideClearText` | All | `string` | `undefined` | This property will substitute the stock text on the "Clear Manual Override" button. |
64
- | `subtitleText` | All | `string` | `undefined` | This property will show the given text under the title. |
61
+ | `is-manual-override-active` | All | `boolean` | `false` | Set to `true` if the user is currently manually overriding the grade. This will display the button to 'Clear Manual Override'. |
62
+ | `hide-title` | All | `boolean` | `false` | This property will hide the "Overall Grade" title above the component. |
63
+ | `custom-manual-override-clear-text` | All | `string` | `undefined` | This property will substitute the stock text on the "Clear Manual Override" button. |
64
+ | `subtitle-text` | All | `string` | `undefined` | This property will show the given text under the title. |
65
65
  | `required` | Numeric | `Boolean` | `false` | Set to `true` if an undefined/blank grade is not considered valid |
66
- | `inputLabelText` | Numeric | `string` | `''` | This property sets the label that will be used inside the aria-label and validation error tool-tips |
67
- | `allowNegativeScore` | Numeric | `boolean` | `'false'` | Set to `true` if negative scores can be entered |
68
- | `showFlooredScoreWarning` | Numeric | `boolean` | `'false'` | Set to `true` if displaying a negative grade that has been floored at 0 |
66
+ | `input-label-text` | Numeric | `string` | `''` | This property sets the label that will be used inside the aria-label and validation error tool-tips |
67
+ | `allow-negative-score` | Numeric | `boolean` | `'false'` | Set to `true` if negative scores can be entered |
68
+ | `show-floored-score-warning` | Numeric | `boolean` | `'false'` | Set to `true` if displaying a negative grade that has been floored at 0 |
69
69
 
70
70
  ### Events
71
71
 
@@ -7,19 +7,13 @@ export class D2LGradeResultIconButton extends LitElement {
7
7
  return {
8
8
  text: { type: String },
9
9
  icon: { type: String },
10
- _id: { type: String },
11
10
  };
12
11
  }
13
12
 
14
- constructor() {
15
- super();
16
- this._id = getUniqueId();
17
- }
18
-
19
13
  render() {
20
14
  return html`
21
15
  <d2l-button-icon
22
- id="d2l-grade-result-icon-button-${this._id}"
16
+ id="d2l-grade-result-icon-button-${this.#id}"
23
17
  icon="${this.icon}"
24
18
  @click="${this._onClick}"
25
19
  text="${this.text}"
@@ -27,6 +21,8 @@ export class D2LGradeResultIconButton extends LitElement {
27
21
  `;
28
22
  }
29
23
 
24
+ #id = getUniqueId();
25
+
30
26
  _onClick() {
31
27
  this.dispatchEvent(new CustomEvent('d2l-grade-result-icon-button-click', {
32
28
  bubbles: true,
@@ -10,7 +10,7 @@ export class D2LGradeResultLetterScore extends LocalizeLabsElement(LitElement) {
10
10
 
11
11
  static get properties() {
12
12
  return {
13
- availableOptions: { type: Object },
13
+ availableOptions: { attribute: 'available-options', type: Object },
14
14
  label: { type: String },
15
15
  selectedOption: { attribute: 'selected-option', type: String },
16
16
  readonly: { type: Boolean }
@@ -26,12 +26,12 @@ export class D2LGradeResultPresentational extends LocalizeLabsElement(LitElement
26
26
  * Set to true if negative scores can be entered
27
27
  * @type {boolean}
28
28
  */
29
- allowNegativeScore: { type: Boolean },
29
+ allowNegativeScore: { attribute: 'allow-negative-score', type: Boolean },
30
30
  /**
31
31
  * This property will substitute the stock text on the "Clear Manual Override" button
32
32
  * @type {string}
33
33
  */
34
- customManualOverrideClearText: { type: String },
34
+ customManualOverrideClearText: { attribute: 'custom-manual-override-clear-text', type: String },
35
35
  /**
36
36
  * @type {boolean}
37
37
  */
@@ -40,51 +40,51 @@ export class D2LGradeResultPresentational extends LocalizeLabsElement(LitElement
40
40
  * The text that is inside of the tooltip when hovering over the grades button
41
41
  * @type {string}
42
42
  */
43
- gradeButtonTooltip: { type: String },
43
+ gradeButtonTooltip: { attribute: 'grade-button-tooltip', type: String },
44
44
  /**
45
45
  * Specifies the type of grade that the component is meant to render
46
46
  * @type {'Numeric'|'LetterGrade'}
47
47
  */
48
- gradeType: { type: String },
48
+ gradeType: { attribute: 'grade-type', type: String },
49
49
  /**
50
50
  * This property will hide the "Overall Grade" title above the component
51
51
  * @type {boolean}
52
52
  */
53
- hideTitle: { type: Boolean },
53
+ hideTitle: { attribute: 'hide-title', type: Boolean },
54
54
  /**
55
55
  * Determines whether the grades icon button is rendered
56
56
  * @type {boolean}
57
57
  */
58
- includeGradeButton: { type: Boolean },
58
+ includeGradeButton: { attribute: 'include-grade-button', type: Boolean },
59
59
  /**
60
60
  * Determines whether the reports icon button is rendered
61
61
  * @type {boolean}
62
62
  */
63
- includeReportsButton: { type: Boolean },
63
+ includeReportsButton: { attribute: 'include-reports-button', type: Boolean },
64
64
  /**
65
65
  * This property sets the label that will be used inside the aria-label and validation error tooltips
66
66
  * @type {string}
67
67
  */
68
- inputLabelText: { type: String },
68
+ inputLabelText: { attribute: 'input-label-text', type: String },
69
69
  /**
70
70
  * Set to true if the user is currently manually overriding the grade. This will display the button to 'Clear Manual Override'.
71
71
  * @type {boolean}
72
72
  */
73
- isManualOverrideActive: { type: Boolean },
73
+ isManualOverrideActive: { attribute: 'is-manual-override-active', type: Boolean },
74
74
  /**
75
75
  * @type {number}
76
76
  */
77
- labelHeadingLevel: { type: Number },
77
+ labelHeadingLevel: { attribute: 'label-heading-level', type: Number },
78
78
  /**
79
79
  * The text that appears above the component
80
80
  * @type {string}
81
81
  */
82
- labelText: { type: String },
82
+ labelText: { attribute: 'label-text', type: String },
83
83
  /**
84
84
  * A dictionary where the key is a unique id and the value is an object containing the LetterGrade text and the PercentStart
85
85
  * @type {object}
86
86
  */
87
- letterGradeOptions: { type: Object },
87
+ letterGradeOptions: { attribute: 'letter-grade-options', type: Object },
88
88
  /**
89
89
  * Set to true if the user does not have permissions to edit the grade
90
90
  * @type {boolean}
@@ -94,7 +94,7 @@ export class D2LGradeResultPresentational extends LocalizeLabsElement(LitElement
94
94
  * The text that is inside of the tooltip when hovering over the reports button
95
95
  * @type {string}
96
96
  */
97
- reportsButtonTooltip: { type: String },
97
+ reportsButtonTooltip: { attribute: 'reports-button-tooltip', type: String },
98
98
  /**
99
99
  * Set to true if an undefined/blank grade is not considered valid
100
100
  * @type {boolean}
@@ -104,27 +104,27 @@ export class D2LGradeResultPresentational extends LocalizeLabsElement(LitElement
104
104
  * The denominator of the numeric score that is given
105
105
  * @type {number}
106
106
  */
107
- scoreDenominator: { type: Number },
107
+ scoreDenominator: { attribute: 'score-denominator', type: Number },
108
108
  /**
109
109
  * The numerator of the numeric score that is given
110
110
  * @type {number}
111
111
  */
112
- scoreNumerator: { type: Number, converter: numberConverter },
112
+ scoreNumerator: { attribute: 'score-numerator', type: Number, converter: numberConverter },
113
113
  /**
114
114
  * The current selected letter grade of the options given
115
115
  * @type {string}
116
116
  */
117
- selectedLetterGrade: { type: String },
117
+ selectedLetterGrade: { attribute: 'selected-letter-grade', type: String },
118
118
  /**
119
119
  * Set to true if displaying a negative grade that has been floored at 0
120
120
  * @type {boolean}
121
121
  */
122
- showFlooredScoreWarning: { type: Boolean },
122
+ showFlooredScoreWarning: { attribute: 'show-floored-score-warning', type: Boolean },
123
123
  /**
124
124
  * This property will show the given text under the title
125
125
  * @type {string}
126
126
  */
127
- subtitleText: { type: String },
127
+ subtitleText: { attribute: 'subtitle-text', type: String },
128
128
  /**
129
129
  * @type {object}
130
130
  */
package/src/lang/ar.js CHANGED
@@ -17,10 +17,10 @@ export default {
17
17
  "components:attributePicker:removeValue": "انقر، أو اضغط على مسافة للخلف، أو اضغط على مفتاح الحذف لإزالة العنصر {value}", // Label to inform user how they can remove the given value
18
18
  "components:checkboxDrawer:checkboxCollapsed": "تم طي خانة الاختيار", // Read by screen readers when focusing the collapsed (unchecked) checkbox, with the inner content hidden
19
19
  "components:checkboxDrawer:checkboxExpanded": "تم توسيع خانة الاختيار", // Read by screen readers when focusing the expanded (checked) checkbox, with the inner content shown
20
- "components:fileUploader:file_upload_text": "السحب والإفلات أو",
21
20
  "components:fileUploader:browse": "استعراض",
22
21
  "components:fileUploader:browse_files": "استعراض الملفات",
23
22
  "components:fileUploader:choose_one_file_to_upload": "اختيار ملف لتحميله",
23
+ "components:fileUploader:file_upload_text": "السحب والإفلات أو",
24
24
  "components:gradeResult:cannotBeNegative": "(لا يمكن أن يكون أقل من 0)",
25
25
  "components:gradeResult:clearManualOverride": "مسح التجاوز اليدوي",
26
26
  "components:gradeResult:gradeScoreLabel": "درجة العلامة",
@@ -70,7 +70,7 @@ export default {
70
70
  "components:optInFlyout:feedbackReasonJustCheckingSomething": "أرجع للتحقق من أمر ما فحسب",
71
71
  "components:optInFlyout:feedbackReasonLabel": "هلا أخبرتنا بسبب رجوعك إلى الإصدار القديم؟",
72
72
  "components:optInFlyout:feedbackReasonMissingFeature": "لا يتضمن ميزة أستخدمها",
73
- "components:optInFlyout:feedbackReasonNotReadyForSomethingNew": "ليس الوقت مناسبًا لتجربة هذا الإصدار",
73
+ "components:optInFlyout:feedbackReasonNotReadyForSomethingNew": "ليس الوقت مناسبًا بالنسبة إليّ لتجربة هذا الإصدار",
74
74
  "components:optInFlyout:feedbackReasonOther": "غير ذلك",
75
75
  "components:optInFlyout:feedbackReasonPreferOldExperience": "أعتقد أن الإصدار القديم يوفر تجربة أفضل",
76
76
  "components:optInFlyout:feedbackTitle": "أخبرنا كيف يمكننا تحسين أدائنا!",
@@ -83,33 +83,33 @@ export default {
83
83
  "components:optInFlyout:turnOn": "التشغيل",
84
84
  "components:optInFlyout:tutorialAndHelpMessage": "شاهد *الدروس التعليمية* الخاصة بنا أو اقرأ ~مستندات التعليمات الخاصة بنا~ للبدء!",
85
85
  "components:optInFlyout:tutorialMessage": "شاهد *الدروس التعليمية* الخاصة بنا لمساعدتك على البدء!",
86
+ "components:ouFilter:orgUnitFilter:name": "الوحدة التنظيمية",
86
87
  "components:ouFilter:orgUnitFilter:nameAllSelected": "الوحدة التنظيمية: الكل",
87
88
  "components:ouFilter:orgUnitFilter:nameSomeSelected": "الوحدة التنظيمية: تم تطبيق التحديدات",
88
- "components:ouFilter:orgUnitFilter:name": "الوحدة التنظيمية",
89
89
  "components:ouFilter:treeFilter:nodeName": "{orgUnitName} (المعرّف: {id})",
90
90
  "components:ouFilter:treeFilter:nodeName:root": "الجذر",
91
- "components:ouFilter:treeSelector:filterBy": "التصفية حسب",
92
- "components:ouFilter:treeSelector:selectAllLabel": "تحديد الكل",
91
+ "components:ouFilter:treeSelector:arrowLabel:closed": "توسيع {name} عند المستوى {level}، فرع من {parentName}",
92
+ "components:ouFilter:treeSelector:arrowLabel:open": "طي {name} عند المستوى {level}، فرع من {parentName}",
93
93
  "components:ouFilter:treeSelector:clearLabel": "مسح",
94
- "components:ouFilter:treeSelector:searchLabel": "بحث",
94
+ "components:ouFilter:treeSelector:dropdownAction": "فتح عامل التصفية {name}",
95
+ "components:ouFilter:treeSelector:filterBy": "التصفية حسب",
95
96
  "components:ouFilter:treeSelector:loadMoreLabel": "تحميل المزيد",
96
- "components:ouFilter:treeSelector:noSearchResults": "ما من نتائج بحث",
97
97
  "components:ouFilter:treeSelector:noFiltersAvailable": "ما من عوامل تصفية متوفرة",
98
+ "components:ouFilter:treeSelector:noSearchResults": "ما من نتائج بحث",
99
+ "components:ouFilter:treeSelector:node:ariaLabel": "{name}، فرع من {parentName}،",
98
100
  "components:ouFilter:treeSelector:parentLoadMore:ariaLabel": "تحميل المزيد من الوحدات التنظيمية الفرع",
101
+ "components:ouFilter:treeSelector:searchLabel": "بحث",
99
102
  "components:ouFilter:treeSelector:searchLoadMore:ariaLabel": "تحميل المزيد من نتائج البحث",
100
103
  "components:ouFilter:treeSelector:searchPlaceholder": "بحث...",
101
- "components:ouFilter:treeSelector:dropdownAction": "فتح عامل التصفية {name}",
102
- "components:ouFilter:treeSelector:arrowLabel:closed": "توسيع {name} عند المستوى {level}، فرع من {parentName}",
103
- "components:ouFilter:treeSelector:arrowLabel:open": "طي {name} عند المستوى {level}، فرع من {parentName}",
104
- "components:ouFilter:treeSelector:node:ariaLabel": "{name}، فرع من {parentName}،",
104
+ "components:ouFilter:treeSelector:selectAllLabel": "تحديد الكل",
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": "التالي",
112
- "components:wizard:stepper.defaults.restart": "إعادة تشغيل",
111
+ "components:wizard:next.button.tooltip": "المتابعة إلى الخطوة التالية",
113
112
  "components:wizard:restart.button.tooltip": "العودة إلى الخطوة الأولى",
114
- "components:wizard:next.button.tooltip": "المتابعة إلى الخطوة التالية"
113
+ "components:wizard:stepper.defaults.next": "التالي",
114
+ "components:wizard:stepper.defaults.restart": "إعادة تشغيل"
115
115
  };
package/src/lang/cy.js CHANGED
@@ -17,10 +17,10 @@ export default {
17
17
  "components:attributePicker:removeValue": "Cliciwch, pwyswch yn ôl, neu pwyswch y fysell dileu i dynnu’r eitem {value}", // Label to inform user how they can remove the given value
18
18
  "components:checkboxDrawer:checkboxCollapsed": "Wedi crebachu blwch ticio", // Read by screen readers when focusing the collapsed (unchecked) checkbox, with the inner content hidden
19
19
  "components:checkboxDrawer:checkboxExpanded": "Wedi ehangu blwch ticio", // Read by screen readers when focusing the expanded (checked) checkbox, with the inner content shown
20
- "components:fileUploader:file_upload_text": "Llusgo a gollwng neu",
21
20
  "components:fileUploader:browse": "pori",
22
21
  "components:fileUploader:browse_files": "Pori Ffeiliau",
23
22
  "components:fileUploader:choose_one_file_to_upload": "Dewiswch un ffeil i’w huwchlwytho",
23
+ "components:fileUploader:file_upload_text": "Llusgo a gollwng neu",
24
24
  "components:gradeResult:cannotBeNegative": "(ni all fod yn llai na 0)",
25
25
  "components:gradeResult:clearManualOverride": "Clirio Trosysgrifo â Llaw",
26
26
  "components:gradeResult:gradeScoreLabel": "Sgôr gradd",
@@ -83,33 +83,33 @@ export default {
83
83
  "components:optInFlyout:turnOn": "Trowch e ymlaen",
84
84
  "components:optInFlyout:tutorialAndHelpMessage": "Gwyliwch ein *tiwtorialau* neu darllenwch ein ~dogfennaeth cymorth~ i gychwyn arni!",
85
85
  "components:optInFlyout:tutorialMessage": "Gwyliwch ein *tiwtorialau* i’ch helpu i gychwyn arni!",
86
+ "components:ouFilter:orgUnitFilter:name": "Uned Sefydliad",
86
87
  "components:ouFilter:orgUnitFilter:nameAllSelected": "Uned Sefydliad: Pob un",
87
88
  "components:ouFilter:orgUnitFilter:nameSomeSelected": "Uned Sefydliad: Dewisiadau wedi’u Gweithredu",
88
- "components:ouFilter:orgUnitFilter:name": "Uned Sefydliad",
89
89
  "components:ouFilter:treeFilter:nodeName": "{orgUnitName} (Id: {id})",
90
90
  "components:ouFilter:treeFilter:nodeName:root": "gwraidd",
91
- "components:ouFilter:treeSelector:filterBy": "Hidlo yn ôl",
92
- "components:ouFilter:treeSelector:selectAllLabel": "Dewis Popeth",
91
+ "components:ouFilter:treeSelector:arrowLabel:closed": "Ehangu {name} ar lefel {level}, plentyn {parentName}",
92
+ "components:ouFilter:treeSelector:arrowLabel:open": "Crebachu {name} ar lefel {level}, plentyn {parentName}",
93
93
  "components:ouFilter:treeSelector:clearLabel": "Clirio",
94
- "components:ouFilter:treeSelector:searchLabel": "Chwilio",
94
+ "components:ouFilter:treeSelector:dropdownAction": "Agor yr hidlydd {name}",
95
+ "components:ouFilter:treeSelector:filterBy": "Hidlo yn ôl",
95
96
  "components:ouFilter:treeSelector:loadMoreLabel": "Llwytho Mwy",
96
- "components:ouFilter:treeSelector:noSearchResults": "Dim canlyniadau chwilio",
97
97
  "components:ouFilter:treeSelector:noFiltersAvailable": "Dim hidlyddion ar gael",
98
+ "components:ouFilter:treeSelector:noSearchResults": "Dim canlyniadau chwilio",
99
+ "components:ouFilter:treeSelector:node:ariaLabel": "{name}, plentyn {parentName},",
98
100
  "components:ouFilter:treeSelector:parentLoadMore:ariaLabel": "Llwytho mwy o unedau sefydliad plant",
101
+ "components:ouFilter:treeSelector:searchLabel": "Chwilio",
99
102
  "components:ouFilter:treeSelector:searchLoadMore:ariaLabel": "Llwytho mwy o ganlyniadau chwilio",
100
103
  "components:ouFilter:treeSelector:searchPlaceholder": "Chwilio...",
101
- "components:ouFilter:treeSelector:dropdownAction": "Agor yr hidlydd {name}",
102
- "components:ouFilter:treeSelector:arrowLabel:closed": "Ehangu {name} ar lefel {level}, plentyn {parentName}",
103
- "components:ouFilter:treeSelector:arrowLabel:open": "Crebachu {name} ar lefel {level}, plentyn {parentName}",
104
- "components:ouFilter:treeSelector:node:ariaLabel": "{name}, plentyn {parentName},",
104
+ "components:ouFilter:treeSelector:selectAllLabel": "Dewis Popeth",
105
105
  "components:pagination:amountPerPage": "{count} fesul tudalen",
106
106
  "components:pagination:currentPage": "Rhif tudalen {pageNumber} o {maxPageNumber}",
107
107
  "components:pagination:nextPage": "Tudalen nesaf",
108
108
  "components:pagination:previousPage": "Y dudalen flaenorol",
109
109
  "components:pagination:resultsPerPage": "Canlyniadau fesul tudalen",
110
110
  "components:wizard:aria.steplabel": "Cam {currentStep} o {totalSteps}",
111
- "components:wizard:stepper.defaults.next": "Nesaf",
112
- "components:wizard:stepper.defaults.restart": "Ailddechrau",
111
+ "components:wizard:next.button.tooltip": "Parhau i’r cam nesaf",
113
112
  "components:wizard:restart.button.tooltip": "Yn ôl i’r cam cyntaf",
114
- "components:wizard:next.button.tooltip": "Parhau i'r cam nesaf"
113
+ "components:wizard:stepper.defaults.next": "Nesaf",
114
+ "components:wizard:stepper.defaults.restart": "Ailddechrau"
115
115
  };
package/src/lang/da.js CHANGED
@@ -17,10 +17,10 @@ export default {
17
17
  "components:attributePicker:removeValue": "Klik, tryk på tilbagetasten, eller tryk på slettasten for at fjerne element {value}", // Label to inform user how they can remove the given value
18
18
  "components:checkboxDrawer:checkboxCollapsed": "Afkrydsningsfelt skjult", // Read by screen readers when focusing the collapsed (unchecked) checkbox, with the inner content hidden
19
19
  "components:checkboxDrawer:checkboxExpanded": "Afkrydsningsfelt udvidet", // Read by screen readers when focusing the expanded (checked) checkbox, with the inner content shown
20
- "components:fileUploader:file_upload_text": "Træk og slip eller",
21
20
  "components:fileUploader:browse": "gennemse",
22
21
  "components:fileUploader:browse_files": "Gennemse filer",
23
22
  "components:fileUploader:choose_one_file_to_upload": "Vælg en fil til upload",
23
+ "components:fileUploader:file_upload_text": "Træk og slip eller",
24
24
  "components:gradeResult:cannotBeNegative": "(må ikke være mindre end 0)",
25
25
  "components:gradeResult:clearManualOverride": "Ryd manuel tilsidesættelse",
26
26
  "components:gradeResult:gradeScoreLabel": "Karakterscore",
@@ -83,33 +83,33 @@ export default {
83
83
  "components:optInFlyout:turnOn": "Slå den til",
84
84
  "components:optInFlyout:tutorialAndHelpMessage": "Se vores *selvstudier*, eller læs vores ~hjælp-dokumentation~ for at komme i gang!",
85
85
  "components:optInFlyout:tutorialMessage": "Se vores *selvstudier* for at komme i gang!",
86
+ "components:ouFilter:orgUnitFilter:name": "Organisationsenhed",
86
87
  "components:ouFilter:orgUnitFilter:nameAllSelected": "Organisationsenhed: Alle",
87
88
  "components:ouFilter:orgUnitFilter:nameSomeSelected": "Organisationsenhed: Valgte anvendt",
88
- "components:ouFilter:orgUnitFilter:name": "Organisationsenhed",
89
89
  "components:ouFilter:treeFilter:nodeName": "{orgUnitName} (Id: {id})",
90
90
  "components:ouFilter:treeFilter:nodeName:root": "rod",
91
- "components:ouFilter:treeSelector:filterBy": "Filtrer efter",
92
- "components:ouFilter:treeSelector:selectAllLabel": "Vælg alle",
91
+ "components:ouFilter:treeSelector:arrowLabel:closed": "Udvid {name} på niveau {level}, underordnet til {parentName}",
92
+ "components:ouFilter:treeSelector:arrowLabel:open": "Skjul {name} på niveau {level}, underordnet til {parentName}",
93
93
  "components:ouFilter:treeSelector:clearLabel": "Ryd",
94
- "components:ouFilter:treeSelector:searchLabel": "Søg",
94
+ "components:ouFilter:treeSelector:dropdownAction": "Åbn filteret {name}",
95
+ "components:ouFilter:treeSelector:filterBy": "Filtrer efter",
95
96
  "components:ouFilter:treeSelector:loadMoreLabel": "Indlæs flere",
96
- "components:ouFilter:treeSelector:noSearchResults": "Ingen søgeresultater",
97
97
  "components:ouFilter:treeSelector:noFiltersAvailable": "Ingen tilgængelige filtre",
98
+ "components:ouFilter:treeSelector:noSearchResults": "Ingen søgeresultater",
99
+ "components:ouFilter:treeSelector:node:ariaLabel": "{name}, underordnet til {parentName},",
98
100
  "components:ouFilter:treeSelector:parentLoadMore:ariaLabel": "Indlæs flere underordnede organisationsenheder",
101
+ "components:ouFilter:treeSelector:searchLabel": "Søg",
99
102
  "components:ouFilter:treeSelector:searchLoadMore:ariaLabel": "Indlæs flere søgeresultater",
100
103
  "components:ouFilter:treeSelector:searchPlaceholder": "Søg ...",
101
- "components:ouFilter:treeSelector:dropdownAction": "Åbn filteret {name}",
102
- "components:ouFilter:treeSelector:arrowLabel:closed": "Udvid {name} på niveau {level}, underordnet til {parentName}",
103
- "components:ouFilter:treeSelector:arrowLabel:open": "Skjul {name} på niveau {level}, underordnet til {parentName}",
104
- "components:ouFilter:treeSelector:node:ariaLabel": "{name}, underordnet til {parentName},",
104
+ "components:ouFilter:treeSelector:selectAllLabel": "Vælg alle",
105
105
  "components:pagination:amountPerPage": "{count} pr. side",
106
106
  "components:pagination:currentPage": "Sidenummer {pageNumber} af {maxPageNumber}",
107
107
  "components:pagination:nextPage": "Næste side",
108
108
  "components:pagination:previousPage": "Forrige side",
109
109
  "components:pagination:resultsPerPage": "Resultater pr. side",
110
110
  "components:wizard:aria.steplabel": "Trin {currentStep} af {totalSteps}",
111
- "components:wizard:stepper.defaults.next": "Next",
112
- "components:wizard:stepper.defaults.restart": "Genstart",
111
+ "components:wizard:next.button.tooltip": "Fortsæt til næste trin",
113
112
  "components:wizard:restart.button.tooltip": "Tilbage til første trin",
114
- "components:wizard:next.button.tooltip": "Fortsæt til næste trin"
113
+ "components:wizard:stepper.defaults.next": "Next",
114
+ "components:wizard:stepper.defaults.restart": "Genstart"
115
115
  };
package/src/lang/de.js CHANGED
@@ -17,10 +17,10 @@ export default {
17
17
  "components:attributePicker:removeValue": "Klicken Sie, drücken Sie die Rücktaste, oder drücken Sie die Entfernen-Taste, um das Element {value} zu entfernen", // Label to inform user how they can remove the given value
18
18
  "components:checkboxDrawer:checkboxCollapsed": "Kontrollkästchen ausgeblendet", // Read by screen readers when focusing the collapsed (unchecked) checkbox, with the inner content hidden
19
19
  "components:checkboxDrawer:checkboxExpanded": "Kontrollkästchen eingeblendet", // Read by screen readers when focusing the expanded (checked) checkbox, with the inner content shown
20
- "components:fileUploader:file_upload_text": "Mit Drag-and-drop verschieben oder",
21
20
  "components:fileUploader:browse": "Durchsuchen",
22
21
  "components:fileUploader:browse_files": "Dateien durchsuchen",
23
22
  "components:fileUploader:choose_one_file_to_upload": "Eine Datei zum Hochladen auswählen",
23
+ "components:fileUploader:file_upload_text": "Mit Drag-and-drop verschieben oder",
24
24
  "components:gradeResult:cannotBeNegative": "(darf nicht kleiner als 0 sein)",
25
25
  "components:gradeResult:clearManualOverride": "Manuelles Überschreiben löschen",
26
26
  "components:gradeResult:gradeScoreLabel": "Punktzahl",
@@ -70,7 +70,7 @@ export default {
70
70
  "components:optInFlyout:feedbackReasonJustCheckingSomething": "Ich wechsele nur zurück, um etwas nachzusehen",
71
71
  "components:optInFlyout:feedbackReasonLabel": "Mögen Sie uns mitteilen, warum Sie wieder zurückwechseln?",
72
72
  "components:optInFlyout:feedbackReasonMissingFeature": "Es fehlt eine Funktion, die ich nutze",
73
- "components:optInFlyout:feedbackReasonNotReadyForSomethingNew": "Es ist kein guter Zeitpunkt für mich, um diese Version auszuprobieren",
73
+ "components:optInFlyout:feedbackReasonNotReadyForSomethingNew": "Es ist kein guter Zeitpunkt für mich, diese Version auszuprobieren",
74
74
  "components:optInFlyout:feedbackReasonOther": "Andere",
75
75
  "components:optInFlyout:feedbackReasonPreferOldExperience": "Ich finde, dass die alte Version ein besseres Erlebnis bietet",
76
76
  "components:optInFlyout:feedbackTitle": "Sagen Sie uns, wie wir uns verbessern können!",
@@ -83,33 +83,33 @@ export default {
83
83
  "components:optInFlyout:turnOn": "Einschalten",
84
84
  "components:optInFlyout:tutorialAndHelpMessage": "Sehen Sie sich unsere *Tutorials* an, oder lesen Sie unsere ~Hilfe-Dokumentation~, um zu beginnen!",
85
85
  "components:optInFlyout:tutorialMessage": "Unsere *Tutorials* helfen Ihnen beim Start!",
86
+ "components:ouFilter:orgUnitFilter:name": "Organisationseinheit",
86
87
  "components:ouFilter:orgUnitFilter:nameAllSelected": "Organisationseinheit: Alle",
87
88
  "components:ouFilter:orgUnitFilter:nameSomeSelected": "Organisationseinheit: Auswahl",
88
- "components:ouFilter:orgUnitFilter:name": "Organisationseinheit",
89
89
  "components:ouFilter:treeFilter:nodeName": "{orgUnitName} (ID: {id})",
90
90
  "components:ouFilter:treeFilter:nodeName:root": "Stamm",
91
- "components:ouFilter:treeSelector:filterBy": "Filtern nach",
92
- "components:ouFilter:treeSelector:selectAllLabel": "Alle auswählen",
91
+ "components:ouFilter:treeSelector:arrowLabel:closed": "{name} auf Ebene {level}, untergeordnetes Element von {parentName}, erweitern",
92
+ "components:ouFilter:treeSelector:arrowLabel:open": "{name} auf Ebene {level}, untergeordnetes Element von {parentName}, minimieren",
93
93
  "components:ouFilter:treeSelector:clearLabel": "Löschen",
94
- "components:ouFilter:treeSelector:searchLabel": "Suchen",
94
+ "components:ouFilter:treeSelector:dropdownAction": "Filter {name} öffnen",
95
+ "components:ouFilter:treeSelector:filterBy": "Filtern nach",
95
96
  "components:ouFilter:treeSelector:loadMoreLabel": "Mehr laden",
96
- "components:ouFilter:treeSelector:noSearchResults": "Keine Suchergebnisse",
97
97
  "components:ouFilter:treeSelector:noFiltersAvailable": "Keine verfügbaren Filter",
98
+ "components:ouFilter:treeSelector:noSearchResults": "Keine Suchergebnisse",
99
+ "components:ouFilter:treeSelector:node:ariaLabel": "{name}, untergeordnetes Element von {parentName},",
98
100
  "components:ouFilter:treeSelector:parentLoadMore:ariaLabel": "Weitere untergeordnete Organisationseinheiten laden",
101
+ "components:ouFilter:treeSelector:searchLabel": "Suchen",
99
102
  "components:ouFilter:treeSelector:searchLoadMore:ariaLabel": "Weitere Suchergebnisse laden",
100
103
  "components:ouFilter:treeSelector:searchPlaceholder": "Suchen...",
101
- "components:ouFilter:treeSelector:dropdownAction": "Filter {name} öffnen",
102
- "components:ouFilter:treeSelector:arrowLabel:closed": "{name} auf Ebene {level}, untergeordnetes Element von {parentName}, erweitern",
103
- "components:ouFilter:treeSelector:arrowLabel:open": "{name} auf Ebene {level}, untergeordnetes Element von {parentName}, minimieren",
104
- "components:ouFilter:treeSelector:node:ariaLabel": "{name}, untergeordnetes Element von {parentName},",
104
+ "components:ouFilter:treeSelector:selectAllLabel": "Alle auswählen",
105
105
  "components:pagination:amountPerPage": "{count} pro Seite",
106
106
  "components:pagination:currentPage": "Seitennummer {pageNumber} von {maxPageNumber}",
107
107
  "components:pagination:nextPage": "Nächste Seite",
108
108
  "components:pagination:previousPage": "Vorherige Seite",
109
109
  "components:pagination:resultsPerPage": "Ergebnisse pro Seite",
110
110
  "components:wizard:aria.steplabel": "Schritt {currentStep} von {totalSteps}",
111
- "components:wizard:stepper.defaults.next": "Weiter",
112
- "components:wizard:stepper.defaults.restart": "Neu starten",
111
+ "components:wizard:next.button.tooltip": "Fahren Sie mit dem nächsten Schritt fort",
113
112
  "components:wizard:restart.button.tooltip": "Zurück zum ersten Schritt",
114
- "components:wizard:next.button.tooltip": "Fahren Sie mit dem nächsten Schritt fort"
113
+ "components:wizard:stepper.defaults.next": "Weiter",
114
+ "components:wizard:stepper.defaults.restart": "Neu starten"
115
115
  };
package/src/lang/en-gb.js CHANGED
@@ -17,10 +17,10 @@ export default {
17
17
  "components:attributePicker:removeValue": "Click, press backspace or press delete key to remove item {value}", // Label to inform user how they can remove the given value
18
18
  "components:checkboxDrawer:checkboxCollapsed": "Tick box collapsed", // Read by screen readers when focusing the collapsed (unchecked) checkbox, with the inner content hidden
19
19
  "components:checkboxDrawer:checkboxExpanded": "Tick box expanded", // Read by screen readers when focusing the expanded (checked) checkbox, with the inner content shown
20
- "components:fileUploader:file_upload_text": "Drag and drop or",
21
20
  "components:fileUploader:browse": "browse",
22
21
  "components:fileUploader:browse_files": "Browse Files",
23
22
  "components:fileUploader:choose_one_file_to_upload": "Choose one file to upload",
23
+ "components:fileUploader:file_upload_text": "Drag and drop or",
24
24
  "components:gradeResult:cannotBeNegative": "(cannot be less than 0)",
25
25
  "components:gradeResult:clearManualOverride": "Clear Manual Override",
26
26
  "components:gradeResult:gradeScoreLabel": "Grade score",
@@ -83,33 +83,33 @@ export default {
83
83
  "components:optInFlyout:turnOn": "Turn it on",
84
84
  "components:optInFlyout:tutorialAndHelpMessage": "Watch our *tutorials* or read our ~help documentation~ to get started!",
85
85
  "components:optInFlyout:tutorialMessage": "Watch our *tutorials* to help you get started!",
86
+ "components:ouFilter:orgUnitFilter:name": "Org Unit",
86
87
  "components:ouFilter:orgUnitFilter:nameAllSelected": "Org Unit: All",
87
88
  "components:ouFilter:orgUnitFilter:nameSomeSelected": "Org Unit: Selections Applied",
88
- "components:ouFilter:orgUnitFilter:name": "Org Unit",
89
89
  "components:ouFilter:treeFilter:nodeName": "{orgUnitName} (Id: {id})",
90
90
  "components:ouFilter:treeFilter:nodeName:root": "root",
91
- "components:ouFilter:treeSelector:filterBy": "Filter By",
92
- "components:ouFilter:treeSelector:selectAllLabel": "Select all",
91
+ "components:ouFilter:treeSelector:arrowLabel:closed": "Expand {name} at level {level}, child of {parentName}",
92
+ "components:ouFilter:treeSelector:arrowLabel:open": "Collapse {name} at level {level}, child of {parentName}",
93
93
  "components:ouFilter:treeSelector:clearLabel": "Clear",
94
- "components:ouFilter:treeSelector:searchLabel": "Search",
94
+ "components:ouFilter:treeSelector:dropdownAction": "Open {name} filter",
95
+ "components:ouFilter:treeSelector:filterBy": "Filter By",
95
96
  "components:ouFilter:treeSelector:loadMoreLabel": "Load More",
96
- "components:ouFilter:treeSelector:noSearchResults": "No search results",
97
97
  "components:ouFilter:treeSelector:noFiltersAvailable": "No available filters",
98
+ "components:ouFilter:treeSelector:noSearchResults": "No search results",
99
+ "components:ouFilter:treeSelector:node:ariaLabel": "{name}, child of {parentName},",
98
100
  "components:ouFilter:treeSelector:parentLoadMore:ariaLabel": "Load more child org units",
101
+ "components:ouFilter:treeSelector:searchLabel": "Search",
99
102
  "components:ouFilter:treeSelector:searchLoadMore:ariaLabel": "Load more search results",
100
103
  "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},",
104
+ "components:ouFilter:treeSelector:selectAllLabel": "Select all",
105
105
  "components:pagination:amountPerPage": "{count} per page",
106
106
  "components:pagination:currentPage": "Page number {pageNumber} of {maxPageNumber}",
107
107
  "components:pagination:nextPage": "Next page",
108
108
  "components:pagination:previousPage": "Previous page",
109
109
  "components:pagination:resultsPerPage": "Results per page",
110
110
  "components:wizard:aria.steplabel": "Step {currentStep} of {totalSteps}",
111
- "components:wizard:stepper.defaults.next": "Next",
112
- "components:wizard:stepper.defaults.restart": "Restart",
111
+ "components:wizard:next.button.tooltip": "Proceed to next step",
113
112
  "components:wizard:restart.button.tooltip": "Back to first step",
114
- "components:wizard:next.button.tooltip": "Proceed to next step"
113
+ "components:wizard:stepper.defaults.next": "Next",
114
+ "components:wizard:stepper.defaults.restart": "Restart"
115
115
  };