123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- "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 eraValues = {
- narrow: ['M.A', 'M.'],
- abbreviated: ['M.A', 'M.'],
- wide: ['Miloddan Avvalgi', 'Milodiy']
- };
- var quarterValues = {
- narrow: ['1', '2', '3', '4'],
- abbreviated: ['CH.1', 'CH.2', 'CH.3', 'CH.4'],
- wide: ['1-chi chorak', '2-chi chorak', '3-chi chorak', '4-chi chorak'] // 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.
- };
- var monthValues = {
- narrow: ['Y', 'F', 'M', 'A', 'M', 'I', 'I', 'A', 'S', 'O', 'N', 'D'],
- abbreviated: ['Yan', 'Fev', 'Mar', 'Apr', 'May', 'Iyun', 'Iyul', 'Avg', 'Sen', 'Okt', 'Noy', 'Dek'],
- wide: ['Yanvar', 'Fevral', 'Mart', 'Aprel', 'May', 'Iyun', 'Iyul', 'Avgust', 'Sentabr', 'Oktabr', 'Noyabr', 'Dekabr']
- };
- var dayValues = {
- narrow: ['Y', 'D', 'S', 'CH', 'P', 'J', 'SH'],
- short: ['Ya', 'Du', 'Se', 'Cho', 'Pa', 'Ju', 'Sha'],
- abbreviated: ['Yak', 'Dush', 'Sesh', 'Chor', 'Pay', 'Jum', 'Shan'],
- wide: ['Yakshanba', 'Dushanba', 'Seshanba', 'Chorshanba', 'Payshanba', 'Juma', 'Shanba']
- };
- var dayPeriodValues = {
- narrow: {
- am: 'a',
- pm: 'p',
- midnight: 'y.t',
- noon: 'p.',
- morning: 'ertalab',
- afternoon: 'tushdan keyin',
- evening: 'kechqurun',
- night: 'tun'
- },
- abbreviated: {
- am: 'AM',
- pm: 'PM',
- midnight: 'yarim tun',
- noon: 'peshin',
- morning: 'ertalab',
- afternoon: 'tushdan keyin',
- evening: 'kechqurun',
- night: 'tun'
- },
- wide: {
- am: 'a.m.',
- pm: 'p.m.',
- midnight: 'yarim tun',
- noon: 'peshin',
- morning: 'ertalab',
- afternoon: 'tushdan keyin',
- evening: 'kechqurun',
- night: 'tun'
- }
- };
- var formattingDayPeriodValues = {
- narrow: {
- am: 'a',
- pm: 'p',
- midnight: 'y.t',
- noon: 'p.',
- morning: 'ertalab',
- afternoon: 'tushdan keyin',
- evening: 'kechqurun',
- night: 'tun'
- },
- abbreviated: {
- am: 'AM',
- pm: 'PM',
- midnight: 'yarim tun',
- noon: 'peshin',
- morning: 'ertalab',
- afternoon: 'tushdan keyin',
- evening: 'kechqurun',
- night: 'tun'
- },
- wide: {
- am: 'a.m.',
- pm: 'p.m.',
- midnight: 'yarim tun',
- noon: 'peshin',
- morning: 'ertalab',
- afternoon: 'tushdan keyin',
- evening: 'kechqurun',
- night: 'tun'
- }
- };
- function ordinalNumber(dirtyNumber, _dirtyOptions) {
- var number = Number(dirtyNumber); // If ordinal numbers depend on context, for example,
- // if they are different for different grammatical genders,
- // use `options.unit`:
- //
- // var options = dirtyOptions || {}
- // var unit = String(options.unit)
- //
- // where `unit` can be 'year', 'quarter', 'month', 'week', 'date', 'dayOfYear',
- // 'day', 'hour', 'minute', 'second'
- return number;
- }
- var localize = {
- 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;
|