LaravelTest
92 строки · 2.7 Кб
1//! moment.js locale configuration
2//! locale : Sindhi [sd]
3//! author : Narain Sagar : https://github.com/narainsagar
4
5;(function (global, factory) {6typeof exports === 'object' && typeof module !== 'undefined'7&& typeof require === 'function' ? factory(require('../moment')) :8typeof define === 'function' && define.amd ? define(['../moment'], factory) :9factory(global.moment)10}(this, (function (moment) { 'use strict';11
12//! moment.js locale configuration13
14var months = [15'جنوري',16'فيبروري',17'مارچ',18'اپريل',19'مئي',20'جون',21'جولاءِ',22'آگسٽ',23'سيپٽمبر',24'آڪٽوبر',25'نومبر',26'ڊسمبر',27],28days = ['آچر', 'سومر', 'اڱارو', 'اربع', 'خميس', 'جمع', 'ڇنڇر'];29
30var sd = moment.defineLocale('sd', {31months: months,32monthsShort: months,33weekdays: days,34weekdaysShort: days,35weekdaysMin: days,36longDateFormat: {37LT: 'HH:mm',38LTS: 'HH:mm:ss',39L: 'DD/MM/YYYY',40LL: 'D MMMM YYYY',41LLL: 'D MMMM YYYY HH:mm',42LLLL: 'dddd، D MMMM YYYY HH:mm',43},44meridiemParse: /صبح|شام/,45isPM: function (input) {46return 'شام' === input;47},48meridiem: function (hour, minute, isLower) {49if (hour < 12) {50return 'صبح';51}52return 'شام';53},54calendar: {55sameDay: '[اڄ] LT',56nextDay: '[سڀاڻي] LT',57nextWeek: 'dddd [اڳين هفتي تي] LT',58lastDay: '[ڪالهه] LT',59lastWeek: '[گزريل هفتي] dddd [تي] LT',60sameElse: 'L',61},62relativeTime: {63future: '%s پوء',64past: '%s اڳ',65s: 'چند سيڪنڊ',66ss: '%d سيڪنڊ',67m: 'هڪ منٽ',68mm: '%d منٽ',69h: 'هڪ ڪلاڪ',70hh: '%d ڪلاڪ',71d: 'هڪ ڏينهن',72dd: '%d ڏينهن',73M: 'هڪ مهينو',74MM: '%d مهينا',75y: 'هڪ سال',76yy: '%d سال',77},78preparse: function (string) {79return string.replace(/،/g, ',');80},81postformat: function (string) {82return string.replace(/,/g, '،');83},84week: {85dow: 1, // Monday is the first day of the week.86doy: 4, // The week that contains Jan 4th is the first week of the year.87},88});89
90return sd;91
92})));93