mirror of
https://github.com/discourse/discourse.git
synced 2025-05-22 05:01:14 +08:00
Update moment locales as well.
This commit is contained in:
18
lib/javascripts/moment_locale/af.js
Executable file → Normal file
18
lib/javascripts/moment_locale/af.js
Executable file → Normal file
@ -1,18 +1,18 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : afrikaans (af)
|
||||
//! locale : Afrikaans [af]
|
||||
//! author : Werner Mollentze : https://github.com/wernerm
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var af = moment.defineLocale('af', {
|
||||
var af = moment.defineLocale('af', {
|
||||
months : 'Januarie_Februarie_Maart_April_Mei_Junie_Julie_Augustus_September_Oktober_November_Desember'.split('_'),
|
||||
monthsShort : 'Jan_Feb_Mar_Apr_Mei_Jun_Jul_Aug_Sep_Okt_Nov_Des'.split('_'),
|
||||
monthsShort : 'Jan_Feb_Mrt_Apr_Mei_Jun_Jul_Aug_Sep_Okt_Nov_Des'.split('_'),
|
||||
weekdays : 'Sondag_Maandag_Dinsdag_Woensdag_Donderdag_Vrydag_Saterdag'.split('_'),
|
||||
weekdaysShort : 'Son_Maa_Din_Woe_Don_Vry_Sat'.split('_'),
|
||||
weekdaysMin : 'So_Ma_Di_Wo_Do_Vr_Sa'.split('_'),
|
||||
@ -58,7 +58,7 @@
|
||||
y : '\'n jaar',
|
||||
yy : '%d jaar'
|
||||
},
|
||||
ordinalParse: /\d{1,2}(ste|de)/,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}(ste|de)/,
|
||||
ordinal : function (number) {
|
||||
return number + ((number === 1 || number === 8 || number >= 20) ? 'ste' : 'de'); // Thanks to Joris Röling : https://github.com/jjupiter
|
||||
},
|
||||
@ -66,8 +66,8 @@
|
||||
dow : 1, // Maandag is die eerste dag van die week.
|
||||
doy : 4 // Die week wat die 4de Januarie bevat is die eerste week van die jaar.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return af;
|
||||
return af;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
59
lib/javascripts/moment_locale/ar-dz.js
Normal file
59
lib/javascripts/moment_locale/ar-dz.js
Normal file
@ -0,0 +1,59 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : Arabic (Algeria) [ar-dz]
|
||||
//! author : Noureddine LOUAHEDJ : https://github.com/noureddineme
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var arDz = moment.defineLocale('ar-dz', {
|
||||
months : 'جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split('_'),
|
||||
monthsShort : 'جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split('_'),
|
||||
weekdays : 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),
|
||||
weekdaysShort : 'احد_اثنين_ثلاثاء_اربعاء_خميس_جمعة_سبت'.split('_'),
|
||||
weekdaysMin : 'أح_إث_ثلا_أر_خم_جم_سب'.split('_'),
|
||||
weekdaysParseExact : true,
|
||||
longDateFormat : {
|
||||
LT : 'HH:mm',
|
||||
LTS : 'HH:mm:ss',
|
||||
L : 'DD/MM/YYYY',
|
||||
LL : 'D MMMM YYYY',
|
||||
LLL : 'D MMMM YYYY HH:mm',
|
||||
LLLL : 'dddd D MMMM YYYY HH:mm'
|
||||
},
|
||||
calendar : {
|
||||
sameDay: '[اليوم على الساعة] LT',
|
||||
nextDay: '[غدا على الساعة] LT',
|
||||
nextWeek: 'dddd [على الساعة] LT',
|
||||
lastDay: '[أمس على الساعة] LT',
|
||||
lastWeek: 'dddd [على الساعة] LT',
|
||||
sameElse: 'L'
|
||||
},
|
||||
relativeTime : {
|
||||
future : 'في %s',
|
||||
past : 'منذ %s',
|
||||
s : 'ثوان',
|
||||
m : 'دقيقة',
|
||||
mm : '%d دقائق',
|
||||
h : 'ساعة',
|
||||
hh : '%d ساعات',
|
||||
d : 'يوم',
|
||||
dd : '%d أيام',
|
||||
M : 'شهر',
|
||||
MM : '%d أشهر',
|
||||
y : 'سنة',
|
||||
yy : '%d سنوات'
|
||||
},
|
||||
week : {
|
||||
dow : 0, // Sunday is the first day of the week.
|
||||
doy : 4 // The week that contains Jan 1st is the first week of the year.
|
||||
}
|
||||
});
|
||||
|
||||
return arDz;
|
||||
|
||||
})));
|
59
lib/javascripts/moment_locale/ar-kw.js
Normal file
59
lib/javascripts/moment_locale/ar-kw.js
Normal file
@ -0,0 +1,59 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : Arabic (Kuwait) [ar-kw]
|
||||
//! author : Nusret Parlak: https://github.com/nusretparlak
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var arKw = moment.defineLocale('ar-kw', {
|
||||
months : 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split('_'),
|
||||
monthsShort : 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split('_'),
|
||||
weekdays : 'الأحد_الإتنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),
|
||||
weekdaysShort : 'احد_اتنين_ثلاثاء_اربعاء_خميس_جمعة_سبت'.split('_'),
|
||||
weekdaysMin : 'ح_ن_ث_ر_خ_ج_س'.split('_'),
|
||||
weekdaysParseExact : true,
|
||||
longDateFormat : {
|
||||
LT : 'HH:mm',
|
||||
LTS : 'HH:mm:ss',
|
||||
L : 'DD/MM/YYYY',
|
||||
LL : 'D MMMM YYYY',
|
||||
LLL : 'D MMMM YYYY HH:mm',
|
||||
LLLL : 'dddd D MMMM YYYY HH:mm'
|
||||
},
|
||||
calendar : {
|
||||
sameDay: '[اليوم على الساعة] LT',
|
||||
nextDay: '[غدا على الساعة] LT',
|
||||
nextWeek: 'dddd [على الساعة] LT',
|
||||
lastDay: '[أمس على الساعة] LT',
|
||||
lastWeek: 'dddd [على الساعة] LT',
|
||||
sameElse: 'L'
|
||||
},
|
||||
relativeTime : {
|
||||
future : 'في %s',
|
||||
past : 'منذ %s',
|
||||
s : 'ثوان',
|
||||
m : 'دقيقة',
|
||||
mm : '%d دقائق',
|
||||
h : 'ساعة',
|
||||
hh : '%d ساعات',
|
||||
d : 'يوم',
|
||||
dd : '%d أيام',
|
||||
M : 'شهر',
|
||||
MM : '%d أشهر',
|
||||
y : 'سنة',
|
||||
yy : '%d سنوات'
|
||||
},
|
||||
week : {
|
||||
dow : 0, // Sunday is the first day of the week.
|
||||
doy : 12 // The week that contains Jan 1st is the first week of the year.
|
||||
}
|
||||
});
|
||||
|
||||
return arKw;
|
||||
|
||||
})));
|
126
lib/javascripts/moment_locale/ar-ly.js
Normal file
126
lib/javascripts/moment_locale/ar-ly.js
Normal file
@ -0,0 +1,126 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : Arabic (Lybia) [ar-ly]
|
||||
//! author : Ali Hmer: https://github.com/kikoanis
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var symbolMap = {
|
||||
'1': '1',
|
||||
'2': '2',
|
||||
'3': '3',
|
||||
'4': '4',
|
||||
'5': '5',
|
||||
'6': '6',
|
||||
'7': '7',
|
||||
'8': '8',
|
||||
'9': '9',
|
||||
'0': '0'
|
||||
};
|
||||
var pluralForm = function (n) {
|
||||
return n === 0 ? 0 : n === 1 ? 1 : n === 2 ? 2 : n % 100 >= 3 && n % 100 <= 10 ? 3 : n % 100 >= 11 ? 4 : 5;
|
||||
};
|
||||
var plurals = {
|
||||
s : ['أقل من ثانية', 'ثانية واحدة', ['ثانيتان', 'ثانيتين'], '%d ثوان', '%d ثانية', '%d ثانية'],
|
||||
m : ['أقل من دقيقة', 'دقيقة واحدة', ['دقيقتان', 'دقيقتين'], '%d دقائق', '%d دقيقة', '%d دقيقة'],
|
||||
h : ['أقل من ساعة', 'ساعة واحدة', ['ساعتان', 'ساعتين'], '%d ساعات', '%d ساعة', '%d ساعة'],
|
||||
d : ['أقل من يوم', 'يوم واحد', ['يومان', 'يومين'], '%d أيام', '%d يومًا', '%d يوم'],
|
||||
M : ['أقل من شهر', 'شهر واحد', ['شهران', 'شهرين'], '%d أشهر', '%d شهرا', '%d شهر'],
|
||||
y : ['أقل من عام', 'عام واحد', ['عامان', 'عامين'], '%d أعوام', '%d عامًا', '%d عام']
|
||||
};
|
||||
var pluralize = function (u) {
|
||||
return function (number, withoutSuffix, string, isFuture) {
|
||||
var f = pluralForm(number),
|
||||
str = plurals[u][pluralForm(number)];
|
||||
if (f === 2) {
|
||||
str = str[withoutSuffix ? 0 : 1];
|
||||
}
|
||||
return str.replace(/%d/i, number);
|
||||
};
|
||||
};
|
||||
var months = [
|
||||
'يناير',
|
||||
'فبراير',
|
||||
'مارس',
|
||||
'أبريل',
|
||||
'مايو',
|
||||
'يونيو',
|
||||
'يوليو',
|
||||
'أغسطس',
|
||||
'سبتمبر',
|
||||
'أكتوبر',
|
||||
'نوفمبر',
|
||||
'ديسمبر'
|
||||
];
|
||||
|
||||
var arLy = moment.defineLocale('ar-ly', {
|
||||
months : months,
|
||||
monthsShort : months,
|
||||
weekdays : 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),
|
||||
weekdaysShort : 'أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت'.split('_'),
|
||||
weekdaysMin : 'ح_ن_ث_ر_خ_ج_س'.split('_'),
|
||||
weekdaysParseExact : true,
|
||||
longDateFormat : {
|
||||
LT : 'HH:mm',
|
||||
LTS : 'HH:mm:ss',
|
||||
L : 'D/\u200FM/\u200FYYYY',
|
||||
LL : 'D MMMM YYYY',
|
||||
LLL : 'D MMMM YYYY HH:mm',
|
||||
LLLL : 'dddd D MMMM YYYY HH:mm'
|
||||
},
|
||||
meridiemParse: /ص|م/,
|
||||
isPM : function (input) {
|
||||
return 'م' === input;
|
||||
},
|
||||
meridiem : function (hour, minute, isLower) {
|
||||
if (hour < 12) {
|
||||
return 'ص';
|
||||
} else {
|
||||
return 'م';
|
||||
}
|
||||
},
|
||||
calendar : {
|
||||
sameDay: '[اليوم عند الساعة] LT',
|
||||
nextDay: '[غدًا عند الساعة] LT',
|
||||
nextWeek: 'dddd [عند الساعة] LT',
|
||||
lastDay: '[أمس عند الساعة] LT',
|
||||
lastWeek: 'dddd [عند الساعة] LT',
|
||||
sameElse: 'L'
|
||||
},
|
||||
relativeTime : {
|
||||
future : 'بعد %s',
|
||||
past : 'منذ %s',
|
||||
s : pluralize('s'),
|
||||
m : pluralize('m'),
|
||||
mm : pluralize('m'),
|
||||
h : pluralize('h'),
|
||||
hh : pluralize('h'),
|
||||
d : pluralize('d'),
|
||||
dd : pluralize('d'),
|
||||
M : pluralize('M'),
|
||||
MM : pluralize('M'),
|
||||
y : pluralize('y'),
|
||||
yy : pluralize('y')
|
||||
},
|
||||
preparse: function (string) {
|
||||
return string.replace(/\u200f/g, '').replace(/،/g, ',');
|
||||
},
|
||||
postformat: function (string) {
|
||||
return string.replace(/\d/g, function (match) {
|
||||
return symbolMap[match];
|
||||
}).replace(/,/g, '،');
|
||||
},
|
||||
week : {
|
||||
dow : 6, // Saturday is the first day of the week.
|
||||
doy : 12 // The week that contains Jan 1st is the first week of the year.
|
||||
}
|
||||
});
|
||||
|
||||
return arLy;
|
||||
|
||||
})));
|
14
lib/javascripts/moment_locale/ar-ma.js
Executable file → Normal file
14
lib/javascripts/moment_locale/ar-ma.js
Executable file → Normal file
@ -1,17 +1,17 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : Moroccan Arabic (ar-ma)
|
||||
//! locale : Arabic (Morocco) [ar-ma]
|
||||
//! author : ElFadili Yassine : https://github.com/ElFadiliY
|
||||
//! author : Abdel Said : https://github.com/abdelsaid
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var ar_ma = moment.defineLocale('ar-ma', {
|
||||
var arMa = moment.defineLocale('ar-ma', {
|
||||
months : 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split('_'),
|
||||
monthsShort : 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split('_'),
|
||||
weekdays : 'الأحد_الإتنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),
|
||||
@ -53,8 +53,8 @@
|
||||
dow : 6, // Saturday is the first day of the week.
|
||||
doy : 12 // The week that contains Jan 1st is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return ar_ma;
|
||||
return arMa;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
25
lib/javascripts/moment_locale/ar-sa.js
Executable file → Normal file
25
lib/javascripts/moment_locale/ar-sa.js
Executable file → Normal file
@ -1,16 +1,16 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : Arabic Saudi Arabia (ar-sa)
|
||||
//! locale : Arabic (Saudi Arabia) [ar-sa]
|
||||
//! author : Suhail Alkowaileet : https://github.com/xsoh
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var symbolMap = {
|
||||
var symbolMap = {
|
||||
'1': '١',
|
||||
'2': '٢',
|
||||
'3': '٣',
|
||||
@ -21,7 +21,8 @@
|
||||
'8': '٨',
|
||||
'9': '٩',
|
||||
'0': '٠'
|
||||
}, numberMap = {
|
||||
};
|
||||
var numberMap = {
|
||||
'١': '1',
|
||||
'٢': '2',
|
||||
'٣': '3',
|
||||
@ -32,9 +33,9 @@
|
||||
'٨': '8',
|
||||
'٩': '9',
|
||||
'٠': '0'
|
||||
};
|
||||
};
|
||||
|
||||
var ar_sa = moment.defineLocale('ar-sa', {
|
||||
var arSa = moment.defineLocale('ar-sa', {
|
||||
months : 'يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split('_'),
|
||||
monthsShort : 'يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split('_'),
|
||||
weekdays : 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),
|
||||
@ -94,11 +95,11 @@
|
||||
}).replace(/,/g, '،');
|
||||
},
|
||||
week : {
|
||||
dow : 6, // Saturday is the first day of the week.
|
||||
doy : 12 // The week that contains Jan 1st is the first week of the year.
|
||||
dow : 0, // Sunday is the first day of the week.
|
||||
doy : 6 // The week that contains Jan 1st is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return ar_sa;
|
||||
return arSa;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
15
lib/javascripts/moment_locale/ar-tn.js
Executable file → Normal file
15
lib/javascripts/moment_locale/ar-tn.js
Executable file → Normal file
@ -1,15 +1,16 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : Tunisian Arabic (ar-tn)
|
||||
//! locale : Arabic (Tunisia) [ar-tn]
|
||||
//! author : Nader Toukabri : https://github.com/naderio
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var ar_tn = moment.defineLocale('ar-tn', {
|
||||
var arTn = moment.defineLocale('ar-tn', {
|
||||
months: 'جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split('_'),
|
||||
monthsShort: 'جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split('_'),
|
||||
weekdays: 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),
|
||||
@ -51,8 +52,8 @@
|
||||
dow: 1, // Monday is the first day of the week.
|
||||
doy: 4 // The week that contains Jan 4th is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return ar_tn;
|
||||
return arTn;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
39
lib/javascripts/moment_locale/ar.js
Executable file → Normal file
39
lib/javascripts/moment_locale/ar.js
Executable file → Normal file
@ -1,18 +1,18 @@
|
||||
//! moment.js locale configuration
|
||||
//! Locale: Arabic (ar)
|
||||
//! Author: Abdel Said: https://github.com/abdelsaid
|
||||
//! Changes in months, weekdays: Ahmed Elkhatib
|
||||
//! Native plural forms: forabi https://github.com/forabi
|
||||
//! locale : Arabic [ar]
|
||||
//! author : Abdel Said: https://github.com/abdelsaid
|
||||
//! author : Ahmed Elkhatib
|
||||
//! author : forabi https://github.com/forabi
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var symbolMap = {
|
||||
var symbolMap = {
|
||||
'1': '١',
|
||||
'2': '٢',
|
||||
'3': '٣',
|
||||
@ -23,7 +23,8 @@
|
||||
'8': '٨',
|
||||
'9': '٩',
|
||||
'0': '٠'
|
||||
}, numberMap = {
|
||||
};
|
||||
var numberMap = {
|
||||
'١': '1',
|
||||
'٢': '2',
|
||||
'٣': '3',
|
||||
@ -34,16 +35,19 @@
|
||||
'٨': '8',
|
||||
'٩': '9',
|
||||
'٠': '0'
|
||||
}, pluralForm = function (n) {
|
||||
};
|
||||
var pluralForm = function (n) {
|
||||
return n === 0 ? 0 : n === 1 ? 1 : n === 2 ? 2 : n % 100 >= 3 && n % 100 <= 10 ? 3 : n % 100 >= 11 ? 4 : 5;
|
||||
}, plurals = {
|
||||
};
|
||||
var plurals = {
|
||||
s : ['أقل من ثانية', 'ثانية واحدة', ['ثانيتان', 'ثانيتين'], '%d ثوان', '%d ثانية', '%d ثانية'],
|
||||
m : ['أقل من دقيقة', 'دقيقة واحدة', ['دقيقتان', 'دقيقتين'], '%d دقائق', '%d دقيقة', '%d دقيقة'],
|
||||
h : ['أقل من ساعة', 'ساعة واحدة', ['ساعتان', 'ساعتين'], '%d ساعات', '%d ساعة', '%d ساعة'],
|
||||
d : ['أقل من يوم', 'يوم واحد', ['يومان', 'يومين'], '%d أيام', '%d يومًا', '%d يوم'],
|
||||
M : ['أقل من شهر', 'شهر واحد', ['شهران', 'شهرين'], '%d أشهر', '%d شهرا', '%d شهر'],
|
||||
y : ['أقل من عام', 'عام واحد', ['عامان', 'عامين'], '%d أعوام', '%d عامًا', '%d عام']
|
||||
}, pluralize = function (u) {
|
||||
};
|
||||
var pluralize = function (u) {
|
||||
return function (number, withoutSuffix, string, isFuture) {
|
||||
var f = pluralForm(number),
|
||||
str = plurals[u][pluralForm(number)];
|
||||
@ -52,7 +56,8 @@
|
||||
}
|
||||
return str.replace(/%d/i, number);
|
||||
};
|
||||
}, months = [
|
||||
};
|
||||
var months = [
|
||||
'كانون الثاني يناير',
|
||||
'شباط فبراير',
|
||||
'آذار مارس',
|
||||
@ -65,9 +70,9 @@
|
||||
'تشرين الأول أكتوبر',
|
||||
'تشرين الثاني نوفمبر',
|
||||
'كانون الأول ديسمبر'
|
||||
];
|
||||
];
|
||||
|
||||
var ar = moment.defineLocale('ar', {
|
||||
var ar = moment.defineLocale('ar', {
|
||||
months : months,
|
||||
monthsShort : months,
|
||||
weekdays : 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),
|
||||
@ -130,8 +135,8 @@
|
||||
dow : 6, // Saturday is the first day of the week.
|
||||
doy : 12 // The week that contains Jan 1st is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return ar;
|
||||
return ar;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
20
lib/javascripts/moment_locale/az.js
Executable file → Normal file
20
lib/javascripts/moment_locale/az.js
Executable file → Normal file
@ -1,16 +1,16 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : azerbaijani (az)
|
||||
//! locale : Azerbaijani [az]
|
||||
//! author : topchiyev : https://github.com/topchiyev
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var suffixes = {
|
||||
var suffixes = {
|
||||
1: '-inci',
|
||||
5: '-inci',
|
||||
8: '-inci',
|
||||
@ -29,9 +29,9 @@
|
||||
30: '-uncu',
|
||||
60: '-ıncı',
|
||||
90: '-ıncı'
|
||||
};
|
||||
};
|
||||
|
||||
var az = moment.defineLocale('az', {
|
||||
var az = moment.defineLocale('az', {
|
||||
months : 'yanvar_fevral_mart_aprel_may_iyun_iyul_avqust_sentyabr_oktyabr_noyabr_dekabr'.split('_'),
|
||||
monthsShort : 'yan_fev_mar_apr_may_iyn_iyl_avq_sen_okt_noy_dek'.split('_'),
|
||||
weekdays : 'Bazar_Bazar ertəsi_Çərşənbə axşamı_Çərşənbə_Cümə axşamı_Cümə_Şənbə'.split('_'),
|
||||
@ -84,7 +84,7 @@
|
||||
return 'axşam';
|
||||
}
|
||||
},
|
||||
ordinalParse: /\d{1,2}-(ıncı|inci|nci|üncü|ncı|uncu)/,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}-(ıncı|inci|nci|üncü|ncı|uncu)/,
|
||||
ordinal : function (number) {
|
||||
if (number === 0) { // special case for zero
|
||||
return number + '-ıncı';
|
||||
@ -98,8 +98,8 @@
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 7 // The week that contains Jan 1st is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return az;
|
||||
return az;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
24
lib/javascripts/moment_locale/be.js
Executable file → Normal file
24
lib/javascripts/moment_locale/be.js
Executable file → Normal file
@ -1,5 +1,5 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : belarusian (be)
|
||||
//! locale : Belarusian [be]
|
||||
//! author : Dmitry Demidov : https://github.com/demidov91
|
||||
//! author: Praleska: http://praleska.pro/
|
||||
//! Author : Menelion Elensúle : https://github.com/Oire
|
||||
@ -7,16 +7,16 @@
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
function plural(word, num) {
|
||||
function plural(word, num) {
|
||||
var forms = word.split('_');
|
||||
return num % 10 === 1 && num % 100 !== 11 ? forms[0] : (num % 10 >= 2 && num % 10 <= 4 && (num % 100 < 10 || num % 100 >= 20) ? forms[1] : forms[2]);
|
||||
}
|
||||
function relativeTimeWithPlural(number, withoutSuffix, key) {
|
||||
}
|
||||
function relativeTimeWithPlural(number, withoutSuffix, key) {
|
||||
var format = {
|
||||
'mm': withoutSuffix ? 'хвіліна_хвіліны_хвілін' : 'хвіліну_хвіліны_хвілін',
|
||||
'hh': withoutSuffix ? 'гадзіна_гадзіны_гадзін' : 'гадзіну_гадзіны_гадзін',
|
||||
@ -33,9 +33,9 @@
|
||||
else {
|
||||
return number + ' ' + plural(format[key], +number);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
var be = moment.defineLocale('be', {
|
||||
var be = moment.defineLocale('be', {
|
||||
months : {
|
||||
format: 'студзеня_лютага_сакавіка_красавіка_траўня_чэрвеня_ліпеня_жніўня_верасня_кастрычніка_лістапада_снежня'.split('_'),
|
||||
standalone: 'студзень_люты_сакавік_красавік_травень_чэрвень_ліпень_жнівень_верасень_кастрычнік_лістапад_снежань'.split('_')
|
||||
@ -108,7 +108,7 @@
|
||||
return 'вечара';
|
||||
}
|
||||
},
|
||||
ordinalParse: /\d{1,2}-(і|ы|га)/,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}-(і|ы|га)/,
|
||||
ordinal: function (number, period) {
|
||||
switch (period) {
|
||||
case 'M':
|
||||
@ -127,8 +127,8 @@
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 7 // The week that contains Jan 1st is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return be;
|
||||
return be;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
16
lib/javascripts/moment_locale/bg.js
Executable file → Normal file
16
lib/javascripts/moment_locale/bg.js
Executable file → Normal file
@ -1,16 +1,16 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : bulgarian (bg)
|
||||
//! locale : Bulgarian [bg]
|
||||
//! author : Krasen Borisov : https://github.com/kraz
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var bg = moment.defineLocale('bg', {
|
||||
var bg = moment.defineLocale('bg', {
|
||||
months : 'януари_февруари_март_април_май_юни_юли_август_септември_октомври_ноември_декември'.split('_'),
|
||||
monthsShort : 'янр_фев_мар_апр_май_юни_юли_авг_сеп_окт_ное_дек'.split('_'),
|
||||
weekdays : 'неделя_понеделник_вторник_сряда_четвъртък_петък_събота'.split('_'),
|
||||
@ -59,7 +59,7 @@
|
||||
y : 'година',
|
||||
yy : '%d години'
|
||||
},
|
||||
ordinalParse: /\d{1,2}-(ев|ен|ти|ви|ри|ми)/,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}-(ев|ен|ти|ви|ри|ми)/,
|
||||
ordinal : function (number) {
|
||||
var lastDigit = number % 10,
|
||||
last2Digits = number % 100;
|
||||
@ -83,8 +83,8 @@
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 7 // The week that contains Jan 1st is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return bg;
|
||||
return bg;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
32
lib/javascripts/moment_locale/bn.js
Executable file → Normal file
32
lib/javascripts/moment_locale/bn.js
Executable file → Normal file
@ -1,16 +1,16 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : Bengali (bn)
|
||||
//! locale : Bengali [bn]
|
||||
//! author : Kaushik Gandhi : https://github.com/kaushikgandhi
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var symbolMap = {
|
||||
var symbolMap = {
|
||||
'1': '১',
|
||||
'2': '২',
|
||||
'3': '৩',
|
||||
@ -21,8 +21,8 @@
|
||||
'8': '৮',
|
||||
'9': '৯',
|
||||
'0': '০'
|
||||
},
|
||||
numberMap = {
|
||||
};
|
||||
var numberMap = {
|
||||
'১': '1',
|
||||
'২': '2',
|
||||
'৩': '3',
|
||||
@ -33,14 +33,14 @@
|
||||
'৮': '8',
|
||||
'৯': '9',
|
||||
'০': '0'
|
||||
};
|
||||
};
|
||||
|
||||
var bn = moment.defineLocale('bn', {
|
||||
months : 'জানুয়ারী_ফেবুয়ারী_মার্চ_এপ্রিল_মে_জুন_জুলাই_অগাস্ট_সেপ্টেম্বর_অক্টোবর_নভেম্বর_ডিসেম্বর'.split('_'),
|
||||
monthsShort : 'জানু_ফেব_মার্চ_এপর_মে_জুন_জুল_অগ_সেপ্ট_অক্টো_নভ_ডিসেম্'.split('_'),
|
||||
weekdays : 'রবিবার_সোমবার_মঙ্গলবার_বুধবার_বৃহস্পত্তিবার_শুক্রবার_শনিবার'.split('_'),
|
||||
weekdaysShort : 'রবি_সোম_মঙ্গল_বুধ_বৃহস্পত্তি_শুক্র_শনি'.split('_'),
|
||||
weekdaysMin : 'রব_সম_মঙ্গ_বু_ব্রিহ_শু_শনি'.split('_'),
|
||||
var bn = moment.defineLocale('bn', {
|
||||
months : 'জানুয়ারী_ফেব্রুয়ারি_মার্চ_এপ্রিল_মে_জুন_জুলাই_আগস্ট_সেপ্টেম্বর_অক্টোবর_নভেম্বর_ডিসেম্বর'.split('_'),
|
||||
monthsShort : 'জানু_ফেব_মার্চ_এপ্র_মে_জুন_জুল_আগ_সেপ্ট_অক্টো_নভে_ডিসে'.split('_'),
|
||||
weekdays : 'রবিবার_সোমবার_মঙ্গলবার_বুধবার_বৃহস্পতিবার_শুক্রবার_শনিবার'.split('_'),
|
||||
weekdaysShort : 'রবি_সোম_মঙ্গল_বুধ_বৃহস্পতি_শুক্র_শনি'.split('_'),
|
||||
weekdaysMin : 'রবি_সোম_মঙ্গ_বুধ_বৃহঃ_শুক্র_শনি'.split('_'),
|
||||
longDateFormat : {
|
||||
LT : 'A h:mm সময়',
|
||||
LTS : 'A h:mm:ss সময়',
|
||||
@ -112,8 +112,8 @@
|
||||
dow : 0, // Sunday is the first day of the week.
|
||||
doy : 6 // The week that contains Jan 1st is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return bn;
|
||||
return bn;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
22
lib/javascripts/moment_locale/bo.js
Executable file → Normal file
22
lib/javascripts/moment_locale/bo.js
Executable file → Normal file
@ -1,16 +1,16 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : tibetan (bo)
|
||||
//! locale : Tibetan [bo]
|
||||
//! author : Thupten N. Chakrishar : https://github.com/vajradog
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var symbolMap = {
|
||||
var symbolMap = {
|
||||
'1': '༡',
|
||||
'2': '༢',
|
||||
'3': '༣',
|
||||
@ -21,8 +21,8 @@
|
||||
'8': '༨',
|
||||
'9': '༩',
|
||||
'0': '༠'
|
||||
},
|
||||
numberMap = {
|
||||
};
|
||||
var numberMap = {
|
||||
'༡': '1',
|
||||
'༢': '2',
|
||||
'༣': '3',
|
||||
@ -33,9 +33,9 @@
|
||||
'༨': '8',
|
||||
'༩': '9',
|
||||
'༠': '0'
|
||||
};
|
||||
};
|
||||
|
||||
var bo = moment.defineLocale('bo', {
|
||||
var bo = moment.defineLocale('bo', {
|
||||
months : 'ཟླ་བ་དང་པོ_ཟླ་བ་གཉིས་པ_ཟླ་བ་གསུམ་པ_ཟླ་བ་བཞི་པ_ཟླ་བ་ལྔ་པ_ཟླ་བ་དྲུག་པ_ཟླ་བ་བདུན་པ_ཟླ་བ་བརྒྱད་པ_ཟླ་བ་དགུ་པ_ཟླ་བ་བཅུ་པ_ཟླ་བ་བཅུ་གཅིག་པ_ཟླ་བ་བཅུ་གཉིས་པ'.split('_'),
|
||||
monthsShort : 'ཟླ་བ་དང་པོ_ཟླ་བ་གཉིས་པ_ཟླ་བ་གསུམ་པ_ཟླ་བ་བཞི་པ_ཟླ་བ་ལྔ་པ_ཟླ་བ་དྲུག་པ_ཟླ་བ་བདུན་པ_ཟླ་བ་བརྒྱད་པ_ཟླ་བ་དགུ་པ_ཟླ་བ་བཅུ་པ_ཟླ་བ་བཅུ་གཅིག་པ_ཟླ་བ་བཅུ་གཉིས་པ'.split('_'),
|
||||
weekdays : 'གཟའ་ཉི་མ་_གཟའ་ཟླ་བ་_གཟའ་མིག་དམར་_གཟའ་ལྷག་པ་_གཟའ་ཕུར་བུ_གཟའ་པ་སངས་_གཟའ་སྤེན་པ་'.split('_'),
|
||||
@ -112,8 +112,8 @@
|
||||
dow : 0, // Sunday is the first day of the week.
|
||||
doy : 6 // The week that contains Jan 1st is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return bo;
|
||||
return bo;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
36
lib/javascripts/moment_locale/br.js
Executable file → Normal file
36
lib/javascripts/moment_locale/br.js
Executable file → Normal file
@ -1,24 +1,24 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : breton (br)
|
||||
//! locale : Breton [br]
|
||||
//! author : Jean-Baptiste Le Duigou : https://github.com/jbleduigou
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
function relativeTimeWithMutation(number, withoutSuffix, key) {
|
||||
function relativeTimeWithMutation(number, withoutSuffix, key) {
|
||||
var format = {
|
||||
'mm': 'munutenn',
|
||||
'MM': 'miz',
|
||||
'dd': 'devezh'
|
||||
};
|
||||
return number + ' ' + mutation(format[key], number);
|
||||
}
|
||||
function specialMutationForYears(number) {
|
||||
}
|
||||
function specialMutationForYears(number) {
|
||||
switch (lastNumber(number)) {
|
||||
case 1:
|
||||
case 3:
|
||||
@ -29,20 +29,20 @@
|
||||
default:
|
||||
return number + ' vloaz';
|
||||
}
|
||||
}
|
||||
function lastNumber(number) {
|
||||
}
|
||||
function lastNumber(number) {
|
||||
if (number > 9) {
|
||||
return lastNumber(number % 10);
|
||||
}
|
||||
return number;
|
||||
}
|
||||
function mutation(text, number) {
|
||||
}
|
||||
function mutation(text, number) {
|
||||
if (number === 2) {
|
||||
return softMutation(text);
|
||||
}
|
||||
return text;
|
||||
}
|
||||
function softMutation(text) {
|
||||
}
|
||||
function softMutation(text) {
|
||||
var mutationTable = {
|
||||
'm': 'v',
|
||||
'b': 'v',
|
||||
@ -52,9 +52,9 @@
|
||||
return text;
|
||||
}
|
||||
return mutationTable[text.charAt(0)] + text.substring(1);
|
||||
}
|
||||
}
|
||||
|
||||
var br = moment.defineLocale('br', {
|
||||
var br = moment.defineLocale('br', {
|
||||
months : 'Genver_C\'hwevrer_Meurzh_Ebrel_Mae_Mezheven_Gouere_Eost_Gwengolo_Here_Du_Kerzu'.split('_'),
|
||||
monthsShort : 'Gen_C\'hwe_Meu_Ebr_Mae_Eve_Gou_Eos_Gwe_Her_Du_Ker'.split('_'),
|
||||
weekdays : 'Sul_Lun_Meurzh_Merc\'her_Yaou_Gwener_Sadorn'.split('_'),
|
||||
@ -92,7 +92,7 @@
|
||||
y : 'ur bloaz',
|
||||
yy : specialMutationForYears
|
||||
},
|
||||
ordinalParse: /\d{1,2}(añ|vet)/,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}(añ|vet)/,
|
||||
ordinal : function (number) {
|
||||
var output = (number === 1) ? 'añ' : 'vet';
|
||||
return number + output;
|
||||
@ -101,8 +101,8 @@
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 4 // The week that contains Jan 4th is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return br;
|
||||
return br;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
22
lib/javascripts/moment_locale/bs.js
Executable file → Normal file
22
lib/javascripts/moment_locale/bs.js
Executable file → Normal file
@ -1,17 +1,17 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : bosnian (bs)
|
||||
//! locale : Bosnian [bs]
|
||||
//! author : Nedim Cholich : https://github.com/frontyard
|
||||
//! based on (hr) translation by Bojan Marković
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
function translate(number, withoutSuffix, key) {
|
||||
function translate(number, withoutSuffix, key) {
|
||||
var result = number + ' ';
|
||||
switch (key) {
|
||||
case 'm':
|
||||
@ -62,9 +62,9 @@
|
||||
}
|
||||
return result;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
var bs = moment.defineLocale('bs', {
|
||||
var bs = moment.defineLocale('bs', {
|
||||
months : 'januar_februar_mart_april_maj_juni_juli_august_septembar_oktobar_novembar_decembar'.split('_'),
|
||||
monthsShort : 'jan._feb._mar._apr._maj._jun._jul._aug._sep._okt._nov._dec.'.split('_'),
|
||||
monthsParseExact: true,
|
||||
@ -75,7 +75,7 @@
|
||||
longDateFormat : {
|
||||
LT : 'H:mm',
|
||||
LTS : 'H:mm:ss',
|
||||
L : 'DD. MM. YYYY',
|
||||
L : 'DD.MM.YYYY',
|
||||
LL : 'D. MMMM YYYY',
|
||||
LLL : 'D. MMMM YYYY H:mm',
|
||||
LLLL : 'dddd, D. MMMM YYYY H:mm'
|
||||
@ -130,14 +130,14 @@
|
||||
y : 'godinu',
|
||||
yy : translate
|
||||
},
|
||||
ordinalParse: /\d{1,2}\./,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}\./,
|
||||
ordinal : '%d.',
|
||||
week : {
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 7 // The week that contains Jan 1st is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return bs;
|
||||
return bs;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
35
lib/javascripts/moment_locale/ca.js
Executable file → Normal file
35
lib/javascripts/moment_locale/ca.js
Executable file → Normal file
@ -1,18 +1,22 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : catalan (ca)
|
||||
//! locale : Catalan [ca]
|
||||
//! author : Juan G. Hurtado : https://github.com/juanghurtado
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var ca = moment.defineLocale('ca', {
|
||||
months : 'gener_febrer_març_abril_maig_juny_juliol_agost_setembre_octubre_novembre_desembre'.split('_'),
|
||||
monthsShort : 'gen._febr._mar._abr._mai._jun._jul._ag._set._oct._nov._des.'.split('_'),
|
||||
var ca = moment.defineLocale('ca', {
|
||||
months : {
|
||||
standalone: 'gener_febrer_març_abril_maig_juny_juliol_agost_setembre_octubre_novembre_desembre'.split('_'),
|
||||
format: 'de gener_de febrer_de març_d\'abril_de maig_de juny_de juliol_d\'agost_de setembre_d\'octubre_de novembre_de desembre'.split('_'),
|
||||
isFormat: /D[oD]?(\s)+MMMM/
|
||||
},
|
||||
monthsShort : 'gen._febr._març_abr._maig_juny_jul._ag._set._oct._nov._des.'.split('_'),
|
||||
monthsParseExact : true,
|
||||
weekdays : 'diumenge_dilluns_dimarts_dimecres_dijous_divendres_dissabte'.split('_'),
|
||||
weekdaysShort : 'dg._dl._dt._dc._dj._dv._ds.'.split('_'),
|
||||
@ -22,9 +26,12 @@
|
||||
LT : 'H:mm',
|
||||
LTS : 'H:mm:ss',
|
||||
L : 'DD/MM/YYYY',
|
||||
LL : 'D MMMM YYYY',
|
||||
LLL : 'D MMMM YYYY H:mm',
|
||||
LLLL : 'dddd D MMMM YYYY H:mm'
|
||||
LL : '[el] D MMMM [de] YYYY',
|
||||
ll : 'D MMM YYYY',
|
||||
LLL : '[el] D MMMM [de] YYYY [a les] H:mm',
|
||||
lll : 'D MMM YYYY, H:mm',
|
||||
LLLL : '[el] dddd D MMMM [de] YYYY [a les] H:mm',
|
||||
llll : 'ddd D MMM YYYY, H:mm'
|
||||
},
|
||||
calendar : {
|
||||
sameDay : function () {
|
||||
@ -45,7 +52,7 @@
|
||||
sameElse : 'L'
|
||||
},
|
||||
relativeTime : {
|
||||
future : 'en %s',
|
||||
future : 'd\'aquí %s',
|
||||
past : 'fa %s',
|
||||
s : 'uns segons',
|
||||
m : 'un minut',
|
||||
@ -59,7 +66,7 @@
|
||||
y : 'un any',
|
||||
yy : '%d anys'
|
||||
},
|
||||
ordinalParse: /\d{1,2}(r|n|t|è|a)/,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}(r|n|t|è|a)/,
|
||||
ordinal : function (number, period) {
|
||||
var output = (number === 1) ? 'r' :
|
||||
(number === 2) ? 'n' :
|
||||
@ -74,8 +81,8 @@
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 4 // The week that contains Jan 4th is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return ca;
|
||||
return ca;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
31
lib/javascripts/moment_locale/cs.js
Executable file → Normal file
31
lib/javascripts/moment_locale/cs.js
Executable file → Normal file
@ -1,21 +1,21 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : czech (cs)
|
||||
//! locale : Czech [cs]
|
||||
//! author : petrbela : https://github.com/petrbela
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var months = 'leden_únor_březen_duben_květen_červen_červenec_srpen_září_říjen_listopad_prosinec'.split('_'),
|
||||
monthsShort = 'led_úno_bře_dub_kvě_čvn_čvc_srp_zář_říj_lis_pro'.split('_');
|
||||
function plural(n) {
|
||||
var months = 'leden_únor_březen_duben_květen_červen_červenec_srpen_září_říjen_listopad_prosinec'.split('_');
|
||||
var monthsShort = 'led_úno_bře_dub_kvě_čvn_čvc_srp_zář_říj_lis_pro'.split('_');
|
||||
function plural(n) {
|
||||
return (n > 1) && (n < 5) && (~~(n / 10) !== 1);
|
||||
}
|
||||
function translate(number, withoutSuffix, key, isFuture) {
|
||||
}
|
||||
function translate(number, withoutSuffix, key, isFuture) {
|
||||
var result = number + ' ';
|
||||
switch (key) {
|
||||
case 's': // a few seconds / in a few seconds / a few seconds ago
|
||||
@ -66,9 +66,9 @@
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
var cs = moment.defineLocale('cs', {
|
||||
var cs = moment.defineLocale('cs', {
|
||||
months : months,
|
||||
monthsShort : monthsShort,
|
||||
monthsParse : (function (months, monthsShort) {
|
||||
@ -102,7 +102,8 @@
|
||||
L : 'DD.MM.YYYY',
|
||||
LL : 'D. MMMM YYYY',
|
||||
LLL : 'D. MMMM YYYY H:mm',
|
||||
LLLL : 'dddd D. MMMM YYYY H:mm'
|
||||
LLLL : 'dddd D. MMMM YYYY H:mm',
|
||||
l : 'D. M. YYYY'
|
||||
},
|
||||
calendar : {
|
||||
sameDay: '[dnes v] LT',
|
||||
@ -158,14 +159,14 @@
|
||||
y : translate,
|
||||
yy : translate
|
||||
},
|
||||
ordinalParse : /\d{1,2}\./,
|
||||
dayOfMonthOrdinalParse : /\d{1,2}\./,
|
||||
ordinal : '%d.',
|
||||
week : {
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 4 // The week that contains Jan 4th is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return cs;
|
||||
return cs;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
16
lib/javascripts/moment_locale/cv.js
Executable file → Normal file
16
lib/javascripts/moment_locale/cv.js
Executable file → Normal file
@ -1,16 +1,16 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : chuvash (cv)
|
||||
//! locale : Chuvash [cv]
|
||||
//! author : Anatoly Mironov : https://github.com/mirontoli
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var cv = moment.defineLocale('cv', {
|
||||
var cv = moment.defineLocale('cv', {
|
||||
months : 'кӑрлач_нарӑс_пуш_ака_май_ҫӗртме_утӑ_ҫурла_авӑн_юпа_чӳк_раштав'.split('_'),
|
||||
monthsShort : 'кӑр_нар_пуш_ака_май_ҫӗр_утӑ_ҫур_авн_юпа_чӳк_раш'.split('_'),
|
||||
weekdays : 'вырсарникун_тунтикун_ытларикун_юнкун_кӗҫнерникун_эрнекун_шӑматкун'.split('_'),
|
||||
@ -50,14 +50,14 @@
|
||||
y : 'пӗр ҫул',
|
||||
yy : '%d ҫул'
|
||||
},
|
||||
ordinalParse: /\d{1,2}-мӗш/,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}-мӗш/,
|
||||
ordinal : '%d-мӗш',
|
||||
week : {
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 7 // The week that contains Jan 1st is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return cv;
|
||||
return cv;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
19
lib/javascripts/moment_locale/cy.js
Executable file → Normal file
19
lib/javascripts/moment_locale/cy.js
Executable file → Normal file
@ -1,16 +1,17 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : Welsh (cy)
|
||||
//! author : Robert Allen
|
||||
//! locale : Welsh [cy]
|
||||
//! author : Robert Allen : https://github.com/robgallen
|
||||
//! author : https://github.com/ryangreaves
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var cy = moment.defineLocale('cy', {
|
||||
var cy = moment.defineLocale('cy', {
|
||||
months: 'Ionawr_Chwefror_Mawrth_Ebrill_Mai_Mehefin_Gorffennaf_Awst_Medi_Hydref_Tachwedd_Rhagfyr'.split('_'),
|
||||
monthsShort: 'Ion_Chwe_Maw_Ebr_Mai_Meh_Gor_Aws_Med_Hyd_Tach_Rhag'.split('_'),
|
||||
weekdays: 'Dydd Sul_Dydd Llun_Dydd Mawrth_Dydd Mercher_Dydd Iau_Dydd Gwener_Dydd Sadwrn'.split('_'),
|
||||
@ -49,7 +50,7 @@
|
||||
y: 'blwyddyn',
|
||||
yy: '%d flynedd'
|
||||
},
|
||||
ordinalParse: /\d{1,2}(fed|ain|af|il|ydd|ed|eg)/,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}(fed|ain|af|il|ydd|ed|eg)/,
|
||||
// traditional ordinal numbers above 31 are not commonly used in colloquial Welsh
|
||||
ordinal: function (number) {
|
||||
var b = number,
|
||||
@ -73,8 +74,8 @@
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 4 // The week that contains Jan 4th is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return cy;
|
||||
return cy;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
28
lib/javascripts/moment_locale/da.js
Executable file → Normal file
28
lib/javascripts/moment_locale/da.js
Executable file → Normal file
@ -1,16 +1,16 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : danish (da)
|
||||
//! locale : Danish [da]
|
||||
//! author : Ulrik Nielsen : https://github.com/mrbase
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var da = moment.defineLocale('da', {
|
||||
var da = moment.defineLocale('da', {
|
||||
months : 'januar_februar_marts_april_maj_juni_juli_august_september_oktober_november_december'.split('_'),
|
||||
monthsShort : 'jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec'.split('_'),
|
||||
weekdays : 'søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag'.split('_'),
|
||||
@ -22,14 +22,14 @@
|
||||
L : 'DD/MM/YYYY',
|
||||
LL : 'D. MMMM YYYY',
|
||||
LLL : 'D. MMMM YYYY HH:mm',
|
||||
LLLL : 'dddd [d.] D. MMMM YYYY HH:mm'
|
||||
LLLL : 'dddd [d.] D. MMMM YYYY [kl.] HH:mm'
|
||||
},
|
||||
calendar : {
|
||||
sameDay : '[I dag kl.] LT',
|
||||
nextDay : '[I morgen kl.] LT',
|
||||
nextWeek : 'dddd [kl.] LT',
|
||||
lastDay : '[I går kl.] LT',
|
||||
lastWeek : '[sidste] dddd [kl] LT',
|
||||
sameDay : '[i dag kl.] LT',
|
||||
nextDay : '[i morgen kl.] LT',
|
||||
nextWeek : 'på dddd [kl.] LT',
|
||||
lastDay : '[i går kl.] LT',
|
||||
lastWeek : '[i] dddd[s kl.] LT',
|
||||
sameElse : 'L'
|
||||
},
|
||||
relativeTime : {
|
||||
@ -47,14 +47,14 @@
|
||||
y : 'et år',
|
||||
yy : '%d år'
|
||||
},
|
||||
ordinalParse: /\d{1,2}\./,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}\./,
|
||||
ordinal : '%d.',
|
||||
week : {
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 4 // The week that contains Jan 4th is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return da;
|
||||
return da;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
20
lib/javascripts/moment_locale/de-at.js
Executable file → Normal file
20
lib/javascripts/moment_locale/de-at.js
Executable file → Normal file
@ -1,5 +1,5 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : austrian german (de-at)
|
||||
//! locale : German (Austria) [de-at]
|
||||
//! author : lluchs : https://github.com/lluchs
|
||||
//! author: Menelion Elensúle: https://github.com/Oire
|
||||
//! author : Martin Groller : https://github.com/MadMG
|
||||
@ -8,12 +8,12 @@
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
function processRelativeTime(number, withoutSuffix, key, isFuture) {
|
||||
function processRelativeTime(number, withoutSuffix, key, isFuture) {
|
||||
var format = {
|
||||
'm': ['eine Minute', 'einer Minute'],
|
||||
'h': ['eine Stunde', 'einer Stunde'],
|
||||
@ -25,9 +25,9 @@
|
||||
'yy': [number + ' Jahre', number + ' Jahren']
|
||||
};
|
||||
return withoutSuffix ? format[key][0] : format[key][1];
|
||||
}
|
||||
}
|
||||
|
||||
var de_at = moment.defineLocale('de-at', {
|
||||
var deAt = moment.defineLocale('de-at', {
|
||||
months : 'Jänner_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember'.split('_'),
|
||||
monthsShort : 'Jän._Febr._Mrz._Apr._Mai_Jun._Jul._Aug._Sept._Okt._Nov._Dez.'.split('_'),
|
||||
monthsParseExact : true,
|
||||
@ -66,14 +66,14 @@
|
||||
y : processRelativeTime,
|
||||
yy : processRelativeTime
|
||||
},
|
||||
ordinalParse: /\d{1,2}\./,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}\./,
|
||||
ordinal : '%d.',
|
||||
week : {
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 4 // The week that contains Jan 4th is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return de_at;
|
||||
return deAt;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
78
lib/javascripts/moment_locale/de-ch.js
Normal file
78
lib/javascripts/moment_locale/de-ch.js
Normal file
@ -0,0 +1,78 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : German (Switzerland) [de-ch]
|
||||
//! author : sschueller : https://github.com/sschueller
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
// based on: https://www.bk.admin.ch/dokumentation/sprachen/04915/05016/index.html?lang=de#
|
||||
|
||||
function processRelativeTime(number, withoutSuffix, key, isFuture) {
|
||||
var format = {
|
||||
'm': ['eine Minute', 'einer Minute'],
|
||||
'h': ['eine Stunde', 'einer Stunde'],
|
||||
'd': ['ein Tag', 'einem Tag'],
|
||||
'dd': [number + ' Tage', number + ' Tagen'],
|
||||
'M': ['ein Monat', 'einem Monat'],
|
||||
'MM': [number + ' Monate', number + ' Monaten'],
|
||||
'y': ['ein Jahr', 'einem Jahr'],
|
||||
'yy': [number + ' Jahre', number + ' Jahren']
|
||||
};
|
||||
return withoutSuffix ? format[key][0] : format[key][1];
|
||||
}
|
||||
|
||||
var deCh = moment.defineLocale('de-ch', {
|
||||
months : 'Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember'.split('_'),
|
||||
monthsShort : 'Jan._Febr._März_April_Mai_Juni_Juli_Aug._Sept._Okt._Nov._Dez.'.split('_'),
|
||||
monthsParseExact : true,
|
||||
weekdays : 'Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag'.split('_'),
|
||||
weekdaysShort : 'So_Mo_Di_Mi_Do_Fr_Sa'.split('_'),
|
||||
weekdaysMin : 'So_Mo_Di_Mi_Do_Fr_Sa'.split('_'),
|
||||
weekdaysParseExact : true,
|
||||
longDateFormat : {
|
||||
LT: 'HH.mm',
|
||||
LTS: 'HH.mm.ss',
|
||||
L : 'DD.MM.YYYY',
|
||||
LL : 'D. MMMM YYYY',
|
||||
LLL : 'D. MMMM YYYY HH.mm',
|
||||
LLLL : 'dddd, D. MMMM YYYY HH.mm'
|
||||
},
|
||||
calendar : {
|
||||
sameDay: '[heute um] LT [Uhr]',
|
||||
sameElse: 'L',
|
||||
nextDay: '[morgen um] LT [Uhr]',
|
||||
nextWeek: 'dddd [um] LT [Uhr]',
|
||||
lastDay: '[gestern um] LT [Uhr]',
|
||||
lastWeek: '[letzten] dddd [um] LT [Uhr]'
|
||||
},
|
||||
relativeTime : {
|
||||
future : 'in %s',
|
||||
past : 'vor %s',
|
||||
s : 'ein paar Sekunden',
|
||||
m : processRelativeTime,
|
||||
mm : '%d Minuten',
|
||||
h : processRelativeTime,
|
||||
hh : '%d Stunden',
|
||||
d : processRelativeTime,
|
||||
dd : processRelativeTime,
|
||||
M : processRelativeTime,
|
||||
MM : processRelativeTime,
|
||||
y : processRelativeTime,
|
||||
yy : processRelativeTime
|
||||
},
|
||||
dayOfMonthOrdinalParse: /\d{1,2}\./,
|
||||
ordinal : '%d.',
|
||||
week : {
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 4 // The week that contains Jan 4th is the first week of the year.
|
||||
}
|
||||
});
|
||||
|
||||
return deCh;
|
||||
|
||||
})));
|
20
lib/javascripts/moment_locale/de.js
Executable file → Normal file
20
lib/javascripts/moment_locale/de.js
Executable file → Normal file
@ -1,5 +1,5 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : german (de)
|
||||
//! locale : German [de]
|
||||
//! author : lluchs : https://github.com/lluchs
|
||||
//! author: Menelion Elensúle: https://github.com/Oire
|
||||
//! author : Mikolaj Dadela : https://github.com/mik01aj
|
||||
@ -7,12 +7,12 @@
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
function processRelativeTime(number, withoutSuffix, key, isFuture) {
|
||||
function processRelativeTime(number, withoutSuffix, key, isFuture) {
|
||||
var format = {
|
||||
'm': ['eine Minute', 'einer Minute'],
|
||||
'h': ['eine Stunde', 'einer Stunde'],
|
||||
@ -24,9 +24,9 @@
|
||||
'yy': [number + ' Jahre', number + ' Jahren']
|
||||
};
|
||||
return withoutSuffix ? format[key][0] : format[key][1];
|
||||
}
|
||||
}
|
||||
|
||||
var de = moment.defineLocale('de', {
|
||||
var de = moment.defineLocale('de', {
|
||||
months : 'Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember'.split('_'),
|
||||
monthsShort : 'Jan._Febr._Mrz._Apr._Mai_Jun._Jul._Aug._Sept._Okt._Nov._Dez.'.split('_'),
|
||||
monthsParseExact : true,
|
||||
@ -65,14 +65,14 @@
|
||||
y : processRelativeTime,
|
||||
yy : processRelativeTime
|
||||
},
|
||||
ordinalParse: /\d{1,2}\./,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}\./,
|
||||
ordinal : '%d.',
|
||||
week : {
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 4 // The week that contains Jan 4th is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return de;
|
||||
return de;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
21
lib/javascripts/moment_locale/dv.js
Executable file → Normal file
21
lib/javascripts/moment_locale/dv.js
Executable file → Normal file
@ -1,16 +1,16 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : dhivehi (dv)
|
||||
//! locale : Maldivian [dv]
|
||||
//! author : Jawish Hameed : https://github.com/jawish
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var months = [
|
||||
var months = [
|
||||
'ޖެނުއަރީ',
|
||||
'ފެބްރުއަރީ',
|
||||
'މާރިޗު',
|
||||
@ -23,7 +23,8 @@
|
||||
'އޮކްޓޯބަރު',
|
||||
'ނޮވެމްބަރު',
|
||||
'ޑިސެމްބަރު'
|
||||
], weekdays = [
|
||||
];
|
||||
var weekdays = [
|
||||
'އާދިއްތަ',
|
||||
'ހޯމަ',
|
||||
'އަންގާރަ',
|
||||
@ -31,9 +32,9 @@
|
||||
'ބުރާސްފަތި',
|
||||
'ހުކުރު',
|
||||
'ހޮނިހިރު'
|
||||
];
|
||||
];
|
||||
|
||||
var dv = moment.defineLocale('dv', {
|
||||
var dv = moment.defineLocale('dv', {
|
||||
months : months,
|
||||
monthsShort : months,
|
||||
weekdays : weekdays,
|
||||
@ -92,8 +93,8 @@
|
||||
dow : 7, // Sunday is the first day of the week.
|
||||
doy : 12 // The week that contains Jan 1st is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return dv;
|
||||
return dv;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
24
lib/javascripts/moment_locale/el.js
Executable file → Normal file
24
lib/javascripts/moment_locale/el.js
Executable file → Normal file
@ -1,24 +1,26 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : modern greek (el)
|
||||
//! locale : Greek [el]
|
||||
//! author : Aggelos Karalias : https://github.com/mehiel
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
function isFunction(input) {
|
||||
function isFunction(input) {
|
||||
return input instanceof Function || Object.prototype.toString.call(input) === '[object Function]';
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
var el = moment.defineLocale('el', {
|
||||
var el = moment.defineLocale('el', {
|
||||
monthsNominativeEl : 'Ιανουάριος_Φεβρουάριος_Μάρτιος_Απρίλιος_Μάιος_Ιούνιος_Ιούλιος_Αύγουστος_Σεπτέμβριος_Οκτώβριος_Νοέμβριος_Δεκέμβριος'.split('_'),
|
||||
monthsGenitiveEl : 'Ιανουαρίου_Φεβρουαρίου_Μαρτίου_Απριλίου_Μαΐου_Ιουνίου_Ιουλίου_Αυγούστου_Σεπτεμβρίου_Οκτωβρίου_Νοεμβρίου_Δεκεμβρίου'.split('_'),
|
||||
months : function (momentToFormat, format) {
|
||||
if (/D/.test(format.substring(0, format.indexOf('MMMM')))) { // if there is a day number before 'MMMM'
|
||||
if (!momentToFormat) {
|
||||
return this._monthsNominativeEl;
|
||||
} else if (/D/.test(format.substring(0, format.indexOf('MMMM')))) { // if there is a day number before 'MMMM'
|
||||
return this._monthsGenitiveEl[momentToFormat.month()];
|
||||
} else {
|
||||
return this._monthsNominativeEl[momentToFormat.month()];
|
||||
@ -85,14 +87,14 @@
|
||||
y : 'ένας χρόνος',
|
||||
yy : '%d χρόνια'
|
||||
},
|
||||
ordinalParse: /\d{1,2}η/,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}η/,
|
||||
ordinal: '%dη',
|
||||
week : {
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 4 // The week that contains Jan 4st is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return el;
|
||||
return el;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
17
lib/javascripts/moment_locale/en-au.js
Executable file → Normal file
17
lib/javascripts/moment_locale/en-au.js
Executable file → Normal file
@ -1,15 +1,16 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : australian english (en-au)
|
||||
//! locale : English (Australia) [en-au]
|
||||
//! author : Jared Morse : https://github.com/jarcoal
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var en_au = moment.defineLocale('en-au', {
|
||||
var enAu = moment.defineLocale('en-au', {
|
||||
months : 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'),
|
||||
monthsShort : 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),
|
||||
weekdays : 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'),
|
||||
@ -46,7 +47,7 @@
|
||||
y : 'a year',
|
||||
yy : '%d years'
|
||||
},
|
||||
ordinalParse: /\d{1,2}(st|nd|rd|th)/,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}(st|nd|rd|th)/,
|
||||
ordinal : function (number) {
|
||||
var b = number % 10,
|
||||
output = (~~(number % 100 / 10) === 1) ? 'th' :
|
||||
@ -59,8 +60,8 @@
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 4 // The week that contains Jan 4th is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return en_au;
|
||||
return enAu;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
16
lib/javascripts/moment_locale/en-ca.js
Executable file → Normal file
16
lib/javascripts/moment_locale/en-ca.js
Executable file → Normal file
@ -1,16 +1,16 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : canadian english (en-ca)
|
||||
//! locale : English (Canada) [en-ca]
|
||||
//! author : Jonathan Abourbih : https://github.com/jonbca
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var en_ca = moment.defineLocale('en-ca', {
|
||||
var enCa = moment.defineLocale('en-ca', {
|
||||
months : 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'),
|
||||
monthsShort : 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),
|
||||
weekdays : 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'),
|
||||
@ -47,7 +47,7 @@
|
||||
y : 'a year',
|
||||
yy : '%d years'
|
||||
},
|
||||
ordinalParse: /\d{1,2}(st|nd|rd|th)/,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}(st|nd|rd|th)/,
|
||||
ordinal : function (number) {
|
||||
var b = number % 10,
|
||||
output = (~~(number % 100 / 10) === 1) ? 'th' :
|
||||
@ -56,8 +56,8 @@
|
||||
(b === 3) ? 'rd' : 'th';
|
||||
return number + output;
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return en_ca;
|
||||
return enCa;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
16
lib/javascripts/moment_locale/en-gb.js
Executable file → Normal file
16
lib/javascripts/moment_locale/en-gb.js
Executable file → Normal file
@ -1,16 +1,16 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : great britain english (en-gb)
|
||||
//! locale : English (United Kingdom) [en-gb]
|
||||
//! author : Chris Gedrim : https://github.com/chrisgedrim
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var en_gb = moment.defineLocale('en-gb', {
|
||||
var enGb = moment.defineLocale('en-gb', {
|
||||
months : 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'),
|
||||
monthsShort : 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),
|
||||
weekdays : 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'),
|
||||
@ -47,7 +47,7 @@
|
||||
y : 'a year',
|
||||
yy : '%d years'
|
||||
},
|
||||
ordinalParse: /\d{1,2}(st|nd|rd|th)/,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}(st|nd|rd|th)/,
|
||||
ordinal : function (number) {
|
||||
var b = number % 10,
|
||||
output = (~~(number % 100 / 10) === 1) ? 'th' :
|
||||
@ -60,8 +60,8 @@
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 4 // The week that contains Jan 4th is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return en_gb;
|
||||
return enGb;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
16
lib/javascripts/moment_locale/en-ie.js
Executable file → Normal file
16
lib/javascripts/moment_locale/en-ie.js
Executable file → Normal file
@ -1,16 +1,16 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : Irish english (en-ie)
|
||||
//! locale : English (Ireland) [en-ie]
|
||||
//! author : Chris Cartlidge : https://github.com/chriscartlidge
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var en_ie = moment.defineLocale('en-ie', {
|
||||
var enIe = moment.defineLocale('en-ie', {
|
||||
months : 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'),
|
||||
monthsShort : 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),
|
||||
weekdays : 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'),
|
||||
@ -47,7 +47,7 @@
|
||||
y : 'a year',
|
||||
yy : '%d years'
|
||||
},
|
||||
ordinalParse: /\d{1,2}(st|nd|rd|th)/,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}(st|nd|rd|th)/,
|
||||
ordinal : function (number) {
|
||||
var b = number % 10,
|
||||
output = (~~(number % 100 / 10) === 1) ? 'th' :
|
||||
@ -60,8 +60,8 @@
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 4 // The week that contains Jan 4th is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return en_ie;
|
||||
return enIe;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
17
lib/javascripts/moment_locale/en-nz.js
Executable file → Normal file
17
lib/javascripts/moment_locale/en-nz.js
Executable file → Normal file
@ -1,15 +1,16 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : New Zealand english (en-nz)
|
||||
//! locale : English (New Zealand) [en-nz]
|
||||
//! author : Luke McGregor : https://github.com/lukemcgregor
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var en_nz = moment.defineLocale('en-nz', {
|
||||
var enNz = moment.defineLocale('en-nz', {
|
||||
months : 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'),
|
||||
monthsShort : 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),
|
||||
weekdays : 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'),
|
||||
@ -46,7 +47,7 @@
|
||||
y : 'a year',
|
||||
yy : '%d years'
|
||||
},
|
||||
ordinalParse: /\d{1,2}(st|nd|rd|th)/,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}(st|nd|rd|th)/,
|
||||
ordinal : function (number) {
|
||||
var b = number % 10,
|
||||
output = (~~(number % 100 / 10) === 1) ? 'th' :
|
||||
@ -59,8 +60,8 @@
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 4 // The week that contains Jan 4th is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return en_nz;
|
||||
return enNz;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
34
lib/javascripts/moment_locale/eo.js
Executable file → Normal file
34
lib/javascripts/moment_locale/eo.js
Executable file → Normal file
@ -1,30 +1,30 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : esperanto (eo)
|
||||
//! locale : Esperanto [eo]
|
||||
//! author : Colin Dean : https://github.com/colindean
|
||||
//! komento: Mi estas malcerta se mi korekte traktis akuzativojn en tiu traduko.
|
||||
//! Se ne, bonvolu korekti kaj avizi min por ke mi povas lerni!
|
||||
//! author : Mia Nordentoft Imperatori : https://github.com/miestasmia
|
||||
//! comment : miestasmia corrected the translation by colindean
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var eo = moment.defineLocale('eo', {
|
||||
var eo = moment.defineLocale('eo', {
|
||||
months : 'januaro_februaro_marto_aprilo_majo_junio_julio_aŭgusto_septembro_oktobro_novembro_decembro'.split('_'),
|
||||
monthsShort : 'jan_feb_mar_apr_maj_jun_jul_aŭg_sep_okt_nov_dec'.split('_'),
|
||||
weekdays : 'Dimanĉo_Lundo_Mardo_Merkredo_Ĵaŭdo_Vendredo_Sabato'.split('_'),
|
||||
weekdaysShort : 'Dim_Lun_Mard_Merk_Ĵaŭ_Ven_Sab'.split('_'),
|
||||
weekdaysMin : 'Di_Lu_Ma_Me_Ĵa_Ve_Sa'.split('_'),
|
||||
weekdays : 'dimanĉo_lundo_mardo_merkredo_ĵaŭdo_vendredo_sabato'.split('_'),
|
||||
weekdaysShort : 'dim_lun_mard_merk_ĵaŭ_ven_sab'.split('_'),
|
||||
weekdaysMin : 'di_lu_ma_me_ĵa_ve_sa'.split('_'),
|
||||
longDateFormat : {
|
||||
LT : 'HH:mm',
|
||||
LTS : 'HH:mm:ss',
|
||||
L : 'YYYY-MM-DD',
|
||||
LL : 'D[-an de] MMMM, YYYY',
|
||||
LLL : 'D[-an de] MMMM, YYYY HH:mm',
|
||||
LLLL : 'dddd, [la] D[-an de] MMMM, YYYY HH:mm'
|
||||
LL : 'D[-a de] MMMM, YYYY',
|
||||
LLL : 'D[-a de] MMMM, YYYY HH:mm',
|
||||
LLLL : 'dddd, [la] D[-a de] MMMM, YYYY HH:mm'
|
||||
},
|
||||
meridiemParse: /[ap]\.t\.m/i,
|
||||
isPM: function (input) {
|
||||
@ -46,7 +46,7 @@
|
||||
sameElse : 'L'
|
||||
},
|
||||
relativeTime : {
|
||||
future : 'je %s',
|
||||
future : 'post %s',
|
||||
past : 'antaŭ %s',
|
||||
s : 'sekundoj',
|
||||
m : 'minuto',
|
||||
@ -60,14 +60,14 @@
|
||||
y : 'jaro',
|
||||
yy : '%d jaroj'
|
||||
},
|
||||
ordinalParse: /\d{1,2}a/,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}a/,
|
||||
ordinal : '%da',
|
||||
week : {
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 7 // The week that contains Jan 1st is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return eo;
|
||||
return eo;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
82
lib/javascripts/moment_locale/es-do.js
Normal file
82
lib/javascripts/moment_locale/es-do.js
Normal file
@ -0,0 +1,82 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : Spanish (Dominican Republic) [es-do]
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var monthsShortDot = 'ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.'.split('_');
|
||||
var monthsShort = 'ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic'.split('_');
|
||||
|
||||
var esDo = moment.defineLocale('es-do', {
|
||||
months : 'enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre'.split('_'),
|
||||
monthsShort : function (m, format) {
|
||||
if (!m) {
|
||||
return monthsShortDot;
|
||||
} else if (/-MMM-/.test(format)) {
|
||||
return monthsShort[m.month()];
|
||||
} else {
|
||||
return monthsShortDot[m.month()];
|
||||
}
|
||||
},
|
||||
monthsParseExact : true,
|
||||
weekdays : 'domingo_lunes_martes_miércoles_jueves_viernes_sábado'.split('_'),
|
||||
weekdaysShort : 'dom._lun._mar._mié._jue._vie._sáb.'.split('_'),
|
||||
weekdaysMin : 'do_lu_ma_mi_ju_vi_sá'.split('_'),
|
||||
weekdaysParseExact : true,
|
||||
longDateFormat : {
|
||||
LT : 'h:mm A',
|
||||
LTS : 'h:mm:ss A',
|
||||
L : 'DD/MM/YYYY',
|
||||
LL : 'D [de] MMMM [de] YYYY',
|
||||
LLL : 'D [de] MMMM [de] YYYY h:mm A',
|
||||
LLLL : 'dddd, D [de] MMMM [de] YYYY h:mm A'
|
||||
},
|
||||
calendar : {
|
||||
sameDay : function () {
|
||||
return '[hoy a la' + ((this.hours() !== 1) ? 's' : '') + '] LT';
|
||||
},
|
||||
nextDay : function () {
|
||||
return '[mañana a la' + ((this.hours() !== 1) ? 's' : '') + '] LT';
|
||||
},
|
||||
nextWeek : function () {
|
||||
return 'dddd [a la' + ((this.hours() !== 1) ? 's' : '') + '] LT';
|
||||
},
|
||||
lastDay : function () {
|
||||
return '[ayer a la' + ((this.hours() !== 1) ? 's' : '') + '] LT';
|
||||
},
|
||||
lastWeek : function () {
|
||||
return '[el] dddd [pasado a la' + ((this.hours() !== 1) ? 's' : '') + '] LT';
|
||||
},
|
||||
sameElse : 'L'
|
||||
},
|
||||
relativeTime : {
|
||||
future : 'en %s',
|
||||
past : 'hace %s',
|
||||
s : 'unos segundos',
|
||||
m : 'un minuto',
|
||||
mm : '%d minutos',
|
||||
h : 'una hora',
|
||||
hh : '%d horas',
|
||||
d : 'un día',
|
||||
dd : '%d días',
|
||||
M : 'un mes',
|
||||
MM : '%d meses',
|
||||
y : 'un año',
|
||||
yy : '%d años'
|
||||
},
|
||||
dayOfMonthOrdinalParse : /\d{1,2}º/,
|
||||
ordinal : '%dº',
|
||||
week : {
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 4 // The week that contains Jan 4th is the first week of the year.
|
||||
}
|
||||
});
|
||||
|
||||
return esDo;
|
||||
|
||||
})));
|
24
lib/javascripts/moment_locale/es.js
Executable file → Normal file
24
lib/javascripts/moment_locale/es.js
Executable file → Normal file
@ -1,22 +1,24 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : spanish (es)
|
||||
//! locale : Spanish [es]
|
||||
//! author : Julio Napurí : https://github.com/julionc
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var monthsShortDot = 'ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.'.split('_'),
|
||||
monthsShort = 'ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic'.split('_');
|
||||
var monthsShortDot = 'ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.'.split('_');
|
||||
var monthsShort = 'ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic'.split('_');
|
||||
|
||||
var es = moment.defineLocale('es', {
|
||||
var es = moment.defineLocale('es', {
|
||||
months : 'enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre'.split('_'),
|
||||
monthsShort : function (m, format) {
|
||||
if (/-MMM-/.test(format)) {
|
||||
if (!m) {
|
||||
return monthsShortDot;
|
||||
} else if (/-MMM-/.test(format)) {
|
||||
return monthsShort[m.month()];
|
||||
} else {
|
||||
return monthsShortDot[m.month()];
|
||||
@ -68,14 +70,14 @@
|
||||
y : 'un año',
|
||||
yy : '%d años'
|
||||
},
|
||||
ordinalParse : /\d{1,2}º/,
|
||||
dayOfMonthOrdinalParse : /\d{1,2}º/,
|
||||
ordinal : '%dº',
|
||||
week : {
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 4 // The week that contains Jan 4th is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return es;
|
||||
return es;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
20
lib/javascripts/moment_locale/et.js
Executable file → Normal file
20
lib/javascripts/moment_locale/et.js
Executable file → Normal file
@ -1,17 +1,17 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : estonian (et)
|
||||
//! locale : Estonian [et]
|
||||
//! author : Henry Kehlmann : https://github.com/madhenry
|
||||
//! improvements : Illimar Tambek : https://github.com/ragulka
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
function processRelativeTime(number, withoutSuffix, key, isFuture) {
|
||||
function processRelativeTime(number, withoutSuffix, key, isFuture) {
|
||||
var format = {
|
||||
's' : ['mõne sekundi', 'mõni sekund', 'paar sekundit'],
|
||||
'm' : ['ühe minuti', 'üks minut'],
|
||||
@ -28,9 +28,9 @@
|
||||
return format[key][2] ? format[key][2] : format[key][1];
|
||||
}
|
||||
return isFuture ? format[key][0] : format[key][1];
|
||||
}
|
||||
}
|
||||
|
||||
var et = moment.defineLocale('et', {
|
||||
var et = moment.defineLocale('et', {
|
||||
months : 'jaanuar_veebruar_märts_aprill_mai_juuni_juuli_august_september_oktoober_november_detsember'.split('_'),
|
||||
monthsShort : 'jaan_veebr_märts_apr_mai_juuni_juuli_aug_sept_okt_nov_dets'.split('_'),
|
||||
weekdays : 'pühapäev_esmaspäev_teisipäev_kolmapäev_neljapäev_reede_laupäev'.split('_'),
|
||||
@ -67,14 +67,14 @@
|
||||
y : processRelativeTime,
|
||||
yy : processRelativeTime
|
||||
},
|
||||
ordinalParse: /\d{1,2}\./,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}\./,
|
||||
ordinal : '%d.',
|
||||
week : {
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 4 // The week that contains Jan 4th is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return et;
|
||||
return et;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
16
lib/javascripts/moment_locale/eu.js
Executable file → Normal file
16
lib/javascripts/moment_locale/eu.js
Executable file → Normal file
@ -1,16 +1,16 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : euskara (eu)
|
||||
//! locale : Basque [eu]
|
||||
//! author : Eneko Illarramendi : https://github.com/eillarra
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var eu = moment.defineLocale('eu', {
|
||||
var eu = moment.defineLocale('eu', {
|
||||
months : 'urtarrila_otsaila_martxoa_apirila_maiatza_ekaina_uztaila_abuztua_iraila_urria_azaroa_abendua'.split('_'),
|
||||
monthsShort : 'urt._ots._mar._api._mai._eka._uzt._abu._ira._urr._aza._abe.'.split('_'),
|
||||
monthsParseExact : true,
|
||||
@ -53,14 +53,14 @@
|
||||
y : 'urte bat',
|
||||
yy : '%d urte'
|
||||
},
|
||||
ordinalParse: /\d{1,2}\./,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}\./,
|
||||
ordinal : '%d.',
|
||||
week : {
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 7 // The week that contains Jan 1st is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return eu;
|
||||
return eu;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
25
lib/javascripts/moment_locale/fa.js
Executable file → Normal file
25
lib/javascripts/moment_locale/fa.js
Executable file → Normal file
@ -1,16 +1,16 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : Persian (fa)
|
||||
//! locale : Persian [fa]
|
||||
//! author : Ebrahim Byagowi : https://github.com/ebraminio
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var symbolMap = {
|
||||
var symbolMap = {
|
||||
'1': '۱',
|
||||
'2': '۲',
|
||||
'3': '۳',
|
||||
@ -21,7 +21,8 @@
|
||||
'8': '۸',
|
||||
'9': '۹',
|
||||
'0': '۰'
|
||||
}, numberMap = {
|
||||
};
|
||||
var numberMap = {
|
||||
'۱': '1',
|
||||
'۲': '2',
|
||||
'۳': '3',
|
||||
@ -32,9 +33,9 @@
|
||||
'۸': '8',
|
||||
'۹': '9',
|
||||
'۰': '0'
|
||||
};
|
||||
};
|
||||
|
||||
var fa = moment.defineLocale('fa', {
|
||||
var fa = moment.defineLocale('fa', {
|
||||
months : 'ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر'.split('_'),
|
||||
monthsShort : 'ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر'.split('_'),
|
||||
weekdays : 'یک\u200cشنبه_دوشنبه_سه\u200cشنبه_چهارشنبه_پنج\u200cشنبه_جمعه_شنبه'.split('_'),
|
||||
@ -71,7 +72,7 @@
|
||||
relativeTime : {
|
||||
future : 'در %s',
|
||||
past : '%s پیش',
|
||||
s : 'چندین ثانیه',
|
||||
s : 'چند ثانیه',
|
||||
m : 'یک دقیقه',
|
||||
mm : '%d دقیقه',
|
||||
h : 'یک ساعت',
|
||||
@ -93,14 +94,14 @@
|
||||
return symbolMap[match];
|
||||
}).replace(/,/g, '،');
|
||||
},
|
||||
ordinalParse: /\d{1,2}م/,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}م/,
|
||||
ordinal : '%dم',
|
||||
week : {
|
||||
dow : 6, // Saturday is the first day of the week.
|
||||
doy : 12 // The week that contains Jan 1st is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return fa;
|
||||
return fa;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
28
lib/javascripts/moment_locale/fi.js
Executable file → Normal file
28
lib/javascripts/moment_locale/fi.js
Executable file → Normal file
@ -1,21 +1,21 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : finnish (fi)
|
||||
//! locale : Finnish [fi]
|
||||
//! author : Tarmo Aidantausta : https://github.com/bleadof
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var numbersPast = 'nolla yksi kaksi kolme neljä viisi kuusi seitsemän kahdeksan yhdeksän'.split(' '),
|
||||
numbersFuture = [
|
||||
var numbersPast = 'nolla yksi kaksi kolme neljä viisi kuusi seitsemän kahdeksan yhdeksän'.split(' ');
|
||||
var numbersFuture = [
|
||||
'nolla', 'yhden', 'kahden', 'kolmen', 'neljän', 'viiden', 'kuuden',
|
||||
numbersPast[7], numbersPast[8], numbersPast[9]
|
||||
];
|
||||
function translate(number, withoutSuffix, key, isFuture) {
|
||||
function translate(number, withoutSuffix, key, isFuture) {
|
||||
var result = '';
|
||||
switch (key) {
|
||||
case 's':
|
||||
@ -48,12 +48,12 @@
|
||||
}
|
||||
result = verbalNumber(number, isFuture) + ' ' + result;
|
||||
return result;
|
||||
}
|
||||
function verbalNumber(number, isFuture) {
|
||||
}
|
||||
function verbalNumber(number, isFuture) {
|
||||
return number < 10 ? (isFuture ? numbersFuture[number] : numbersPast[number]) : number;
|
||||
}
|
||||
}
|
||||
|
||||
var fi = moment.defineLocale('fi', {
|
||||
var fi = moment.defineLocale('fi', {
|
||||
months : 'tammikuu_helmikuu_maaliskuu_huhtikuu_toukokuu_kesäkuu_heinäkuu_elokuu_syyskuu_lokakuu_marraskuu_joulukuu'.split('_'),
|
||||
monthsShort : 'tammi_helmi_maalis_huhti_touko_kesä_heinä_elo_syys_loka_marras_joulu'.split('_'),
|
||||
weekdays : 'sunnuntai_maanantai_tiistai_keskiviikko_torstai_perjantai_lauantai'.split('_'),
|
||||
@ -94,14 +94,14 @@
|
||||
y : translate,
|
||||
yy : translate
|
||||
},
|
||||
ordinalParse: /\d{1,2}\./,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}\./,
|
||||
ordinal : '%d.',
|
||||
week : {
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 4 // The week that contains Jan 4th is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return fi;
|
||||
return fi;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
16
lib/javascripts/moment_locale/fo.js
Executable file → Normal file
16
lib/javascripts/moment_locale/fo.js
Executable file → Normal file
@ -1,16 +1,16 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : faroese (fo)
|
||||
//! locale : Faroese [fo]
|
||||
//! author : Ragnar Johannesen : https://github.com/ragnar123
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var fo = moment.defineLocale('fo', {
|
||||
var fo = moment.defineLocale('fo', {
|
||||
months : 'januar_februar_mars_apríl_mai_juni_juli_august_september_oktober_november_desember'.split('_'),
|
||||
monthsShort : 'jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des'.split('_'),
|
||||
weekdays : 'sunnudagur_mánadagur_týsdagur_mikudagur_hósdagur_fríggjadagur_leygardagur'.split('_'),
|
||||
@ -47,14 +47,14 @@
|
||||
y : 'eitt ár',
|
||||
yy : '%d ár'
|
||||
},
|
||||
ordinalParse: /\d{1,2}\./,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}\./,
|
||||
ordinal : '%d.',
|
||||
week : {
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 4 // The week that contains Jan 4th is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return fo;
|
||||
return fo;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
44
lib/javascripts/moment_locale/fr-ca.js
Executable file → Normal file
44
lib/javascripts/moment_locale/fr-ca.js
Executable file → Normal file
@ -1,16 +1,16 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : canadian french (fr-ca)
|
||||
//! locale : French (Canada) [fr-ca]
|
||||
//! author : Jonathan Abourbih : https://github.com/jonbca
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var fr_ca = moment.defineLocale('fr-ca', {
|
||||
var frCa = moment.defineLocale('fr-ca', {
|
||||
months : 'janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre'.split('_'),
|
||||
monthsShort : 'janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.'.split('_'),
|
||||
monthsParseExact : true,
|
||||
@ -27,12 +27,12 @@
|
||||
LLLL : 'dddd D MMMM YYYY HH:mm'
|
||||
},
|
||||
calendar : {
|
||||
sameDay: '[Aujourd\'hui à] LT',
|
||||
nextDay: '[Demain à] LT',
|
||||
nextWeek: 'dddd [à] LT',
|
||||
lastDay: '[Hier à] LT',
|
||||
lastWeek: 'dddd [dernier à] LT',
|
||||
sameElse: 'L'
|
||||
sameDay : '[Aujourd’hui à] LT',
|
||||
nextDay : '[Demain à] LT',
|
||||
nextWeek : 'dddd [à] LT',
|
||||
lastDay : '[Hier à] LT',
|
||||
lastWeek : 'dddd [dernier à] LT',
|
||||
sameElse : 'L'
|
||||
},
|
||||
relativeTime : {
|
||||
future : 'dans %s',
|
||||
@ -49,12 +49,26 @@
|
||||
y : 'un an',
|
||||
yy : '%d ans'
|
||||
},
|
||||
ordinalParse: /\d{1,2}(er|e)/,
|
||||
ordinal : function (number) {
|
||||
dayOfMonthOrdinalParse: /\d{1,2}(er|e)/,
|
||||
ordinal : function (number, period) {
|
||||
switch (period) {
|
||||
// Words with masculine grammatical gender: mois, trimestre, jour
|
||||
default:
|
||||
case 'M':
|
||||
case 'Q':
|
||||
case 'D':
|
||||
case 'DDD':
|
||||
case 'd':
|
||||
return number + (number === 1 ? 'er' : 'e');
|
||||
|
||||
// Words with feminine grammatical gender: semaine
|
||||
case 'w':
|
||||
case 'W':
|
||||
return number + (number === 1 ? 're' : 'e');
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
return fr_ca;
|
||||
return frCa;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
44
lib/javascripts/moment_locale/fr-ch.js
Executable file → Normal file
44
lib/javascripts/moment_locale/fr-ch.js
Executable file → Normal file
@ -1,16 +1,16 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : swiss french (fr)
|
||||
//! locale : French (Switzerland) [fr-ch]
|
||||
//! author : Gaspard Bucher : https://github.com/gaspard
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var fr_ch = moment.defineLocale('fr-ch', {
|
||||
var frCh = moment.defineLocale('fr-ch', {
|
||||
months : 'janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre'.split('_'),
|
||||
monthsShort : 'janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.'.split('_'),
|
||||
monthsParseExact : true,
|
||||
@ -27,12 +27,12 @@
|
||||
LLLL : 'dddd D MMMM YYYY HH:mm'
|
||||
},
|
||||
calendar : {
|
||||
sameDay: '[Aujourd\'hui à] LT',
|
||||
nextDay: '[Demain à] LT',
|
||||
nextWeek: 'dddd [à] LT',
|
||||
lastDay: '[Hier à] LT',
|
||||
lastWeek: 'dddd [dernier à] LT',
|
||||
sameElse: 'L'
|
||||
sameDay : '[Aujourd’hui à] LT',
|
||||
nextDay : '[Demain à] LT',
|
||||
nextWeek : 'dddd [à] LT',
|
||||
lastDay : '[Hier à] LT',
|
||||
lastWeek : 'dddd [dernier à] LT',
|
||||
sameElse : 'L'
|
||||
},
|
||||
relativeTime : {
|
||||
future : 'dans %s',
|
||||
@ -49,16 +49,30 @@
|
||||
y : 'un an',
|
||||
yy : '%d ans'
|
||||
},
|
||||
ordinalParse: /\d{1,2}(er|e)/,
|
||||
ordinal : function (number) {
|
||||
dayOfMonthOrdinalParse: /\d{1,2}(er|e)/,
|
||||
ordinal : function (number, period) {
|
||||
switch (period) {
|
||||
// Words with masculine grammatical gender: mois, trimestre, jour
|
||||
default:
|
||||
case 'M':
|
||||
case 'Q':
|
||||
case 'D':
|
||||
case 'DDD':
|
||||
case 'd':
|
||||
return number + (number === 1 ? 'er' : 'e');
|
||||
|
||||
// Words with feminine grammatical gender: semaine
|
||||
case 'w':
|
||||
case 'W':
|
||||
return number + (number === 1 ? 're' : 'e');
|
||||
}
|
||||
},
|
||||
week : {
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 4 // The week that contains Jan 4th is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return fr_ch;
|
||||
return frCh;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
49
lib/javascripts/moment_locale/fr.js
Executable file → Normal file
49
lib/javascripts/moment_locale/fr.js
Executable file → Normal file
@ -1,16 +1,16 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : french (fr)
|
||||
//! locale : French [fr]
|
||||
//! author : John Fischer : https://github.com/jfroffice
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var fr = moment.defineLocale('fr', {
|
||||
var fr = moment.defineLocale('fr', {
|
||||
months : 'janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre'.split('_'),
|
||||
monthsShort : 'janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.'.split('_'),
|
||||
monthsParseExact : true,
|
||||
@ -27,12 +27,12 @@
|
||||
LLLL : 'dddd D MMMM YYYY HH:mm'
|
||||
},
|
||||
calendar : {
|
||||
sameDay: '[Aujourd\'hui à] LT',
|
||||
nextDay: '[Demain à] LT',
|
||||
nextWeek: 'dddd [à] LT',
|
||||
lastDay: '[Hier à] LT',
|
||||
lastWeek: 'dddd [dernier à] LT',
|
||||
sameElse: 'L'
|
||||
sameDay : '[Aujourd’hui à] LT',
|
||||
nextDay : '[Demain à] LT',
|
||||
nextWeek : 'dddd [à] LT',
|
||||
lastDay : '[Hier à] LT',
|
||||
lastWeek : 'dddd [dernier à] LT',
|
||||
sameElse : 'L'
|
||||
},
|
||||
relativeTime : {
|
||||
future : 'dans %s',
|
||||
@ -49,16 +49,35 @@
|
||||
y : 'un an',
|
||||
yy : '%d ans'
|
||||
},
|
||||
ordinalParse: /\d{1,2}(er|)/,
|
||||
ordinal : function (number) {
|
||||
dayOfMonthOrdinalParse: /\d{1,2}(er|)/,
|
||||
ordinal : function (number, period) {
|
||||
switch (period) {
|
||||
// TODO: Return 'e' when day of month > 1. Move this case inside
|
||||
// block for masculine words below.
|
||||
// See https://github.com/moment/moment/issues/3375
|
||||
case 'D':
|
||||
return number + (number === 1 ? 'er' : '');
|
||||
|
||||
// Words with masculine grammatical gender: mois, trimestre, jour
|
||||
default:
|
||||
case 'M':
|
||||
case 'Q':
|
||||
case 'DDD':
|
||||
case 'd':
|
||||
return number + (number === 1 ? 'er' : 'e');
|
||||
|
||||
// Words with feminine grammatical gender: semaine
|
||||
case 'w':
|
||||
case 'W':
|
||||
return number + (number === 1 ? 're' : 'e');
|
||||
}
|
||||
},
|
||||
week : {
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 4 // The week that contains Jan 4th is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return fr;
|
||||
return fr;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
24
lib/javascripts/moment_locale/fy.js
Executable file → Normal file
24
lib/javascripts/moment_locale/fy.js
Executable file → Normal file
@ -1,22 +1,24 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : frisian (fy)
|
||||
//! locale : Frisian [fy]
|
||||
//! author : Robin van der Vliet : https://github.com/robin0van0der0v
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var monthsShortWithDots = 'jan._feb._mrt._apr._mai_jun._jul._aug._sep._okt._nov._des.'.split('_'),
|
||||
monthsShortWithoutDots = 'jan_feb_mrt_apr_mai_jun_jul_aug_sep_okt_nov_des'.split('_');
|
||||
var monthsShortWithDots = 'jan._feb._mrt._apr._mai_jun._jul._aug._sep._okt._nov._des.'.split('_');
|
||||
var monthsShortWithoutDots = 'jan_feb_mrt_apr_mai_jun_jul_aug_sep_okt_nov_des'.split('_');
|
||||
|
||||
var fy = moment.defineLocale('fy', {
|
||||
var fy = moment.defineLocale('fy', {
|
||||
months : 'jannewaris_febrewaris_maart_april_maaie_juny_july_augustus_septimber_oktober_novimber_desimber'.split('_'),
|
||||
monthsShort : function (m, format) {
|
||||
if (/-MMM-/.test(format)) {
|
||||
if (!m) {
|
||||
return monthsShortWithDots;
|
||||
} else if (/-MMM-/.test(format)) {
|
||||
return monthsShortWithoutDots[m.month()];
|
||||
} else {
|
||||
return monthsShortWithDots[m.month()];
|
||||
@ -58,7 +60,7 @@
|
||||
y : 'ien jier',
|
||||
yy : '%d jierren'
|
||||
},
|
||||
ordinalParse: /\d{1,2}(ste|de)/,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}(ste|de)/,
|
||||
ordinal : function (number) {
|
||||
return number + ((number === 1 || number === 8 || number >= 20) ? 'ste' : 'de');
|
||||
},
|
||||
@ -66,8 +68,8 @@
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 4 // The week that contains Jan 4th is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return fy;
|
||||
return fy;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
28
lib/javascripts/moment_locale/gd.js
Executable file → Normal file
28
lib/javascripts/moment_locale/gd.js
Executable file → Normal file
@ -1,28 +1,28 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : great britain scottish gealic (gd)
|
||||
//! locale : Scottish Gaelic [gd]
|
||||
//! author : Jon Ashdown : https://github.com/jonashdown
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var months = [
|
||||
var months = [
|
||||
'Am Faoilleach', 'An Gearran', 'Am Màrt', 'An Giblean', 'An Cèitean', 'An t-Ògmhios', 'An t-Iuchar', 'An Lùnastal', 'An t-Sultain', 'An Dàmhair', 'An t-Samhain', 'An Dùbhlachd'
|
||||
];
|
||||
];
|
||||
|
||||
var monthsShort = ['Faoi', 'Gear', 'Màrt', 'Gibl', 'Cèit', 'Ògmh', 'Iuch', 'Lùn', 'Sult', 'Dàmh', 'Samh', 'Dùbh'];
|
||||
var monthsShort = ['Faoi', 'Gear', 'Màrt', 'Gibl', 'Cèit', 'Ògmh', 'Iuch', 'Lùn', 'Sult', 'Dàmh', 'Samh', 'Dùbh'];
|
||||
|
||||
var weekdays = ['Didòmhnaich', 'Diluain', 'Dimàirt', 'Diciadain', 'Diardaoin', 'Dihaoine', 'Disathairne'];
|
||||
var weekdays = ['Didòmhnaich', 'Diluain', 'Dimàirt', 'Diciadain', 'Diardaoin', 'Dihaoine', 'Disathairne'];
|
||||
|
||||
var weekdaysShort = ['Did', 'Dil', 'Dim', 'Dic', 'Dia', 'Dih', 'Dis'];
|
||||
var weekdaysShort = ['Did', 'Dil', 'Dim', 'Dic', 'Dia', 'Dih', 'Dis'];
|
||||
|
||||
var weekdaysMin = ['Dò', 'Lu', 'Mà', 'Ci', 'Ar', 'Ha', 'Sa'];
|
||||
var weekdaysMin = ['Dò', 'Lu', 'Mà', 'Ci', 'Ar', 'Ha', 'Sa'];
|
||||
|
||||
var gd = moment.defineLocale('gd', {
|
||||
var gd = moment.defineLocale('gd', {
|
||||
months : months,
|
||||
monthsShort : monthsShort,
|
||||
monthsParseExact : true,
|
||||
@ -60,7 +60,7 @@
|
||||
y : 'bliadhna',
|
||||
yy : '%d bliadhna'
|
||||
},
|
||||
ordinalParse : /\d{1,2}(d|na|mh)/,
|
||||
dayOfMonthOrdinalParse : /\d{1,2}(d|na|mh)/,
|
||||
ordinal : function (number) {
|
||||
var output = number === 1 ? 'd' : number % 10 === 2 ? 'na' : 'mh';
|
||||
return number + output;
|
||||
@ -69,8 +69,8 @@
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 4 // The week that contains Jan 4th is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return gd;
|
||||
return gd;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
38
lib/javascripts/moment_locale/gl.js
Executable file → Normal file
38
lib/javascripts/moment_locale/gl.js
Executable file → Normal file
@ -1,30 +1,30 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : galician (gl)
|
||||
//! locale : Galician [gl]
|
||||
//! author : Juan G. Hurtado : https://github.com/juanghurtado
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var gl = moment.defineLocale('gl', {
|
||||
months : 'Xaneiro_Febreiro_Marzo_Abril_Maio_Xuño_Xullo_Agosto_Setembro_Outubro_Novembro_Decembro'.split('_'),
|
||||
monthsShort : 'Xan._Feb._Mar._Abr._Mai._Xuñ._Xul._Ago._Set._Out._Nov._Dec.'.split('_'),
|
||||
var gl = moment.defineLocale('gl', {
|
||||
months : 'xaneiro_febreiro_marzo_abril_maio_xuño_xullo_agosto_setembro_outubro_novembro_decembro'.split('_'),
|
||||
monthsShort : 'xan._feb._mar._abr._mai._xuñ._xul._ago._set._out._nov._dec.'.split('_'),
|
||||
monthsParseExact: true,
|
||||
weekdays : 'Domingo_Luns_Martes_Mércores_Xoves_Venres_Sábado'.split('_'),
|
||||
weekdaysShort : 'Dom._Lun._Mar._Mér._Xov._Ven._Sáb.'.split('_'),
|
||||
weekdaysMin : 'Do_Lu_Ma_Mé_Xo_Ve_Sá'.split('_'),
|
||||
weekdays : 'domingo_luns_martes_mércores_xoves_venres_sábado'.split('_'),
|
||||
weekdaysShort : 'dom._lun._mar._mér._xov._ven._sáb.'.split('_'),
|
||||
weekdaysMin : 'do_lu_ma_mé_xo_ve_sá'.split('_'),
|
||||
weekdaysParseExact : true,
|
||||
longDateFormat : {
|
||||
LT : 'H:mm',
|
||||
LTS : 'H:mm:ss',
|
||||
L : 'DD/MM/YYYY',
|
||||
LL : 'D MMMM YYYY',
|
||||
LLL : 'D MMMM YYYY H:mm',
|
||||
LLLL : 'dddd D MMMM YYYY H:mm'
|
||||
LL : 'D [de] MMMM [de] YYYY',
|
||||
LLL : 'D [de] MMMM [de] YYYY H:mm',
|
||||
LLLL : 'dddd, D [de] MMMM [de] YYYY H:mm'
|
||||
},
|
||||
calendar : {
|
||||
sameDay : function () {
|
||||
@ -46,8 +46,8 @@
|
||||
},
|
||||
relativeTime : {
|
||||
future : function (str) {
|
||||
if (str === 'uns segundos') {
|
||||
return 'nuns segundos';
|
||||
if (str.indexOf('un') === 0) {
|
||||
return 'n' + str;
|
||||
}
|
||||
return 'en ' + str;
|
||||
},
|
||||
@ -64,14 +64,14 @@
|
||||
y : 'un ano',
|
||||
yy : '%d anos'
|
||||
},
|
||||
ordinalParse : /\d{1,2}º/,
|
||||
dayOfMonthOrdinalParse : /\d{1,2}º/,
|
||||
ordinal : '%dº',
|
||||
week : {
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 7 // The week that contains Jan 1st is the first week of the year.
|
||||
doy : 4 // The week that contains Jan 4th is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return gl;
|
||||
return gl;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
122
lib/javascripts/moment_locale/gom-latn.js
Normal file
122
lib/javascripts/moment_locale/gom-latn.js
Normal file
@ -0,0 +1,122 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : Konkani Latin script [gom-latn]
|
||||
//! author : The Discoverer : https://github.com/WikiDiscoverer
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
function processRelativeTime(number, withoutSuffix, key, isFuture) {
|
||||
var format = {
|
||||
's': ['thodde secondanim', 'thodde second'],
|
||||
'm': ['eka mintan', 'ek minute'],
|
||||
'mm': [number + ' mintanim', number + ' mintam'],
|
||||
'h': ['eka horan', 'ek hor'],
|
||||
'hh': [number + ' horanim', number + ' hor'],
|
||||
'd': ['eka disan', 'ek dis'],
|
||||
'dd': [number + ' disanim', number + ' dis'],
|
||||
'M': ['eka mhoinean', 'ek mhoino'],
|
||||
'MM': [number + ' mhoineanim', number + ' mhoine'],
|
||||
'y': ['eka vorsan', 'ek voros'],
|
||||
'yy': [number + ' vorsanim', number + ' vorsam']
|
||||
};
|
||||
return withoutSuffix ? format[key][0] : format[key][1];
|
||||
}
|
||||
|
||||
var gomLatn = moment.defineLocale('gom-latn', {
|
||||
months : 'Janer_Febrer_Mars_Abril_Mai_Jun_Julai_Agost_Setembr_Otubr_Novembr_Dezembr'.split('_'),
|
||||
monthsShort : 'Jan._Feb._Mars_Abr._Mai_Jun_Jul._Ago._Set._Otu._Nov._Dez.'.split('_'),
|
||||
monthsParseExact : true,
|
||||
weekdays : 'Aitar_Somar_Mongllar_Budvar_Brestar_Sukrar_Son\'var'.split('_'),
|
||||
weekdaysShort : 'Ait._Som._Mon._Bud._Bre._Suk._Son.'.split('_'),
|
||||
weekdaysMin : 'Ai_Sm_Mo_Bu_Br_Su_Sn'.split('_'),
|
||||
weekdaysParseExact : true,
|
||||
longDateFormat : {
|
||||
LT : 'A h:mm [vazta]',
|
||||
LTS : 'A h:mm:ss [vazta]',
|
||||
L : 'DD-MM-YYYY',
|
||||
LL : 'D MMMM YYYY',
|
||||
LLL : 'D MMMM YYYY A h:mm [vazta]',
|
||||
LLLL : 'dddd, MMMM[achea] Do, YYYY, A h:mm [vazta]',
|
||||
llll: 'ddd, D MMM YYYY, A h:mm [vazta]'
|
||||
},
|
||||
calendar : {
|
||||
sameDay: '[Aiz] LT',
|
||||
nextDay: '[Faleam] LT',
|
||||
nextWeek: '[Ieta to] dddd[,] LT',
|
||||
lastDay: '[Kal] LT',
|
||||
lastWeek: '[Fatlo] dddd[,] LT',
|
||||
sameElse: 'L'
|
||||
},
|
||||
relativeTime : {
|
||||
future : '%s',
|
||||
past : '%s adim',
|
||||
s : processRelativeTime,
|
||||
m : processRelativeTime,
|
||||
mm : processRelativeTime,
|
||||
h : processRelativeTime,
|
||||
hh : processRelativeTime,
|
||||
d : processRelativeTime,
|
||||
dd : processRelativeTime,
|
||||
M : processRelativeTime,
|
||||
MM : processRelativeTime,
|
||||
y : processRelativeTime,
|
||||
yy : processRelativeTime
|
||||
},
|
||||
dayOfMonthOrdinalParse : /\d{1,2}(er)/,
|
||||
ordinal : function (number, period) {
|
||||
switch (period) {
|
||||
// the ordinal 'er' only applies to day of the month
|
||||
case 'D':
|
||||
return number + 'er';
|
||||
default:
|
||||
case 'M':
|
||||
case 'Q':
|
||||
case 'DDD':
|
||||
case 'd':
|
||||
case 'w':
|
||||
case 'W':
|
||||
return number;
|
||||
}
|
||||
},
|
||||
week : {
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 4 // The week that contains Jan 4th is the first week of the year.
|
||||
},
|
||||
meridiemParse: /rati|sokalli|donparam|sanje/,
|
||||
meridiemHour : function (hour, meridiem) {
|
||||
if (hour === 12) {
|
||||
hour = 0;
|
||||
}
|
||||
if (meridiem === 'rati') {
|
||||
return hour < 4 ? hour : hour + 12;
|
||||
} else if (meridiem === 'sokalli') {
|
||||
return hour;
|
||||
} else if (meridiem === 'donparam') {
|
||||
return hour > 12 ? hour : hour + 12;
|
||||
} else if (meridiem === 'sanje') {
|
||||
return hour + 12;
|
||||
}
|
||||
},
|
||||
meridiem : function (hour, minute, isLower) {
|
||||
if (hour < 4) {
|
||||
return 'rati';
|
||||
} else if (hour < 12) {
|
||||
return 'sokalli';
|
||||
} else if (hour < 16) {
|
||||
return 'donparam';
|
||||
} else if (hour < 20) {
|
||||
return 'sanje';
|
||||
} else {
|
||||
return 'rati';
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
return gomLatn;
|
||||
|
||||
})));
|
14
lib/javascripts/moment_locale/he.js
Executable file → Normal file
14
lib/javascripts/moment_locale/he.js
Executable file → Normal file
@ -1,5 +1,5 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : Hebrew (he)
|
||||
//! locale : Hebrew [he]
|
||||
//! author : Tomer Cohen : https://github.com/tomer
|
||||
//! author : Moshe Simantov : https://github.com/DevelopmentIL
|
||||
//! author : Tal Ater : https://github.com/TalAter
|
||||
@ -7,12 +7,12 @@
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var he = moment.defineLocale('he', {
|
||||
var he = moment.defineLocale('he', {
|
||||
months : 'ינואר_פברואר_מרץ_אפריל_מאי_יוני_יולי_אוגוסט_ספטמבר_אוקטובר_נובמבר_דצמבר'.split('_'),
|
||||
monthsShort : 'ינו׳_פבר׳_מרץ_אפר׳_מאי_יוני_יולי_אוג׳_ספט׳_אוק׳_נוב׳_דצמ׳'.split('_'),
|
||||
weekdays : 'ראשון_שני_שלישי_רביעי_חמישי_שישי_שבת'.split('_'),
|
||||
@ -92,8 +92,8 @@
|
||||
return 'בערב';
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return he;
|
||||
return he;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
22
lib/javascripts/moment_locale/hi.js
Executable file → Normal file
22
lib/javascripts/moment_locale/hi.js
Executable file → Normal file
@ -1,16 +1,16 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : hindi (hi)
|
||||
//! locale : Hindi [hi]
|
||||
//! author : Mayank Singhal : https://github.com/mayanksinghal
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var symbolMap = {
|
||||
var symbolMap = {
|
||||
'1': '१',
|
||||
'2': '२',
|
||||
'3': '३',
|
||||
@ -21,8 +21,8 @@
|
||||
'8': '८',
|
||||
'9': '९',
|
||||
'0': '०'
|
||||
},
|
||||
numberMap = {
|
||||
};
|
||||
var numberMap = {
|
||||
'१': '1',
|
||||
'२': '2',
|
||||
'३': '3',
|
||||
@ -33,9 +33,9 @@
|
||||
'८': '8',
|
||||
'९': '9',
|
||||
'०': '0'
|
||||
};
|
||||
};
|
||||
|
||||
var hi = moment.defineLocale('hi', {
|
||||
var hi = moment.defineLocale('hi', {
|
||||
months : 'जनवरी_फ़रवरी_मार्च_अप्रैल_मई_जून_जुलाई_अगस्त_सितम्बर_अक्टूबर_नवम्बर_दिसम्बर'.split('_'),
|
||||
monthsShort : 'जन._फ़र._मार्च_अप्रै._मई_जून_जुल._अग._सित._अक्टू._नव._दिस.'.split('_'),
|
||||
monthsParseExact: true,
|
||||
@ -117,8 +117,8 @@
|
||||
dow : 0, // Sunday is the first day of the week.
|
||||
doy : 6 // The week that contains Jan 1st is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return hi;
|
||||
return hi;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
22
lib/javascripts/moment_locale/hr.js
Executable file → Normal file
22
lib/javascripts/moment_locale/hr.js
Executable file → Normal file
@ -1,16 +1,16 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : hrvatski (hr)
|
||||
//! locale : Croatian [hr]
|
||||
//! author : Bojan Marković : https://github.com/bmarkovic
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
function translate(number, withoutSuffix, key) {
|
||||
function translate(number, withoutSuffix, key) {
|
||||
var result = number + ' ';
|
||||
switch (key) {
|
||||
case 'm':
|
||||
@ -61,9 +61,9 @@
|
||||
}
|
||||
return result;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
var hr = moment.defineLocale('hr', {
|
||||
var hr = moment.defineLocale('hr', {
|
||||
months : {
|
||||
format: 'siječnja_veljače_ožujka_travnja_svibnja_lipnja_srpnja_kolovoza_rujna_listopada_studenoga_prosinca'.split('_'),
|
||||
standalone: 'siječanj_veljača_ožujak_travanj_svibanj_lipanj_srpanj_kolovoz_rujan_listopad_studeni_prosinac'.split('_')
|
||||
@ -77,7 +77,7 @@
|
||||
longDateFormat : {
|
||||
LT : 'H:mm',
|
||||
LTS : 'H:mm:ss',
|
||||
L : 'DD. MM. YYYY',
|
||||
L : 'DD.MM.YYYY',
|
||||
LL : 'D. MMMM YYYY',
|
||||
LLL : 'D. MMMM YYYY H:mm',
|
||||
LLLL : 'dddd, D. MMMM YYYY H:mm'
|
||||
@ -132,14 +132,14 @@
|
||||
y : 'godinu',
|
||||
yy : translate
|
||||
},
|
||||
ordinalParse: /\d{1,2}\./,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}\./,
|
||||
ordinal : '%d.',
|
||||
week : {
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 7 // The week that contains Jan 1st is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return hr;
|
||||
return hr;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
28
lib/javascripts/moment_locale/hu.js
Executable file → Normal file
28
lib/javascripts/moment_locale/hu.js
Executable file → Normal file
@ -1,17 +1,17 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : hungarian (hu)
|
||||
//! locale : Hungarian [hu]
|
||||
//! author : Adam Brunner : https://github.com/adambrunner
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var weekEndings = 'vasárnap hétfőn kedden szerdán csütörtökön pénteken szombaton'.split(' ');
|
||||
function translate(number, withoutSuffix, key, isFuture) {
|
||||
var weekEndings = 'vasárnap hétfőn kedden szerdán csütörtökön pénteken szombaton'.split(' ');
|
||||
function translate(number, withoutSuffix, key, isFuture) {
|
||||
var num = number,
|
||||
suffix;
|
||||
switch (key) {
|
||||
@ -39,12 +39,12 @@
|
||||
return num + (isFuture || withoutSuffix ? ' év' : ' éve');
|
||||
}
|
||||
return '';
|
||||
}
|
||||
function week(isFuture) {
|
||||
}
|
||||
function week(isFuture) {
|
||||
return (isFuture ? '' : '[múlt] ') + '[' + weekEndings[this.day()] + '] LT[-kor]';
|
||||
}
|
||||
}
|
||||
|
||||
var hu = moment.defineLocale('hu', {
|
||||
var hu = moment.defineLocale('hu', {
|
||||
months : 'január_február_március_április_május_június_július_augusztus_szeptember_október_november_december'.split('_'),
|
||||
monthsShort : 'jan_feb_márc_ápr_máj_jún_júl_aug_szept_okt_nov_dec'.split('_'),
|
||||
weekdays : 'vasárnap_hétfő_kedd_szerda_csütörtök_péntek_szombat'.split('_'),
|
||||
@ -96,14 +96,14 @@
|
||||
y : translate,
|
||||
yy : translate
|
||||
},
|
||||
ordinalParse: /\d{1,2}\./,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}\./,
|
||||
ordinal : '%d.',
|
||||
week : {
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 7 // The week that contains Jan 1st is the first week of the year.
|
||||
doy : 4 // The week that contains Jan 4th is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return hu;
|
||||
return hu;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
16
lib/javascripts/moment_locale/hy-am.js
Executable file → Normal file
16
lib/javascripts/moment_locale/hy-am.js
Executable file → Normal file
@ -1,16 +1,16 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : Armenian (hy-am)
|
||||
//! locale : Armenian [hy-am]
|
||||
//! author : Armendarabyan : https://github.com/armendarabyan
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var hy_am = moment.defineLocale('hy-am', {
|
||||
var hyAm = moment.defineLocale('hy-am', {
|
||||
months : {
|
||||
format: 'հունվարի_փետրվարի_մարտի_ապրիլի_մայիսի_հունիսի_հուլիսի_օգոստոսի_սեպտեմբերի_հոկտեմբերի_նոյեմբերի_դեկտեմբերի'.split('_'),
|
||||
standalone: 'հունվար_փետրվար_մարտ_ապրիլ_մայիս_հունիս_հուլիս_օգոստոս_սեպտեմբեր_հոկտեմբեր_նոյեմբեր_դեկտեմբեր'.split('_')
|
||||
@ -69,7 +69,7 @@
|
||||
return 'երեկոյան';
|
||||
}
|
||||
},
|
||||
ordinalParse: /\d{1,2}|\d{1,2}-(ին|րդ)/,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}|\d{1,2}-(ին|րդ)/,
|
||||
ordinal: function (number, period) {
|
||||
switch (period) {
|
||||
case 'DDD':
|
||||
@ -88,8 +88,8 @@
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 7 // The week that contains Jan 1st is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return hy_am;
|
||||
return hyAm;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
14
lib/javascripts/moment_locale/id.js
Executable file → Normal file
14
lib/javascripts/moment_locale/id.js
Executable file → Normal file
@ -1,17 +1,17 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : Bahasa Indonesia (id)
|
||||
//! locale : Indonesian [id]
|
||||
//! author : Mohammad Satrio Utomo : https://github.com/tyok
|
||||
//! reference: http://id.wikisource.org/wiki/Pedoman_Umum_Ejaan_Bahasa_Indonesia_yang_Disempurnakan
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var id = moment.defineLocale('id', {
|
||||
var id = moment.defineLocale('id', {
|
||||
months : 'Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_November_Desember'.split('_'),
|
||||
monthsShort : 'Jan_Feb_Mar_Apr_Mei_Jun_Jul_Ags_Sep_Okt_Nov_Des'.split('_'),
|
||||
weekdays : 'Minggu_Senin_Selasa_Rabu_Kamis_Jumat_Sabtu'.split('_'),
|
||||
@ -76,8 +76,8 @@
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 7 // The week that contains Jan 1st is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return id;
|
||||
return id;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
24
lib/javascripts/moment_locale/is.js
Executable file → Normal file
24
lib/javascripts/moment_locale/is.js
Executable file → Normal file
@ -1,24 +1,24 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : icelandic (is)
|
||||
//! locale : Icelandic [is]
|
||||
//! author : Hinrik Örn Sigurðsson : https://github.com/hinrik
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
function plural(n) {
|
||||
function plural(n) {
|
||||
if (n % 100 === 11) {
|
||||
return true;
|
||||
} else if (n % 10 === 1) {
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
function translate(number, withoutSuffix, key, isFuture) {
|
||||
}
|
||||
function translate(number, withoutSuffix, key, isFuture) {
|
||||
var result = number + ' ';
|
||||
switch (key) {
|
||||
case 's':
|
||||
@ -75,9 +75,9 @@
|
||||
}
|
||||
return result + (withoutSuffix || isFuture ? 'ár' : 'ári');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
var is = moment.defineLocale('is', {
|
||||
var is = moment.defineLocale('is', {
|
||||
months : 'janúar_febrúar_mars_apríl_maí_júní_júlí_ágúst_september_október_nóvember_desember'.split('_'),
|
||||
monthsShort : 'jan_feb_mar_apr_maí_jún_júl_ágú_sep_okt_nóv_des'.split('_'),
|
||||
weekdays : 'sunnudagur_mánudagur_þriðjudagur_miðvikudagur_fimmtudagur_föstudagur_laugardagur'.split('_'),
|
||||
@ -114,14 +114,14 @@
|
||||
y : translate,
|
||||
yy : translate
|
||||
},
|
||||
ordinalParse: /\d{1,2}\./,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}\./,
|
||||
ordinal : '%d.',
|
||||
week : {
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 4 // The week that contains Jan 4th is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return is;
|
||||
return is;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
22
lib/javascripts/moment_locale/it.js
Executable file → Normal file
22
lib/javascripts/moment_locale/it.js
Executable file → Normal file
@ -1,22 +1,22 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : italian (it)
|
||||
//! locale : Italian [it]
|
||||
//! author : Lorenzo : https://github.com/aliem
|
||||
//! author: Mattia Larentis: https://github.com/nostalgiaz
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var it = moment.defineLocale('it', {
|
||||
var it = moment.defineLocale('it', {
|
||||
months : 'gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre'.split('_'),
|
||||
monthsShort : 'gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic'.split('_'),
|
||||
weekdays : 'Domenica_Lunedì_Martedì_Mercoledì_Giovedì_Venerdì_Sabato'.split('_'),
|
||||
weekdaysShort : 'Dom_Lun_Mar_Mer_Gio_Ven_Sab'.split('_'),
|
||||
weekdaysMin : 'Do_Lu_Ma_Me_Gi_Ve_Sa'.split('_'),
|
||||
weekdays : 'domenica_lunedì_martedì_mercoledì_giovedì_venerdì_sabato'.split('_'),
|
||||
weekdaysShort : 'dom_lun_mar_mer_gio_ven_sab'.split('_'),
|
||||
weekdaysMin : 'do_lu_ma_me_gi_ve_sa'.split('_'),
|
||||
longDateFormat : {
|
||||
LT : 'HH:mm',
|
||||
LTS : 'HH:mm:ss',
|
||||
@ -57,14 +57,14 @@
|
||||
y : 'un anno',
|
||||
yy : '%d anni'
|
||||
},
|
||||
ordinalParse : /\d{1,2}º/,
|
||||
dayOfMonthOrdinalParse : /\d{1,2}º/,
|
||||
ordinal: '%dº',
|
||||
week : {
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 4 // The week that contains Jan 4th is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return it;
|
||||
return it;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
28
lib/javascripts/moment_locale/ja.js
Executable file → Normal file
28
lib/javascripts/moment_locale/ja.js
Executable file → Normal file
@ -1,28 +1,32 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : japanese (ja)
|
||||
//! locale : Japanese [ja]
|
||||
//! author : LI Long : https://github.com/baryon
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var ja = moment.defineLocale('ja', {
|
||||
var ja = moment.defineLocale('ja', {
|
||||
months : '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split('_'),
|
||||
monthsShort : '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'.split('_'),
|
||||
weekdays : '日曜日_月曜日_火曜日_水曜日_木曜日_金曜日_土曜日'.split('_'),
|
||||
weekdaysShort : '日_月_火_水_木_金_土'.split('_'),
|
||||
weekdaysMin : '日_月_火_水_木_金_土'.split('_'),
|
||||
longDateFormat : {
|
||||
LT : 'Ah時m分',
|
||||
LTS : 'Ah時m分s秒',
|
||||
LT : 'HH:mm',
|
||||
LTS : 'HH:mm:ss',
|
||||
L : 'YYYY/MM/DD',
|
||||
LL : 'YYYY年M月D日',
|
||||
LLL : 'YYYY年M月D日Ah時m分',
|
||||
LLLL : 'YYYY年M月D日Ah時m分 dddd'
|
||||
LLL : 'YYYY年M月D日 HH:mm',
|
||||
LLLL : 'YYYY年M月D日 HH:mm dddd',
|
||||
l : 'YYYY/MM/DD',
|
||||
ll : 'YYYY年M月D日',
|
||||
lll : 'YYYY年M月D日 HH:mm',
|
||||
llll : 'YYYY年M月D日 HH:mm dddd'
|
||||
},
|
||||
meridiemParse: /午前|午後/i,
|
||||
isPM : function (input) {
|
||||
@ -43,7 +47,7 @@
|
||||
lastWeek : '[前週]dddd LT',
|
||||
sameElse : 'L'
|
||||
},
|
||||
ordinalParse : /\d{1,2}日/,
|
||||
dayOfMonthOrdinalParse : /\d{1,2}日/,
|
||||
ordinal : function (number, period) {
|
||||
switch (period) {
|
||||
case 'd':
|
||||
@ -69,8 +73,8 @@
|
||||
y : '1年',
|
||||
yy : '%d年'
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return ja;
|
||||
return ja;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
14
lib/javascripts/moment_locale/jv.js
Executable file → Normal file
14
lib/javascripts/moment_locale/jv.js
Executable file → Normal file
@ -1,17 +1,17 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : Boso Jowo (jv)
|
||||
//! locale : Javanese [jv]
|
||||
//! author : Rony Lantip : https://github.com/lantip
|
||||
//! reference: http://jv.wikipedia.org/wiki/Basa_Jawa
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var jv = moment.defineLocale('jv', {
|
||||
var jv = moment.defineLocale('jv', {
|
||||
months : 'Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_Nopember_Desember'.split('_'),
|
||||
monthsShort : 'Jan_Feb_Mar_Apr_Mei_Jun_Jul_Ags_Sep_Okt_Nop_Des'.split('_'),
|
||||
weekdays : 'Minggu_Senen_Seloso_Rebu_Kemis_Jemuwah_Septu'.split('_'),
|
||||
@ -76,8 +76,8 @@
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 7 // The week that contains Jan 1st is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return jv;
|
||||
return jv;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
20
lib/javascripts/moment_locale/ka.js
Executable file → Normal file
20
lib/javascripts/moment_locale/ka.js
Executable file → Normal file
@ -1,16 +1,16 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : Georgian (ka)
|
||||
//! locale : Georgian [ka]
|
||||
//! author : Irakli Janiashvili : https://github.com/irakli-janiashvili
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var ka = moment.defineLocale('ka', {
|
||||
var ka = moment.defineLocale('ka', {
|
||||
months : {
|
||||
standalone: 'იანვარი_თებერვალი_მარტი_აპრილი_მაისი_ივნისი_ივლისი_აგვისტო_სექტემბერი_ოქტომბერი_ნოემბერი_დეკემბერი'.split('_'),
|
||||
format: 'იანვარს_თებერვალს_მარტს_აპრილის_მაისს_ივნისს_ივლისს_აგვისტს_სექტემბერს_ოქტომბერს_ნოემბერს_დეკემბერს'.split('_')
|
||||
@ -47,10 +47,10 @@
|
||||
},
|
||||
past : function (s) {
|
||||
if ((/(წამი|წუთი|საათი|დღე|თვე)/).test(s)) {
|
||||
return s.replace(/(ი|ე)$/, 'ის წინ');
|
||||
return s.replace(/(ი|ე)$/, 'ის უკან');
|
||||
}
|
||||
if ((/წელი/).test(s)) {
|
||||
return s.replace(/წელი$/, 'წლის წინ');
|
||||
return s.replace(/წელი$/, 'წლის უკან');
|
||||
}
|
||||
},
|
||||
s : 'რამდენიმე წამი',
|
||||
@ -65,7 +65,7 @@
|
||||
y : 'წელი',
|
||||
yy : '%d წელი'
|
||||
},
|
||||
ordinalParse: /0|1-ლი|მე-\d{1,2}|\d{1,2}-ე/,
|
||||
dayOfMonthOrdinalParse: /0|1-ლი|მე-\d{1,2}|\d{1,2}-ე/,
|
||||
ordinal : function (number) {
|
||||
if (number === 0) {
|
||||
return number;
|
||||
@ -82,8 +82,8 @@
|
||||
dow : 1,
|
||||
doy : 7
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return ka;
|
||||
return ka;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
20
lib/javascripts/moment_locale/kk.js
Executable file → Normal file
20
lib/javascripts/moment_locale/kk.js
Executable file → Normal file
@ -1,16 +1,16 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : kazakh (kk)
|
||||
//! locale : Kazakh [kk]
|
||||
//! authors : Nurlan Rakhimzhanov : https://github.com/nurlan
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var suffixes = {
|
||||
var suffixes = {
|
||||
0: '-ші',
|
||||
1: '-ші',
|
||||
2: '-ші',
|
||||
@ -31,9 +31,9 @@
|
||||
80: '-ші',
|
||||
90: '-шы',
|
||||
100: '-ші'
|
||||
};
|
||||
};
|
||||
|
||||
var kk = moment.defineLocale('kk', {
|
||||
var kk = moment.defineLocale('kk', {
|
||||
months : 'қаңтар_ақпан_наурыз_сәуір_мамыр_маусым_шілде_тамыз_қыркүйек_қазан_қараша_желтоқсан'.split('_'),
|
||||
monthsShort : 'қаң_ақп_нау_сәу_мам_мау_шіл_там_қыр_қаз_қар_жел'.split('_'),
|
||||
weekdays : 'жексенбі_дүйсенбі_сейсенбі_сәрсенбі_бейсенбі_жұма_сенбі'.split('_'),
|
||||
@ -70,7 +70,7 @@
|
||||
y : 'бір жыл',
|
||||
yy : '%d жыл'
|
||||
},
|
||||
ordinalParse: /\d{1,2}-(ші|шы)/,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}-(ші|шы)/,
|
||||
ordinal : function (number) {
|
||||
var a = number % 10,
|
||||
b = number >= 100 ? 100 : null;
|
||||
@ -80,8 +80,8 @@
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 7 // The week that contains Jan 1st is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return kk;
|
||||
return kk;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
14
lib/javascripts/moment_locale/km.js
Executable file → Normal file
14
lib/javascripts/moment_locale/km.js
Executable file → Normal file
@ -1,16 +1,16 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : khmer (km)
|
||||
//! locale : Cambodian [km]
|
||||
//! author : Kruy Vanna : https://github.com/kruyvanna
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var km = moment.defineLocale('km', {
|
||||
var km = moment.defineLocale('km', {
|
||||
months: 'មករា_កុម្ភៈ_មីនា_មេសា_ឧសភា_មិថុនា_កក្កដា_សីហា_កញ្ញា_តុលា_វិច្ឆិកា_ធ្នូ'.split('_'),
|
||||
monthsShort: 'មករា_កុម្ភៈ_មីនា_មេសា_ឧសភា_មិថុនា_កក្កដា_សីហា_កញ្ញា_តុលា_វិច្ឆិកា_ធ្នូ'.split('_'),
|
||||
weekdays: 'អាទិត្យ_ច័ន្ទ_អង្គារ_ពុធ_ព្រហស្បតិ៍_សុក្រ_សៅរ៍'.split('_'),
|
||||
@ -51,8 +51,8 @@
|
||||
dow: 1, // Monday is the first day of the week.
|
||||
doy: 4 // The week that contains Jan 4th is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return km;
|
||||
return km;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
126
lib/javascripts/moment_locale/kn.js
Normal file
126
lib/javascripts/moment_locale/kn.js
Normal file
@ -0,0 +1,126 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : Kannada [kn]
|
||||
//! author : Rajeev Naik : https://github.com/rajeevnaikte
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var symbolMap = {
|
||||
'1': '೧',
|
||||
'2': '೨',
|
||||
'3': '೩',
|
||||
'4': '೪',
|
||||
'5': '೫',
|
||||
'6': '೬',
|
||||
'7': '೭',
|
||||
'8': '೮',
|
||||
'9': '೯',
|
||||
'0': '೦'
|
||||
};
|
||||
var numberMap = {
|
||||
'೧': '1',
|
||||
'೨': '2',
|
||||
'೩': '3',
|
||||
'೪': '4',
|
||||
'೫': '5',
|
||||
'೬': '6',
|
||||
'೭': '7',
|
||||
'೮': '8',
|
||||
'೯': '9',
|
||||
'೦': '0'
|
||||
};
|
||||
|
||||
var kn = moment.defineLocale('kn', {
|
||||
months : 'ಜನವರಿ_ಫೆಬ್ರವರಿ_ಮಾರ್ಚ್_ಏಪ್ರಿಲ್_ಮೇ_ಜೂನ್_ಜುಲೈ_ಆಗಸ್ಟ್_ಸೆಪ್ಟೆಂಬರ್_ಅಕ್ಟೋಬರ್_ನವೆಂಬರ್_ಡಿಸೆಂಬರ್'.split('_'),
|
||||
monthsShort : 'ಜನ_ಫೆಬ್ರ_ಮಾರ್ಚ್_ಏಪ್ರಿಲ್_ಮೇ_ಜೂನ್_ಜುಲೈ_ಆಗಸ್ಟ್_ಸೆಪ್ಟೆಂಬ_ಅಕ್ಟೋಬ_ನವೆಂಬ_ಡಿಸೆಂಬ'.split('_'),
|
||||
monthsParseExact: true,
|
||||
weekdays : 'ಭಾನುವಾರ_ಸೋಮವಾರ_ಮಂಗಳವಾರ_ಬುಧವಾರ_ಗುರುವಾರ_ಶುಕ್ರವಾರ_ಶನಿವಾರ'.split('_'),
|
||||
weekdaysShort : 'ಭಾನು_ಸೋಮ_ಮಂಗಳ_ಬುಧ_ಗುರು_ಶುಕ್ರ_ಶನಿ'.split('_'),
|
||||
weekdaysMin : 'ಭಾ_ಸೋ_ಮಂ_ಬು_ಗು_ಶು_ಶ'.split('_'),
|
||||
longDateFormat : {
|
||||
LT : 'A h:mm',
|
||||
LTS : 'A h:mm:ss',
|
||||
L : 'DD/MM/YYYY',
|
||||
LL : 'D MMMM YYYY',
|
||||
LLL : 'D MMMM YYYY, A h:mm',
|
||||
LLLL : 'dddd, D MMMM YYYY, A h:mm'
|
||||
},
|
||||
calendar : {
|
||||
sameDay : '[ಇಂದು] LT',
|
||||
nextDay : '[ನಾಳೆ] LT',
|
||||
nextWeek : 'dddd, LT',
|
||||
lastDay : '[ನಿನ್ನೆ] LT',
|
||||
lastWeek : '[ಕೊನೆಯ] dddd, LT',
|
||||
sameElse : 'L'
|
||||
},
|
||||
relativeTime : {
|
||||
future : '%s ನಂತರ',
|
||||
past : '%s ಹಿಂದೆ',
|
||||
s : 'ಕೆಲವು ಕ್ಷಣಗಳು',
|
||||
m : 'ಒಂದು ನಿಮಿಷ',
|
||||
mm : '%d ನಿಮಿಷ',
|
||||
h : 'ಒಂದು ಗಂಟೆ',
|
||||
hh : '%d ಗಂಟೆ',
|
||||
d : 'ಒಂದು ದಿನ',
|
||||
dd : '%d ದಿನ',
|
||||
M : 'ಒಂದು ತಿಂಗಳು',
|
||||
MM : '%d ತಿಂಗಳು',
|
||||
y : 'ಒಂದು ವರ್ಷ',
|
||||
yy : '%d ವರ್ಷ'
|
||||
},
|
||||
preparse: function (string) {
|
||||
return string.replace(/[೧೨೩೪೫೬೭೮೯೦]/g, function (match) {
|
||||
return numberMap[match];
|
||||
});
|
||||
},
|
||||
postformat: function (string) {
|
||||
return string.replace(/\d/g, function (match) {
|
||||
return symbolMap[match];
|
||||
});
|
||||
},
|
||||
meridiemParse: /ರಾತ್ರಿ|ಬೆಳಿಗ್ಗೆ|ಮಧ್ಯಾಹ್ನ|ಸಂಜೆ/,
|
||||
meridiemHour : function (hour, meridiem) {
|
||||
if (hour === 12) {
|
||||
hour = 0;
|
||||
}
|
||||
if (meridiem === 'ರಾತ್ರಿ') {
|
||||
return hour < 4 ? hour : hour + 12;
|
||||
} else if (meridiem === 'ಬೆಳಿಗ್ಗೆ') {
|
||||
return hour;
|
||||
} else if (meridiem === 'ಮಧ್ಯಾಹ್ನ') {
|
||||
return hour >= 10 ? hour : hour + 12;
|
||||
} else if (meridiem === 'ಸಂಜೆ') {
|
||||
return hour + 12;
|
||||
}
|
||||
},
|
||||
meridiem : function (hour, minute, isLower) {
|
||||
if (hour < 4) {
|
||||
return 'ರಾತ್ರಿ';
|
||||
} else if (hour < 10) {
|
||||
return 'ಬೆಳಿಗ್ಗೆ';
|
||||
} else if (hour < 17) {
|
||||
return 'ಮಧ್ಯಾಹ್ನ';
|
||||
} else if (hour < 20) {
|
||||
return 'ಸಂಜೆ';
|
||||
} else {
|
||||
return 'ರಾತ್ರಿ';
|
||||
}
|
||||
},
|
||||
dayOfMonthOrdinalParse: /\d{1,2}(ನೇ)/,
|
||||
ordinal : function (number) {
|
||||
return number + 'ನೇ';
|
||||
},
|
||||
week : {
|
||||
dow : 0, // Sunday is the first day of the week.
|
||||
doy : 6 // The week that contains Jan 1st is the first week of the year.
|
||||
}
|
||||
});
|
||||
|
||||
return kn;
|
||||
|
||||
})));
|
37
lib/javascripts/moment_locale/ko.js
Executable file → Normal file
37
lib/javascripts/moment_locale/ko.js
Executable file → Normal file
@ -1,32 +1,33 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : korean (ko)
|
||||
//!
|
||||
//! authors
|
||||
//!
|
||||
//! - Kyungwook, Park : https://github.com/kyungw00k
|
||||
//! - Jeeeyul Lee <jeeeyul@gmail.com>
|
||||
//! locale : Korean [ko]
|
||||
//! author : Kyungwook, Park : https://github.com/kyungw00k
|
||||
//! author : Jeeeyul Lee <jeeeyul@gmail.com>
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var ko = moment.defineLocale('ko', {
|
||||
var ko = moment.defineLocale('ko', {
|
||||
months : '1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월'.split('_'),
|
||||
monthsShort : '1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월'.split('_'),
|
||||
weekdays : '일요일_월요일_화요일_수요일_목요일_금요일_토요일'.split('_'),
|
||||
weekdaysShort : '일_월_화_수_목_금_토'.split('_'),
|
||||
weekdaysMin : '일_월_화_수_목_금_토'.split('_'),
|
||||
longDateFormat : {
|
||||
LT : 'A h시 m분',
|
||||
LTS : 'A h시 m분 s초',
|
||||
LT : 'A h:mm',
|
||||
LTS : 'A h:mm:ss',
|
||||
L : 'YYYY.MM.DD',
|
||||
LL : 'YYYY년 MMMM D일',
|
||||
LLL : 'YYYY년 MMMM D일 A h시 m분',
|
||||
LLLL : 'YYYY년 MMMM D일 dddd A h시 m분'
|
||||
LLL : 'YYYY년 MMMM D일 A h:mm',
|
||||
LLLL : 'YYYY년 MMMM D일 dddd A h:mm',
|
||||
l : 'YYYY.MM.DD',
|
||||
ll : 'YYYY년 MMMM D일',
|
||||
lll : 'YYYY년 MMMM D일 A h:mm',
|
||||
llll : 'YYYY년 MMMM D일 dddd A h:mm'
|
||||
},
|
||||
calendar : {
|
||||
sameDay : '오늘 LT',
|
||||
@ -41,7 +42,7 @@
|
||||
past : '%s 전',
|
||||
s : '몇 초',
|
||||
ss : '%d초',
|
||||
m : '일분',
|
||||
m : '1분',
|
||||
mm : '%d분',
|
||||
h : '한 시간',
|
||||
hh : '%d시간',
|
||||
@ -52,7 +53,7 @@
|
||||
y : '일 년',
|
||||
yy : '%d년'
|
||||
},
|
||||
ordinalParse : /\d{1,2}일/,
|
||||
dayOfMonthOrdinalParse : /\d{1,2}일/,
|
||||
ordinal : '%d일',
|
||||
meridiemParse : /오전|오후/,
|
||||
isPM : function (token) {
|
||||
@ -61,8 +62,8 @@
|
||||
meridiem : function (hour, minute, isUpper) {
|
||||
return hour < 12 ? '오전' : '오후';
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return ko;
|
||||
return ko;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
88
lib/javascripts/moment_locale/ky.js
Normal file
88
lib/javascripts/moment_locale/ky.js
Normal file
@ -0,0 +1,88 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : Kyrgyz [ky]
|
||||
//! author : Chyngyz Arystan uulu : https://github.com/chyngyz
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
|
||||
var suffixes = {
|
||||
0: '-чү',
|
||||
1: '-чи',
|
||||
2: '-чи',
|
||||
3: '-чү',
|
||||
4: '-чү',
|
||||
5: '-чи',
|
||||
6: '-чы',
|
||||
7: '-чи',
|
||||
8: '-чи',
|
||||
9: '-чу',
|
||||
10: '-чу',
|
||||
20: '-чы',
|
||||
30: '-чу',
|
||||
40: '-чы',
|
||||
50: '-чү',
|
||||
60: '-чы',
|
||||
70: '-чи',
|
||||
80: '-чи',
|
||||
90: '-чу',
|
||||
100: '-чү'
|
||||
};
|
||||
|
||||
var ky = moment.defineLocale('ky', {
|
||||
months : 'январь_февраль_март_апрель_май_июнь_июль_август_сентябрь_октябрь_ноябрь_декабрь'.split('_'),
|
||||
monthsShort : 'янв_фев_март_апр_май_июнь_июль_авг_сен_окт_ноя_дек'.split('_'),
|
||||
weekdays : 'Жекшемби_Дүйшөмбү_Шейшемби_Шаршемби_Бейшемби_Жума_Ишемби'.split('_'),
|
||||
weekdaysShort : 'Жек_Дүй_Шей_Шар_Бей_Жум_Ише'.split('_'),
|
||||
weekdaysMin : 'Жк_Дй_Шй_Шр_Бй_Жм_Иш'.split('_'),
|
||||
longDateFormat : {
|
||||
LT : 'HH:mm',
|
||||
LTS : 'HH:mm:ss',
|
||||
L : 'DD.MM.YYYY',
|
||||
LL : 'D MMMM YYYY',
|
||||
LLL : 'D MMMM YYYY HH:mm',
|
||||
LLLL : 'dddd, D MMMM YYYY HH:mm'
|
||||
},
|
||||
calendar : {
|
||||
sameDay : '[Бүгүн саат] LT',
|
||||
nextDay : '[Эртең саат] LT',
|
||||
nextWeek : 'dddd [саат] LT',
|
||||
lastDay : '[Кече саат] LT',
|
||||
lastWeek : '[Өткен аптанын] dddd [күнү] [саат] LT',
|
||||
sameElse : 'L'
|
||||
},
|
||||
relativeTime : {
|
||||
future : '%s ичинде',
|
||||
past : '%s мурун',
|
||||
s : 'бирнече секунд',
|
||||
m : 'бир мүнөт',
|
||||
mm : '%d мүнөт',
|
||||
h : 'бир саат',
|
||||
hh : '%d саат',
|
||||
d : 'бир күн',
|
||||
dd : '%d күн',
|
||||
M : 'бир ай',
|
||||
MM : '%d ай',
|
||||
y : 'бир жыл',
|
||||
yy : '%d жыл'
|
||||
},
|
||||
dayOfMonthOrdinalParse: /\d{1,2}-(чи|чы|чү|чу)/,
|
||||
ordinal : function (number) {
|
||||
var a = number % 10,
|
||||
b = number >= 100 ? 100 : null;
|
||||
return number + (suffixes[number] || suffixes[a] || suffixes[b]);
|
||||
},
|
||||
week : {
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 7 // The week that contains Jan 1st is the first week of the year.
|
||||
}
|
||||
});
|
||||
|
||||
return ky;
|
||||
|
||||
})));
|
37
lib/javascripts/moment_locale/lb.js
Executable file → Normal file
37
lib/javascripts/moment_locale/lb.js
Executable file → Normal file
@ -1,16 +1,17 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : Luxembourgish (lb)
|
||||
//! author : mweimerskirch : https://github.com/mweimerskirch, David Raison : https://github.com/kwisatz
|
||||
//! locale : Luxembourgish [lb]
|
||||
//! author : mweimerskirch : https://github.com/mweimerskirch
|
||||
//! author : David Raison : https://github.com/kwisatz
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
function processRelativeTime(number, withoutSuffix, key, isFuture) {
|
||||
function processRelativeTime(number, withoutSuffix, key, isFuture) {
|
||||
var format = {
|
||||
'm': ['eng Minutt', 'enger Minutt'],
|
||||
'h': ['eng Stonn', 'enger Stonn'],
|
||||
@ -19,29 +20,29 @@
|
||||
'y': ['ee Joer', 'engem Joer']
|
||||
};
|
||||
return withoutSuffix ? format[key][0] : format[key][1];
|
||||
}
|
||||
function processFutureTime(string) {
|
||||
}
|
||||
function processFutureTime(string) {
|
||||
var number = string.substr(0, string.indexOf(' '));
|
||||
if (eifelerRegelAppliesToNumber(number)) {
|
||||
return 'a ' + string;
|
||||
}
|
||||
return 'an ' + string;
|
||||
}
|
||||
function processPastTime(string) {
|
||||
}
|
||||
function processPastTime(string) {
|
||||
var number = string.substr(0, string.indexOf(' '));
|
||||
if (eifelerRegelAppliesToNumber(number)) {
|
||||
return 'viru ' + string;
|
||||
}
|
||||
return 'virun ' + string;
|
||||
}
|
||||
/**
|
||||
}
|
||||
/**
|
||||
* Returns true if the word before the given number loses the '-n' ending.
|
||||
* e.g. 'an 10 Deeg' but 'a 5 Deeg'
|
||||
*
|
||||
* @param number {integer}
|
||||
* @returns {boolean}
|
||||
*/
|
||||
function eifelerRegelAppliesToNumber(number) {
|
||||
function eifelerRegelAppliesToNumber(number) {
|
||||
number = parseInt(number, 10);
|
||||
if (isNaN(number)) {
|
||||
return false;
|
||||
@ -73,9 +74,9 @@
|
||||
number = number / 1000;
|
||||
return eifelerRegelAppliesToNumber(number);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
var lb = moment.defineLocale('lb', {
|
||||
var lb = moment.defineLocale('lb', {
|
||||
months: 'Januar_Februar_Mäerz_Abrëll_Mee_Juni_Juli_August_September_Oktober_November_Dezember'.split('_'),
|
||||
monthsShort: 'Jan._Febr._Mrz._Abr._Mee_Jun._Jul._Aug._Sept._Okt._Nov._Dez.'.split('_'),
|
||||
monthsParseExact : true,
|
||||
@ -123,14 +124,14 @@
|
||||
y : processRelativeTime,
|
||||
yy : '%d Joer'
|
||||
},
|
||||
ordinalParse: /\d{1,2}\./,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}\./,
|
||||
ordinal: '%d.',
|
||||
week: {
|
||||
dow: 1, // Monday is the first day of the week.
|
||||
doy: 4 // The week that contains Jan 4th is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return lb;
|
||||
return lb;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
16
lib/javascripts/moment_locale/lo.js
Executable file → Normal file
16
lib/javascripts/moment_locale/lo.js
Executable file → Normal file
@ -1,16 +1,16 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : lao (lo)
|
||||
//! locale : Lao [lo]
|
||||
//! author : Ryan Hart : https://github.com/ryanhart2
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var lo = moment.defineLocale('lo', {
|
||||
var lo = moment.defineLocale('lo', {
|
||||
months : 'ມັງກອນ_ກຸມພາ_ມີນາ_ເມສາ_ພຶດສະພາ_ມິຖຸນາ_ກໍລະກົດ_ສິງຫາ_ກັນຍາ_ຕຸລາ_ພະຈິກ_ທັນວາ'.split('_'),
|
||||
monthsShort : 'ມັງກອນ_ກຸມພາ_ມີນາ_ເມສາ_ພຶດສະພາ_ມິຖຸນາ_ກໍລະກົດ_ສິງຫາ_ກັນຍາ_ຕຸລາ_ພະຈິກ_ທັນວາ'.split('_'),
|
||||
weekdays : 'ອາທິດ_ຈັນ_ອັງຄານ_ພຸດ_ພະຫັດ_ສຸກ_ເສົາ'.split('_'),
|
||||
@ -59,12 +59,12 @@
|
||||
y : '1 ປີ',
|
||||
yy : '%d ປີ'
|
||||
},
|
||||
ordinalParse: /(ທີ່)\d{1,2}/,
|
||||
dayOfMonthOrdinalParse: /(ທີ່)\d{1,2}/,
|
||||
ordinal : function (number) {
|
||||
return 'ທີ່' + number;
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return lo;
|
||||
return lo;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
43
lib/javascripts/moment_locale/lt.js
Executable file → Normal file
43
lib/javascripts/moment_locale/lt.js
Executable file → Normal file
@ -1,16 +1,16 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : Lithuanian (lt)
|
||||
//! locale : Lithuanian [lt]
|
||||
//! author : Mindaugas Mozūras : https://github.com/mmozuras
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var units = {
|
||||
var units = {
|
||||
'm' : 'minutė_minutės_minutę',
|
||||
'mm': 'minutės_minučių_minutes',
|
||||
'h' : 'valanda_valandos_valandą',
|
||||
@ -21,24 +21,24 @@
|
||||
'MM': 'mėnesiai_mėnesių_mėnesius',
|
||||
'y' : 'metai_metų_metus',
|
||||
'yy': 'metai_metų_metus'
|
||||
};
|
||||
function translateSeconds(number, withoutSuffix, key, isFuture) {
|
||||
};
|
||||
function translateSeconds(number, withoutSuffix, key, isFuture) {
|
||||
if (withoutSuffix) {
|
||||
return 'kelios sekundės';
|
||||
} else {
|
||||
return isFuture ? 'kelių sekundžių' : 'kelias sekundes';
|
||||
}
|
||||
}
|
||||
function translateSingular(number, withoutSuffix, key, isFuture) {
|
||||
}
|
||||
function translateSingular(number, withoutSuffix, key, isFuture) {
|
||||
return withoutSuffix ? forms(key)[0] : (isFuture ? forms(key)[1] : forms(key)[2]);
|
||||
}
|
||||
function special(number) {
|
||||
}
|
||||
function special(number) {
|
||||
return number % 10 === 0 || (number > 10 && number < 20);
|
||||
}
|
||||
function forms(key) {
|
||||
}
|
||||
function forms(key) {
|
||||
return units[key].split('_');
|
||||
}
|
||||
function translate(number, withoutSuffix, key, isFuture) {
|
||||
}
|
||||
function translate(number, withoutSuffix, key, isFuture) {
|
||||
var result = number + ' ';
|
||||
if (number === 1) {
|
||||
return result + translateSingular(number, withoutSuffix, key[0], isFuture);
|
||||
@ -51,11 +51,12 @@
|
||||
return result + (special(number) ? forms(key)[1] : forms(key)[2]);
|
||||
}
|
||||
}
|
||||
}
|
||||
var lt = moment.defineLocale('lt', {
|
||||
}
|
||||
var lt = moment.defineLocale('lt', {
|
||||
months : {
|
||||
format: 'sausio_vasario_kovo_balandžio_gegužės_birželio_liepos_rugpjūčio_rugsėjo_spalio_lapkričio_gruodžio'.split('_'),
|
||||
standalone: 'sausis_vasaris_kovas_balandis_gegužė_birželis_liepa_rugpjūtis_rugsėjis_spalis_lapkritis_gruodis'.split('_')
|
||||
standalone: 'sausis_vasaris_kovas_balandis_gegužė_birželis_liepa_rugpjūtis_rugsėjis_spalis_lapkritis_gruodis'.split('_'),
|
||||
isFormat: /D[oD]?(\[[^\[\]]*\]|\s)+MMMM?|MMMM?(\[[^\[\]]*\]|\s)+D[oD]?/
|
||||
},
|
||||
monthsShort : 'sau_vas_kov_bal_geg_bir_lie_rgp_rgs_spa_lap_grd'.split('_'),
|
||||
weekdays : {
|
||||
@ -101,7 +102,7 @@
|
||||
y : translateSingular,
|
||||
yy : translate
|
||||
},
|
||||
ordinalParse: /\d{1,2}-oji/,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}-oji/,
|
||||
ordinal : function (number) {
|
||||
return number + '-oji';
|
||||
},
|
||||
@ -109,8 +110,8 @@
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 4 // The week that contains Jan 4th is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return lt;
|
||||
return lt;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
42
lib/javascripts/moment_locale/lv.js
Executable file → Normal file
42
lib/javascripts/moment_locale/lv.js
Executable file → Normal file
@ -1,17 +1,17 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : latvian (lv)
|
||||
//! locale : Latvian [lv]
|
||||
//! author : Kristaps Karlsons : https://github.com/skakri
|
||||
//! author : Jānis Elmeris : https://github.com/JanisE
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var units = {
|
||||
var units = {
|
||||
'm': 'minūtes_minūtēm_minūte_minūtes'.split('_'),
|
||||
'mm': 'minūtes_minūtēm_minūte_minūtes'.split('_'),
|
||||
'h': 'stundas_stundām_stunda_stundas'.split('_'),
|
||||
@ -22,31 +22,31 @@
|
||||
'MM': 'mēneša_mēnešiem_mēnesis_mēneši'.split('_'),
|
||||
'y': 'gada_gadiem_gads_gadi'.split('_'),
|
||||
'yy': 'gada_gadiem_gads_gadi'.split('_')
|
||||
};
|
||||
/**
|
||||
};
|
||||
/**
|
||||
* @param withoutSuffix boolean true = a length of time; false = before/after a period of time.
|
||||
*/
|
||||
function format(forms, number, withoutSuffix) {
|
||||
function format(forms, number, withoutSuffix) {
|
||||
if (withoutSuffix) {
|
||||
// E.g. "21 minūte", "3 minūtes".
|
||||
return number % 10 === 1 && number !== 11 ? forms[2] : forms[3];
|
||||
return number % 10 === 1 && number % 100 !== 11 ? forms[2] : forms[3];
|
||||
} else {
|
||||
// E.g. "21 minūtes" as in "pēc 21 minūtes".
|
||||
// E.g. "3 minūtēm" as in "pēc 3 minūtēm".
|
||||
return number % 10 === 1 && number !== 11 ? forms[0] : forms[1];
|
||||
return number % 10 === 1 && number % 100 !== 11 ? forms[0] : forms[1];
|
||||
}
|
||||
}
|
||||
function relativeTimeWithPlural(number, withoutSuffix, key) {
|
||||
}
|
||||
function relativeTimeWithPlural(number, withoutSuffix, key) {
|
||||
return number + ' ' + format(units[key], number, withoutSuffix);
|
||||
}
|
||||
function relativeTimeWithSingular(number, withoutSuffix, key) {
|
||||
}
|
||||
function relativeTimeWithSingular(number, withoutSuffix, key) {
|
||||
return format(units[key], number, withoutSuffix);
|
||||
}
|
||||
function relativeSeconds(number, withoutSuffix) {
|
||||
}
|
||||
function relativeSeconds(number, withoutSuffix) {
|
||||
return withoutSuffix ? 'dažas sekundes' : 'dažām sekundēm';
|
||||
}
|
||||
}
|
||||
|
||||
var lv = moment.defineLocale('lv', {
|
||||
var lv = moment.defineLocale('lv', {
|
||||
months : 'janvāris_februāris_marts_aprīlis_maijs_jūnijs_jūlijs_augusts_septembris_oktobris_novembris_decembris'.split('_'),
|
||||
monthsShort : 'jan_feb_mar_apr_mai_jūn_jūl_aug_sep_okt_nov_dec'.split('_'),
|
||||
weekdays : 'svētdiena_pirmdiena_otrdiena_trešdiena_ceturtdiena_piektdiena_sestdiena'.split('_'),
|
||||
@ -84,14 +84,14 @@
|
||||
y : relativeTimeWithSingular,
|
||||
yy : relativeTimeWithPlural
|
||||
},
|
||||
ordinalParse: /\d{1,2}\./,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}\./,
|
||||
ordinal : '%d.',
|
||||
week : {
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 4 // The week that contains Jan 4th is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return lv;
|
||||
return lv;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
22
lib/javascripts/moment_locale/me.js
Executable file → Normal file
22
lib/javascripts/moment_locale/me.js
Executable file → Normal file
@ -1,16 +1,16 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : Montenegrin (me)
|
||||
//! locale : Montenegrin [me]
|
||||
//! author : Miodrag Nikač <miodrag@restartit.me> : https://github.com/miodragnikac
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var translator = {
|
||||
var translator = {
|
||||
words: { //Different grammatical cases
|
||||
m: ['jedan minut', 'jednog minuta'],
|
||||
mm: ['minut', 'minuta', 'minuta'],
|
||||
@ -31,9 +31,9 @@
|
||||
return number + ' ' + translator.correctGrammaticalCase(number, wordKey);
|
||||
}
|
||||
}
|
||||
};
|
||||
};
|
||||
|
||||
var me = moment.defineLocale('me', {
|
||||
var me = moment.defineLocale('me', {
|
||||
months: 'januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar'.split('_'),
|
||||
monthsShort: 'jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.'.split('_'),
|
||||
monthsParseExact : true,
|
||||
@ -44,7 +44,7 @@
|
||||
longDateFormat: {
|
||||
LT: 'H:mm',
|
||||
LTS : 'H:mm:ss',
|
||||
L: 'DD. MM. YYYY',
|
||||
L: 'DD.MM.YYYY',
|
||||
LL: 'D. MMMM YYYY',
|
||||
LLL: 'D. MMMM YYYY H:mm',
|
||||
LLLL: 'dddd, D. MMMM YYYY H:mm'
|
||||
@ -98,14 +98,14 @@
|
||||
y : 'godinu',
|
||||
yy : translator.translate
|
||||
},
|
||||
ordinalParse: /\d{1,2}\./,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}\./,
|
||||
ordinal : '%d.',
|
||||
week : {
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 7 // The week that contains Jan 1st is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return me;
|
||||
return me;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
64
lib/javascripts/moment_locale/mi.js
Normal file
64
lib/javascripts/moment_locale/mi.js
Normal file
@ -0,0 +1,64 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : Maori [mi]
|
||||
//! author : John Corrigan <robbiecloset@gmail.com> : https://github.com/johnideal
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var mi = moment.defineLocale('mi', {
|
||||
months: 'Kohi-tāte_Hui-tanguru_Poutū-te-rangi_Paenga-whāwhā_Haratua_Pipiri_Hōngoingoi_Here-turi-kōkā_Mahuru_Whiringa-ā-nuku_Whiringa-ā-rangi_Hakihea'.split('_'),
|
||||
monthsShort: 'Kohi_Hui_Pou_Pae_Hara_Pipi_Hōngoi_Here_Mahu_Whi-nu_Whi-ra_Haki'.split('_'),
|
||||
monthsRegex: /(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i,
|
||||
monthsStrictRegex: /(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i,
|
||||
monthsShortRegex: /(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i,
|
||||
monthsShortStrictRegex: /(?:['a-z\u0101\u014D\u016B]+\-?){1,2}/i,
|
||||
weekdays: 'Rātapu_Mane_Tūrei_Wenerei_Tāite_Paraire_Hātarei'.split('_'),
|
||||
weekdaysShort: 'Ta_Ma_Tū_We_Tāi_Pa_Hā'.split('_'),
|
||||
weekdaysMin: 'Ta_Ma_Tū_We_Tāi_Pa_Hā'.split('_'),
|
||||
longDateFormat: {
|
||||
LT: 'HH:mm',
|
||||
LTS: 'HH:mm:ss',
|
||||
L: 'DD/MM/YYYY',
|
||||
LL: 'D MMMM YYYY',
|
||||
LLL: 'D MMMM YYYY [i] HH:mm',
|
||||
LLLL: 'dddd, D MMMM YYYY [i] HH:mm'
|
||||
},
|
||||
calendar: {
|
||||
sameDay: '[i teie mahana, i] LT',
|
||||
nextDay: '[apopo i] LT',
|
||||
nextWeek: 'dddd [i] LT',
|
||||
lastDay: '[inanahi i] LT',
|
||||
lastWeek: 'dddd [whakamutunga i] LT',
|
||||
sameElse: 'L'
|
||||
},
|
||||
relativeTime: {
|
||||
future: 'i roto i %s',
|
||||
past: '%s i mua',
|
||||
s: 'te hēkona ruarua',
|
||||
m: 'he meneti',
|
||||
mm: '%d meneti',
|
||||
h: 'te haora',
|
||||
hh: '%d haora',
|
||||
d: 'he ra',
|
||||
dd: '%d ra',
|
||||
M: 'he marama',
|
||||
MM: '%d marama',
|
||||
y: 'he tau',
|
||||
yy: '%d tau'
|
||||
},
|
||||
dayOfMonthOrdinalParse: /\d{1,2}º/,
|
||||
ordinal: '%dº',
|
||||
week : {
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 4 // The week that contains Jan 4th is the first week of the year.
|
||||
}
|
||||
});
|
||||
|
||||
return mi;
|
||||
|
||||
})));
|
16
lib/javascripts/moment_locale/mk.js
Executable file → Normal file
16
lib/javascripts/moment_locale/mk.js
Executable file → Normal file
@ -1,16 +1,16 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : macedonian (mk)
|
||||
//! locale : Macedonian [mk]
|
||||
//! author : Borislav Mickov : https://github.com/B0k0
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var mk = moment.defineLocale('mk', {
|
||||
var mk = moment.defineLocale('mk', {
|
||||
months : 'јануари_февруари_март_април_мај_јуни_јули_август_септември_октомври_ноември_декември'.split('_'),
|
||||
monthsShort : 'јан_фев_мар_апр_мај_јун_јул_авг_сеп_окт_ное_дек'.split('_'),
|
||||
weekdays : 'недела_понеделник_вторник_среда_четврток_петок_сабота'.split('_'),
|
||||
@ -59,7 +59,7 @@
|
||||
y : 'година',
|
||||
yy : '%d години'
|
||||
},
|
||||
ordinalParse: /\d{1,2}-(ев|ен|ти|ви|ри|ми)/,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}-(ев|ен|ти|ви|ри|ми)/,
|
||||
ordinal : function (number) {
|
||||
var lastDigit = number % 10,
|
||||
last2Digits = number % 100;
|
||||
@ -83,8 +83,8 @@
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 7 // The week that contains Jan 1st is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return mk;
|
||||
return mk;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
14
lib/javascripts/moment_locale/ml.js
Executable file → Normal file
14
lib/javascripts/moment_locale/ml.js
Executable file → Normal file
@ -1,16 +1,16 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : malayalam (ml)
|
||||
//! locale : Malayalam [ml]
|
||||
//! author : Floyd Pink : https://github.com/floydpink
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var ml = moment.defineLocale('ml', {
|
||||
var ml = moment.defineLocale('ml', {
|
||||
months : 'ജനുവരി_ഫെബ്രുവരി_മാർച്ച്_ഏപ്രിൽ_മേയ്_ജൂൺ_ജൂലൈ_ഓഗസ്റ്റ്_സെപ്റ്റംബർ_ഒക്ടോബർ_നവംബർ_ഡിസംബർ'.split('_'),
|
||||
monthsShort : 'ജനു._ഫെബ്രു._മാർ._ഏപ്രി._മേയ്_ജൂൺ_ജൂലൈ._ഓഗ._സെപ്റ്റ._ഒക്ടോ._നവം._ഡിസം.'.split('_'),
|
||||
monthsParseExact : true,
|
||||
@ -74,8 +74,8 @@
|
||||
return 'രാത്രി';
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return ml;
|
||||
return ml;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
28
lib/javascripts/moment_locale/mr.js
Executable file → Normal file
28
lib/javascripts/moment_locale/mr.js
Executable file → Normal file
@ -1,17 +1,17 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : Marathi (mr)
|
||||
//! locale : Marathi [mr]
|
||||
//! author : Harshad Kale : https://github.com/kalehv
|
||||
//! author : Vivek Athalye : https://github.com/vnathalye
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var symbolMap = {
|
||||
var symbolMap = {
|
||||
'1': '१',
|
||||
'2': '२',
|
||||
'3': '३',
|
||||
@ -22,8 +22,8 @@
|
||||
'8': '८',
|
||||
'9': '९',
|
||||
'0': '०'
|
||||
},
|
||||
numberMap = {
|
||||
};
|
||||
var numberMap = {
|
||||
'१': '1',
|
||||
'२': '2',
|
||||
'३': '3',
|
||||
@ -34,10 +34,10 @@
|
||||
'८': '8',
|
||||
'९': '9',
|
||||
'०': '0'
|
||||
};
|
||||
};
|
||||
|
||||
function relativeTimeMr(number, withoutSuffix, string, isFuture)
|
||||
{
|
||||
function relativeTimeMr(number, withoutSuffix, string, isFuture)
|
||||
{
|
||||
var output = '';
|
||||
if (withoutSuffix) {
|
||||
switch (string) {
|
||||
@ -70,9 +70,9 @@
|
||||
}
|
||||
}
|
||||
return output.replace(/%d/i, number);
|
||||
}
|
||||
}
|
||||
|
||||
var mr = moment.defineLocale('mr', {
|
||||
var mr = moment.defineLocale('mr', {
|
||||
months : 'जानेवारी_फेब्रुवारी_मार्च_एप्रिल_मे_जून_जुलै_ऑगस्ट_सप्टेंबर_ऑक्टोबर_नोव्हेंबर_डिसेंबर'.split('_'),
|
||||
monthsShort: 'जाने._फेब्रु._मार्च._एप्रि._मे._जून._जुलै._ऑग._सप्टें._ऑक्टो._नोव्हें._डिसें.'.split('_'),
|
||||
monthsParseExact : true,
|
||||
@ -152,8 +152,8 @@
|
||||
dow : 0, // Sunday is the first day of the week.
|
||||
doy : 6 // The week that contains Jan 1st is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return mr;
|
||||
return mr;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
15
lib/javascripts/moment_locale/ms-my.js
Executable file → Normal file
15
lib/javascripts/moment_locale/ms-my.js
Executable file → Normal file
@ -1,16 +1,17 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : Bahasa Malaysia (ms-MY)
|
||||
//! locale : Malay [ms-my]
|
||||
//! note : DEPRECATED, the correct one is [ms]
|
||||
//! author : Weldan Jamili : https://github.com/weldan
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var ms_my = moment.defineLocale('ms-my', {
|
||||
var msMy = moment.defineLocale('ms-my', {
|
||||
months : 'Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember'.split('_'),
|
||||
monthsShort : 'Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis'.split('_'),
|
||||
weekdays : 'Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu'.split('_'),
|
||||
@ -75,8 +76,8 @@
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 7 // The week that contains Jan 1st is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return ms_my;
|
||||
return msMy;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
14
lib/javascripts/moment_locale/ms.js
Executable file → Normal file
14
lib/javascripts/moment_locale/ms.js
Executable file → Normal file
@ -1,16 +1,16 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : Bahasa Malaysia (ms-MY)
|
||||
//! locale : Malay [ms]
|
||||
//! author : Weldan Jamili : https://github.com/weldan
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var ms = moment.defineLocale('ms', {
|
||||
var ms = moment.defineLocale('ms', {
|
||||
months : 'Januari_Februari_Mac_April_Mei_Jun_Julai_Ogos_September_Oktober_November_Disember'.split('_'),
|
||||
monthsShort : 'Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ogs_Sep_Okt_Nov_Dis'.split('_'),
|
||||
weekdays : 'Ahad_Isnin_Selasa_Rabu_Khamis_Jumaat_Sabtu'.split('_'),
|
||||
@ -75,8 +75,8 @@
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 7 // The week that contains Jan 1st is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return ms;
|
||||
return ms;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
23
lib/javascripts/moment_locale/my.js
Executable file → Normal file
23
lib/javascripts/moment_locale/my.js
Executable file → Normal file
@ -1,16 +1,18 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : Burmese (my)
|
||||
//! locale : Burmese [my]
|
||||
//! author : Squar team, mysquar.com
|
||||
//! author : David Rossellat : https://github.com/gholadr
|
||||
//! author : Tin Aung Lin : https://github.com/thanyawzinmin
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var symbolMap = {
|
||||
var symbolMap = {
|
||||
'1': '၁',
|
||||
'2': '၂',
|
||||
'3': '၃',
|
||||
@ -21,7 +23,8 @@
|
||||
'8': '၈',
|
||||
'9': '၉',
|
||||
'0': '၀'
|
||||
}, numberMap = {
|
||||
};
|
||||
var numberMap = {
|
||||
'၁': '1',
|
||||
'၂': '2',
|
||||
'၃': '3',
|
||||
@ -32,9 +35,9 @@
|
||||
'၈': '8',
|
||||
'၉': '9',
|
||||
'၀': '0'
|
||||
};
|
||||
};
|
||||
|
||||
var my = moment.defineLocale('my', {
|
||||
var my = moment.defineLocale('my', {
|
||||
months: 'ဇန်နဝါရီ_ဖေဖော်ဝါရီ_မတ်_ဧပြီ_မေ_ဇွန်_ဇူလိုင်_သြဂုတ်_စက်တင်ဘာ_အောက်တိုဘာ_နိုဝင်ဘာ_ဒီဇင်ဘာ'.split('_'),
|
||||
monthsShort: 'ဇန်_ဖေ_မတ်_ပြီ_မေ_ဇွန်_လိုင်_သြ_စက်_အောက်_နို_ဒီ'.split('_'),
|
||||
weekdays: 'တနင်္ဂနွေ_တနင်္လာ_အင်္ဂါ_ဗုဒ္ဓဟူး_ကြာသပတေး_သောကြာ_စနေ'.split('_'),
|
||||
@ -86,8 +89,8 @@
|
||||
dow: 1, // Monday is the first day of the week.
|
||||
doy: 4 // The week that contains Jan 1st is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return my;
|
||||
return my;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
16
lib/javascripts/moment_locale/nb.js
Executable file → Normal file
16
lib/javascripts/moment_locale/nb.js
Executable file → Normal file
@ -1,17 +1,17 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : norwegian bokmål (nb)
|
||||
//! locale : Norwegian Bokmål [nb]
|
||||
//! authors : Espen Hovlandsdal : https://github.com/rexxars
|
||||
//! Sigurd Gartmann : https://github.com/sigurdga
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var nb = moment.defineLocale('nb', {
|
||||
var nb = moment.defineLocale('nb', {
|
||||
months : 'januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember'.split('_'),
|
||||
monthsShort : 'jan._feb._mars_april_mai_juni_juli_aug._sep._okt._nov._des.'.split('_'),
|
||||
monthsParseExact : true,
|
||||
@ -50,14 +50,14 @@
|
||||
y : 'ett år',
|
||||
yy : '%d år'
|
||||
},
|
||||
ordinalParse: /\d{1,2}\./,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}\./,
|
||||
ordinal : '%d.',
|
||||
week : {
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 4 // The week that contains Jan 4th is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return nb;
|
||||
return nb;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
22
lib/javascripts/moment_locale/ne.js
Executable file → Normal file
22
lib/javascripts/moment_locale/ne.js
Executable file → Normal file
@ -1,16 +1,16 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : nepali/nepalese
|
||||
//! locale : Nepalese [ne]
|
||||
//! author : suvash : https://github.com/suvash
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var symbolMap = {
|
||||
var symbolMap = {
|
||||
'1': '१',
|
||||
'2': '२',
|
||||
'3': '३',
|
||||
@ -21,8 +21,8 @@
|
||||
'8': '८',
|
||||
'9': '९',
|
||||
'0': '०'
|
||||
},
|
||||
numberMap = {
|
||||
};
|
||||
var numberMap = {
|
||||
'१': '1',
|
||||
'२': '2',
|
||||
'३': '3',
|
||||
@ -33,9 +33,9 @@
|
||||
'८': '8',
|
||||
'९': '9',
|
||||
'०': '0'
|
||||
};
|
||||
};
|
||||
|
||||
var ne = moment.defineLocale('ne', {
|
||||
var ne = moment.defineLocale('ne', {
|
||||
months : 'जनवरी_फेब्रुवरी_मार्च_अप्रिल_मई_जुन_जुलाई_अगष्ट_सेप्टेम्बर_अक्टोबर_नोभेम्बर_डिसेम्बर'.split('_'),
|
||||
monthsShort : 'जन._फेब्रु._मार्च_अप्रि._मई_जुन_जुलाई._अग._सेप्ट._अक्टो._नोभे._डिसे.'.split('_'),
|
||||
monthsParseExact : true,
|
||||
@ -116,8 +116,8 @@
|
||||
dow : 0, // Sunday is the first day of the week.
|
||||
doy : 6 // The week that contains Jan 1st is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return ne;
|
||||
return ne;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
88
lib/javascripts/moment_locale/nl-be.js
Normal file
88
lib/javascripts/moment_locale/nl-be.js
Normal file
@ -0,0 +1,88 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : Dutch (Belgium) [nl-be]
|
||||
//! author : Joris Röling : https://github.com/jorisroling
|
||||
//! author : Jacob Middag : https://github.com/middagj
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var monthsShortWithDots = 'jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.'.split('_');
|
||||
var monthsShortWithoutDots = 'jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec'.split('_');
|
||||
|
||||
var monthsParse = [/^jan/i, /^feb/i, /^maart|mrt.?$/i, /^apr/i, /^mei$/i, /^jun[i.]?$/i, /^jul[i.]?$/i, /^aug/i, /^sep/i, /^okt/i, /^nov/i, /^dec/i];
|
||||
var monthsRegex = /^(januari|februari|maart|april|mei|april|ju[nl]i|augustus|september|oktober|november|december|jan\.?|feb\.?|mrt\.?|apr\.?|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i;
|
||||
|
||||
var nlBe = moment.defineLocale('nl-be', {
|
||||
months : 'januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december'.split('_'),
|
||||
monthsShort : function (m, format) {
|
||||
if (!m) {
|
||||
return monthsShortWithDots;
|
||||
} else if (/-MMM-/.test(format)) {
|
||||
return monthsShortWithoutDots[m.month()];
|
||||
} else {
|
||||
return monthsShortWithDots[m.month()];
|
||||
}
|
||||
},
|
||||
|
||||
monthsRegex: monthsRegex,
|
||||
monthsShortRegex: monthsRegex,
|
||||
monthsStrictRegex: /^(januari|februari|maart|mei|ju[nl]i|april|augustus|september|oktober|november|december)/i,
|
||||
monthsShortStrictRegex: /^(jan\.?|feb\.?|mrt\.?|apr\.?|mei|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i,
|
||||
|
||||
monthsParse : monthsParse,
|
||||
longMonthsParse : monthsParse,
|
||||
shortMonthsParse : monthsParse,
|
||||
|
||||
weekdays : 'zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag'.split('_'),
|
||||
weekdaysShort : 'zo._ma._di._wo._do._vr._za.'.split('_'),
|
||||
weekdaysMin : 'Zo_Ma_Di_Wo_Do_Vr_Za'.split('_'),
|
||||
weekdaysParseExact : true,
|
||||
longDateFormat : {
|
||||
LT : 'HH:mm',
|
||||
LTS : 'HH:mm:ss',
|
||||
L : 'DD/MM/YYYY',
|
||||
LL : 'D MMMM YYYY',
|
||||
LLL : 'D MMMM YYYY HH:mm',
|
||||
LLLL : 'dddd D MMMM YYYY HH:mm'
|
||||
},
|
||||
calendar : {
|
||||
sameDay: '[vandaag om] LT',
|
||||
nextDay: '[morgen om] LT',
|
||||
nextWeek: 'dddd [om] LT',
|
||||
lastDay: '[gisteren om] LT',
|
||||
lastWeek: '[afgelopen] dddd [om] LT',
|
||||
sameElse: 'L'
|
||||
},
|
||||
relativeTime : {
|
||||
future : 'over %s',
|
||||
past : '%s geleden',
|
||||
s : 'een paar seconden',
|
||||
m : 'één minuut',
|
||||
mm : '%d minuten',
|
||||
h : 'één uur',
|
||||
hh : '%d uur',
|
||||
d : 'één dag',
|
||||
dd : '%d dagen',
|
||||
M : 'één maand',
|
||||
MM : '%d maanden',
|
||||
y : 'één jaar',
|
||||
yy : '%d jaar'
|
||||
},
|
||||
dayOfMonthOrdinalParse: /\d{1,2}(ste|de)/,
|
||||
ordinal : function (number) {
|
||||
return number + ((number === 1 || number === 8 || number >= 20) ? 'ste' : 'de');
|
||||
},
|
||||
week : {
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 4 // The week that contains Jan 4th is the first week of the year.
|
||||
}
|
||||
});
|
||||
|
||||
return nlBe;
|
||||
|
||||
})));
|
41
lib/javascripts/moment_locale/nl.js
Executable file → Normal file
41
lib/javascripts/moment_locale/nl.js
Executable file → Normal file
@ -1,28 +1,43 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : dutch (nl)
|
||||
//! author : Joris Röling : https://github.com/jjupiter
|
||||
//! locale : Dutch [nl]
|
||||
//! author : Joris Röling : https://github.com/jorisroling
|
||||
//! author : Jacob Middag : https://github.com/middagj
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var monthsShortWithDots = 'jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.'.split('_'),
|
||||
monthsShortWithoutDots = 'jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec'.split('_');
|
||||
var monthsShortWithDots = 'jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.'.split('_');
|
||||
var monthsShortWithoutDots = 'jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec'.split('_');
|
||||
|
||||
var nl = moment.defineLocale('nl', {
|
||||
var monthsParse = [/^jan/i, /^feb/i, /^maart|mrt.?$/i, /^apr/i, /^mei$/i, /^jun[i.]?$/i, /^jul[i.]?$/i, /^aug/i, /^sep/i, /^okt/i, /^nov/i, /^dec/i];
|
||||
var monthsRegex = /^(januari|februari|maart|april|mei|april|ju[nl]i|augustus|september|oktober|november|december|jan\.?|feb\.?|mrt\.?|apr\.?|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i;
|
||||
|
||||
var nl = moment.defineLocale('nl', {
|
||||
months : 'januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december'.split('_'),
|
||||
monthsShort : function (m, format) {
|
||||
if (/-MMM-/.test(format)) {
|
||||
if (!m) {
|
||||
return monthsShortWithDots;
|
||||
} else if (/-MMM-/.test(format)) {
|
||||
return monthsShortWithoutDots[m.month()];
|
||||
} else {
|
||||
return monthsShortWithDots[m.month()];
|
||||
}
|
||||
},
|
||||
monthsParseExact : true,
|
||||
|
||||
monthsRegex: monthsRegex,
|
||||
monthsShortRegex: monthsRegex,
|
||||
monthsStrictRegex: /^(januari|februari|maart|mei|ju[nl]i|april|augustus|september|oktober|november|december)/i,
|
||||
monthsShortStrictRegex: /^(jan\.?|feb\.?|mrt\.?|apr\.?|mei|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i,
|
||||
|
||||
monthsParse : monthsParse,
|
||||
longMonthsParse : monthsParse,
|
||||
shortMonthsParse : monthsParse,
|
||||
|
||||
weekdays : 'zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag'.split('_'),
|
||||
weekdaysShort : 'zo._ma._di._wo._do._vr._za.'.split('_'),
|
||||
weekdaysMin : 'Zo_Ma_Di_Wo_Do_Vr_Za'.split('_'),
|
||||
@ -58,7 +73,7 @@
|
||||
y : 'één jaar',
|
||||
yy : '%d jaar'
|
||||
},
|
||||
ordinalParse: /\d{1,2}(ste|de)/,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}(ste|de)/,
|
||||
ordinal : function (number) {
|
||||
return number + ((number === 1 || number === 8 || number >= 20) ? 'ste' : 'de');
|
||||
},
|
||||
@ -66,8 +81,8 @@
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 4 // The week that contains Jan 4th is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return nl;
|
||||
return nl;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
16
lib/javascripts/moment_locale/nn.js
Executable file → Normal file
16
lib/javascripts/moment_locale/nn.js
Executable file → Normal file
@ -1,16 +1,16 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : norwegian nynorsk (nn)
|
||||
//! locale : Nynorsk [nn]
|
||||
//! author : https://github.com/mechuwind
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var nn = moment.defineLocale('nn', {
|
||||
var nn = moment.defineLocale('nn', {
|
||||
months : 'januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember'.split('_'),
|
||||
monthsShort : 'jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des'.split('_'),
|
||||
weekdays : 'sundag_måndag_tysdag_onsdag_torsdag_fredag_laurdag'.split('_'),
|
||||
@ -47,14 +47,14 @@
|
||||
y : 'eit år',
|
||||
yy : '%d år'
|
||||
},
|
||||
ordinalParse: /\d{1,2}\./,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}\./,
|
||||
ordinal : '%d.',
|
||||
week : {
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 4 // The week that contains Jan 4th is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return nn;
|
||||
return nn;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
124
lib/javascripts/moment_locale/pa-in.js
Normal file
124
lib/javascripts/moment_locale/pa-in.js
Normal file
@ -0,0 +1,124 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : Punjabi (India) [pa-in]
|
||||
//! author : Harpreet Singh : https://github.com/harpreetkhalsagtbit
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var symbolMap = {
|
||||
'1': '੧',
|
||||
'2': '੨',
|
||||
'3': '੩',
|
||||
'4': '੪',
|
||||
'5': '੫',
|
||||
'6': '੬',
|
||||
'7': '੭',
|
||||
'8': '੮',
|
||||
'9': '੯',
|
||||
'0': '੦'
|
||||
};
|
||||
var numberMap = {
|
||||
'੧': '1',
|
||||
'੨': '2',
|
||||
'੩': '3',
|
||||
'੪': '4',
|
||||
'੫': '5',
|
||||
'੬': '6',
|
||||
'੭': '7',
|
||||
'੮': '8',
|
||||
'੯': '9',
|
||||
'੦': '0'
|
||||
};
|
||||
|
||||
var paIn = moment.defineLocale('pa-in', {
|
||||
// There are months name as per Nanakshahi Calender but they are not used as rigidly in modern Punjabi.
|
||||
months : 'ਜਨਵਰੀ_ਫ਼ਰਵਰੀ_ਮਾਰਚ_ਅਪ੍ਰੈਲ_ਮਈ_ਜੂਨ_ਜੁਲਾਈ_ਅਗਸਤ_ਸਤੰਬਰ_ਅਕਤੂਬਰ_ਨਵੰਬਰ_ਦਸੰਬਰ'.split('_'),
|
||||
monthsShort : 'ਜਨਵਰੀ_ਫ਼ਰਵਰੀ_ਮਾਰਚ_ਅਪ੍ਰੈਲ_ਮਈ_ਜੂਨ_ਜੁਲਾਈ_ਅਗਸਤ_ਸਤੰਬਰ_ਅਕਤੂਬਰ_ਨਵੰਬਰ_ਦਸੰਬਰ'.split('_'),
|
||||
weekdays : 'ਐਤਵਾਰ_ਸੋਮਵਾਰ_ਮੰਗਲਵਾਰ_ਬੁਧਵਾਰ_ਵੀਰਵਾਰ_ਸ਼ੁੱਕਰਵਾਰ_ਸ਼ਨੀਚਰਵਾਰ'.split('_'),
|
||||
weekdaysShort : 'ਐਤ_ਸੋਮ_ਮੰਗਲ_ਬੁਧ_ਵੀਰ_ਸ਼ੁਕਰ_ਸ਼ਨੀ'.split('_'),
|
||||
weekdaysMin : 'ਐਤ_ਸੋਮ_ਮੰਗਲ_ਬੁਧ_ਵੀਰ_ਸ਼ੁਕਰ_ਸ਼ਨੀ'.split('_'),
|
||||
longDateFormat : {
|
||||
LT : 'A h:mm ਵਜੇ',
|
||||
LTS : 'A h:mm:ss ਵਜੇ',
|
||||
L : 'DD/MM/YYYY',
|
||||
LL : 'D MMMM YYYY',
|
||||
LLL : 'D MMMM YYYY, A h:mm ਵਜੇ',
|
||||
LLLL : 'dddd, D MMMM YYYY, A h:mm ਵਜੇ'
|
||||
},
|
||||
calendar : {
|
||||
sameDay : '[ਅਜ] LT',
|
||||
nextDay : '[ਕਲ] LT',
|
||||
nextWeek : 'dddd, LT',
|
||||
lastDay : '[ਕਲ] LT',
|
||||
lastWeek : '[ਪਿਛਲੇ] dddd, LT',
|
||||
sameElse : 'L'
|
||||
},
|
||||
relativeTime : {
|
||||
future : '%s ਵਿੱਚ',
|
||||
past : '%s ਪਿਛਲੇ',
|
||||
s : 'ਕੁਝ ਸਕਿੰਟ',
|
||||
m : 'ਇਕ ਮਿੰਟ',
|
||||
mm : '%d ਮਿੰਟ',
|
||||
h : 'ਇੱਕ ਘੰਟਾ',
|
||||
hh : '%d ਘੰਟੇ',
|
||||
d : 'ਇੱਕ ਦਿਨ',
|
||||
dd : '%d ਦਿਨ',
|
||||
M : 'ਇੱਕ ਮਹੀਨਾ',
|
||||
MM : '%d ਮਹੀਨੇ',
|
||||
y : 'ਇੱਕ ਸਾਲ',
|
||||
yy : '%d ਸਾਲ'
|
||||
},
|
||||
preparse: function (string) {
|
||||
return string.replace(/[੧੨੩੪੫੬੭੮੯੦]/g, function (match) {
|
||||
return numberMap[match];
|
||||
});
|
||||
},
|
||||
postformat: function (string) {
|
||||
return string.replace(/\d/g, function (match) {
|
||||
return symbolMap[match];
|
||||
});
|
||||
},
|
||||
// Punjabi notation for meridiems are quite fuzzy in practice. While there exists
|
||||
// a rigid notion of a 'Pahar' it is not used as rigidly in modern Punjabi.
|
||||
meridiemParse: /ਰਾਤ|ਸਵੇਰ|ਦੁਪਹਿਰ|ਸ਼ਾਮ/,
|
||||
meridiemHour : function (hour, meridiem) {
|
||||
if (hour === 12) {
|
||||
hour = 0;
|
||||
}
|
||||
if (meridiem === 'ਰਾਤ') {
|
||||
return hour < 4 ? hour : hour + 12;
|
||||
} else if (meridiem === 'ਸਵੇਰ') {
|
||||
return hour;
|
||||
} else if (meridiem === 'ਦੁਪਹਿਰ') {
|
||||
return hour >= 10 ? hour : hour + 12;
|
||||
} else if (meridiem === 'ਸ਼ਾਮ') {
|
||||
return hour + 12;
|
||||
}
|
||||
},
|
||||
meridiem : function (hour, minute, isLower) {
|
||||
if (hour < 4) {
|
||||
return 'ਰਾਤ';
|
||||
} else if (hour < 10) {
|
||||
return 'ਸਵੇਰ';
|
||||
} else if (hour < 17) {
|
||||
return 'ਦੁਪਹਿਰ';
|
||||
} else if (hour < 20) {
|
||||
return 'ਸ਼ਾਮ';
|
||||
} else {
|
||||
return 'ਰਾਤ';
|
||||
}
|
||||
},
|
||||
week : {
|
||||
dow : 0, // Sunday is the first day of the week.
|
||||
doy : 6 // The week that contains Jan 1st is the first week of the year.
|
||||
}
|
||||
});
|
||||
|
||||
return paIn;
|
||||
|
||||
})));
|
34
lib/javascripts/moment_locale/pl.js
Executable file → Normal file
34
lib/javascripts/moment_locale/pl.js
Executable file → Normal file
@ -1,21 +1,21 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : polish (pl)
|
||||
//! locale : Polish [pl]
|
||||
//! author : Rafal Hirsz : https://github.com/evoL
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var monthsNominative = 'styczeń_luty_marzec_kwiecień_maj_czerwiec_lipiec_sierpień_wrzesień_październik_listopad_grudzień'.split('_'),
|
||||
monthsSubjective = 'stycznia_lutego_marca_kwietnia_maja_czerwca_lipca_sierpnia_września_października_listopada_grudnia'.split('_');
|
||||
function plural(n) {
|
||||
var monthsNominative = 'styczeń_luty_marzec_kwiecień_maj_czerwiec_lipiec_sierpień_wrzesień_październik_listopad_grudzień'.split('_');
|
||||
var monthsSubjective = 'stycznia_lutego_marca_kwietnia_maja_czerwca_lipca_sierpnia_września_października_listopada_grudnia'.split('_');
|
||||
function plural(n) {
|
||||
return (n % 10 < 5) && (n % 10 > 1) && ((~~(n / 10) % 10) !== 1);
|
||||
}
|
||||
function translate(number, withoutSuffix, key) {
|
||||
}
|
||||
function translate(number, withoutSuffix, key) {
|
||||
var result = number + ' ';
|
||||
switch (key) {
|
||||
case 'm':
|
||||
@ -31,11 +31,13 @@
|
||||
case 'yy':
|
||||
return result + (plural(number) ? 'lata' : 'lat');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
var pl = moment.defineLocale('pl', {
|
||||
var pl = moment.defineLocale('pl', {
|
||||
months : function (momentToFormat, format) {
|
||||
if (format === '') {
|
||||
if (!momentToFormat) {
|
||||
return monthsNominative;
|
||||
} else if (format === '') {
|
||||
// Hack: if format empty we know this is used to generate
|
||||
// RegExp by moment. Give then back both valid forms of months
|
||||
// in RegExp ready format.
|
||||
@ -48,7 +50,7 @@
|
||||
},
|
||||
monthsShort : 'sty_lut_mar_kwi_maj_cze_lip_sie_wrz_paź_lis_gru'.split('_'),
|
||||
weekdays : 'niedziela_poniedziałek_wtorek_środa_czwartek_piątek_sobota'.split('_'),
|
||||
weekdaysShort : 'nie_pon_wt_śr_czw_pt_sb'.split('_'),
|
||||
weekdaysShort : 'ndz_pon_wt_śr_czw_pt_sob'.split('_'),
|
||||
weekdaysMin : 'Nd_Pn_Wt_Śr_Cz_Pt_So'.split('_'),
|
||||
longDateFormat : {
|
||||
LT : 'HH:mm',
|
||||
@ -92,14 +94,14 @@
|
||||
y : 'rok',
|
||||
yy : translate
|
||||
},
|
||||
ordinalParse: /\d{1,2}\./,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}\./,
|
||||
ordinal : '%d.',
|
||||
week : {
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 4 // The week that contains Jan 4th is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return pl;
|
||||
return pl;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
18
lib/javascripts/moment_locale/pt-br.js
Executable file → Normal file
18
lib/javascripts/moment_locale/pt-br.js
Executable file → Normal file
@ -1,21 +1,21 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : brazilian portuguese (pt-br)
|
||||
//! locale : Portuguese (Brazil) [pt-br]
|
||||
//! author : Caio Ribeiro Pereira : https://github.com/caio-ribeiro-pereira
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var pt_br = moment.defineLocale('pt-br', {
|
||||
var ptBr = moment.defineLocale('pt-br', {
|
||||
months : 'Janeiro_Fevereiro_Março_Abril_Maio_Junho_Julho_Agosto_Setembro_Outubro_Novembro_Dezembro'.split('_'),
|
||||
monthsShort : 'Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez'.split('_'),
|
||||
weekdays : 'Domingo_Segunda-feira_Terça-feira_Quarta-feira_Quinta-feira_Sexta-feira_Sábado'.split('_'),
|
||||
weekdaysShort : 'Dom_Seg_Ter_Qua_Qui_Sex_Sáb'.split('_'),
|
||||
weekdaysMin : 'Dom_2ª_3ª_4ª_5ª_6ª_Sáb'.split('_'),
|
||||
weekdaysMin : 'Do_2ª_3ª_4ª_5ª_6ª_Sá'.split('_'),
|
||||
weekdaysParseExact : true,
|
||||
longDateFormat : {
|
||||
LT : 'HH:mm',
|
||||
@ -52,10 +52,10 @@
|
||||
y : 'um ano',
|
||||
yy : '%d anos'
|
||||
},
|
||||
ordinalParse: /\d{1,2}º/,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}º/,
|
||||
ordinal : '%dº'
|
||||
});
|
||||
});
|
||||
|
||||
return pt_br;
|
||||
return ptBr;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
18
lib/javascripts/moment_locale/pt.js
Executable file → Normal file
18
lib/javascripts/moment_locale/pt.js
Executable file → Normal file
@ -1,21 +1,21 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : portuguese (pt)
|
||||
//! locale : Portuguese [pt]
|
||||
//! author : Jefferson : https://github.com/jalex79
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var pt = moment.defineLocale('pt', {
|
||||
var pt = moment.defineLocale('pt', {
|
||||
months : 'Janeiro_Fevereiro_Março_Abril_Maio_Junho_Julho_Agosto_Setembro_Outubro_Novembro_Dezembro'.split('_'),
|
||||
monthsShort : 'Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez'.split('_'),
|
||||
weekdays : 'Domingo_Segunda-Feira_Terça-Feira_Quarta-Feira_Quinta-Feira_Sexta-Feira_Sábado'.split('_'),
|
||||
weekdaysShort : 'Dom_Seg_Ter_Qua_Qui_Sex_Sáb'.split('_'),
|
||||
weekdaysMin : 'Dom_2ª_3ª_4ª_5ª_6ª_Sáb'.split('_'),
|
||||
weekdaysMin : 'Do_2ª_3ª_4ª_5ª_6ª_Sá'.split('_'),
|
||||
weekdaysParseExact : true,
|
||||
longDateFormat : {
|
||||
LT : 'HH:mm',
|
||||
@ -52,14 +52,14 @@
|
||||
y : 'um ano',
|
||||
yy : '%d anos'
|
||||
},
|
||||
ordinalParse: /\d{1,2}º/,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}º/,
|
||||
ordinal : '%dº',
|
||||
week : {
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 4 // The week that contains Jan 4th is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return pt;
|
||||
return pt;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
18
lib/javascripts/moment_locale/ro.js
Executable file → Normal file
18
lib/javascripts/moment_locale/ro.js
Executable file → Normal file
@ -1,17 +1,17 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : romanian (ro)
|
||||
//! locale : Romanian [ro]
|
||||
//! author : Vlad Gurdiga : https://github.com/gurdiga
|
||||
//! author : Valentin Agachi : https://github.com/avaly
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
function relativeTimeWithPlural(number, withoutSuffix, key) {
|
||||
function relativeTimeWithPlural(number, withoutSuffix, key) {
|
||||
var format = {
|
||||
'mm': 'minute',
|
||||
'hh': 'ore',
|
||||
@ -24,9 +24,9 @@
|
||||
separator = ' de ';
|
||||
}
|
||||
return number + separator + format[key];
|
||||
}
|
||||
}
|
||||
|
||||
var ro = moment.defineLocale('ro', {
|
||||
var ro = moment.defineLocale('ro', {
|
||||
months : 'ianuarie_februarie_martie_aprilie_mai_iunie_iulie_august_septembrie_octombrie_noiembrie_decembrie'.split('_'),
|
||||
monthsShort : 'ian._febr._mart._apr._mai_iun._iul._aug._sept._oct._nov._dec.'.split('_'),
|
||||
monthsParseExact: true,
|
||||
@ -68,8 +68,8 @@
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 7 // The week that contains Jan 1st is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return ro;
|
||||
return ro;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
48
lib/javascripts/moment_locale/ru.js
Executable file → Normal file
48
lib/javascripts/moment_locale/ru.js
Executable file → Normal file
@ -1,5 +1,5 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : russian (ru)
|
||||
//! locale : Russian [ru]
|
||||
//! author : Viktorminator : https://github.com/Viktorminator
|
||||
//! Author : Menelion Elensúle : https://github.com/Oire
|
||||
//! author : Коренберг Марк : https://github.com/socketpair
|
||||
@ -7,16 +7,16 @@
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
function plural(word, num) {
|
||||
function plural(word, num) {
|
||||
var forms = word.split('_');
|
||||
return num % 10 === 1 && num % 100 !== 11 ? forms[0] : (num % 10 >= 2 && num % 10 <= 4 && (num % 100 < 10 || num % 100 >= 20) ? forms[1] : forms[2]);
|
||||
}
|
||||
function relativeTimeWithPlural(number, withoutSuffix, key) {
|
||||
}
|
||||
function relativeTimeWithPlural(number, withoutSuffix, key) {
|
||||
var format = {
|
||||
'mm': withoutSuffix ? 'минута_минуты_минут' : 'минуту_минуты_минут',
|
||||
'hh': 'час_часа_часов',
|
||||
@ -30,13 +30,13 @@
|
||||
else {
|
||||
return number + ' ' + plural(format[key], +number);
|
||||
}
|
||||
}
|
||||
var monthsParse = [/^янв/i, /^фев/i, /^мар/i, /^апр/i, /^ма[йя]/i, /^июн/i, /^июл/i, /^авг/i, /^сен/i, /^окт/i, /^ноя/i, /^дек/i];
|
||||
}
|
||||
var monthsParse = [/^янв/i, /^фев/i, /^мар/i, /^апр/i, /^ма[йя]/i, /^июн/i, /^июл/i, /^авг/i, /^сен/i, /^окт/i, /^ноя/i, /^дек/i];
|
||||
|
||||
// http://new.gramota.ru/spravka/rules/139-prop : § 103
|
||||
// Сокращения месяцев: http://new.gramota.ru/spravka/buro/search-answer?s=242637
|
||||
// CLDR data: http://www.unicode.org/cldr/charts/28/summary/ru.html#1753
|
||||
var ru = moment.defineLocale('ru', {
|
||||
// http://new.gramota.ru/spravka/rules/139-prop : § 103
|
||||
// Сокращения месяцев: http://new.gramota.ru/spravka/buro/search-answer?s=242637
|
||||
// CLDR data: http://www.unicode.org/cldr/charts/28/summary/ru.html#1753
|
||||
var ru = moment.defineLocale('ru', {
|
||||
months : {
|
||||
format: 'января_февраля_марта_апреля_мая_июня_июля_августа_сентября_октября_ноября_декабря'.split('_'),
|
||||
standalone: 'январь_февраль_март_апрель_май_июнь_июль_август_сентябрь_октябрь_ноябрь_декабрь'.split('_')
|
||||
@ -56,10 +56,18 @@
|
||||
monthsParse : monthsParse,
|
||||
longMonthsParse : monthsParse,
|
||||
shortMonthsParse : monthsParse,
|
||||
monthsRegex: /^(сентябр[яь]|октябр[яь]|декабр[яь]|феврал[яь]|январ[яь]|апрел[яь]|августа?|ноябр[яь]|сент\.|февр\.|нояб\.|июнь|янв.|июль|дек.|авг.|апр.|марта|мар[.т]|окт.|июн[яь]|июл[яь]|ма[яй])/i,
|
||||
monthsShortRegex: /^(сентябр[яь]|октябр[яь]|декабр[яь]|феврал[яь]|январ[яь]|апрел[яь]|августа?|ноябр[яь]|сент\.|февр\.|нояб\.|июнь|янв.|июль|дек.|авг.|апр.|марта|мар[.т]|окт.|июн[яь]|июл[яь]|ма[яй])/i,
|
||||
monthsStrictRegex: /^(сентябр[яь]|октябр[яь]|декабр[яь]|феврал[яь]|январ[яь]|апрел[яь]|августа?|ноябр[яь]|марта?|июн[яь]|июл[яь]|ма[яй])/i,
|
||||
monthsShortStrictRegex: /^(нояб\.|февр\.|сент\.|июль|янв\.|июн[яь]|мар[.т]|авг\.|апр\.|окт\.|дек\.|ма[яй])/i,
|
||||
|
||||
// полные названия с падежами, по три буквы, для некоторых, по 4 буквы, сокращения с точкой и без точки
|
||||
monthsRegex: /^(январ[ья]|янв\.?|феврал[ья]|февр?\.?|марта?|мар\.?|апрел[ья]|апр\.?|ма[йя]|июн[ья]|июн\.?|июл[ья]|июл\.?|августа?|авг\.?|сентябр[ья]|сент?\.?|октябр[ья]|окт\.?|ноябр[ья]|нояб?\.?|декабр[ья]|дек\.?)/i,
|
||||
|
||||
// копия предыдущего
|
||||
monthsShortRegex: /^(январ[ья]|янв\.?|феврал[ья]|февр?\.?|марта?|мар\.?|апрел[ья]|апр\.?|ма[йя]|июн[ья]|июн\.?|июл[ья]|июл\.?|августа?|авг\.?|сентябр[ья]|сент?\.?|октябр[ья]|окт\.?|ноябр[ья]|нояб?\.?|декабр[ья]|дек\.?)/i,
|
||||
|
||||
// полные названия с падежами
|
||||
monthsStrictRegex: /^(январ[яь]|феврал[яь]|марта?|апрел[яь]|ма[яй]|июн[яь]|июл[яь]|августа?|сентябр[яь]|октябр[яь]|ноябр[яь]|декабр[яь])/i,
|
||||
|
||||
// Выражение, которое соотвествует только сокращённым формам
|
||||
monthsShortStrictRegex: /^(янв\.|февр?\.|мар[т.]|апр\.|ма[яй]|июн[ья.]|июл[ья.]|авг\.|сент?\.|окт\.|нояб?\.|дек\.)/i,
|
||||
longDateFormat : {
|
||||
LT : 'HH:mm',
|
||||
LTS : 'HH:mm:ss',
|
||||
@ -148,7 +156,7 @@
|
||||
return 'вечера';
|
||||
}
|
||||
},
|
||||
ordinalParse: /\d{1,2}-(й|го|я)/,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}-(й|го|я)/,
|
||||
ordinal: function (number, period) {
|
||||
switch (period) {
|
||||
case 'M':
|
||||
@ -168,8 +176,8 @@
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 7 // The week that contains Jan 1st is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return ru;
|
||||
return ru;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
98
lib/javascripts/moment_locale/sd.js
Normal file
98
lib/javascripts/moment_locale/sd.js
Normal file
@ -0,0 +1,98 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : Sindhi [sd]
|
||||
//! author : Narain Sagar : https://github.com/narainsagar
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var months = [
|
||||
'جنوري',
|
||||
'فيبروري',
|
||||
'مارچ',
|
||||
'اپريل',
|
||||
'مئي',
|
||||
'جون',
|
||||
'جولاءِ',
|
||||
'آگسٽ',
|
||||
'سيپٽمبر',
|
||||
'آڪٽوبر',
|
||||
'نومبر',
|
||||
'ڊسمبر'
|
||||
];
|
||||
var days = [
|
||||
'آچر',
|
||||
'سومر',
|
||||
'اڱارو',
|
||||
'اربع',
|
||||
'خميس',
|
||||
'جمع',
|
||||
'ڇنڇر'
|
||||
];
|
||||
|
||||
var sd = moment.defineLocale('sd', {
|
||||
months : months,
|
||||
monthsShort : months,
|
||||
weekdays : days,
|
||||
weekdaysShort : days,
|
||||
weekdaysMin : days,
|
||||
longDateFormat : {
|
||||
LT : 'HH:mm',
|
||||
LTS : 'HH:mm:ss',
|
||||
L : 'DD/MM/YYYY',
|
||||
LL : 'D MMMM YYYY',
|
||||
LLL : 'D MMMM YYYY HH:mm',
|
||||
LLLL : 'dddd، D MMMM YYYY HH:mm'
|
||||
},
|
||||
meridiemParse: /صبح|شام/,
|
||||
isPM : function (input) {
|
||||
return 'شام' === input;
|
||||
},
|
||||
meridiem : function (hour, minute, isLower) {
|
||||
if (hour < 12) {
|
||||
return 'صبح';
|
||||
}
|
||||
return 'شام';
|
||||
},
|
||||
calendar : {
|
||||
sameDay : '[اڄ] LT',
|
||||
nextDay : '[سڀاڻي] LT',
|
||||
nextWeek : 'dddd [اڳين هفتي تي] LT',
|
||||
lastDay : '[ڪالهه] LT',
|
||||
lastWeek : '[گزريل هفتي] dddd [تي] LT',
|
||||
sameElse : 'L'
|
||||
},
|
||||
relativeTime : {
|
||||
future : '%s پوء',
|
||||
past : '%s اڳ',
|
||||
s : 'چند سيڪنڊ',
|
||||
m : 'هڪ منٽ',
|
||||
mm : '%d منٽ',
|
||||
h : 'هڪ ڪلاڪ',
|
||||
hh : '%d ڪلاڪ',
|
||||
d : 'هڪ ڏينهن',
|
||||
dd : '%d ڏينهن',
|
||||
M : 'هڪ مهينو',
|
||||
MM : '%d مهينا',
|
||||
y : 'هڪ سال',
|
||||
yy : '%d سال'
|
||||
},
|
||||
preparse: function (string) {
|
||||
return string.replace(/،/g, ',');
|
||||
},
|
||||
postformat: function (string) {
|
||||
return string.replace(/,/g, '،');
|
||||
},
|
||||
week : {
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 4 // The week that contains Jan 4th is the first week of the year.
|
||||
}
|
||||
});
|
||||
|
||||
return sd;
|
||||
|
||||
})));
|
16
lib/javascripts/moment_locale/se.js
Executable file → Normal file
16
lib/javascripts/moment_locale/se.js
Executable file → Normal file
@ -1,17 +1,17 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : Northern Sami (se)
|
||||
//! locale : Northern Sami [se]
|
||||
//! authors : Bård Rolstad Henriksen : https://github.com/karamell
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
|
||||
var se = moment.defineLocale('se', {
|
||||
var se = moment.defineLocale('se', {
|
||||
months : 'ođđajagemánnu_guovvamánnu_njukčamánnu_cuoŋománnu_miessemánnu_geassemánnu_suoidnemánnu_borgemánnu_čakčamánnu_golggotmánnu_skábmamánnu_juovlamánnu'.split('_'),
|
||||
monthsShort : 'ođđj_guov_njuk_cuo_mies_geas_suoi_borg_čakč_golg_skáb_juov'.split('_'),
|
||||
weekdays : 'sotnabeaivi_vuossárga_maŋŋebárga_gaskavahkku_duorastat_bearjadat_lávvardat'.split('_'),
|
||||
@ -48,14 +48,14 @@
|
||||
y : 'okta jahki',
|
||||
yy : '%d jagit'
|
||||
},
|
||||
ordinalParse: /\d{1,2}\./,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}\./,
|
||||
ordinal : '%d.',
|
||||
week : {
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 4 // The week that contains Jan 4th is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return se;
|
||||
return se;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
18
lib/javascripts/moment_locale/si.js
Executable file → Normal file
18
lib/javascripts/moment_locale/si.js
Executable file → Normal file
@ -1,17 +1,17 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : Sinhalese (si)
|
||||
//! locale : Sinhalese [si]
|
||||
//! author : Sampath Sitinamaluwa : https://github.com/sampathsris
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
/*jshint -W100*/
|
||||
var si = moment.defineLocale('si', {
|
||||
/*jshint -W100*/
|
||||
var si = moment.defineLocale('si', {
|
||||
months : 'ජනවාරි_පෙබරවාරි_මාර්තු_අප්රේල්_මැයි_ජූනි_ජූලි_අගෝස්තු_සැප්තැම්බර්_ඔක්තෝබර්_නොවැම්බර්_දෙසැම්බර්'.split('_'),
|
||||
monthsShort : 'ජන_පෙබ_මාර්_අප්_මැයි_ජූනි_ජූලි_අගෝ_සැප්_ඔක්_නොවැ_දෙසැ'.split('_'),
|
||||
weekdays : 'ඉරිදා_සඳුදා_අඟහරුවාදා_බදාදා_බ්රහස්පතින්දා_සිකුරාදා_සෙනසුරාදා'.split('_'),
|
||||
@ -49,7 +49,7 @@
|
||||
y : 'වසර',
|
||||
yy : 'වසර %d'
|
||||
},
|
||||
ordinalParse: /\d{1,2} වැනි/,
|
||||
dayOfMonthOrdinalParse: /\d{1,2} වැනි/,
|
||||
ordinal : function (number) {
|
||||
return number + ' වැනි';
|
||||
},
|
||||
@ -64,8 +64,8 @@
|
||||
return isLower ? 'පෙ.ව.' : 'පෙර වරු';
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return si;
|
||||
return si;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
28
lib/javascripts/moment_locale/sk.js
Executable file → Normal file
28
lib/javascripts/moment_locale/sk.js
Executable file → Normal file
@ -1,22 +1,22 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : slovak (sk)
|
||||
//! locale : Slovak [sk]
|
||||
//! author : Martin Minka : https://github.com/k2s
|
||||
//! based on work of petrbela : https://github.com/petrbela
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var months = 'január_február_marec_apríl_máj_jún_júl_august_september_október_november_december'.split('_'),
|
||||
monthsShort = 'jan_feb_mar_apr_máj_jún_júl_aug_sep_okt_nov_dec'.split('_');
|
||||
function plural(n) {
|
||||
var months = 'január_február_marec_apríl_máj_jún_júl_august_september_október_november_december'.split('_');
|
||||
var monthsShort = 'jan_feb_mar_apr_máj_jún_júl_aug_sep_okt_nov_dec'.split('_');
|
||||
function plural(n) {
|
||||
return (n > 1) && (n < 5);
|
||||
}
|
||||
function translate(number, withoutSuffix, key, isFuture) {
|
||||
}
|
||||
function translate(number, withoutSuffix, key, isFuture) {
|
||||
var result = number + ' ';
|
||||
switch (key) {
|
||||
case 's': // a few seconds / in a few seconds / a few seconds ago
|
||||
@ -67,9 +67,9 @@
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
var sk = moment.defineLocale('sk', {
|
||||
var sk = moment.defineLocale('sk', {
|
||||
months : months,
|
||||
monthsShort : monthsShort,
|
||||
weekdays : 'nedeľa_pondelok_utorok_streda_štvrtok_piatok_sobota'.split('_'),
|
||||
@ -137,14 +137,14 @@
|
||||
y : translate,
|
||||
yy : translate
|
||||
},
|
||||
ordinalParse: /\d{1,2}\./,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}\./,
|
||||
ordinal : '%d.',
|
||||
week : {
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 4 // The week that contains Jan 4th is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return sk;
|
||||
return sk;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
22
lib/javascripts/moment_locale/sl.js
Executable file → Normal file
22
lib/javascripts/moment_locale/sl.js
Executable file → Normal file
@ -1,16 +1,16 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : slovenian (sl)
|
||||
//! locale : Slovenian [sl]
|
||||
//! author : Robert Sedovšek : https://github.com/sedovsek
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
function processRelativeTime(number, withoutSuffix, key, isFuture) {
|
||||
function processRelativeTime(number, withoutSuffix, key, isFuture) {
|
||||
var result = number + ' ';
|
||||
switch (key) {
|
||||
case 's':
|
||||
@ -79,9 +79,9 @@
|
||||
}
|
||||
return result;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
var sl = moment.defineLocale('sl', {
|
||||
var sl = moment.defineLocale('sl', {
|
||||
months : 'januar_februar_marec_april_maj_junij_julij_avgust_september_oktober_november_december'.split('_'),
|
||||
monthsShort : 'jan._feb._mar._apr._maj._jun._jul._avg._sep._okt._nov._dec.'.split('_'),
|
||||
monthsParseExact: true,
|
||||
@ -92,7 +92,7 @@
|
||||
longDateFormat : {
|
||||
LT : 'H:mm',
|
||||
LTS : 'H:mm:ss',
|
||||
L : 'DD. MM. YYYY',
|
||||
L : 'DD.MM.YYYY',
|
||||
LL : 'D. MMMM YYYY',
|
||||
LLL : 'D. MMMM YYYY H:mm',
|
||||
LLLL : 'dddd, D. MMMM YYYY H:mm'
|
||||
@ -149,14 +149,14 @@
|
||||
y : processRelativeTime,
|
||||
yy : processRelativeTime
|
||||
},
|
||||
ordinalParse: /\d{1,2}\./,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}\./,
|
||||
ordinal : '%d.',
|
||||
week : {
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 7 // The week that contains Jan 1st is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return sl;
|
||||
return sl;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
20
lib/javascripts/moment_locale/sq.js
Executable file → Normal file
20
lib/javascripts/moment_locale/sq.js
Executable file → Normal file
@ -1,18 +1,18 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : Albanian (sq)
|
||||
//! locale : Albanian [sq]
|
||||
//! author : Flakërim Ismani : https://github.com/flakerimi
|
||||
//! author: Menelion Elensúle: https://github.com/Oire (tests)
|
||||
//! author : Oerd Cukalla : https://github.com/oerd (fixes)
|
||||
//! author : Menelion Elensúle : https://github.com/Oire
|
||||
//! author : Oerd Cukalla : https://github.com/oerd
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var sq = moment.defineLocale('sq', {
|
||||
var sq = moment.defineLocale('sq', {
|
||||
months : 'Janar_Shkurt_Mars_Prill_Maj_Qershor_Korrik_Gusht_Shtator_Tetor_Nëntor_Dhjetor'.split('_'),
|
||||
monthsShort : 'Jan_Shk_Mar_Pri_Maj_Qer_Kor_Gus_Sht_Tet_Nën_Dhj'.split('_'),
|
||||
weekdays : 'E Diel_E Hënë_E Martë_E Mërkurë_E Enjte_E Premte_E Shtunë'.split('_'),
|
||||
@ -57,14 +57,14 @@
|
||||
y : 'një vit',
|
||||
yy : '%d vite'
|
||||
},
|
||||
ordinalParse: /\d{1,2}\./,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}\./,
|
||||
ordinal : '%d.',
|
||||
week : {
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 4 // The week that contains Jan 4th is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return sq;
|
||||
return sq;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
22
lib/javascripts/moment_locale/sr-cyrl.js
Executable file → Normal file
22
lib/javascripts/moment_locale/sr-cyrl.js
Executable file → Normal file
@ -1,16 +1,16 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : Serbian-cyrillic (sr-cyrl)
|
||||
//! locale : Serbian Cyrillic [sr-cyrl]
|
||||
//! author : Milan Janačković<milanjanackovic@gmail.com> : https://github.com/milan-j
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var translator = {
|
||||
var translator = {
|
||||
words: { //Different grammatical cases
|
||||
m: ['један минут', 'једне минуте'],
|
||||
mm: ['минут', 'минуте', 'минута'],
|
||||
@ -31,9 +31,9 @@
|
||||
return number + ' ' + translator.correctGrammaticalCase(number, wordKey);
|
||||
}
|
||||
}
|
||||
};
|
||||
};
|
||||
|
||||
var sr_cyrl = moment.defineLocale('sr-cyrl', {
|
||||
var srCyrl = moment.defineLocale('sr-cyrl', {
|
||||
months: 'јануар_фебруар_март_април_мај_јун_јул_август_септембар_октобар_новембар_децембар'.split('_'),
|
||||
monthsShort: 'јан._феб._мар._апр._мај_јун_јул_авг._сеп._окт._нов._дец.'.split('_'),
|
||||
monthsParseExact: true,
|
||||
@ -44,7 +44,7 @@
|
||||
longDateFormat: {
|
||||
LT: 'H:mm',
|
||||
LTS : 'H:mm:ss',
|
||||
L: 'DD. MM. YYYY',
|
||||
L: 'DD.MM.YYYY',
|
||||
LL: 'D. MMMM YYYY',
|
||||
LLL: 'D. MMMM YYYY H:mm',
|
||||
LLLL: 'dddd, D. MMMM YYYY H:mm'
|
||||
@ -97,14 +97,14 @@
|
||||
y : 'годину',
|
||||
yy : translator.translate
|
||||
},
|
||||
ordinalParse: /\d{1,2}\./,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}\./,
|
||||
ordinal : '%d.',
|
||||
week : {
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 7 // The week that contains Jan 1st is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return sr_cyrl;
|
||||
return srCyrl;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
22
lib/javascripts/moment_locale/sr.js
Executable file → Normal file
22
lib/javascripts/moment_locale/sr.js
Executable file → Normal file
@ -1,16 +1,16 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : Serbian-latin (sr)
|
||||
//! locale : Serbian [sr]
|
||||
//! author : Milan Janačković<milanjanackovic@gmail.com> : https://github.com/milan-j
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var translator = {
|
||||
var translator = {
|
||||
words: { //Different grammatical cases
|
||||
m: ['jedan minut', 'jedne minute'],
|
||||
mm: ['minut', 'minute', 'minuta'],
|
||||
@ -31,9 +31,9 @@
|
||||
return number + ' ' + translator.correctGrammaticalCase(number, wordKey);
|
||||
}
|
||||
}
|
||||
};
|
||||
};
|
||||
|
||||
var sr = moment.defineLocale('sr', {
|
||||
var sr = moment.defineLocale('sr', {
|
||||
months: 'januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar'.split('_'),
|
||||
monthsShort: 'jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.'.split('_'),
|
||||
monthsParseExact: true,
|
||||
@ -44,7 +44,7 @@
|
||||
longDateFormat: {
|
||||
LT: 'H:mm',
|
||||
LTS : 'H:mm:ss',
|
||||
L: 'DD. MM. YYYY',
|
||||
L: 'DD.MM.YYYY',
|
||||
LL: 'D. MMMM YYYY',
|
||||
LLL: 'D. MMMM YYYY H:mm',
|
||||
LLLL: 'dddd, D. MMMM YYYY H:mm'
|
||||
@ -97,14 +97,14 @@
|
||||
y : 'godinu',
|
||||
yy : translator.translate
|
||||
},
|
||||
ordinalParse: /\d{1,2}\./,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}\./,
|
||||
ordinal : '%d.',
|
||||
week : {
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 7 // The week that contains Jan 1st is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return sr;
|
||||
return sr;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
89
lib/javascripts/moment_locale/ss.js
Normal file
89
lib/javascripts/moment_locale/ss.js
Normal file
@ -0,0 +1,89 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : siSwati [ss]
|
||||
//! author : Nicolai Davies<mail@nicolai.io> : https://github.com/nicolaidavies
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
|
||||
var ss = moment.defineLocale('ss', {
|
||||
months : "Bhimbidvwane_Indlovana_Indlov'lenkhulu_Mabasa_Inkhwekhweti_Inhlaba_Kholwane_Ingci_Inyoni_Imphala_Lweti_Ingongoni".split('_'),
|
||||
monthsShort : 'Bhi_Ina_Inu_Mab_Ink_Inh_Kho_Igc_Iny_Imp_Lwe_Igo'.split('_'),
|
||||
weekdays : 'Lisontfo_Umsombuluko_Lesibili_Lesitsatfu_Lesine_Lesihlanu_Umgcibelo'.split('_'),
|
||||
weekdaysShort : 'Lis_Umb_Lsb_Les_Lsi_Lsh_Umg'.split('_'),
|
||||
weekdaysMin : 'Li_Us_Lb_Lt_Ls_Lh_Ug'.split('_'),
|
||||
weekdaysParseExact : true,
|
||||
longDateFormat : {
|
||||
LT : 'h:mm A',
|
||||
LTS : 'h:mm:ss A',
|
||||
L : 'DD/MM/YYYY',
|
||||
LL : 'D MMMM YYYY',
|
||||
LLL : 'D MMMM YYYY h:mm A',
|
||||
LLLL : 'dddd, D MMMM YYYY h:mm A'
|
||||
},
|
||||
calendar : {
|
||||
sameDay : '[Namuhla nga] LT',
|
||||
nextDay : '[Kusasa nga] LT',
|
||||
nextWeek : 'dddd [nga] LT',
|
||||
lastDay : '[Itolo nga] LT',
|
||||
lastWeek : 'dddd [leliphelile] [nga] LT',
|
||||
sameElse : 'L'
|
||||
},
|
||||
relativeTime : {
|
||||
future : 'nga %s',
|
||||
past : 'wenteka nga %s',
|
||||
s : 'emizuzwana lomcane',
|
||||
m : 'umzuzu',
|
||||
mm : '%d emizuzu',
|
||||
h : 'lihora',
|
||||
hh : '%d emahora',
|
||||
d : 'lilanga',
|
||||
dd : '%d emalanga',
|
||||
M : 'inyanga',
|
||||
MM : '%d tinyanga',
|
||||
y : 'umnyaka',
|
||||
yy : '%d iminyaka'
|
||||
},
|
||||
meridiemParse: /ekuseni|emini|entsambama|ebusuku/,
|
||||
meridiem : function (hours, minutes, isLower) {
|
||||
if (hours < 11) {
|
||||
return 'ekuseni';
|
||||
} else if (hours < 15) {
|
||||
return 'emini';
|
||||
} else if (hours < 19) {
|
||||
return 'entsambama';
|
||||
} else {
|
||||
return 'ebusuku';
|
||||
}
|
||||
},
|
||||
meridiemHour : function (hour, meridiem) {
|
||||
if (hour === 12) {
|
||||
hour = 0;
|
||||
}
|
||||
if (meridiem === 'ekuseni') {
|
||||
return hour;
|
||||
} else if (meridiem === 'emini') {
|
||||
return hour >= 11 ? hour : hour + 12;
|
||||
} else if (meridiem === 'entsambama' || meridiem === 'ebusuku') {
|
||||
if (hour === 0) {
|
||||
return 0;
|
||||
}
|
||||
return hour + 12;
|
||||
}
|
||||
},
|
||||
dayOfMonthOrdinalParse: /\d{1,2}/,
|
||||
ordinal : '%d',
|
||||
week : {
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 4 // The week that contains Jan 4th is the first week of the year.
|
||||
}
|
||||
});
|
||||
|
||||
return ss;
|
||||
|
||||
})));
|
16
lib/javascripts/moment_locale/sv.js
Executable file → Normal file
16
lib/javascripts/moment_locale/sv.js
Executable file → Normal file
@ -1,16 +1,16 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : swedish (sv)
|
||||
//! locale : Swedish [sv]
|
||||
//! author : Jens Alm : https://github.com/ulmus
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var sv = moment.defineLocale('sv', {
|
||||
var sv = moment.defineLocale('sv', {
|
||||
months : 'januari_februari_mars_april_maj_juni_juli_augusti_september_oktober_november_december'.split('_'),
|
||||
monthsShort : 'jan_feb_mar_apr_maj_jun_jul_aug_sep_okt_nov_dec'.split('_'),
|
||||
weekdays : 'söndag_måndag_tisdag_onsdag_torsdag_fredag_lördag'.split('_'),
|
||||
@ -49,7 +49,7 @@
|
||||
y : 'ett år',
|
||||
yy : '%d år'
|
||||
},
|
||||
ordinalParse: /\d{1,2}(e|a)/,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}(e|a)/,
|
||||
ordinal : function (number) {
|
||||
var b = number % 10,
|
||||
output = (~~(number % 100 / 10) === 1) ? 'e' :
|
||||
@ -62,8 +62,8 @@
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 4 // The week that contains Jan 4th is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return sv;
|
||||
return sv;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
14
lib/javascripts/moment_locale/sw.js
Executable file → Normal file
14
lib/javascripts/moment_locale/sw.js
Executable file → Normal file
@ -1,16 +1,16 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : swahili (sw)
|
||||
//! locale : Swahili [sw]
|
||||
//! author : Fahad Kassim : https://github.com/fadsel
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var sw = moment.defineLocale('sw', {
|
||||
var sw = moment.defineLocale('sw', {
|
||||
months : 'Januari_Februari_Machi_Aprili_Mei_Juni_Julai_Agosti_Septemba_Oktoba_Novemba_Desemba'.split('_'),
|
||||
monthsShort : 'Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ago_Sep_Okt_Nov_Des'.split('_'),
|
||||
weekdays : 'Jumapili_Jumatatu_Jumanne_Jumatano_Alhamisi_Ijumaa_Jumamosi'.split('_'),
|
||||
@ -52,8 +52,8 @@
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 7 // The week that contains Jan 1st is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return sw;
|
||||
return sw;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
23
lib/javascripts/moment_locale/ta.js
Executable file → Normal file
23
lib/javascripts/moment_locale/ta.js
Executable file → Normal file
@ -1,16 +1,16 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : tamil (ta)
|
||||
//! locale : Tamil [ta]
|
||||
//! author : Arjunkumar Krishnamoorthy : https://github.com/tk120404
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var symbolMap = {
|
||||
var symbolMap = {
|
||||
'1': '௧',
|
||||
'2': '௨',
|
||||
'3': '௩',
|
||||
@ -21,7 +21,8 @@
|
||||
'8': '௮',
|
||||
'9': '௯',
|
||||
'0': '௦'
|
||||
}, numberMap = {
|
||||
};
|
||||
var numberMap = {
|
||||
'௧': '1',
|
||||
'௨': '2',
|
||||
'௩': '3',
|
||||
@ -32,9 +33,9 @@
|
||||
'௮': '8',
|
||||
'௯': '9',
|
||||
'௦': '0'
|
||||
};
|
||||
};
|
||||
|
||||
var ta = moment.defineLocale('ta', {
|
||||
var ta = moment.defineLocale('ta', {
|
||||
months : 'ஜனவரி_பிப்ரவரி_மார்ச்_ஏப்ரல்_மே_ஜூன்_ஜூலை_ஆகஸ்ட்_செப்டெம்பர்_அக்டோபர்_நவம்பர்_டிசம்பர்'.split('_'),
|
||||
monthsShort : 'ஜனவரி_பிப்ரவரி_மார்ச்_ஏப்ரல்_மே_ஜூன்_ஜூலை_ஆகஸ்ட்_செப்டெம்பர்_அக்டோபர்_நவம்பர்_டிசம்பர்'.split('_'),
|
||||
weekdays : 'ஞாயிற்றுக்கிழமை_திங்கட்கிழமை_செவ்வாய்கிழமை_புதன்கிழமை_வியாழக்கிழமை_வெள்ளிக்கிழமை_சனிக்கிழமை'.split('_'),
|
||||
@ -71,7 +72,7 @@
|
||||
y : 'ஒரு வருடம்',
|
||||
yy : '%d ஆண்டுகள்'
|
||||
},
|
||||
ordinalParse: /\d{1,2}வது/,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}வது/,
|
||||
ordinal : function (number) {
|
||||
return number + 'வது';
|
||||
},
|
||||
@ -122,8 +123,8 @@
|
||||
dow : 0, // Sunday is the first day of the week.
|
||||
doy : 6 // The week that contains Jan 1st is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return ta;
|
||||
return ta;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
16
lib/javascripts/moment_locale/te.js
Executable file → Normal file
16
lib/javascripts/moment_locale/te.js
Executable file → Normal file
@ -1,16 +1,16 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : telugu (te)
|
||||
//! locale : Telugu [te]
|
||||
//! author : Krishna Chaitanya Thota : https://github.com/kcthota
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var te = moment.defineLocale('te', {
|
||||
var te = moment.defineLocale('te', {
|
||||
months : 'జనవరి_ఫిబ్రవరి_మార్చి_ఏప్రిల్_మే_జూన్_జూలై_ఆగస్టు_సెప్టెంబర్_అక్టోబర్_నవంబర్_డిసెంబర్'.split('_'),
|
||||
monthsShort : 'జన._ఫిబ్ర._మార్చి_ఏప్రి._మే_జూన్_జూలై_ఆగ._సెప్._అక్టో._నవ._డిసె.'.split('_'),
|
||||
monthsParseExact : true,
|
||||
@ -48,7 +48,7 @@
|
||||
y : 'ఒక సంవత్సరం',
|
||||
yy : '%d సంవత్సరాలు'
|
||||
},
|
||||
ordinalParse : /\d{1,2}వ/,
|
||||
dayOfMonthOrdinalParse : /\d{1,2}వ/,
|
||||
ordinal : '%dవ',
|
||||
meridiemParse: /రాత్రి|ఉదయం|మధ్యాహ్నం|సాయంత్రం/,
|
||||
meridiemHour : function (hour, meridiem) {
|
||||
@ -82,8 +82,8 @@
|
||||
dow : 0, // Sunday is the first day of the week.
|
||||
doy : 6 // The week that contains Jan 1st is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return te;
|
||||
return te;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
68
lib/javascripts/moment_locale/tet.js
Normal file
68
lib/javascripts/moment_locale/tet.js
Normal file
@ -0,0 +1,68 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : Tetun Dili (East Timor) [tet]
|
||||
//! author : Joshua Brooks : https://github.com/joshbrooks
|
||||
//! author : Onorio De J. Afonso : https://github.com/marobo
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var tet = moment.defineLocale('tet', {
|
||||
months : 'Janeiru_Fevereiru_Marsu_Abril_Maiu_Juniu_Juliu_Augustu_Setembru_Outubru_Novembru_Dezembru'.split('_'),
|
||||
monthsShort : 'Jan_Fev_Mar_Abr_Mai_Jun_Jul_Aug_Set_Out_Nov_Dez'.split('_'),
|
||||
weekdays : 'Domingu_Segunda_Tersa_Kuarta_Kinta_Sexta_Sabadu'.split('_'),
|
||||
weekdaysShort : 'Dom_Seg_Ters_Kua_Kint_Sext_Sab'.split('_'),
|
||||
weekdaysMin : 'Do_Seg_Te_Ku_Ki_Sex_Sa'.split('_'),
|
||||
longDateFormat : {
|
||||
LT : 'HH:mm',
|
||||
LTS : 'HH:mm:ss',
|
||||
L : 'DD/MM/YYYY',
|
||||
LL : 'D MMMM YYYY',
|
||||
LLL : 'D MMMM YYYY HH:mm',
|
||||
LLLL : 'dddd, D MMMM YYYY HH:mm'
|
||||
},
|
||||
calendar : {
|
||||
sameDay: '[Ohin iha] LT',
|
||||
nextDay: '[Aban iha] LT',
|
||||
nextWeek: 'dddd [iha] LT',
|
||||
lastDay: '[Horiseik iha] LT',
|
||||
lastWeek: 'dddd [semana kotuk] [iha] LT',
|
||||
sameElse: 'L'
|
||||
},
|
||||
relativeTime : {
|
||||
future : 'iha %s',
|
||||
past : '%s liuba',
|
||||
s : 'minutu balun',
|
||||
m : 'minutu ida',
|
||||
mm : 'minutus %d',
|
||||
h : 'horas ida',
|
||||
hh : 'horas %d',
|
||||
d : 'loron ida',
|
||||
dd : 'loron %d',
|
||||
M : 'fulan ida',
|
||||
MM : 'fulan %d',
|
||||
y : 'tinan ida',
|
||||
yy : 'tinan %d'
|
||||
},
|
||||
dayOfMonthOrdinalParse: /\d{1,2}(st|nd|rd|th)/,
|
||||
ordinal : function (number) {
|
||||
var b = number % 10,
|
||||
output = (~~(number % 100 / 10) === 1) ? 'th' :
|
||||
(b === 1) ? 'st' :
|
||||
(b === 2) ? 'nd' :
|
||||
(b === 3) ? 'rd' : 'th';
|
||||
return number + output;
|
||||
},
|
||||
week : {
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 4 // The week that contains Jan 4th is the first week of the year.
|
||||
}
|
||||
});
|
||||
|
||||
return tet;
|
||||
|
||||
})));
|
26
lib/javascripts/moment_locale/th.js
Executable file → Normal file
26
lib/javascripts/moment_locale/th.js
Executable file → Normal file
@ -1,30 +1,30 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : thai (th)
|
||||
//! locale : Thai [th]
|
||||
//! author : Kridsada Thanabulpong : https://github.com/sirn
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var th = moment.defineLocale('th', {
|
||||
var th = moment.defineLocale('th', {
|
||||
months : 'มกราคม_กุมภาพันธ์_มีนาคม_เมษายน_พฤษภาคม_มิถุนายน_กรกฎาคม_สิงหาคม_กันยายน_ตุลาคม_พฤศจิกายน_ธันวาคม'.split('_'),
|
||||
monthsShort : 'มกรา_กุมภา_มีนา_เมษา_พฤษภา_มิถุนา_กรกฎา_สิงหา_กันยา_ตุลา_พฤศจิกา_ธันวา'.split('_'),
|
||||
monthsShort : 'ม.ค._ก.พ._มี.ค._เม.ย._พ.ค._มิ.ย._ก.ค._ส.ค._ก.ย._ต.ค._พ.ย._ธ.ค.'.split('_'),
|
||||
monthsParseExact: true,
|
||||
weekdays : 'อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัสบดี_ศุกร์_เสาร์'.split('_'),
|
||||
weekdaysShort : 'อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัส_ศุกร์_เสาร์'.split('_'), // yes, three characters difference
|
||||
weekdaysMin : 'อา._จ._อ._พ._พฤ._ศ._ส.'.split('_'),
|
||||
weekdaysParseExact : true,
|
||||
longDateFormat : {
|
||||
LT : 'H นาฬิกา m นาที',
|
||||
LTS : 'H นาฬิกา m นาที s วินาที',
|
||||
L : 'YYYY/MM/DD',
|
||||
LT : 'H:mm',
|
||||
LTS : 'H:mm:ss',
|
||||
L : 'DD/MM/YYYY',
|
||||
LL : 'D MMMM YYYY',
|
||||
LLL : 'D MMMM YYYY เวลา H นาฬิกา m นาที',
|
||||
LLLL : 'วันddddที่ D MMMM YYYY เวลา H นาฬิกา m นาที'
|
||||
LLL : 'D MMMM YYYY เวลา H:mm',
|
||||
LLLL : 'วันddddที่ D MMMM YYYY เวลา H:mm'
|
||||
},
|
||||
meridiemParse: /ก่อนเที่ยง|หลังเที่ยง/,
|
||||
isPM: function (input) {
|
||||
@ -60,8 +60,8 @@
|
||||
y : '1 ปี',
|
||||
yy : '%d ปี'
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return th;
|
||||
return th;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
28
lib/javascripts/moment_locale/tl-ph.js
Executable file → Normal file
28
lib/javascripts/moment_locale/tl-ph.js
Executable file → Normal file
@ -1,16 +1,16 @@
|
||||
//! moment.js locale configuration
|
||||
//! locale : Tagalog/Filipino (tl-ph)
|
||||
//! author : Dan Hagman
|
||||
//! locale : Tagalog (Philippines) [tl-ph]
|
||||
//! author : Dan Hagman : https://github.com/hagmandan
|
||||
|
||||
;(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined'
|
||||
&& typeof require === 'function' ? factory(require('../moment')) :
|
||||
typeof define === 'function' && define.amd ? define(['moment'], factory) :
|
||||
typeof define === 'function' && define.amd ? define(['../moment'], factory) :
|
||||
factory(global.moment)
|
||||
}(this, function (moment) { 'use strict';
|
||||
}(this, (function (moment) { 'use strict';
|
||||
|
||||
|
||||
var tl_ph = moment.defineLocale('tl-ph', {
|
||||
var tlPh = moment.defineLocale('tl-ph', {
|
||||
months : 'Enero_Pebrero_Marso_Abril_Mayo_Hunyo_Hulyo_Agosto_Setyembre_Oktubre_Nobyembre_Disyembre'.split('_'),
|
||||
monthsShort : 'Ene_Peb_Mar_Abr_May_Hun_Hul_Ago_Set_Okt_Nob_Dis'.split('_'),
|
||||
weekdays : 'Linggo_Lunes_Martes_Miyerkules_Huwebes_Biyernes_Sabado'.split('_'),
|
||||
@ -25,11 +25,11 @@
|
||||
LLLL : 'dddd, MMMM DD, YYYY HH:mm'
|
||||
},
|
||||
calendar : {
|
||||
sameDay: '[Ngayon sa] LT',
|
||||
nextDay: '[Bukas sa] LT',
|
||||
nextWeek: 'dddd [sa] LT',
|
||||
lastDay: '[Kahapon sa] LT',
|
||||
lastWeek: 'dddd [huling linggo] LT',
|
||||
sameDay: 'LT [ngayong araw]',
|
||||
nextDay: '[Bukas ng] LT',
|
||||
nextWeek: 'LT [sa susunod na] dddd',
|
||||
lastDay: 'LT [kahapon]',
|
||||
lastWeek: 'LT [noong nakaraang] dddd',
|
||||
sameElse: 'L'
|
||||
},
|
||||
relativeTime : {
|
||||
@ -47,7 +47,7 @@
|
||||
y : 'isang taon',
|
||||
yy : '%d taon'
|
||||
},
|
||||
ordinalParse: /\d{1,2}/,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}/,
|
||||
ordinal : function (number) {
|
||||
return number;
|
||||
},
|
||||
@ -55,8 +55,8 @@
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 4 // The week that contains Jan 4th is the first week of the year.
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
return tl_ph;
|
||||
return tlPh;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user