Spade

Mini Shell

Directory:~$ /home/lmsyaran/public_html/joomla5/media/com_fabrik/js/lib/datejs/globalization/
Upload File

[Home] [System Details] [Kill Me]
Current File:~$ /home/lmsyaran/public_html/joomla5/media/com_fabrik/js/lib/datejs/globalization/mn-MN.js

Date.CultureInfo = {
	/* Culture Name */
    name: "mn-MN",
    englishName: "Mongolian (Cyrillic, Mongolia)",
    nativeName: "Монгол хэл (Монгол улс)",
    
    /* Day Name Strings */
    dayNames: ["Ням", "Даваа",
"Мягмар", "Лхагва", "Пүрэв",
"Баасан", "Бямба"],
    abbreviatedDayNames: ["Ня", "Да",
"Мя", "Лх", "Пү", "Ба",
"Бя"],
    shortestDayNames: ["Ня", "Да",
"Мя", "Лх", "Пү", "Ба",
"Бя"],
    firstLetterDayNames: ["Н", "Д", "М",
"Л", "П", "Б", "Б"],
    
    /* Month Name Strings */
    monthNames: ["1 дүгээр сар",
"2 дугаар сар", "3 дугаар сар",
"4 дүгээр сар", "5 дугаар сар",
"6 дугаар сар", "7 дугаар сар",
"8 дугаар сар", "9 дүгээр сар",
"10 дугаар сар", "11 дүгээр сар",
"12 дугаар сар"],
    abbreviatedMonthNames: ["I", "II", "III",
"IV", "V", "VI", "VII",
"VШ", "IX", "X", "XI",
"XII"],

	/* AM/PM Designators */
    amDesignator: "",
    pmDesignator: "",

    firstDayOfWeek: 1,
    twoDigitYearMax: 2029,
    
    /**
     * The dateElementOrder is based on the order of the 
     * format specifiers in the formatPatterns.DatePattern. 
     *
     * Example:
     <pre>
     shortDatePattern    dateElementOrder
     ------------------  ---------------- 
     "M/d/yyyy"          "mdy"
     "dd/MM/yyyy"        "dmy"
     "yyyy-MM-dd"        "ymd"
     </pre>
     *
     * The correct dateElementOrder is required by the parser to
     * determine the expected order of the date elements in the
     * string being parsed.
     */
    dateElementOrder: "ymd",
    
    /* Standard date and time format patterns */
    formatPatterns: {
        shortDate: "yy.MM.dd",
        longDate: "yyyy 'оны' MMMM d",
        shortTime: "H:mm",
        longTime: "H:mm:ss",
        fullDateTime: "yyyy 'оны' MMMM d H:mm:ss",
        sortableDateTime: "yyyy-MM-ddTHH:mm:ss",
        universalSortableDateTime: "yyyy-MM-dd HH:mm:ssZ",
        rfc1123: "ddd, dd MMM yyyy HH:mm:ss GMT",
        monthDay: "d MMMM",
        yearMonth: "yyyy 'он' MMMM"
    },

    /**
     * NOTE: If a string format is not parsing correctly, but
     * you would expect it parse, the problem likely lies below. 
     * 
     * The following regex patterns control most of the string matching
     * within the parser.
     * 
     * The Month name and Day name patterns were automatically generated
     * and in general should be (mostly) correct. 
     *
     * Beyond the month and day name patterns are natural language strings.
     * Example: "next", "today", "months"
     *
     * These natural language string may NOT be correct for this culture. 
     * If they are not correct, please translate and edit this file
     * providing the correct regular expression pattern. 
     *
     * If you modify this file, please post your revised CultureInfo file
     * to the Datejs Forum located at http://www.datejs.com/forums/.
     *
     * Please mark the subject of the post with [CultureInfo]. Example:
     *    Subject: [CultureInfo] Translated "da-DK"
Danish(Denmark)
     * 
     * We will add the modified patterns to the master source files.
     *
     * As well, please review the list of "Future Strings"
section below. 
     */	
    regexPatterns: {
        jan: /^1 дүгээр сар/i,
        feb: /^2 дугаар сар/i,
        mar: /^3 дугаар сар/i,
        apr: /^4 дүгээр сар/i,
        may: /^5 дугаар сар/i,
        jun: /^6 дугаар сар/i,
        jul: /^7 дугаар сар/i,
        aug: /^8 дугаар сар/i,
        sep: /^9 дүгээр сар/i,
        oct: /^10 дугаар сар/i,
        nov: /^11 дүгээр сар/i,
        dec: /^12 дугаар сар/i,

        sun: /^ням/i,
        mon: /^даваа/i,
        tue: /^мягмар/i,
        wed: /^лхагва/i,
        thu: /^пүрэв/i,
        fri: /^баасан/i,
        sat: /^бямба/i,

        future: /^next/i,
        past: /^last|past|prev(ious)?/i,
        add: /^(\+|aft(er)?|from|hence)/i,
        subtract: /^(\-|bef(ore)?|ago)/i,
        
        yesterday: /^yes(terday)?/i,
        today: /^t(od(ay)?)?/i,
        tomorrow: /^tom(orrow)?/i,
        now: /^n(ow)?/i,
        
        millisecond: /^ms|milli(second)?s?/i,
        second: /^sec(ond)?s?/i,
        minute: /^mn|min(ute)?s?/i,
		hour: /^h(our)?s?/i,
		week: /^w(eek)?s?/i,
        month: /^m(onth)?s?/i,
        day: /^d(ay)?s?/i,
        year: /^y(ear)?s?/i,
		
        shortMeridian: /^(a|p)/i,
        longMeridian: /^(a\.?m?\.?|p\.?m?\.?)/i,
        timezone:
/^((e(s|d)t|c(s|d)t|m(s|d)t|p(s|d)t)|((gmt)?\s*(\+|\-)\s*\d\d\d\d?)|gmt|utc)/i,
        ordinalSuffix: /^\s*(st|nd|rd|th)/i,
        timeContext: /^\s*(\:|a(?!u|p)|p)/i
    },

	timezones: [{name:"UTC", offset:"-000"},
{name:"GMT", offset:"-000"}, {name:"EST",
offset:"-0500"}, {name:"EDT",
offset:"-0400"}, {name:"CST",
offset:"-0600"}, {name:"CDT",
offset:"-0500"}, {name:"MST",
offset:"-0700"}, {name:"MDT",
offset:"-0600"}, {name:"PST",
offset:"-0800"}, {name:"PDT",
offset:"-0700"}]
};

