UNPKG

2.04 kBJavaScriptView Raw
1//! moment.js locale configuration
2
3;(function (global, factory) {
4 typeof exports === 'object' && typeof module !== 'undefined'
5 && typeof require === 'function' ? factory(require('../moment')) :
6 typeof define === 'function' && define.amd ? define(['../moment'], factory) :
7 factory(global.moment)
8}(this, (function (moment) { 'use strict';
9
10
11 var sw = moment.defineLocale('sw', {
12 months : 'Januari_Februari_Machi_Aprili_Mei_Juni_Julai_Agosti_Septemba_Oktoba_Novemba_Desemba'.split('_'),
13 monthsShort : 'Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ago_Sep_Okt_Nov_Des'.split('_'),
14 weekdays : 'Jumapili_Jumatatu_Jumanne_Jumatano_Alhamisi_Ijumaa_Jumamosi'.split('_'),
15 weekdaysShort : 'Jpl_Jtat_Jnne_Jtan_Alh_Ijm_Jmos'.split('_'),
16 weekdaysMin : 'J2_J3_J4_J5_Al_Ij_J1'.split('_'),
17 weekdaysParseExact : true,
18 longDateFormat : {
19 LT : 'HH:mm',
20 LTS : 'HH:mm:ss',
21 L : 'DD.MM.YYYY',
22 LL : 'D MMMM YYYY',
23 LLL : 'D MMMM YYYY HH:mm',
24 LLLL : 'dddd, D MMMM YYYY HH:mm'
25 },
26 calendar : {
27 sameDay : '[leo saa] LT',
28 nextDay : '[kesho saa] LT',
29 nextWeek : '[wiki ijayo] dddd [saat] LT',
30 lastDay : '[jana] LT',
31 lastWeek : '[wiki iliyopita] dddd [saat] LT',
32 sameElse : 'L'
33 },
34 relativeTime : {
35 future : '%s baadaye',
36 past : 'tokea %s',
37 s : 'hivi punde',
38 ss : 'sekunde %d',
39 m : 'dakika moja',
40 mm : 'dakika %d',
41 h : 'saa limoja',
42 hh : 'masaa %d',
43 d : 'siku moja',
44 dd : 'masiku %d',
45 M : 'mwezi mmoja',
46 MM : 'miezi %d',
47 y : 'mwaka mmoja',
48 yy : 'miaka %d'
49 },
50 week : {
51 dow : 1, // Monday is the first day of the week.
52 doy : 7 // The week that contains Jan 7th is the first week of the year.
53 }
54 });
55
56 return sw;
57
58})));