@brightspace-ui/intl 3.20.0 → 3.20.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/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  ## Overview
7
7
 
8
- This library consists of APIs to format and parse numbers, dates, times and file sizes for use in D2L Brightspace. It also provides localization for common terms.
8
+ This library consists of APIs to format and parse numbers, dates, times and file sizes for use in D2L Brightspace.
9
9
 
10
10
  > Looking for the older `d2l-intl` library? It's still here [in the `v2.x` branch](https://github.com/BrightspaceUI/intl/tree/v2.x).
11
11
 
@@ -28,9 +28,7 @@ import { formatNumber, formatPercent } from '@brightspace-ui/intl/lib/number.js'
28
28
 
29
29
  All of the APIs will automatically detect the document's language via the `lang` attribute on the `<html>` element. They'll also look for various `data-` attributes that will be present in Brightspace pages to access override and timezone information.
30
30
 
31
- ## Numbers
32
-
33
- ### Number Formatting
31
+ ## Number Formatting
34
32
 
35
33
  Integer and decimal numbers can be formatted in the user's locale using `formatNumber`. Percentages can be formatted using `formatPercent`. Use the optional `options` parameter for rounding.
36
34
 
@@ -67,7 +65,7 @@ const value = formatPercent(0.333, {
67
65
  }); // -> '33.30 %' in en-US
68
66
  ```
69
67
 
70
- ### Number Parsing
68
+ ## Number Parsing
71
69
 
72
70
  The `parseNumber` method can be used to parse an integer or decimal number written in the user's locale.
73
71
 
@@ -77,9 +75,7 @@ import { parseNumber } from '@brightspace-ui/intl/lib/number.js';
77
75
  const value = parseNumber('-8 942,39'); // -> -8942.39 in fr-CA
78
76
  ```
79
77
 
80
- ## Dates & Times
81
-
82
- ### Date & Time Formatting
78
+ ## Date/Time Formatting
83
79
 
84
80
  Dates and times can be formatted in the user's locale using `formatDate`, `formatTime`, `formatDateTime`, and `formatRelativeDateTime`.
85
81
 
@@ -187,7 +183,7 @@ const relativeDateTime = formatRelativeDateTime(
187
183
  ); // If today is 2024-08-22, -> 'last week' in en-US
188
184
  ```
189
185
 
190
- ### Date Parsing
186
+ ## Date Parsing
191
187
 
192
188
  To parse a date written in the user's locale, use `parseDate`:
193
189
 
@@ -200,7 +196,7 @@ date.getMonth(); // -> 8 (months are 0-11)
200
196
  date.getDate(); // -> 23
201
197
  ```
202
198
 
203
- ### Time Parsing
199
+ ## Time Parsing
204
200
 
205
201
  To parse a time written in the user's locale, use `parseTime`:
206
202
 
@@ -212,7 +208,7 @@ date.getHours(); // -> 14
212
208
  date.getMinutes(); // -> 5
213
209
  ```
214
210
 
215
- ### Date/Time Conversion based on user timezone
211
+ ## Date/Time Conversion based on user timezone
216
212
 
217
213
  To convert an object containing a UTC date to an object containing a local date corresponding to the `data-timezone` attribute:
218
214
  ```javascript
@@ -376,41 +372,7 @@ In addition to the Basic Formatting elements, these additional elements may also
376
372
  * `<d2l-link>`
377
373
  * `<d2l-tooltip-help>`
378
374
 
379
- ### Common Resources
380
-
381
- Some localization resources are common and shared across D2L applications. To use these resources, set the `loadCommon` option:
382
-
383
- ```javascript
384
- import { Localize } from '@brightspace-ui/intl/lib/localize.js';
385
-
386
- const localizer = new Localize({
387
- loadCommon: true
388
- });
389
- ```
390
-
391
- #### localizeCharacter
392
-
393
- The localized value of the following characters can be accessed using `localizeCharacter(char)`:
394
- * `'` (apostrophe)
395
- * `&` (ampersand)
396
- * `*` (asterisk)
397
- * `\` (backslash)
398
- * `:` (colon)
399
- * `,` (comma)
400
- * `>` (greater-than sign)
401
- * `<` (less-than sign)
402
- * `#` (number sign)
403
- * `%` (percent sign)
404
- * `|` (pipe)
405
- * `?` (question mark)
406
- * `"` (quotation mark)
407
-
408
- ```javascript
409
- const value = localizer.localizeCharacter('&'); // -> 'ampersand' in en-US
410
- ```
411
-
412
375
  ### `onResourcesChange`