/********************
 ** Future Strings **
 ********************
 * 
 * The following list of strings may not be currently being used, but 
 * may be incorporated into the Datejs library later. 
 *
 * We would appreciate any help translating the strings below.
 * 
 * If you modify this file, please post your revised CultureInfo file
 * to the Datejs Forum located at http://www.datejs.com/forums/.
 *
 * Please mark the subject of the post with [CultureInfo]. Example:
 *    Subject: [CultureInfo] Translated "da-DK" Danish(Denmark)b
 *
 * English Name        Translated
 * ------------------  -----------------
 * about               about
 * ago                 ago
 * date                date
 * time                time
 * calendar            calendar
 * show                show
 * hourly              hourly
 * daily               daily
 * weekly              weekly
 * bi-weekly           bi-weekly
 * fortnight           fortnight
 * monthly             monthly
 * bi-monthly          bi-monthly
 * quarter             quarter
 * quarterly           quarterly
 * yearly              yearly
 * annual              annual
 * annually            annually
 * annum               annum
 * again               again
 * between             between
 * after               after
 * from now            from now
 * repeat              repeat
 * times               times
 * per                 per
 * min (abbrev minute) min
 * morning             morning
 * noon                noon
 * night               night
 * midnight            midnight
 * mid-night           mid-night
 * evening             evening
 * final               final
 * future              future
 * spring              spring
 * summer              summer
 * fall                fall
 * winter              winter
 * end of              end of
 * end                 end
 * long                long
 * short               short
 */