@brightspace-ui/intl 3.21.3 → 3.23.0
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/haw.js +15 -0
- package/lib/common.js +3 -2
- package/package.json +1 -1
package/lang/haw.js
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
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/lib/common.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export const defaultLocale = 'en';
|
|
2
|
-
export const supportedBaseLocales = ['ar', 'cy', 'da', 'de', 'en', 'es', 'fr', 'hi', 'ja', 'ko', 'mi', 'nl', 'pt', 'sv', 'tr', 'zh'];
|
|
3
|
-
export const supportedLangpacks = ['ar', 'cy', 'da', 'de', 'en', 'en-gb', 'es', 'es-es', 'fr', 'fr-fr', 'fr-on', 'hi', 'ja', 'ko', 'mi', 'nl', 'pt', 'sv', 'tr', 'zh-cn', 'zh-tw'];
|
|
2
|
+
export const supportedBaseLocales = ['ar', 'cy', 'da', 'de', 'en', 'es', 'fr', 'haw', 'hi', 'ja', 'ko', 'mi', 'nl', 'pt', 'sv', 'tr', 'zh'];
|
|
3
|
+
export const supportedLangpacks = ['ar', 'cy', 'da', 'de', 'en', 'en-gb', 'es', 'es-es', 'fr', 'fr-fr', 'fr-on', 'haw', 'hi', 'ja', 'ko', 'mi', 'nl', 'pt', 'sv', 'tr', 'zh-cn', 'zh-tw'];
|
|
4
4
|
export const supportedLocalesDetails = [
|
|
5
5
|
{ code: 'ar-sa', dir: 'rtl', name: 'العربية (المملكة العربية السعودية)' },
|
|
6
6
|
{ code: 'cy-gb', dir: 'ltr', name: 'Cymraeg (Y Deyrnas Unedig)' },
|
|
@@ -14,6 +14,7 @@ export const supportedLocalesDetails = [
|
|
|
14
14
|
{ code: 'fr-ca', dir: 'ltr', name: 'Français (Canada)' },
|
|
15
15
|
{ code: 'fr-fr', dir: 'ltr', name: 'Français (France)' },
|
|
16
16
|
{ code: 'fr-on', dir: 'ltr', name: 'Français (Ontario)' },
|
|
17
|
+
{ code: 'haw-us', dir: 'ltr', name: 'ʻŌlelo Hawaiʻi (ʻAmelika Hui Pū ʻIa)' },
|
|
17
18
|
{ code: 'hi-in', dir: 'ltr', name: 'हिंदी (भारत)' },
|
|
18
19
|
{ code: 'ja-jp', dir: 'ltr', name: '日本語 (日本)' },
|
|
19
20
|
{ code: 'ko-kr', dir: 'ltr', name: '한국어 (대한민국)' },
|
package/package.json
CHANGED