413
-
414
376
  Provide an `onResourcesChange` callback function to perform tasks when the document language is changed and updated resources are available:
415
377
 
416
378
  ```javascript
package/lib/localize.js CHANGED
@@ -5,24 +5,6 @@ import IntlMessageFormat from 'intl-messageformat';
5
5
 
6
6
  export const allowedTags = Object.freeze(['d2l-link', 'd2l-tooltip-help', 'p', 'br', 'b', 'strong', 'i', 'em', 'button']);
7
7
 
8
- const characterMap = new Map([
9
- ['\'', 'apostrophe'],
10
- ['&', 'ampersand'],
11
- ['*', 'asterisk'],
12
- ['\\', 'backslash'],
13
- [':', 'colon'],
14
- [',', 'comma'],
15
- ['>', 'greaterThan'],
16
- ['<', 'lessThan'],
17
- ['#', 'numberSign'],
18
- ['%', 'percentSign'],
19
- ['|', 'pipe'],
20
- ['?', 'questionMark'],
21
- ['"', 'quotationMark']
22
- ]);
23
- const commonResources = new Map();
24
- export let commonResourcesImportCount = 0;
25
-
26
8
  const getDisallowedTagsRegex = allowedTags => {
27
9
  const validTerminators = '([>\\s/]|$)';
28
10
  const allowedAfterTriangleBracket = `/?(${allowedTags.join('|')})?${validTerminators}`;
@@ -86,17 +68,6 @@ export const getLocalizeClass = (superclass = class {}) => class LocalizeClass e
86
68
  return formattedMessage;
87
69
  }
88
70
 
89
- localizeCharacter(char) {
90
- if (!characterMap.has(char)) {
91
- throw new Error(`localizeCharacter() does not support character: "${char}"`);
92
- }
93
- const value = this.localize(`intl-common:characters:${characterMap.get(char)}`);
94
- if (value.length === 0) {
95
- throw new Error('localizeCharacter() cannot be used unless loadCommon in localizeConfig is enabled');
96
- }
97
- return value;
98
- }
99
-
100
71
  localizeHTML(name, replacements = {}) {
101
72
 
102
73
  const { language, value } = this.localize.resources?.[name] ?? {};
@@ -156,21 +127,8 @@ export const getLocalizeClass = (superclass = class {}) => class LocalizeClass e
156
127
  }
157
128
  if (Object.prototype.hasOwnProperty.call(this, 'getLocalizeResources') || Object.prototype.hasOwnProperty.call(this, 'resources')) {
158
129
  const possibleLanguages = this._generatePossibleLanguages(config);
159
- if (config?.importFunc) {
160
- const resourcesPromise = this.getLocalizeResources(possibleLanguages, config);
161
- resourcesLoadedPromises.push(resourcesPromise);
162
- }
163
- if (config?.loadCommon) {
164
- resourcesLoadedPromises.push(this.getLocalizeResources(possibleLanguages, {
165
- importFunc: async(lang) => {
166
- if (commonResources.has(lang)) return commonResources.get(lang);
167
- const resources = (await import(`../lang/${lang}.js`)).default;
168
- commonResourcesImportCount++;
169
- commonResources.set(lang, resources);
170
- return resources;
171
- }
172
- }));
173
- }
130
+ const resourcesPromise = this.getLocalizeResources(possibleLanguages, config);
131
+ resourcesLoadedPromises.push(resourcesPromise);
174
132
  }
175
133
  return Promise.all(resourcesLoadedPromises);
176
134
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brightspace-ui/intl",
3
- "version": "3.20.0",
3
+ "version": "3.20.1",
4
4
  "description": "Internationalization APIs for number, date, time and file size formatting and parsing in D2L Brightspace.",
5
5
  "main": "lib/number.js",
6
6
  "type": "module",
@@ -11,7 +11,6 @@
11
11
  "test": "npm run lint && npm run test:unit"
12
12
  },
13
13
  "files": [
14
- "/lang",
15
14
  "/lib",
16
15
  "/helpers"
17
16
  ],
package/lang/ar.js DELETED
@@ -1,15 +0,0 @@
1
- export default {
2
- "intl-common:characters:apostrophe": "apostrophe",
3
- "intl-common:characters:ampersand": "ampersand",
4
- "intl-common:characters:asterisk": "asterisk",
5
- "intl-common:characters:backslash": "backslash",
6
- "intl-common:characters:colon": "colon",
7
- "intl-common:characters:comma": "comma",
8
- "intl-common:characters:greaterThan": "greater-than sign",
9
- "intl-common:characters:lessThan": "less-than sign",
10
- "intl-common:characters:numberSign": "number sign",
11
- "intl-common:characters:percentSign": "percent sign",
12
- "intl-common:characters:pipe": "pipe",
13
- "intl-common:characters:questionMark": "question mark",
14
- "intl-common:characters:quotationMark": "quotation mark",
15
- };
package/lang/cy.js DELETED
@@ -1,15 +0,0 @@
1
- export default {
2
- "intl-common:characters:apostrophe": "apostrophe",
3
- "intl-common:characters:ampersand": "ampersand",
4
- "intl-common:characters:asterisk": "asterisk",
5
- "intl-common:characters:backslash": "backslash",
6
- "intl-common:characters:colon": "colon",
7
- "intl-common:characters:comma": "comma",
8
- "intl-common:characters:greaterThan": "greater-than sign",
9
- "intl-common:characters:lessThan": "less-than sign",
10
- "intl-common:characters:numberSign": "number sign",
11
- "intl-common:characters:percentSign": "percent sign",
12
- "intl-common:characters:pipe": "pipe",
13
- "intl-common:characters:questionMark": "question mark",
14
- "intl-common:characters:quotationMark": "quotation mark",
15
- };
package/lang/da.js DELETED
@@ -1,15 +0,0 @@
1
- export default {
2
- "intl-common:characters:apostrophe": "apostrophe",
3
- "intl-common:characters:ampersand": "ampersand",
4
- "intl-common:characters:asterisk": "asterisk",
5
- "intl-common:characters:backslash": "backslash",
6
- "intl-common:characters:colon": "colon",
7
- "intl-common:characters:comma": "comma",
8
- "intl-common:characters:greaterThan": "greater-than sign",
9
- "intl-common:characters:lessThan": "less-than sign",
10
- "intl-common:characters:numberSign": "number sign",
11
- "intl-common:characters:percentSign": "percent sign",
12
- "intl-common:characters:pipe": "pipe",
13
- "intl-common:characters:questionMark": "question mark",
14
- "intl-common:characters:quotationMark": "quotation mark",
15
- };
package/lang/de.js DELETED
@@ -1,15 +0,0 @@
1
- export default {
2
- "intl-common:characters:apostrophe": "apostrophe",
3
- "intl-common:characters:ampersand": "ampersand",
4
- "intl-common:characters:asterisk": "asterisk",
5
- "intl-common:characters:backslash": "backslash",
6
- "intl-common:characters:colon": "colon",
7
- "intl-common:characters:comma": "comma",
8
- "intl-common:characters:greaterThan": "greater-than sign",
9
- "intl-common:characters:lessThan": "less-than sign",
10
- "intl-common:characters:numberSign": "number sign",
11
- "intl-common:characters:percentSign": "percent sign",
12
- "intl-common:characters:pipe": "pipe",
13
- "intl-common:characters:questionMark": "question mark",
14
- "intl-common:characters:quotationMark": "quotation mark",
15
- };
package/lang/en-gb.js DELETED
@@ -1,15 +0,0 @@
1
- export default {
2
- "intl-common:characters:apostrophe": "apostrophe",
3
- "intl-common:characters:ampersand": "ampersand",
4
- "intl-common:characters:asterisk": "asterisk",
5
- "intl-common:characters:backslash": "backslash",
6
- "intl-common:characters:colon": "colon",
7
- "intl-common:characters:comma": "comma",
8
- "intl-common:characters:greaterThan": "greater-than sign",
9
- "intl-common:characters:lessThan": "less-than sign",
10
- "intl-common:characters:numberSign": "number sign",
11
- "intl-common:characters:percentSign": "percent sign",
12
- "intl-common:characters:pipe": "pipe",
13
- "intl-common:characters:questionMark": "question mark",
14
- "intl-common:characters:quotationMark": "quotation mark",
15
- };
package/lang/en.js DELETED
@@ -1,15 +0,0 @@
1
- export default {
2
- "intl-common:characters:apostrophe": "apostrophe", // short name or description of the "'" character
3
- "intl-common:characters:ampersand": "ampersand", // short name or description of the "&" character
4
- "intl-common:characters:asterisk": "asterisk", // short name or description of the "*" character
5
- "intl-common:characters:backslash": "backslash", // short name or description of the "\" character
6
- "intl-common:characters:colon": "colon", // short name or description of the ":" character
7
- "intl-common:characters:comma": "comma", // short name or description of the "," character
8
- "intl-common:characters:greaterThan": "greater-than sign", // short name or description of the ">" character
9
- "intl-common:characters:lessThan": "less-than sign", // short name or description of the "<" character
10
- "intl-common:characters:numberSign": "number sign", // short name or description of the "#" character
11
- "intl-common:characters:percentSign": "percent sign", // short name or description of the "%" character
12
- "intl-common:characters:pipe": "pipe", // short name or description of the "|" character
13
- "intl-common:characters:questionMark": "question mark", // short name or description of the "?" character
14
- "intl-common:characters:quotationMark": "quotation mark", // short name or description of the '"' character
15
- };
package/lang/es-es.js DELETED
@@ -1,15 +0,0 @@
1
- export default {
2
- "intl-common:characters:apostrophe": "apostrophe",
3
- "intl-common:characters:ampersand": "ampersand",
4
- "intl-common:characters:asterisk": "asterisk",
5
- "intl-common:characters:backslash": "backslash",
6
- "intl-common:characters:colon": "colon",
7
- "intl-common:characters:comma": "comma",
8
- "intl-common:characters:greaterThan": "greater-than sign",
9
- "intl-common:characters:lessThan": "less-than sign",
10
- "intl-common:characters:numberSign": "number sign",
11
- "intl-common:characters:percentSign": "percent sign",
12
- "intl-common:characters:pipe": "pipe",
13
- "intl-common:characters:questionMark": "question mark",
14
- "intl-common:characters:quotationMark": "quotation mark",
15
- };
package/lang/es.js DELETED
@@ -1,15 +0,0 @@
1
- export default {
2
- "intl-common:characters:apostrophe": "apostrophe",
3
- "intl-common:characters:ampersand": "ampersand",
4
- "intl-common:characters:asterisk": "asterisk",
5
- "intl-common:characters:backslash": "backslash",
6
- "intl-common:characters:colon": "colon",
7
- "intl-common:characters:comma": "comma",
8
- "intl-common:characters:greaterThan": "greater-than sign",
9
- "intl-common:characters:lessThan": "less-than sign",
10
- "intl-common:characters:numberSign": "number sign",
11
- "intl-common:characters:percentSign": "percent sign",
12
- "intl-common:characters:pipe": "pipe",
13
- "intl-common:characters:questionMark": "question mark",
14
- "intl-common:characters:quotationMark": "quotation mark",
15
- };
package/lang/fr-fr.js DELETED
@@ -1,15 +0,0 @@
1
- export default {
2
- "intl-common:characters:apostrophe": "apostrophe",
3
- "intl-common:characters:ampersand": "ampersand",
4
- "intl-common:characters:asterisk": "asterisk",
5
- "intl-common:characters:backslash": "backslash",
6
- "intl-common:characters:colon": "colon",
7
- "intl-common:characters:comma": "comma",
8
- "intl-common:characters:greaterThan": "greater-than sign",
9
- "intl-common:characters:lessThan": "less-than sign",
10
- "intl-common:characters:numberSign": "number sign",
11
- "intl-common:characters:percentSign": "percent sign",
12
- "intl-common:characters:pipe": "pipe",
13
- "intl-common:characters:questionMark": "question mark",
14
- "intl-common:characters:quotationMark": "quotation mark",
15
- };
package/lang/fr.js DELETED
@@ -1,15 +0,0 @@
1
- export default {
2
- "intl-common:characters:apostrophe": "apostrophe",
3
- "intl-common:characters:ampersand": "ampersand",
4
- "intl-common:characters:asterisk": "asterisk",
5
- "intl-common:characters:backslash": "backslash",
6
- "intl-common:characters:colon": "colon",
7
- "intl-common:characters:comma": "comma",
8
- "intl-common:characters:greaterThan": "greater-than sign",
9
- "intl-common:characters:lessThan": "less-than sign",
10
- "intl-common:characters:numberSign": "number sign",
11
- "intl-common:characters:percentSign": "percent sign",
12
- "intl-common:characters:pipe": "pipe",
13
- "intl-common:characters:questionMark": "question mark",
14
- "intl-common:characters:quotationMark": "quotation mark",
15
- };
package/lang/hi.js DELETED
@@ -1,15 +0,0 @@
1
- export default {
2
- "intl-common:characters:apostrophe": "apostrophe",
3
- "intl-common:characters:ampersand": "ampersand",
4
- "intl-common:characters:asterisk": "asterisk",
5
- "intl-common:characters:backslash": "backslash",
6
- "intl-common:characters:colon": "colon",
7
- "intl-common:characters:comma": "comma",
8
- "intl-common:characters:greaterThan": "greater-than sign",
9
- "intl-common:characters:lessThan": "less-than sign",
10
- "intl-common:characters:numberSign": "number sign",
11
- "intl-common:characters:percentSign": "percent sign",
12
- "intl-common:characters:pipe": "pipe",
13
- "intl-common:characters:questionMark": "question mark",
14
- "intl-common:characters:quotationMark": "quotation mark",
15
- };
package/lang/ja.js DELETED
@@ -1,15 +0,0 @@
1
- export default {
2
- "intl-common:characters:apostrophe": "apostrophe",
3
- "intl-common:characters:ampersand": "ampersand",
4
- "intl-common:characters:asterisk": "asterisk",
5
- "intl-common:characters:backslash": "backslash",
6
- "intl-common:characters:colon": "colon",
7
- "intl-common:characters:comma": "comma",
8
- "intl-common:characters:greaterThan": "greater-than sign",
9
- "intl-common:characters:lessThan": "less-than sign",
10
- "intl-common:characters:numberSign": "number sign",
11
- "intl-common:characters:percentSign": "percent sign",
12
- "intl-common:characters:pipe": "pipe",
13
- "intl-common:characters:questionMark": "question mark",
14
- "intl-common:characters:quotationMark": "quotation mark",
15
- };
package/lang/ko.js DELETED
@@ -1,15 +0,0 @@
1
- export default {
2
- "intl-common:characters:apostrophe": "apostrophe",
3
- "intl-common:characters:ampersand": "ampersand",
4
- "intl-common:characters:asterisk": "asterisk",
5
- "intl-common:characters:backslash": "backslash",
6
- "intl-common:characters:colon": "colon",
7
- "intl-common:characters:comma": "comma",
8
- "intl-common:characters:greaterThan": "greater-than sign",
9
- "intl-common:characters:lessThan": "less-than sign",
10
- "intl-common:characters:numberSign": "number sign",
11
- "intl-common:characters:percentSign": "percent sign",
12
- "intl-common:characters:pipe": "pipe",
13
- "intl-common:characters:questionMark": "question mark",
14
- "intl-common:characters:quotationMark": "quotation mark",
15
- };
package/lang/nl.js DELETED
@@ -1,15 +0,0 @@
1
- export default {
2
- "intl-common:characters:apostrophe": "apostrophe",
3
- "intl-common:characters:ampersand": "ampersand",
4
- "intl-common:characters:asterisk": "asterisk",
5
- "intl-common:characters:backslash": "backslash",
6
- "intl-common:characters:colon": "colon",
7
- "intl-common:characters:comma": "comma",
8
- "intl-common:characters:greaterThan": "greater-than sign",
9
- "intl-common:characters:lessThan": "less-than sign",
10
- "intl-common:characters:numberSign": "number sign",
11
- "intl-common:characters:percentSign": "percent sign",
12
- "intl-common:characters:pipe": "pipe",
13
- "intl-common:characters:questionMark": "question mark",
14
- "intl-common:characters:quotationMark": "quotation mark",
15
- };
package/lang/pt.js DELETED
@@ -1,15 +0,0 @@
1
- export default {
2
- "intl-common:characters:apostrophe": "apostrophe",
3
- "intl-common:characters:ampersand": "ampersand",
4
- "intl-common:characters:asterisk": "asterisk",
5
- "intl-common:characters:backslash": "backslash",
6
- "intl-common:characters:colon": "colon",
7
- "intl-common:characters:comma": "comma",
8
- "intl-common:characters:greaterThan": "greater-than sign",
9
- "intl-common:characters:lessThan": "less-than sign",
10
- "intl-common:characters:numberSign": "number sign",
11
- "intl-common:characters:percentSign": "percent sign",
12
- "intl-common:characters:pipe": "pipe",
13
- "intl-common:characters:questionMark": "question mark",
14
- "intl-common:characters:quotationMark": "quotation mark",
15
- };
package/lang/sv.js DELETED
@@ -1,15 +0,0 @@
1
- export default {
2
- "intl-common:characters:apostrophe": "apostrophe",
3
- "intl-common:characters:ampersand": "ampersand",
4
- "intl-common:characters:asterisk": "asterisk",
5
- "intl-common:characters:backslash": "backslash",
6
- "intl-common:characters:colon": "colon",
7
- "intl-common:characters:comma": "comma",
8
- "intl-common:characters:greaterThan": "greater-than sign",
9
- "intl-common:characters:lessThan": "less-than sign",
10
- "intl-common:characters:numberSign": "number sign",
11
- "intl-common:characters:percentSign": "percent sign",
12
- "intl-common:characters:pipe": "pipe",
13
- "intl-common:characters:questionMark": "question mark",
14
- "intl-common:characters:quotationMark": "quotation mark",
15
- };
package/lang/tr.js DELETED
@@ -1,15 +0,0 @@
1
- export default {
2
- "intl-common:characters:apostrophe": "apostrophe",
3
- "intl-common:characters:ampersand": "ampersand",
4
- "intl-common:characters:asterisk": "asterisk",
5
- "intl-common:characters:backslash": "backslash",
6
- "intl-common:characters:colon": "colon",
7
- "intl-common:characters:comma": "comma",
8
- "intl-common:characters:greaterThan": "greater-than sign",
9
- "intl-common:characters:lessThan": "less-than sign",
10
- "intl-common:characters:numberSign": "number sign",
11
- "intl-common:characters:percentSign": "percent sign",
12
- "intl-common:characters:pipe": "pipe",
13
- "intl-common:characters:questionMark": "question mark",
14
- "intl-common:characters:quotationMark": "quotation mark",
15
- };
package/lang/zh-cn.js DELETED
@@ -1,15 +0,0 @@
1
- export default {
2
- "intl-common:characters:apostrophe": "apostrophe",
3
- "intl-common:characters:ampersand": "ampersand",
4
- "intl-common:characters:asterisk": "asterisk",
5
- "intl-common:characters:backslash": "backslash",
6
- "intl-common:characters:colon": "colon",
7
- "intl-common:characters:comma": "comma",
8
- "intl-common:characters:greaterThan": "greater-than sign",
9
- "intl-common:characters:lessThan": "less-than sign",
10
- "intl-common:characters:numberSign": "number sign",
11
- "intl-common:characters:percentSign": "percent sign",
12
- "intl-common:characters:pipe": "pipe",
13
- "intl-common:characters:questionMark": "question mark",
14
- "intl-common:characters:quotationMark": "quotation mark",
15
- };
package/lang/zh-tw.js DELETED
@@ -1,15 +0,0 @@
1
- export default {
2
- "intl-common:characters:apostrophe": "apostrophe",
3
- "intl-common:characters:ampersand": "ampersand",
4
- "intl-common:characters:asterisk": "asterisk",
5
- "intl-common:characters:backslash": "backslash",
6
- "intl-common:characters:colon": "colon",
7
- "intl-common:characters:comma": "comma",
8
- "intl-common:characters:greaterThan": "greater-than sign",
9
- "intl-common:characters:lessThan": "less-than sign",
10
- "intl-common:characters:numberSign": "number sign",
11
- "intl-common:characters:percentSign": "percent sign",
12
- "intl-common:characters:pipe": "pipe",
13
- "intl-common:characters:questionMark": "question mark",
14
- "intl-common:characters:quotationMark": "quotation mark",
15
- };