@brightspace-ui/intl 3.30.0 → 3.30.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/lang/th.js +18 -0
- package/lang/vi.js +18 -0
- package/lib/_timeZones/mapper.js +2 -2
- package/package.json +1 -1
package/lang/th.js
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"intl-common:characters:apostrophe": "'", // short name or description of the "'" character
|
|
3
|
+
"intl-common:characters:ampersand": "&", // short name or description of the "&" character
|
|
4
|
+
"intl-common:characters:asterisk": "*", // short name or description of the "*" character
|
|
5
|
+
"intl-common:characters:backslash": "\\", // short name or description of the "\" character
|
|
6
|
+
"intl-common:characters:colon": ":", // short name or description of the ":" character
|
|
7
|
+
"intl-common:characters:comma": ",", // short name or description of the "," character
|
|
8
|
+
"intl-common:characters:greaterThan": ">", // short name or description of the ">" character
|
|
9
|
+
"intl-common:characters:lessThan": "<", // short name or description of the "<" character
|
|
10
|
+
"intl-common:characters:numberSign": "#", // short name or description of the "#" character
|
|
11
|
+
"intl-common:characters:percentSign": "%", // short name or description of the "%" character
|
|
12
|
+
"intl-common:characters:pipe": "|", // short name or description of the "|" character
|
|
13
|
+
"intl-common:characters:questionMark": "?", // short name or description of the "?" character
|
|
14
|
+
"intl-common:characters:quotationMark": "\"-\"", // short name or description of the '"' character
|
|
15
|
+
"intl-common:navigation:back:title": "Back", // term for navigating back to the previous page (in Title Case)
|
|
16
|
+
"intl-common:navigation:next:title": "ถัดไป", // term for navigating to the next page or item (in Title Case)
|
|
17
|
+
"intl-common:navigation:previous:title": "ก่อนหน้า", // term for navigating to the previous page or item (in Title Case)
|
|
18
|
+
};
|
package/lang/vi.js
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
"intl-common:characters:apostrophe": "dấu nháy đơn", // short name or description of the "'" character
|
|
3
|
+
"intl-common:characters:ampersand": "dấu và", // short name or description of the "&" character
|
|
4
|
+
"intl-common:characters:asterisk": "dấu hoa thị", // short name or description of the "*" character
|
|
5
|
+
"intl-common:characters:backslash": "dấu gạch chéo ngược", // short name or description of the "\" character
|
|
6
|
+
"intl-common:characters:colon": "dấu hai chấm", // short name or description of the ":" character
|
|
7
|
+
"intl-common:characters:comma": "dấu phẩy", // short name or description of the "," character
|
|
8
|
+
"intl-common:characters:greaterThan": "dấu lớn hơn", // short name or description of the ">" character
|
|
9
|
+
"intl-common:characters:lessThan": "dấu bé hơn", // short name or description of the "<" character
|
|
10
|
+
"intl-common:characters:numberSign": "dấu thăng", // short name or description of the "#" character
|
|
11
|
+
"intl-common:characters:percentSign": "dấu phần trăm", // short name or description of the "%" character
|
|
12
|
+
"intl-common:characters:pipe": "dấu gạch đứng", // short name or description of the "|" character
|
|
13
|
+
"intl-common:characters:questionMark": "dấu chấm hỏi", // short name or description of the "?" character
|
|
14
|
+
"intl-common:characters:quotationMark": "dấu nháy kép", // short name or description of the '"' character
|
|
15
|
+
"intl-common:navigation:back:title": "Back", // term for navigating back to the previous page (in Title Case)
|
|
16
|
+
"intl-common:navigation:next:title": "Tiếp theo", // term for navigating to the next page or item (in Title Case)
|
|
17
|
+
"intl-common:navigation:previous:title": "Trước", // term for navigating to the previous page or item (in Title Case)
|
|
18
|
+
};
|
package/lib/_timeZones/mapper.js
CHANGED
|
@@ -172,12 +172,12 @@ export class TimeZoneMapper {
|
|
|
172
172
|
* @param {string} basePath - Base path to the timeZone mappings directory
|
|
173
173
|
* @returns {Promise<void>}
|
|
174
174
|
*/
|
|
175
|
-
async loadMappings(
|
|
175
|
+
async loadMappings() {
|
|
176
176
|
if (this.loaded) return;
|
|
177
177
|
|
|
178
178
|
try {
|
|
179
179
|
for (const moduleName of this.modules) {
|
|
180
|
-
const module = await import(
|
|
180
|
+
const module = await import(`./data/${moduleName}.js`);
|
|
181
181
|
const timeZoneData = module.default || module[`${moduleName}TimeZones`];
|
|
182
182
|
|
|
183
183
|
// Merge all timeZone data into the main mappings
|
package/package.json
CHANGED