ÿØÿà JFIF  x x ÿÛ C         ÿÛ C   ÿÀ   " ÿÄ     ÿÄ µ  } !1AQa "q2‘¡#B±ÁRÑð$3br‚ %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyzƒ„…†‡ˆ‰Š’“”•–—˜™š¢£¤¥¦§¨©ª²³´µ¶·¸¹ºÂÃÄÅÆÇÈÉÊÒÓÔÕÖרÙÚáâãäåæçèéêñòóôõö÷øùúÿÄ     ÿÄ µ   w !1AQ aq"2B‘¡±Á #3RðbrÑ{ gilour

File "my.js"

Full Path: /var/www/html/ctctaxi/public/assets/vendor_components/moment/src/locale/my.js
File size: 2.88 KB
MIME-type: text/x-java
Charset: utf-8

//! moment.js locale configuration
//! locale : Burmese [my]
//! author : Squar team, mysquar.com
//! author : David Rossellat : https://github.com/gholadr
//! author : Tin Aung Lin : https://github.com/thanyawzinmin

import moment from '../moment';

var symbolMap = {
    '1': 'á',
    '2': 'á‚',
    '3': 'áƒ',
    '4': 'á„',
    '5': 'á…',
    '6': 'á†',
    '7': 'á‡',
    '8': 'áˆ',
    '9': 'á‰',
    '0': 'á€'
}, numberMap = {
    'á': '1',
    'á‚': '2',
    'áƒ': '3',
    'á„': '4',
    'á…': '5',
    'á†': '6',
    'á‡': '7',
    'áˆ': '8',
    'á‰': '9',
    'á€': '0'
};

export default moment.defineLocale('my', {
    months: 'ဇန်နá€á€«á€›á€®_ဖေဖော်á€á€«á€›á€®_မá€á€º_ဧပြီ_မေ_ဇွန်_ဇူလိုင်_သြဂုá€á€º_စက်á€á€„်ဘာ_အောက်á€á€­á€¯á€˜á€¬_နိုá€á€„်ဘာ_ဒီဇင်ဘာ'.split('_'),
    monthsShort: 'ဇန်_ဖေ_မá€á€º_ပြီ_မေ_ဇွန်_လိုင်_သြ_စက်_အောက်_နို_ဒီ'.split('_'),
    weekdays: 'á€á€”င်္ဂနွေ_á€á€”င်္လာ_အင်္ဂါ_ဗုဒ္ဓဟူး_ကြာသပá€á€±á€¸_သောကြာ_စနေ'.split('_'),
    weekdaysShort: 'နွေ_လာ_ဂါ_ဟူး_ကြာ_သော_နေ'.split('_'),
    weekdaysMin: 'နွေ_လာ_ဂါ_ဟူး_ကြာ_သော_နေ'.split('_'),

    longDateFormat: {
        LT: 'HH:mm',
        LTS: 'HH:mm:ss',
        L: 'DD/MM/YYYY',
        LL: 'D MMMM YYYY',
        LLL: 'D MMMM YYYY HH:mm',
        LLLL: 'dddd D MMMM YYYY HH:mm'
    },
    calendar: {
        sameDay: '[ယနေ.] LT [မှာ]',
        nextDay: '[မနက်ဖြန်] LT [မှာ]',
        nextWeek: 'dddd LT [မှာ]',
        lastDay: '[မနေ.က] LT [မှာ]',
        lastWeek: '[ပြီးá€á€²á€·á€žá€±á€¬] dddd LT [မှာ]',
        sameElse: 'L'
    },
    relativeTime: {
        future: 'လာမည့် %s မှာ',
        past: 'လွန်á€á€²á€·á€žá€±á€¬ %s က',
        s: 'စက္ကန်.အနည်းငယ်',
        m: 'á€á€…်မိနစ်',
        mm: '%d မိနစ်',
        h: 'á€á€…်နာရီ',
        hh: '%d နာရီ',
        d: 'á€á€…်ရက်',
        dd: '%d ရက်',
        M: 'á€á€…်လ',
        MM: '%d လ',
        y: 'á€á€…်နှစ်',
        yy: '%d နှစ်'
    },
    preparse: function (string) {
        return string.replace(/[áá‚áƒá„á…á†á‡áˆá‰á€]/g, function (match) {
            return numberMap[match];
        });
    },
    postformat: function (string) {
        return string.replace(/\d/g, function (match) {
            return symbolMap[match];
        });
    },
    week: {
        dow: 1, // Monday is the first day of the week.
        doy: 4 // The week that contains Jan 1st is the first week of the year.
    }
});