mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 13:02:56 +00:00
1 line
19 KiB
JSON
1 line
19 KiB
JSON
|
|
{"ast":null,"code":"//! moment.js locale configuration\n//! locale : Marathi [mr]\n//! author : Harshad Kale : https://github.com/kalehv\n//! author : Vivek Athalye : https://github.com/vnathalye\n\n;\n(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined' && typeof require === 'function' ? factory(require('../moment')) : typeof define === 'function' && define.amd ? define(['../moment'], factory) : factory(global.moment);\n})(this, function (moment) {\n 'use strict';\n\n //! moment.js locale configuration\n var symbolMap = {\n 1: '१',\n 2: '२',\n 3: '३',\n 4: '४',\n 5: '५',\n 6: '६',\n 7: 'à¥',\n 8: '८',\n 9: '९',\n 0: '०'\n },\n numberMap = {\n '१': '1',\n '२': '2',\n '३': '3',\n '४': '4',\n '५': '5',\n '६': '6',\n 'à¥': '7',\n '८': '8',\n '९': '9',\n '०': '0'\n };\n function relativeTimeMr(number, withoutSuffix, string, isFuture) {\n var output = '';\n if (withoutSuffix) {\n switch (string) {\n case 's':\n output = 'काही सेकंद';\n break;\n case 'ss':\n output = '%d सेकंद';\n break;\n case 'm':\n output = 'à¤�क मिनिट';\n break;\n case 'mm':\n output = '%d मिनिटे';\n break;\n case 'h':\n output = 'à¤�क तास';\n break;\n case 'hh':\n output = '%d तास';\n break;\n case 'd':\n output = 'à¤�क दिवस';\n break;\n case 'dd':\n output = '%d दिवस';\n break;\n case 'M':\n output = 'à¤�क महिना';\n break;\n case 'MM':\n output = '%d महिने';\n break;\n case 'y':\n output = 'à¤�क वरà¥�ष';\n break;\n case 'yy':\n output = '%d वरà¥�षे';\n break;\n }\n } else {\n switch (string) {\n case 's':\n output = 'काही सेकंदां';\n break;\n case 'ss':\n output = '%d सेकंदां';\n break;\n case 'm':\n output = 'à¤�का मिनिटा';\n break;\n case 'mm':\n output = '%d मिनिटां';\n break;\n case 'h':\n output = 'à¤�का तासा';\n break;\n case 'hh':\n output = '%d तासां';\n break;\n case 'd':\n output = 'à¤�का दिवसा';\n break;\n case 'dd':\n output = '%d दिवसां';\n break;\n case 'M':\n output = 'à¤�का महिनà¥�या';\n break;\n case 'MM':\n output = '%d महिनà¥�यां';\n break;\n case 'y':\n output = 'à¤�का वरà¥�षा';\n break;\n case 'yy':\n output = '%d वरà¥�षां';\n break;\n }\n }\n return output.replace(/%d/i, number);\n }\n var mr = moment.defineLocale('mr', {\n months: 'जानेवारी_फेबà¥�रà¥�वारी_मारà¥�च_à¤�पà¥�रिल_मे_जून_जà¥�लै_ऑगसà¥�ट_सपà¥�टेंबर_ऑकà¥�टोबर_नोवà¥�हेंबर_डिसेंबर'.split('_'),\n monthsShort: 'जाने._फेबà¥�रà¥�._मारà¥�च._à¤�पà¥�रि._मे._जून._जà¥�लै._ऑग._सपà¥�टें._ऑकà¥�टो._नोवà¥�हें._डिसें.'.split('_'),\n monthsParseExact: true,\n weekdays: 'रविवार_सोमवार_मंगळवार_बà¥�धवार_गà¥�रूवार_शà¥�कà¥�रवार_शनिवार'.split('_'),\n weekdaysShort: 'रवि_सोम_मंगळ_बà¥�ध_गà¥�रू_शà¥�कà¥�र_शनि'.split('_'),\n weekdaysMin: 'र_सो_à¤
|