@brightspace-ui/intl 3.23.0 → 3.24.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 +10 -10
- package/lib/dateTime.js +12 -0
- package/package.json +1 -1
package/lang/haw.js
CHANGED
|
@@ -2,14 +2,14 @@ export default {
|
|
|
2
2
|
"intl-common:characters:apostrophe": "apostrophe", // short name or description of the "'" character
|
|
3
3
|
"intl-common:characters:ampersand": "ampersand", // short name or description of the "&" character
|
|
4
4
|
"intl-common:characters:asterisk": "asterisk", // short name or description of the "*" character
|
|
5
|
-
"intl-common:characters:backslash": "
|
|
6
|
-
"intl-common:characters:colon": "
|
|
7
|
-
"intl-common:characters:comma": "
|
|
8
|
-
"intl-common:characters:greaterThan": "
|
|
9
|
-
"intl-common:characters:lessThan": "
|
|
10
|
-
"intl-common:characters:numberSign": "
|
|
11
|
-
"intl-common:characters:percentSign": "
|
|
12
|
-
"intl-common:characters:pipe": "
|
|
13
|
-
"intl-common:characters:questionMark": "
|
|
14
|
-
"intl-common:characters:quotationMark": "
|
|
5
|
+
"intl-common:characters:backslash": "kaha kua hope", // short name or description of the "\" character
|
|
6
|
+
"intl-common:characters:colon": "kolonā", // short name or description of the ":" character
|
|
7
|
+
"intl-common:characters:comma": "koma", // short name or description of the "," character
|
|
8
|
+
"intl-common:characters:greaterThan": "nui-i ka hoailona", // short name or description of the ">" character
|
|
9
|
+
"intl-common:characters:lessThan": "hōʻailona liʻiliʻi", // short name or description of the "<" character
|
|
10
|
+
"intl-common:characters:numberSign": "hōʻailona helu", // short name or description of the "#" character
|
|
11
|
+
"intl-common:characters:percentSign": "hōʻailona pakeneka", // short name or description of the "%" character
|
|
12
|
+
"intl-common:characters:pipe": "paipu", // short name or description of the "|" character
|
|
13
|
+
"intl-common:characters:questionMark": "kaha ninau", // short name or description of the "?" character
|
|
14
|
+
"intl-common:characters:quotationMark": "kaha puana'i", // short name or description of the '"' character
|
|
15
15
|
};
|
package/lib/dateTime.js
CHANGED
|
@@ -800,6 +800,18 @@ export function getDateTimeDescriptor() {
|
|
|
800
800
|
['D', 'L', 'M', 'M', 'J', 'V', 'S']
|
|
801
801
|
];
|
|
802
802
|
break;
|
|
803
|
+
case 'haw':
|
|
804
|
+
dateFormats = ['dddd, d MMMM yyyy', 'd MMM yyyy', 'd/M/yyyy', 'yyyy MMMM', 'd MMMM', 'd MMM'];
|
|
805
|
+
months = [
|
|
806
|
+
['Ianuali', 'Pepeluali', 'Malaki', 'ʻApelila', 'Mei', 'Iune', 'Iulai', 'ʻAukake', 'Kepakemapa', 'ʻOkakopa', 'Nowemapa', 'Kekemapa'],
|
|
807
|
+
['Ian.', 'Pep.', 'Mal.', 'ʻAp.', 'Mei', 'Iun.', 'Iul.', 'ʻAu.', 'Kep.', 'ʻOk.', 'Now.', 'Kek.']
|
|
808
|
+
];
|
|
809
|
+
days = [
|
|
810
|
+
['Lāpule', 'Poʻakahi', 'Poʻalua', 'Poʻakolu', 'Poʻahā', 'Poʻalima', 'Poʻaono'],
|
|
811
|
+
['LP', 'P1', 'P2', 'P3', 'P4', 'P5', 'P6'],
|
|
812
|
+
['S', 'M', 'T', 'W', 'T', 'F', 'S']
|
|
813
|
+
];
|
|
814
|
+
break;
|
|
803
815
|
case 'hi':
|
|
804
816
|
dateFormats = ['dddd, d MMMM yyyy', 'd MMMM yyyy', 'dd-MM-yyyy', 'MMMM yyyy', 'd MMMM', 'd MMM'];
|
|
805
817
|
dayPeriods = ['पूर्वाह्न', 'अपराह्न'];
|
package/package.json
CHANGED