You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

198 lines
5.8 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _index = _interopRequireDefault(require("../../../_lib/buildLocalizeFn/index.js"));
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
var numberValues = {
locale: {
'1': '१',
'2': '२',
'3': '३',
'4': '४',
'5': '५',
'6': '६',
'7': '७',
'8': '८',
'9': '९',
'0': ''
},
number: {
'१': '1',
'२': '2',
'३': '3',
'४': '4',
'५': '5',
'६': '6',
'७': '7',
'८': '8',
'९': '9',
'': '0'
} // CLDR #1585 - #1592
};
var eraValues = {
narrow: ['ईसा-पूर्व', 'ईस्वी'],
abbreviated: ['ईसा-पूर्व', 'ईस्वी'],
wide: ['ईसा-पूर्व', 'ईसवी सन'] // CLDR #1593 - #1616
};
var quarterValues = {
narrow: ['1', '2', '3', '4'],
abbreviated: ['ति1', 'ति2', 'ति3', 'ति4'],
wide: ['पहली तिमाही', 'दूसरी तिमाही', 'तीसरी तिमाही', 'चौथी तिमाही'] // Note: in English, the names of days of the week and months are capitalized.
// If you are making a new locale based on this one, check if the same is true for the language you're working on.
// Generally, formatted dates should look like they are in the middle of a sentence,
// e.g. in Spanish language the weekdays and months should be in the lowercase.
// https://www.unicode.org/cldr/charts/32/summary/hi.html
// CLDR #1617 - #1688
};
var monthValues = {
narrow: ['ज', 'फ़', 'मा', 'अ', 'मई', 'जू', 'जु', 'अग', 'सि', 'अक्तू', 'न', 'दि'],
abbreviated: ['जन', 'फ़र', 'मार्च', 'अप्रैल', 'मई', 'जून', 'जुल', 'अग', 'सित', 'अक्तू', 'नव', 'दिस'],
wide: ['जनवरी', 'फ़रवरी', 'मार्च', 'अप्रैल', 'मई', 'जून', 'जुलाई', 'अगस्त', 'सितंबर', 'अक्तूबर', 'नवंबर', 'दिसंबर'] // CLDR #1689 - #1744
};
var dayValues = {
narrow: ['र', 'सो', 'मं', 'बु', 'गु', 'शु', 'श'],
short: ['र', 'सो', 'मं', 'बु', 'गु', 'शु', 'श'],
abbreviated: ['रवि', 'सोम', 'मंगल', 'बुध', 'गुरु', 'शुक्र', 'शनि'],
wide: ['रविवार', 'सोमवार', 'मंगलवार', 'बुधवार', 'गुरुवार', 'शुक्रवार', 'शनिवार']
};
var dayPeriodValues = {
narrow: {
am: 'पूर्वाह्न',
pm: 'अपराह्न',
midnight: 'मध्यरात्रि',
noon: 'दोपहर',
morning: 'सुबह',
afternoon: 'दोपहर',
evening: 'शाम',
night: 'रात'
},
abbreviated: {
am: 'पूर्वाह्न',
pm: 'अपराह्न',
midnight: 'मध्यरात्रि',
noon: 'दोपहर',
morning: 'सुबह',
afternoon: 'दोपहर',
evening: 'शाम',
night: 'रात'
},
wide: {
am: 'पूर्वाह्न',
pm: 'अपराह्न',
midnight: 'मध्यरात्रि',
noon: 'दोपहर',
morning: 'सुबह',
afternoon: 'दोपहर',
evening: 'शाम',
night: 'रात'
}
};
var formattingDayPeriodValues = {
narrow: {
am: 'पूर्वाह्न',
pm: 'अपराह्न',
midnight: 'मध्यरात्रि',
noon: 'दोपहर',
morning: 'सुबह',
afternoon: 'दोपहर',
evening: 'शाम',
night: 'रात'
},
abbreviated: {
am: 'पूर्वाह्न',
pm: 'अपराह्न',
midnight: 'मध्यरात्रि',
noon: 'दोपहर',
morning: 'सुबह',
afternoon: 'दोपहर',
evening: 'शाम',
night: 'रात'
},
wide: {
am: 'पूर्वाह्न',
pm: 'अपराह्न',
midnight: 'मध्यरात्रि',
noon: 'दोपहर',
morning: 'सुबह',
afternoon: 'दोपहर',
evening: 'शाम',
night: 'रात'
}
};
function ordinalNumber(dirtyNumber) {
var number = localize.localeToNumber(dirtyNumber);
var localeNumber = localize.numberToLocale(number);
var rem10 = number % 10;
switch (rem10) {
case 2:
case 3:
case 4:
case 6:
case 1:
case 5:
case 7:
case 8:
case 9:
case 0:
return localeNumber;
}
}
function localeToNumber(locale) {
var number = locale.toString().replace(/[१२३४५६७८९०]/g, function (match) {
return numberValues.number[match];
});
return Number(number);
}
function numberToLocale(number) {
return number.toString().replace(/\d/g, function (match) {
return numberValues.locale[match];
});
}
var localize = {
localeToNumber: localeToNumber,
numberToLocale: numberToLocale,
ordinalNumber: ordinalNumber,
era: (0, _index.default)({
values: eraValues,
defaultWidth: 'wide'
}),
quarter: (0, _index.default)({
values: quarterValues,
defaultWidth: 'wide',
argumentCallback: function (quarter) {
return Number(quarter) - 1;
}
}),
month: (0, _index.default)({
values: monthValues,
defaultWidth: 'wide'
}),
day: (0, _index.default)({
values: dayValues,
defaultWidth: 'wide'
}),
dayPeriod: (0, _index.default)({
values: dayPeriodValues,
defaultWidth: 'wide',
formattingValues: formattingDayPeriodValues,
defaultFormattingWidth: 'wide'
})
};
var _default = localize;
exports.default = _default;
module.exports = exports.default;