LaravelTest
65 строк · 2.1 Кб
1//! moment.js locale configuration
2//! locale : Swahili [sw]
3//! author : Fahad Kassim : https://github.com/fadsel
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 sw = moment.defineLocale('sw', {15months: 'Januari_Februari_Machi_Aprili_Mei_Juni_Julai_Agosti_Septemba_Oktoba_Novemba_Desemba'.split(16'_'17),18monthsShort: 'Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ago_Sep_Okt_Nov_Des'.split('_'),19weekdays: 'Jumapili_Jumatatu_Jumanne_Jumatano_Alhamisi_Ijumaa_Jumamosi'.split(20'_'21),22weekdaysShort: 'Jpl_Jtat_Jnne_Jtan_Alh_Ijm_Jmos'.split('_'),23weekdaysMin: 'J2_J3_J4_J5_Al_Ij_J1'.split('_'),24weekdaysParseExact: true,25longDateFormat: {26LT: 'hh:mm A',27LTS: 'HH:mm:ss',28L: 'DD.MM.YYYY',29LL: 'D MMMM YYYY',30LLL: 'D MMMM YYYY HH:mm',31LLLL: 'dddd, D MMMM YYYY HH:mm',32},33calendar: {34sameDay: '[leo saa] LT',35nextDay: '[kesho saa] LT',36nextWeek: '[wiki ijayo] dddd [saat] LT',37lastDay: '[jana] LT',38lastWeek: '[wiki iliyopita] dddd [saat] LT',39sameElse: 'L',40},41relativeTime: {42future: '%s baadaye',43past: 'tokea %s',44s: 'hivi punde',45ss: 'sekunde %d',46m: 'dakika moja',47mm: 'dakika %d',48h: 'saa limoja',49hh: 'masaa %d',50d: 'siku moja',51dd: 'siku %d',52M: 'mwezi mmoja',53MM: 'miezi %d',54y: 'mwaka mmoja',55yy: 'miaka %d',56},57week: {58dow: 1, // Monday is the first day of the week.59doy: 7, // The week that contains Jan 7th is the first week of the year.60},61});62
63return sw;64
65})));66