@brightspace-ui/core 3.142.1 → 3.142.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/list/list-item-mixin.js +3 -0
- package/lang/ar.js +85 -12
- package/lang/cy.js +85 -12
- package/lang/da.js +85 -12
- package/lang/de.js +85 -12
- package/lang/en-gb.js +85 -12
- package/lang/en.js +85 -12
- package/lang/es-es.js +85 -12
- package/lang/es.js +85 -12
- package/lang/fr-fr.js +85 -12
- package/lang/fr.js +85 -12
- package/lang/haw.js +85 -12
- package/lang/hi.js +85 -12
- package/lang/ja.js +77 -12
- package/lang/ko.js +77 -12
- package/lang/mi.js +85 -12
- package/lang/nl.js +85 -12
- package/lang/pt.js +85 -12
- package/lang/sv.js +85 -12
- package/lang/tr.js +85 -12
- package/lang/zh-cn.js +77 -12
- package/lang/zh-tw.js +78 -12
- package/package.json +1 -1
package/lang/zh-tw.js
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
export default {
|
2
|
+
"__test__": "This will be removed in a follow-up PR (before translation)",
|
2
3
|
"components.alert.close": "關閉警示",
|
3
4
|
"components.breadcrumbs.breadcrumb": "導覽路徑",
|
4
5
|
"components.button-add.addItem": "新增項目",
|
@@ -22,14 +23,30 @@ export default {
|
|
22
23
|
"components.filter.clearAnnounce": "正在清除 {filterName} 的篩選器",
|
23
24
|
"components.filter.clearDescription": "清除 {filterName} 的篩選器",
|
24
25
|
"components.filter.loading": "正在載入篩選條件",
|
25
|
-
"components.filter.filterCountDescription":
|
26
|
+
"components.filter.filterCountDescription":
|
27
|
+
`{number, plural,
|
28
|
+
=0 {未套用篩選器。}
|
29
|
+
other {已套用 {number} 個篩選器。}
|
30
|
+
}`,
|
26
31
|
"components.filter.filters": "篩選器",
|
27
32
|
"components.filter.noFilters": "沒有可用的篩選條件",
|
28
|
-
"components.filter.searchResults":
|
33
|
+
"components.filter.searchResults":
|
34
|
+
`{number, plural,
|
35
|
+
=0 {無搜尋結果}
|
36
|
+
other {{number} 個搜尋結果}
|
37
|
+
}`,
|
29
38
|
"components.filter.selectedFirstListLabel": "{headerText}。所選篩選器會先顯示。",
|
30
39
|
"components.filter.singleDimensionDescription": "按此條件篩選:{filterName}",
|
31
|
-
"components.filter-dimension-set-date-text-value.textHours":
|
32
|
-
|
40
|
+
"components.filter-dimension-set-date-text-value.textHours":
|
41
|
+
`{num, plural,
|
42
|
+
=1 {過去一小時}
|
43
|
+
other {過去 {num} 小時}
|
44
|
+
}`,
|
45
|
+
"components.filter-dimension-set-date-text-value.textDays":
|
46
|
+
`{num, plural,
|
47
|
+
=0 {今天}
|
48
|
+
other {過去 {num} 天}
|
49
|
+
}`,
|
33
50
|
"components.filter-dimension-set-date-text-value.textMonths": "過去 {num} 個月",
|
34
51
|
"components.filter-dimension-set-date-time-range-value.label": "{text},展開以選擇日期",
|
35
52
|
"components.filter-dimension-set-date-time-range-value.valueTextRange": "{startValue} 到 {endValue}",
|
@@ -39,13 +56,34 @@ export default {
|
|
39
56
|
"components.form-element.defaultError": "{label} 無效",
|
40
57
|
"components.form-element.defaultFieldLabel": "欄位",
|
41
58
|
"components.form-element.input.email.typeMismatch": "電子郵件無效",
|
42
|
-
"components.form-element.input.number.rangeError":
|
43
|
-
|
44
|
-
|
59
|
+
"components.form-element.input.number.rangeError":
|
60
|
+
`{minExclusive, select,
|
61
|
+
true {{maxExclusive, select,
|
62
|
+
true {數字必須大於 {min} 且小於 {max}。}
|
63
|
+
other {數字必須大於 {min} 且小於或等於 {max}。}
|
64
|
+
}}
|
65
|
+
other {{maxExclusive, select,
|
66
|
+
true {數字必須大於或等於 {min} 且小於 {max}。}
|
67
|
+
other {數字必須大於或等於 {min} 且小於或等於 {max}。}
|
68
|
+
}}
|
69
|
+
}`,
|
70
|
+
"components.form-element.input.number.rangeOverflow":
|
71
|
+
`{maxExclusive, select,
|
72
|
+
true {數字必須小於 {max}。}
|
73
|
+
other {數字必須小於或等於 {max}。}
|
74
|
+
}`,
|
75
|
+
"components.form-element.input.number.rangeUnderflow":
|
76
|
+
`{minExclusive, select,
|
77
|
+
true {數字必須大於 {min}。}
|
78
|
+
other {數字必須大於或等於 {min}。}
|
79
|
+
}`,
|
45
80
|
"components.form-element.input.text.tooShort": "{label} 必須至少為 {minlength} 個字元",
|
46
81
|
"components.form-element.input.url.typeMismatch": "URL 無效",
|
47
82
|
"components.form-element.valueMissing": "{label} 為必填",
|
48
|
-
"components.form-error-summary.errorSummary":
|
83
|
+
"components.form-error-summary.errorSummary":
|
84
|
+
`{count, plural,
|
85
|
+
other {您提交的資訊中發現 {count} 個錯誤}
|
86
|
+
}`,
|
49
87
|
"components.form-error-summary.text": "切換錯誤詳細資料",
|
50
88
|
"components.input-color.backgroundColor": "背景顏色",
|
51
89
|
"components.input-color.foregroundColor": "前景顏色",
|
@@ -109,10 +147,19 @@ export default {
|
|
109
147
|
"components.overflow-group.moreActions": "其他動作",
|
110
148
|
"components.pager-load-more.action": "載入更多",
|
111
149
|
"components.pager-load-more.action-with-page-size": "再載入 {count} 個",
|
112
|
-
"components.pageable.info":
|
113
|
-
|
150
|
+
"components.pageable.info":
|
151
|
+
`{count, plural,
|
152
|
+
other {{countFormatted} 個項目}
|
153
|
+
}`,
|
154
|
+
"components.pageable.info-with-total":
|
155
|
+
`{totalCount, plural,
|
156
|
+
other {{countFormatted} 項,共 {totalCountFormatted} 項}
|
157
|
+
}`,
|
114
158
|
"components.pager-load-more.status-loading": "正在載入更多項目",
|
115
|
-
"components.selection.action-max-hint":
|
159
|
+
"components.selection.action-max-hint":
|
160
|
+
`{count, plural,
|
161
|
+
other {選取超過 {countFormatted} 個項目時即停用}
|
162
|
+
}`,
|
116
163
|
"components.selection.action-required-hint": "選取項目以執行此動作",
|
117
164
|
"components.selection.select-all": "全選",
|
118
165
|
"components.selection.select-all-items": "選取所有 {count} 個項目",
|
@@ -125,7 +172,26 @@ export default {
|
|
125
172
|
"components.switch.conditions": "必須符合條件",
|
126
173
|
"components.table-col-sort-button.addSortOrder": "選取以新增排序順序",
|
127
174
|
"components.table-col-sort-button.changeSortOrder": "選取以變更排序順序",
|
128
|
-
"components.table-col-sort-button.title":
|
175
|
+
"components.table-col-sort-button.title":
|
176
|
+
`{sourceType, select,
|
177
|
+
dates {{direction, select,
|
178
|
+
desc {已排序為新至舊}
|
179
|
+
other {已排序為舊至新}
|
180
|
+
}}
|
181
|
+
numbers {{direction, select,
|
182
|
+
desc {已排序為高到低}
|
183
|
+
other {已排序為低到高}
|
184
|
+
}}
|
185
|
+
words {{direction, select,
|
186
|
+
desc {已排序為 Z 到 A}
|
187
|
+
other {已排序為 A 到 Z}
|
188
|
+
}}
|
189
|
+
value {已排序 {selectedMenuItemText}}
|
190
|
+
other {{direction, select,
|
191
|
+
desc {已遞減排序}
|
192
|
+
other {已遞增排序}
|
193
|
+
}}
|
194
|
+
}`,
|
129
195
|
"components.table-controls.label": "表格動作",
|
130
196
|
"components.tabs.next": "向前捲動",
|
131
197
|
"components.tabs.previous": "向後捲動",
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@brightspace-ui/core",
|
3
|
-
"version": "3.142.
|
3
|
+
"version": "3.142.2",
|
4
4
|
"description": "A collection of accessible, free, open-source web components for building Brightspace applications",
|
5
5
|
"type": "module",
|
6
6
|
"repository": "https://github.com/BrightspaceUI/core.git",
|