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