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