@brightspace-ui/core 3.148.2 → 3.148.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/icons/images/tier1/new-window.svg +2 -2
- package/components/list/demo/demo-list-nav.js +2 -1
- package/components/list/demo/demo-list-nested.js +2 -1
- package/components/list/list-item-generic-layout.js +21 -4
- package/generated/icons/tier1/new-window.js +2 -2
- package/lang/ar.js +32 -32
- package/lang/cy.js +33 -33
- package/lang/da.js +32 -32
- package/lang/de.js +33 -33
- package/lang/en-gb.js +33 -33
- package/lang/en.js +31 -31
- package/lang/es-es.js +31 -31
- package/lang/es.js +33 -33
- package/lang/fr-fr.js +31 -31
- package/lang/fr.js +31 -31
- package/lang/haw.js +33 -33
- package/lang/hi.js +33 -33
- package/lang/ja.js +30 -30
- package/lang/ko.js +30 -30
- package/lang/mi.js +33 -33
- package/lang/nl.js +31 -31
- package/lang/pt.js +31 -31
- package/lang/sv.js +31 -31
- package/lang/tr.js +31 -31
- package/lang/zh-cn.js +32 -32
- package/lang/zh-tw.js +31 -31
- package/package.json +1 -1
@@ -1,4 +1,4 @@
|
|
1
1
|
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18" mirror-in-rtl="true">
|
2
|
-
<path fill="#
|
3
|
-
|
2
|
+
<path fill="#494C4E" d="m16 7.586-2.05-2.05-4.243 4.242a1 1 0 1 1-1.414-1.414l4.243-4.243L10.414 2H16v5.586Z"/>
|
3
|
+
<path fill="#494C4E" d="M15 12v2a2.006 2.006 0 0 1-2 2H4a2.006 2.006 0 0 1-2-2V5a2.006 2.006 0 0 1 2-2h2a1 1 0 0 1 0 2H4.5a.5.5 0 0 0-.5.5v8a.5.5 0 0 0 .5.5h8a.5.5 0 0 0 .5-.5V12a1 1 0 0 1 2 0Z"/>
|
4
4
|
</svg>
|
@@ -123,13 +123,14 @@ class ListDemoNav extends LitElement {
|
|
123
123
|
|
124
124
|
this.requestUpdate();
|
125
125
|
await this.updateComplete;
|
126
|
+
await this.updateComplete;
|
126
127
|
|
127
128
|
if (e.detail.keyboardActive) {
|
128
129
|
setTimeout(() => {
|
129
130
|
if (!this.shadowRoot) return;
|
130
131
|
const newItem = this.shadowRoot.querySelector('d2l-list').getListItemByKey(sourceListItems[0].key);
|
131
132
|
newItem.activateDragHandle();
|
132
|
-
});
|
133
|
+
}, 10);
|
133
134
|
}
|
134
135
|
}
|
135
136
|
|
@@ -134,13 +134,14 @@ class ListDemoNested extends LitElement {
|
|
134
134
|
|
135
135
|
this.requestUpdate();
|
136
136
|
await this.updateComplete;
|
137
|
+
await this.updateComplete;
|
137
138
|
|
138
139
|
if (e.detail.keyboardActive) {
|
139
140
|
setTimeout(() => {
|
140
141
|
if (!this.shadowRoot) return;
|
141
142
|
const newItem = this.shadowRoot.querySelector('d2l-list').getListItemByKey(sourceListItems[0].key);
|
142
143
|
newItem.activateDragHandle();
|
143
|
-
});
|
144
|
+
}, 10);
|
144
145
|
}
|
145
146
|
|
146
147
|
}
|
@@ -1,6 +1,7 @@
|
|
1
1
|
import { css, html, LitElement } from 'lit';
|
2
2
|
import { findComposedAncestor, isComposedAncestor } from '../../helpers/dom.js';
|
3
3
|
import { getComposedActiveElement, getFirstFocusableDescendant, getFocusableDescendants, getLastFocusableDescendant, getNextFocusable, getPreviousFocusable } from '../../helpers/focus.js';
|
4
|
+
import { getFlag } from '../../helpers/flags.js';
|
4
5
|
import { isInteractiveDescendant } from '../../mixins/interactive/interactive-mixin.js';
|
5
6
|
import { RtlMixin } from '../../mixins/rtl/rtl-mixin.js';
|
6
7
|
|
@@ -17,6 +18,8 @@ const keyCodes = {
|
|
17
18
|
UP: 38
|
18
19
|
};
|
19
20
|
|
21
|
+
const listItemUpButtonFixFlag = getFlag('GAUD-8229-list-up-button-fix', true);
|
22
|
+
|
20
23
|
/**
|
21
24
|
* A component for generating a list item's layout with forced focus ordering and grid support.
|
22
25
|
* Focusable items placed in the "content" slot will have their focus removed; use the content-action
|
@@ -422,13 +425,27 @@ class ListItemGenericLayout extends RtlMixin(LitElement) {
|
|
422
425
|
do {
|
423
426
|
// this check needs to account for standard list-items as well as custom
|
424
427
|
nestedList = previousElement.querySelector('[slot="nested"]') || previousElement.shadowRoot.querySelector('d2l-list');
|
425
|
-
if (
|
426
|
-
|
427
|
-
if (
|
428
|
-
|
428
|
+
if (listItemUpButtonFixFlag) {
|
429
|
+
// if there is nested list and nested list content is accessible
|
430
|
+
if (nestedList && (!previousElement.expandable || (previousElement.expandable && previousElement.expanded))) {
|
431
|
+
const nestedListItems = [...nestedList.children].filter(node => node.role === 'row');
|
432
|
+
if (nestedListItems.length) {
|
433
|
+
previousElement = nestedListItems[nestedListItems.length - 1];
|
434
|
+
} else {
|
435
|
+
break;
|
436
|
+
}
|
429
437
|
} else {
|
430
438
|
break;
|
431
439
|
}
|
440
|
+
} else {
|
441
|
+
if (nestedList) {
|
442
|
+
const nestedListItems = [...nestedList.children].filter(node => node.role === 'row');
|
443
|
+
if (nestedListItems.length) {
|
444
|
+
previousElement = nestedListItems[nestedListItems.length - 1];
|
445
|
+
} else {
|
446
|
+
break;
|
447
|
+
}
|
448
|
+
}
|
432
449
|
}
|
433
450
|
} while (nestedList);
|
434
451
|
return previousElement;
|
@@ -1,6 +1,6 @@
|
|
1
1
|
// auto-generated
|
2
2
|
export const val = `<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18" mirror-in-rtl="true">
|
3
|
-
<path fill="#
|
4
|
-
|
3
|
+
<path fill="#494C4E" d="m16 7.586-2.05-2.05-4.243 4.242a1 1 0 1 1-1.414-1.414l4.243-4.243L10.414 2H16v5.586Z"/>
|
4
|
+
<path fill="#494C4E" d="M15 12v2a2.006 2.006 0 0 1-2 2H4a2.006 2.006 0 0 1-2-2V5a2.006 2.006 0 0 1 2-2h2a1 1 0 0 1 0 2H4.5a.5.5 0 0 0-.5.5v8a.5.5 0 0 0 .5.5h8a.5.5 0 0 0 .5-.5V12a1 1 0 0 1 2 0Z"/>
|
5
5
|
</svg>
|
6
6
|
`;
|
package/lang/ar.js
CHANGED
@@ -21,7 +21,6 @@ export default {
|
|
21
21
|
"components.filter.clearAllDescriptionOverride": "مسح كل عوامل التصفية لـ: {filterText}",
|
22
22
|
"components.filter.clearAnnounce": "جارٍ مسح عوامل التصفية لـ: {filterName}",
|
23
23
|
"components.filter.clearDescription": "مسح عوامل التصفية لـ: {filterName}",
|
24
|
-
"components.filter.loading": "يتم تحميل عوامل التصفية",
|
25
24
|
"components.filter.filterCountDescription":
|
26
25
|
`{number, plural,
|
27
26
|
=0 {لم يتم تطبيق عوامل تصفية.}
|
@@ -29,6 +28,7 @@ export default {
|
|
29
28
|
other {تم تطبيق {number} من عوامل التصفية.}
|
30
29
|
}`,
|
31
30
|
"components.filter.filters": "عوامل التصفية",
|
31
|
+
"components.filter.loading": "يتم تحميل عوامل التصفية",
|
32
32
|
"components.filter.noFilters": "ما من عوامل تصفية متوفرة",
|
33
33
|
"components.filter.searchResults":
|
34
34
|
`{number, plural,
|
@@ -38,23 +38,23 @@ export default {
|
|
38
38
|
}`,
|
39
39
|
"components.filter.selectedFirstListLabel": "{headerText}. تظهر عوامل التصفية المحددة أولاً.",
|
40
40
|
"components.filter.singleDimensionDescription": "التصفية حسب: {filterName}",
|
41
|
-
"components.filter-dimension-set-date-text-value.textHours":
|
42
|
-
`{num, plural,
|
43
|
-
=1 {آخر ساعة}
|
44
|
-
other {آخر {num} من الساعات}
|
45
|
-
}`,
|
46
41
|
"components.filter-dimension-set-date-text-value.textDays":
|
47
42
|
`{num, plural,
|
48
43
|
=0 {يوم}
|
49
44
|
one {آخر {num} يوم}
|
50
45
|
other {آخر {num} من الأيام}
|
51
46
|
}`,
|
47
|
+
"components.filter-dimension-set-date-text-value.textHours":
|
48
|
+
`{num, plural,
|
49
|
+
=1 {آخر ساعة}
|
50
|
+
other {آخر {num} من الساعات}
|
51
|
+
}`,
|
52
52
|
"components.filter-dimension-set-date-text-value.textMonths": "آخر {num} من الأشهر",
|
53
53
|
"components.filter-dimension-set-date-time-range-value.label": "{text}، التوسيع لاختيار التواريخ",
|
54
|
+
"components.filter-dimension-set-date-time-range-value.text": "نطاق التاريخ المخصص",
|
54
55
|
"components.filter-dimension-set-date-time-range-value.valueTextRange": "{startValue} إلى {endValue}",
|
55
|
-
"components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "بعد {startValue}",
|
56
56
|
"components.filter-dimension-set-date-time-range-value.valueTextRangeEndOnly": "قبل {endValue}",
|
57
|
-
"components.filter-dimension-set-date-time-range-value.
|
57
|
+
"components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "بعد {startValue}",
|
58
58
|
"components.form-element.defaultError": "{label} غير صالحة",
|
59
59
|
"components.form-element.defaultFieldLabel": "الحقل",
|
60
60
|
"components.form-element.input.email.typeMismatch": "البريد الإلكتروني غير صالح",
|
@@ -91,33 +91,33 @@ export default {
|
|
91
91
|
"components.input-color.backgroundColor": "لون الخلفية",
|
92
92
|
"components.input-color.foregroundColor": "لون المقدمة",
|
93
93
|
"components.input-color.none": "لا شيء",
|
94
|
+
"components.input-date.clear": "مسح",
|
95
|
+
"components.input-date.errorMaxDateOnly": "يجب أن يكون التاريخ في {maxDate} أو قبله",
|
96
|
+
"components.input-date.errorMinDateOnly": "يجب أن يكون التاريخ في {minDate} أو بعده",
|
97
|
+
"components.input-date.errorOutsideRange": "يجب أن يكون التاريخ بين {minDate} و{maxDate}",
|
98
|
+
"components.input-date.now": "الآن",
|
99
|
+
"components.input-date.openInstructions": "استخدم تنسيق التاريخ {format}. انتقل إلى الأسفل أو اضغط على Enter للوصول إلى التقويم المصغّر.",
|
100
|
+
"components.input-date.revert": "تمت إعادة {label} إلى القيمة السابقة.",
|
101
|
+
"components.input-date.today": "اليوم",
|
102
|
+
"components.input-date.useDateFormat": "استخدم تنسيق التاريخ {format}.",
|
94
103
|
"components.input-date-range.endDate": "تاريخ الانتهاء",
|
95
104
|
"components.input-date-range.errorBadInput": "يجب أن يكون تاريخ {startLabel} قبل {endLabel}",
|
96
105
|
"components.input-date-range.interactive-label": "إدخال نطاق التاريخ",
|
97
106
|
"components.input-date-range.startDate": "تاريخ البدء",
|
98
|
-
"components.input-date-time-range-to.to": "إلى",
|
99
|
-
"components.input-date-time-range.endDate": "تاريخ الانتهاء",
|
100
|
-
"components.input-date-time-range.errorBadInput": "يجب أن يكون تاريخ {startLabel} قبل {endLabel}",
|
101
|
-
"components.input-date-time-range.startDate": "تاريخ البدء",
|
102
107
|
"components.input-date-time.date": "التاريخ",
|
103
108
|
"components.input-date-time.errorMaxDateOnly": "يجب أن يكون التاريخ في {maxDate} أو قبله",
|
104
109
|
"components.input-date-time.errorMinDateOnly": "يجب أن يكون التاريخ في {minDate} أو بعده",
|
105
110
|
"components.input-date-time.errorOutsideRange": "يجب أن يكون التاريخ بين {minDate} و{maxDate}",
|
106
111
|
"components.input-date-time.time": "الوقت",
|
112
|
+
"components.input-date-time-range.endDate": "تاريخ الانتهاء",
|
113
|
+
"components.input-date-time-range.errorBadInput": "يجب أن يكون تاريخ {startLabel} قبل {endLabel}",
|
107
114
|
"components.input-date-time-range.interactive-label": "إدخال نطاق التاريخ والوقت",
|
108
|
-
"components.input-date.
|
109
|
-
"components.input-date.
|
110
|
-
"components.input-
|
111
|
-
"components.input-date.errorOutsideRange": "يجب أن يكون التاريخ بين {minDate} و{maxDate}",
|
112
|
-
"components.input-date.openInstructions": "استخدم تنسيق التاريخ {format}. انتقل إلى الأسفل أو اضغط على Enter للوصول إلى التقويم المصغّر.",
|
113
|
-
"components.input-date.now": "الآن",
|
114
|
-
"components.input-date.revert": "تمت إعادة {label} إلى القيمة السابقة.",
|
115
|
-
"components.input-date.today": "اليوم",
|
116
|
-
"components.input-date.useDateFormat": "استخدم تنسيق التاريخ {format}.",
|
117
|
-
"components.input-number.hintInteger": "يقبل هذا الحقل قيم الأعداد الصحيحة فقط (بدون أعداد عشرية)",
|
118
|
-
"components.input-number.hintDecimalDuplicate": "يوجد عدد عشري في هذا الرقم",
|
115
|
+
"components.input-date-time-range.startDate": "تاريخ البدء",
|
116
|
+
"components.input-date-time-range-to.to": "إلى",
|
117
|
+
"components.input-number.hintDecimalDuplicate": "يوجد بالفعل عدد عشري في هذا الرقم",
|
119
118
|
"components.input-number.hintDecimalIncorrectComma": "لإضافة عدد عشري، استخدم حرف الفاصلة ”,“",
|
120
119
|
"components.input-number.hintDecimalIncorrectPeriod": "لإضافة عدد عشري، استخدم حرف النقطة ”.“",
|
120
|
+
"components.input-number.hintInteger": "يقبل هذا الحقل قيم الأعداد الصحيحة فقط (بدون أعداد عشرية)",
|
121
121
|
"components.input-search.clear": "مسح البحث",
|
122
122
|
"components.input-search.defaultPlaceholder": "البحث...",
|
123
123
|
"components.input-search.search": "بحث",
|
@@ -131,13 +131,13 @@ export default {
|
|
131
131
|
"components.list-item.addItem": "إضافة عنصر",
|
132
132
|
"components.list-item-drag-handle.default": "إعادة ترتيب إجراء المادة لـ {name}",
|
133
133
|
"components.list-item-drag-handle.keyboard": "إعادة ترتيب المواد، الموضع الحالي {currentPosition} من أصل {size}. لنقل هذه المادة، اضغط على السهم المتجه إلى أعلى أو السهم المتجه إلى أسفل.",
|
134
|
-
"components.list-item-drag-handle-tooltip.title": "عناصر التحكم بلوحة المفاتيح لإعادة الترتيب:",
|
135
|
-
"components.list-item-drag-handle-tooltip.enter-key": "إدخال",
|
136
134
|
"components.list-item-drag-handle-tooltip.enter-desc": "تبديل وضع إعادة ترتيب لوحة المفاتيح.",
|
137
|
-
"components.list-item-drag-handle-tooltip.
|
138
|
-
"components.list-item-drag-handle-tooltip.up-down-desc": "نقل المادة إلى الأعلى أو الأسفل في القائمة.",
|
139
|
-
"components.list-item-drag-handle-tooltip.left-right-key": "يسار/يمين",
|
135
|
+
"components.list-item-drag-handle-tooltip.enter-key": "إدخال",
|
140
136
|
"components.list-item-drag-handle-tooltip.left-right-desc": "غيِّر مستوى التداخل.",
|
137
|
+
"components.list-item-drag-handle-tooltip.left-right-key": "يسار/يمين",
|
138
|
+
"components.list-item-drag-handle-tooltip.title": "عناصر التحكم بلوحة المفاتيح لإعادة الترتيب:",
|
139
|
+
"components.list-item-drag-handle-tooltip.up-down-desc": "نقل المادة إلى الأعلى أو الأسفل في القائمة.",
|
140
|
+
"components.list-item-drag-handle-tooltip.up-down-key": "أعلى/أسفل",
|
141
141
|
"components.menu-item-return.return": "العودة إلى القائمة السابقة.",
|
142
142
|
"components.menu-item-return.returnCurrentlyShowing": "العودة إلى القائمة السابقة. يتم عرض {menuTitle}.",
|
143
143
|
"components.meter-mixin.commaSeperatedAria": "{term1}، {term2}",
|
@@ -148,8 +148,6 @@ export default {
|
|
148
148
|
"components.more-less.more": "المزيد",
|
149
149
|
"components.object-property-list.item-placeholder-text": "عنصر نائب",
|
150
150
|
"components.overflow-group.moreActions": "مزيد من الإجراءات",
|
151
|
-
"components.pager-load-more.action": "تحميل المزيد",
|
152
|
-
"components.pager-load-more.action-with-page-size": "تحميل {count} إضافي",
|
153
151
|
"components.pageable.info":
|
154
152
|
`{count, plural,
|
155
153
|
one {{countFormatted} مادة واحد}
|
@@ -160,6 +158,8 @@ export default {
|
|
160
158
|
one {{countFormatted} من أصل {totalCountFormatted} مادة واحدة}
|
161
159
|
other {{countFormatted} من أصل {totalCountFormatted} من المواد}
|
162
160
|
}`,
|
161
|
+
"components.pager-load-more.action": "تحميل المزيد",
|
162
|
+
"components.pager-load-more.action-with-page-size": "تحميل {count} إضافي",
|
163
163
|
"components.pager-load-more.status-loading": "تحميل المزيد من المواد",
|
164
164
|
"components.selection.action-max-hint":
|
165
165
|
`{count, plural,
|
@@ -172,10 +172,10 @@ export default {
|
|
172
172
|
"components.selection.selected": "تم تحديد {count}",
|
173
173
|
"components.selection.selected-plus": "تم تحديد {count}+",
|
174
174
|
"components.selection-controls.label": "إجراءات التحديد",
|
175
|
+
"components.switch.conditions": "يجب استيفاء الشروط",
|
176
|
+
"components.switch.hidden": "مخفي",
|
175
177
|
"components.switch.visible": "مرئي",
|
176
178
|
"components.switch.visibleWithPeriod": "مرئي.",
|
177
|
-
"components.switch.hidden": "مخفي",
|
178
|
-
"components.switch.conditions": "يجب استيفاء الشروط",
|
179
179
|
"components.table-col-sort-button.addSortOrder": "التحديد لإضافة ترتيب الفرز",
|
180
180
|
"components.table-col-sort-button.changeSortOrder": "التحديد لتغيير ترتيب الفرز",
|
181
181
|
"components.table-col-sort-button.title":
|
package/lang/cy.js
CHANGED
@@ -21,7 +21,6 @@ export default {
|
|
21
21
|
"components.filter.clearAllDescriptionOverride": "Clirio pob hidlydd ar gyfer: {filterText}",
|
22
22
|
"components.filter.clearAnnounce": "Wrthi’n clirio hidlwyr ar gyfer: {filterName}",
|
23
23
|
"components.filter.clearDescription": "Wrthi’n clirio hidlwyd ar gyfer: {filterName}",
|
24
|
-
"components.filter.loading": "Wrthi’n llwytho hidlyddion",
|
25
24
|
"components.filter.filterCountDescription":
|
26
25
|
`{number, plural,
|
27
26
|
=0 {Dim hidlyddion wedi’i gweithredu.}
|
@@ -29,6 +28,7 @@ export default {
|
|
29
28
|
other {{number} hidlyddion wedi’u gweithredu.}
|
30
29
|
}`,
|
31
30
|
"components.filter.filters": "Hidlyddion",
|
31
|
+
"components.filter.loading": "Wrthi’n llwytho hidlyddion",
|
32
32
|
"components.filter.noFilters": "Dim hidlyddion ar gael",
|
33
33
|
"components.filter.searchResults":
|
34
34
|
`{number, plural,
|
@@ -38,23 +38,23 @@ export default {
|
|
38
38
|
}`,
|
39
39
|
"components.filter.selectedFirstListLabel": "{headerText}. Mae’r hidlyddion a ddewiswyd yn ymddangos gyntaf.",
|
40
40
|
"components.filter.singleDimensionDescription": "Hidlo yn ôl: {filterName}",
|
41
|
-
"components.filter-dimension-set-date-text-value.textHours":
|
42
|
-
`{num, plural,
|
43
|
-
=1 {Awr ddiwethaf}
|
44
|
-
other {{num} awr ddiwethaf}
|
45
|
-
}`,
|
46
41
|
"components.filter-dimension-set-date-text-value.textDays":
|
47
42
|
`{num, plural,
|
48
43
|
=0 {Heddiw}
|
49
44
|
one {{num} diwrnod diwethaf}
|
50
45
|
other {{num} o ddiwrnodau diwethaf}
|
51
46
|
}`,
|
47
|
+
"components.filter-dimension-set-date-text-value.textHours":
|
48
|
+
`{num, plural,
|
49
|
+
=1 {Awr ddiwethaf}
|
50
|
+
other {{num} awr ddiwethaf}
|
51
|
+
}`,
|
52
52
|
"components.filter-dimension-set-date-text-value.textMonths": "{num} o fisoedd diwethaf",
|
53
53
|
"components.filter-dimension-set-date-time-range-value.label": "{text}, ehangwch i ddewis dyddiadau",
|
54
|
+
"components.filter-dimension-set-date-time-range-value.text": "Ystod dyddiad pwrpasol",
|
54
55
|
"components.filter-dimension-set-date-time-range-value.valueTextRange": "{startValue} i {endValue}",
|
55
|
-
"components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "Ar ôl {startValue}",
|
56
56
|
"components.filter-dimension-set-date-time-range-value.valueTextRangeEndOnly": "Cyn {endValue}",
|
57
|
-
"components.filter-dimension-set-date-time-range-value.
|
57
|
+
"components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "Ar ôl {startValue}",
|
58
58
|
"components.form-element.defaultError": "Mae {label} yn annilys",
|
59
59
|
"components.form-element.defaultFieldLabel": "Maes",
|
60
60
|
"components.form-element.input.email.typeMismatch": "Nid yw’r e-bost yn ddilys",
|
@@ -91,33 +91,33 @@ export default {
|
|
91
91
|
"components.input-color.backgroundColor": "Lliw Cefndir",
|
92
92
|
"components.input-color.foregroundColor": "Lliw Blaendir",
|
93
93
|
"components.input-color.none": "Dim",
|
94
|
+
"components.input-date.clear": "Clirio",
|
95
|
+
"components.input-date.errorMaxDateOnly": "Rhaid i’r dyddiad fod cyn neu ar {maxDate}",
|
96
|
+
"components.input-date.errorMinDateOnly": "Rhaid i’r dyddiad fod ar neu ar ôl {minDate}",
|
97
|
+
"components.input-date.errorOutsideRange": "Rhaid i’r dyddiad fod rhwng {minDate} a {maxDate}",
|
98
|
+
"components.input-date.now": "Nawr",
|
99
|
+
"components.input-date.openInstructions": "Defnyddio fformat dyddiad {format}. Pwyswch saeth i lawr neu Enter i gael mynediad at galendr bach.",
|
100
|
+
"components.input-date.revert": "Mae {label} wedi’i ddychwelyd i’r gwerth blaenorol.",
|
101
|
+
"components.input-date.today": "Heddiw",
|
102
|
+
"components.input-date.useDateFormat": "Defnyddio fformat dyddiad {format}.",
|
94
103
|
"components.input-date-range.endDate": "Dyddiad Dod i Ben",
|
95
104
|
"components.input-date-range.errorBadInput": "Rhaid i {startLabel} fod cyn {endLabel}",
|
96
105
|
"components.input-date-range.interactive-label": "Mewnbwn ystod dyddiad",
|
97
106
|
"components.input-date-range.startDate": "Dyddiad Dechrau",
|
98
|
-
"components.input-date-time-range-to.to": "i",
|
99
|
-
"components.input-date-time-range.endDate": "Dyddiad Dod i Ben",
|
100
|
-
"components.input-date-time-range.errorBadInput": "Rhaid i {startLabel} fod cyn {endLabel}",
|
101
|
-
"components.input-date-time-range.startDate": "Dyddiad Dechrau",
|
102
107
|
"components.input-date-time.date": "Dyddiad",
|
103
108
|
"components.input-date-time.errorMaxDateOnly": "Rhaid i’r dyddiad fod cyn neu ar {maxDate}",
|
104
109
|
"components.input-date-time.errorMinDateOnly": "Rhaid i’r dyddiad fod ar neu ar ôl {minDate}",
|
105
110
|
"components.input-date-time.errorOutsideRange": "Rhaid i’r dyddiad fod rhwng {minDate} a {maxDate}",
|
106
111
|
"components.input-date-time.time": "Amser",
|
112
|
+
"components.input-date-time-range.endDate": "Dyddiad Dod i Ben",
|
113
|
+
"components.input-date-time-range.errorBadInput": "Rhaid i {startLabel} fod cyn {endLabel}",
|
107
114
|
"components.input-date-time-range.interactive-label": "Mewnbwn ystod dyddiad ac amser",
|
108
|
-
"components.input-date.
|
109
|
-
"components.input-date.
|
110
|
-
"components.input-
|
111
|
-
"components.input-
|
112
|
-
"components.input-
|
113
|
-
"components.input-date.now": "Nawr",
|
114
|
-
"components.input-date.revert": "Mae {label} wedi’i ddychwelyd i’r gwerth blaenorol.",
|
115
|
-
"components.input-date.today": "Heddiw",
|
116
|
-
"components.input-date.useDateFormat": "Defnyddio fformat dyddiad {format}.",
|
115
|
+
"components.input-date-time-range.startDate": "Dyddiad Dechrau",
|
116
|
+
"components.input-date-time-range-to.to": "i",
|
117
|
+
"components.input-number.hintDecimalDuplicate": "Mae degolyn yn y rhif hwn eisoes",
|
118
|
+
"components.input-number.hintDecimalIncorrectComma": "I ychwanegu degolyn defnyddiwch y nod coma “,”",
|
119
|
+
"components.input-number.hintDecimalIncorrectPeriod": "I ychwanegu degolyn defnyddiwch y nod atalnod llawn “.”",
|
117
120
|
"components.input-number.hintInteger": "Mae’r maes hwn yn derbyn gwerthoedd cyfanrif yn unig (dim degolion)",
|
118
|
-
"components.input-number.hintDecimalDuplicate": "Mae degol eisoes yn y nifer hwn",
|
119
|
-
"components.input-number.hintDecimalIncorrectComma": "I ychwanegu degol defnyddiwch y nod coma “,”",
|
120
|
-
"components.input-number.hintDecimalIncorrectPeriod": "I ychwanegu degol defnyddiwch y nod atalnod llawn “.”",
|
121
121
|
"components.input-search.clear": "Clirio’r Chwilio",
|
122
122
|
"components.input-search.defaultPlaceholder": "Chwilio...",
|
123
123
|
"components.input-search.search": "Chwilio",
|
@@ -131,13 +131,13 @@ export default {
|
|
131
131
|
"components.list-item.addItem": "Ychwanegu Eitem",
|
132
132
|
"components.list-item-drag-handle.default": "Aildrefnu gweithred eitem ar gyfer {name}",
|
133
133
|
"components.list-item-drag-handle.keyboard": "Aildrefnu eitemau, safle presennol {currentPosition} allan o {size}. I symud yr eitem hon, pwyswch y saeth i fyny neu’r saeth i lawr.",
|
134
|
-
"components.list-item-drag-handle-tooltip.title": "Rheolaethau bysellfwrdd ar gyfer aildrefnu:",
|
135
|
-
"components.list-item-drag-handle-tooltip.enter-key": "Nodi",
|
136
134
|
"components.list-item-drag-handle-tooltip.enter-desc": "Toglo’r modd aildrefnu bysellfwrdd.",
|
137
|
-
"components.list-item-drag-handle-tooltip.
|
138
|
-
"components.list-item-drag-handle-tooltip.up-down-desc": "Symud yr eitem i fyny neu i lawr yn y rhestr.",
|
139
|
-
"components.list-item-drag-handle-tooltip.left-right-key": "Chwith/De",
|
135
|
+
"components.list-item-drag-handle-tooltip.enter-key": "Nodi",
|
140
136
|
"components.list-item-drag-handle-tooltip.left-right-desc": "Newid y lefel nythu.",
|
137
|
+
"components.list-item-drag-handle-tooltip.left-right-key": "Chwith/De",
|
138
|
+
"components.list-item-drag-handle-tooltip.title": "Rheolaethau bysellfwrdd ar gyfer aildrefnu:",
|
139
|
+
"components.list-item-drag-handle-tooltip.up-down-desc": "Symud yr eitem i fyny neu i lawr yn y rhestr.",
|
140
|
+
"components.list-item-drag-handle-tooltip.up-down-key": "I Fyny/I Lawr",
|
141
141
|
"components.menu-item-return.return": "Dychwelyd i’r ddewislen flaenorol.",
|
142
142
|
"components.menu-item-return.returnCurrentlyShowing": "Dychwelyd i’r ddewislen flaenorol. Rydych chi’n edrych ar {menuTitle}.",
|
143
143
|
"components.meter-mixin.commaSeperatedAria": "{term1}, {term2}",
|
@@ -148,8 +148,6 @@ export default {
|
|
148
148
|
"components.more-less.more": "mwy",
|
149
149
|
"components.object-property-list.item-placeholder-text": "Eitem Dalfan",
|
150
150
|
"components.overflow-group.moreActions": "Rhagor o Gamau Gweithredu",
|
151
|
-
"components.pager-load-more.action": "Llwytho Mwy",
|
152
|
-
"components.pager-load-more.action-with-page-size": "Lwytho {count} Arall",
|
153
151
|
"components.pageable.info":
|
154
152
|
`{count, plural,
|
155
153
|
one {{countFormatted} eitem}
|
@@ -160,6 +158,8 @@ export default {
|
|
160
158
|
one {{countFormatted} o {totalCountFormatted} eitem}
|
161
159
|
other {{countFormatted} o {totalCountFormatted} eitemau}
|
162
160
|
}`,
|
161
|
+
"components.pager-load-more.action": "Llwytho Mwy",
|
162
|
+
"components.pager-load-more.action-with-page-size": "Lwytho {count} Arall",
|
163
163
|
"components.pager-load-more.status-loading": "Llwytho rhagor o eitemau",
|
164
164
|
"components.selection.action-max-hint":
|
165
165
|
`{count, plural,
|
@@ -172,10 +172,10 @@ export default {
|
|
172
172
|
"components.selection.selected": "{count} wedi’u dewis.",
|
173
173
|
"components.selection.selected-plus": "{count}+ wedi’u dewis",
|
174
174
|
"components.selection-controls.label": "Camau gweithredu ar gyfer detholiad",
|
175
|
+
"components.switch.conditions": "Rhaid bodloni’r amodau",
|
176
|
+
"components.switch.hidden": "Cudd",
|
175
177
|
"components.switch.visible": "Gweladwy",
|
176
178
|
"components.switch.visibleWithPeriod": "Gweladwy.",
|
177
|
-
"components.switch.hidden": "Cudd",
|
178
|
-
"components.switch.conditions": "Rhaid bodloni’r amodau",
|
179
179
|
"components.table-col-sort-button.addSortOrder": "Dewiswch i ychwanegu trefn ddidoli",
|
180
180
|
"components.table-col-sort-button.changeSortOrder": "Dewiswch i newid trefn ddidoli",
|
181
181
|
"components.table-col-sort-button.title":
|
package/lang/da.js
CHANGED
@@ -21,7 +21,6 @@ export default {
|
|
21
21
|
"components.filter.clearAllDescriptionOverride": "Ryd alle filtre for: {filterText}",
|
22
22
|
"components.filter.clearAnnounce": "Rydder filtre for:{filterName}",
|
23
23
|
"components.filter.clearDescription": "Ryd filtre for: {filterName}",
|
24
|
-
"components.filter.loading": "Indlæser filtre",
|
25
24
|
"components.filter.filterCountDescription":
|
26
25
|
`{number, plural,
|
27
26
|
=0 {Ingen filtre anvendt.}
|
@@ -29,6 +28,7 @@ export default {
|
|
29
28
|
other {{number} filtre anvendt.}
|
30
29
|
}`,
|
31
30
|
"components.filter.filters": "Filtre",
|
31
|
+
"components.filter.loading": "Indlæser filtre",
|
32
32
|
"components.filter.noFilters": "Ingen tilgængelige filtre",
|
33
33
|
"components.filter.searchResults":
|
34
34
|
`{number, plural,
|
@@ -38,23 +38,23 @@ export default {
|
|
38
38
|
}`,
|
39
39
|
"components.filter.selectedFirstListLabel": "{headerText}. Valgte filtre vises først.",
|
40
40
|
"components.filter.singleDimensionDescription": "Filtrer efter: {filterName}",
|
41
|
-
"components.filter-dimension-set-date-text-value.textHours":
|
42
|
-
`{num, plural,
|
43
|
-
=1 {Sidste time}
|
44
|
-
other {Sidste {num} timer}
|
45
|
-
}`,
|
46
41
|
"components.filter-dimension-set-date-text-value.textDays":
|
47
42
|
`{num, plural,
|
48
43
|
=0 {I dag}
|
49
44
|
one {Sidste {num} dag}
|
50
45
|
other {Sidste {num} dage}
|
51
46
|
}`,
|
47
|
+
"components.filter-dimension-set-date-text-value.textHours":
|
48
|
+
`{num, plural,
|
49
|
+
=1 {Sidste time}
|
50
|
+
other {Sidste {num} timer}
|
51
|
+
}`,
|
52
52
|
"components.filter-dimension-set-date-text-value.textMonths": "Sidste {num} måneder",
|
53
53
|
"components.filter-dimension-set-date-time-range-value.label": "{text}, udvid for at vælge datoer",
|
54
|
+
"components.filter-dimension-set-date-time-range-value.text": "Brugerdefineret datointerval",
|
54
55
|
"components.filter-dimension-set-date-time-range-value.valueTextRange": "{startValue} til {endValue}",
|
55
|
-
"components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "Efter {startValue}",
|
56
56
|
"components.filter-dimension-set-date-time-range-value.valueTextRangeEndOnly": "Før {endValue}",
|
57
|
-
"components.filter-dimension-set-date-time-range-value.
|
57
|
+
"components.filter-dimension-set-date-time-range-value.valueTextRangeStartOnly": "Efter {startValue}",
|
58
58
|
"components.form-element.defaultError": "{label} er ugyldigt",
|
59
59
|
"components.form-element.defaultFieldLabel": "Felt",
|
60
60
|
"components.form-element.input.email.typeMismatch": "E-mail er ikke gyldig",
|
@@ -91,33 +91,33 @@ export default {
|
|
91
91
|
"components.input-color.backgroundColor": "Baggrundsfarve",
|
92
92
|
"components.input-color.foregroundColor": "Forgrundsfarve",
|
93
93
|
"components.input-color.none": "Ingen",
|
94
|
+
"components.input-date.clear": "Ryd",
|
95
|
+
"components.input-date.errorMaxDateOnly": "Datoen skal være den {maxDate} eller tidligere",
|
96
|
+
"components.input-date.errorMinDateOnly": "Datoen skal være den {minDate} eller senere",
|
97
|
+
"components.input-date.errorOutsideRange": "Datoen skal være mellem {minDate} og {maxDate}",
|
98
|
+
"components.input-date.now": "Nu",
|
99
|
+
"components.input-date.openInstructions": "Brug datoformatet {format}. Tryk på Pil ned eller Enter for at få adgang til minikalender.",
|
100
|
+
"components.input-date.revert": "{label} vendte tilbage til tidligere værdi.",
|
101
|
+
"components.input-date.today": "I dag",
|
102
|
+
"components.input-date.useDateFormat": "Brug datoformatet {format}.",
|
94
103
|
"components.input-date-range.endDate": "Slutdato",
|
95
104
|
"components.input-date-range.errorBadInput": "{startLabel} skal være før {endLabel}",
|
96
105
|
"components.input-date-range.interactive-label": "Angivelse af datointerval",
|
97
106
|
"components.input-date-range.startDate": "Startdato",
|
98
|
-
"components.input-date-time-range-to.to": "til",
|
99
|
-
"components.input-date-time-range.endDate": "Slutdato",
|
100
|
-
"components.input-date-time-range.errorBadInput": "{startLabel} skal være før {endLabel}",
|
101
|
-
"components.input-date-time-range.startDate": "Startdato",
|
102
107
|
"components.input-date-time.date": "Dato",
|
103
108
|
"components.input-date-time.errorMaxDateOnly": "Datoen skal være den {maxDate} eller tidligere",
|
104
109
|
"components.input-date-time.errorMinDateOnly": "Datoen skal være den {minDate} eller senere",
|
105
110
|
"components.input-date-time.errorOutsideRange": "Datoen skal være mellem {minDate} og {maxDate}",
|
106
111
|
"components.input-date-time.time": "Tid",
|
112
|
+
"components.input-date-time-range.endDate": "Slutdato",
|
113
|
+
"components.input-date-time-range.errorBadInput": "{startLabel} skal være før {endLabel}",
|
107
114
|
"components.input-date-time-range.interactive-label": "Angivelse af dato- og tidsinterval",
|
108
|
-
"components.input-date.
|
109
|
-
"components.input-date.
|
110
|
-
"components.input-date.errorMinDateOnly": "Datoen skal være den {minDate} eller senere",
|
111
|
-
"components.input-date.errorOutsideRange": "Datoen skal være mellem {minDate} og {maxDate}",
|
112
|
-
"components.input-date.openInstructions": "Brug datoformatet {format}. Tryk på Pil ned eller Enter for at få adgang til minikalender.",
|
113
|
-
"components.input-date.now": "Nu",
|
114
|
-
"components.input-date.revert": "{label} vendte tilbage til tidligere værdi.",
|
115
|
-
"components.input-date.today": "I dag",
|
116
|
-
"components.input-date.useDateFormat": "Brug datoformatet {format}.",
|
117
|
-
"components.input-number.hintInteger": "Dette felt accepterer kun heltalsværdier (ingen decimaler)",
|
115
|
+
"components.input-date-time-range.startDate": "Startdato",
|
116
|
+
"components.input-date-time-range-to.to": "til",
|
118
117
|
"components.input-number.hintDecimalDuplicate": "Der er allerede en decimal i dette tal",
|
119
118
|
"components.input-number.hintDecimalIncorrectComma": "Hvis du vil tilføje en decimal, skal du bruge komma-tegnet “,”",
|
120
|
-
"components.input-number.hintDecimalIncorrectPeriod": "Hvis du vil tilføje en decimal, skal du bruge tegnet “.”",
|
119
|
+
"components.input-number.hintDecimalIncorrectPeriod": "Hvis du vil tilføje en decimal, skal du bruge punktum-tegnet “.”",
|
120
|
+
"components.input-number.hintInteger": "Dette felt accepterer kun heltalsværdier (ingen decimaler)",
|
121
121
|
"components.input-search.clear": "Ryd søgning",
|
122
122
|
"components.input-search.defaultPlaceholder": "Søg ...",
|
123
123
|
"components.input-search.search": "Søg",
|
@@ -131,13 +131,13 @@ export default {
|
|
131
131
|
"components.list-item.addItem": "Tilføj element",
|
132
132
|
"components.list-item-drag-handle.default": "Omarranger elementhandling for {name}",
|
133
133
|
"components.list-item-drag-handle.keyboard": "Omarranger element, aktuel position {currentPosition} ud af {size}. For at flytte dette element skal du trykke på pil op eller pil ned.",
|
134
|
-
"components.list-item-drag-handle-tooltip.title": "Tastaturkontrolelementer for omorganisering:",
|
135
|
-
"components.list-item-drag-handle-tooltip.enter-key": "Indtast",
|
136
134
|
"components.list-item-drag-handle-tooltip.enter-desc": "Skift tilstand for omorganisering af tastatur.",
|
137
|
-
"components.list-item-drag-handle-tooltip.
|
138
|
-
"components.list-item-drag-handle-tooltip.up-down-desc": "Flyt element op eller ned på listen.",
|
139
|
-
"components.list-item-drag-handle-tooltip.left-right-key": "Venstre/højre",
|
135
|
+
"components.list-item-drag-handle-tooltip.enter-key": "Indtast",
|
140
136
|
"components.list-item-drag-handle-tooltip.left-right-desc": "Skift indlejringsniveauet.",
|
137
|
+
"components.list-item-drag-handle-tooltip.left-right-key": "Venstre/højre",
|
138
|
+
"components.list-item-drag-handle-tooltip.title": "Tastaturkontrolelementer for omorganisering:",
|
139
|
+
"components.list-item-drag-handle-tooltip.up-down-desc": "Flyt element op eller ned på listen.",
|
140
|
+
"components.list-item-drag-handle-tooltip.up-down-key": "Op/ned",
|
141
141
|
"components.menu-item-return.return": "Gå tilbage til forrige menu.",
|
142
142
|
"components.menu-item-return.returnCurrentlyShowing": "Gå tilbage til forrige menu. Du ser på {menuTitle}.",
|
143
143
|
"components.meter-mixin.commaSeperatedAria": "{term1}, {term2}",
|
@@ -148,8 +148,6 @@ export default {
|
|
148
148
|
"components.more-less.more": "flere",
|
149
149
|
"components.object-property-list.item-placeholder-text": "Pladsholder-element",
|
150
150
|
"components.overflow-group.moreActions": "Flere handlinger",
|
151
|
-
"components.pager-load-more.action": "Indlæs flere",
|
152
|
-
"components.pager-load-more.action-with-page-size": "Indlæs {count} mere",
|
153
151
|
"components.pageable.info":
|
154
152
|
`{count, plural,
|
155
153
|
one {{countFormatted} element}
|
@@ -160,6 +158,8 @@ export default {
|
|
160
158
|
one {{countFormatted} af {totalCountFormatted} element}
|
161
159
|
other {{countFormatted} af {totalCountFormatted} elementer}
|
162
160
|
}`,
|
161
|
+
"components.pager-load-more.action": "Indlæs flere",
|
162
|
+
"components.pager-load-more.action-with-page-size": "Indlæs {count} mere",
|
163
163
|
"components.pager-load-more.status-loading": "Indlæser flere elementer",
|
164
164
|
"components.selection.action-max-hint":
|
165
165
|
`{count, plural,
|
@@ -172,10 +172,10 @@ export default {
|
|
172
172
|
"components.selection.selected": "{count} valgt",
|
173
173
|
"components.selection.selected-plus": "{count}+ valgt",
|
174
174
|
"components.selection-controls.label": "Handlinger for valg",
|
175
|
+
"components.switch.conditions": "Betingelserne skal være opfyldt",
|
176
|
+
"components.switch.hidden": "Skjult",
|
175
177
|
"components.switch.visible": "Synlig",
|
176
178
|
"components.switch.visibleWithPeriod": "Synlig.",
|
177
|
-
"components.switch.hidden": "Skjult",
|
178
|
-
"components.switch.conditions": "Betingelserne skal være opfyldt",
|
179
179
|
"components.table-col-sort-button.addSortOrder": "Vælg for at tilføje sorteringsrækkefølge",
|
180
180
|
"components.table-col-sort-button.changeSortOrder": "Vælg for at ændre sorteringsrækkefølge",
|
181
181
|
"components.table-col-sort-button.title":
|