mirror of
https://github.com/discourse/discourse.git
synced 2025-05-22 07:53:49 +08:00
Update moment locales as well.
This commit is contained in:
12
lib/javascripts/moment_locale/af.js
Executable file → Normal file
12
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', {
|
||||
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
|
||||
},
|
||||
@ -70,4 +70,4 @@
|
||||
|
||||
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;
|
||||
|
||||
})));
|
12
lib/javascripts/moment_locale/ar-ma.js
Executable file → Normal file
12
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('_'),
|
||||
@ -55,6 +55,6 @@
|
||||
}
|
||||
});
|
||||
|
||||
return ar_ma;
|
||||
return arMa;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
19
lib/javascripts/moment_locale/ar-sa.js
Executable file → Normal file
19
lib/javascripts/moment_locale/ar-sa.js
Executable file → Normal file
@ -1,13 +1,13 @@
|
||||
//! 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 = {
|
||||
@ -21,7 +21,8 @@
|
||||
'8': '٨',
|
||||
'9': '٩',
|
||||
'0': '٠'
|
||||
}, numberMap = {
|
||||
};
|
||||
var numberMap = {
|
||||
'١': '1',
|
||||
'٢': '2',
|
||||
'٣': '3',
|
||||
@ -34,7 +35,7 @@
|
||||
'٠': '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;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
13
lib/javascripts/moment_locale/ar-tn.js
Executable file → Normal file
13
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('_'),
|
||||
@ -53,6 +54,6 @@
|
||||
}
|
||||
});
|
||||
|
||||
return ar_tn;
|
||||
return arTn;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
29
lib/javascripts/moment_locale/ar.js
Executable file → Normal file
29
lib/javascripts/moment_locale/ar.js
Executable file → Normal file
@ -1,15 +1,15 @@
|
||||
//! 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 = {
|
||||
@ -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 = [
|
||||
'كانون الثاني يناير',
|
||||
'شباط فبراير',
|
||||
'آذار مارس',
|
||||
@ -134,4 +139,4 @@
|
||||
|
||||
return ar;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
10
lib/javascripts/moment_locale/az.js
Executable file → Normal file
10
lib/javascripts/moment_locale/az.js
Executable file → Normal file
@ -1,13 +1,13 @@
|
||||
//! 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 = {
|
||||
@ -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ı';
|
||||
@ -102,4 +102,4 @@
|
||||
|
||||
return az;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
10
lib/javascripts/moment_locale/be.js
Executable file → Normal file
10
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,9 +7,9 @@
|
||||
;(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) {
|
||||
@ -108,7 +108,7 @@
|
||||
return 'вечара';
|
||||
}
|
||||
},
|
||||
ordinalParse: /\d{1,2}-(і|ы|га)/,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}-(і|ы|га)/,
|
||||
ordinal: function (number, period) {
|
||||
switch (period) {
|
||||
case 'M':
|
||||
@ -131,4 +131,4 @@
|
||||
|
||||
return be;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
10
lib/javascripts/moment_locale/bg.js
Executable file → Normal file
10
lib/javascripts/moment_locale/bg.js
Executable file → Normal file
@ -1,13 +1,13 @@
|
||||
//! 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', {
|
||||
@ -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;
|
||||
@ -87,4 +87,4 @@
|
||||
|
||||
return bg;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
22
lib/javascripts/moment_locale/bn.js
Executable file → Normal file
22
lib/javascripts/moment_locale/bn.js
Executable file → Normal file
@ -1,13 +1,13 @@
|
||||
//! 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 = {
|
||||
@ -21,8 +21,8 @@
|
||||
'8': '৮',
|
||||
'9': '৯',
|
||||
'0': '০'
|
||||
},
|
||||
numberMap = {
|
||||
};
|
||||
var numberMap = {
|
||||
'১': '1',
|
||||
'২': '2',
|
||||
'৩': '3',
|
||||
@ -36,11 +36,11 @@
|
||||
};
|
||||
|
||||
var bn = moment.defineLocale('bn', {
|
||||
months : 'জানুয়ারী_ফেবুয়ারী_মার্চ_এপ্রিল_মে_জুন_জুলাই_অগাস্ট_সেপ্টেম্বর_অক্টোবর_নভেম্বর_ডিসেম্বর'.split('_'),
|
||||
monthsShort : 'জানু_ফেব_মার্চ_এপর_মে_জুন_জুল_অগ_সেপ্ট_অক্টো_নভ_ডিসেম্'.split('_'),
|
||||
weekdays : 'রবিবার_সোমবার_মঙ্গলবার_বুধবার_বৃহস্পত্তিবার_শুক্রবার_শনিবার'.split('_'),
|
||||
weekdaysShort : 'রবি_সোম_মঙ্গল_বুধ_বৃহস্পত্তি_শুক্র_শনি'.split('_'),
|
||||
weekdaysMin : 'রব_সম_মঙ্গ_বু_ব্রিহ_শু_শনি'.split('_'),
|
||||
months : 'জানুয়ারী_ফেব্রুয়ারি_মার্চ_এপ্রিল_মে_জুন_জুলাই_আগস্ট_সেপ্টেম্বর_অক্টোবর_নভেম্বর_ডিসেম্বর'.split('_'),
|
||||
monthsShort : 'জানু_ফেব_মার্চ_এপ্র_মে_জুন_জুল_আগ_সেপ্ট_অক্টো_নভে_ডিসে'.split('_'),
|
||||
weekdays : 'রবিবার_সোমবার_মঙ্গলবার_বুধবার_বৃহস্পতিবার_শুক্রবার_শনিবার'.split('_'),
|
||||
weekdaysShort : 'রবি_সোম_মঙ্গল_বুধ_বৃহস্পতি_শুক্র_শনি'.split('_'),
|
||||
weekdaysMin : 'রবি_সোম_মঙ্গ_বুধ_বৃহঃ_শুক্র_শনি'.split('_'),
|
||||
longDateFormat : {
|
||||
LT : 'A h:mm সময়',
|
||||
LTS : 'A h:mm:ss সময়',
|
||||
@ -116,4 +116,4 @@
|
||||
|
||||
return bn;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
12
lib/javascripts/moment_locale/bo.js
Executable file → Normal file
12
lib/javascripts/moment_locale/bo.js
Executable file → Normal file
@ -1,13 +1,13 @@
|
||||
//! 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 = {
|
||||
@ -21,8 +21,8 @@
|
||||
'8': '༨',
|
||||
'9': '༩',
|
||||
'0': '༠'
|
||||
},
|
||||
numberMap = {
|
||||
};
|
||||
var numberMap = {
|
||||
'༡': '1',
|
||||
'༢': '2',
|
||||
'༣': '3',
|
||||
@ -116,4 +116,4 @@
|
||||
|
||||
return bo;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
10
lib/javascripts/moment_locale/br.js
Executable file → Normal file
10
lib/javascripts/moment_locale/br.js
Executable file → Normal file
@ -1,13 +1,13 @@
|
||||
//! 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) {
|
||||
@ -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;
|
||||
@ -105,4 +105,4 @@
|
||||
|
||||
return br;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
10
lib/javascripts/moment_locale/bs.js
Executable file → Normal file
10
lib/javascripts/moment_locale/bs.js
Executable file → Normal file
@ -1,14 +1,14 @@
|
||||
//! 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) {
|
||||
@ -130,7 +130,7 @@
|
||||
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.
|
||||
@ -140,4 +140,4 @@
|
||||
|
||||
return bs;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
29
lib/javascripts/moment_locale/ca.js
Executable file → Normal file
29
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('_'),
|
||||
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' :
|
||||
@ -78,4 +85,4 @@
|
||||
|
||||
return ca;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
17
lib/javascripts/moment_locale/cs.js
Executable file → Normal file
17
lib/javascripts/moment_locale/cs.js
Executable file → Normal file
@ -1,17 +1,17 @@
|
||||
//! 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('_');
|
||||
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);
|
||||
}
|
||||
@ -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,7 +159,7 @@
|
||||
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.
|
||||
@ -168,4 +169,4 @@
|
||||
|
||||
return cs;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
10
lib/javascripts/moment_locale/cv.js
Executable file → Normal file
10
lib/javascripts/moment_locale/cv.js
Executable file → Normal file
@ -1,13 +1,13 @@
|
||||
//! 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', {
|
||||
@ -50,7 +50,7 @@
|
||||
y : 'пӗр ҫул',
|
||||
yy : '%d ҫул'
|
||||
},
|
||||
ordinalParse: /\d{1,2}-мӗш/,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}-мӗш/,
|
||||
ordinal : '%d-мӗш',
|
||||
week : {
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
@ -60,4 +60,4 @@
|
||||
|
||||
return cv;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
13
lib/javascripts/moment_locale/cy.js
Executable file → Normal file
13
lib/javascripts/moment_locale/cy.js
Executable file → Normal file
@ -1,13 +1,14 @@
|
||||
//! 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', {
|
||||
@ -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,
|
||||
@ -77,4 +78,4 @@
|
||||
|
||||
return cy;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
22
lib/javascripts/moment_locale/da.js
Executable file → Normal file
22
lib/javascripts/moment_locale/da.js
Executable file → Normal file
@ -1,13 +1,13 @@
|
||||
//! 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', {
|
||||
@ -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,7 +47,7 @@
|
||||
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.
|
||||
@ -57,4 +57,4 @@
|
||||
|
||||
return da;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
14
lib/javascripts/moment_locale/de-at.js
Executable file → Normal file
14
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,9 +8,9 @@
|
||||
;(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) {
|
||||
@ -27,7 +27,7 @@
|
||||
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,7 +66,7 @@
|
||||
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.
|
||||
@ -74,6 +74,6 @@
|
||||
}
|
||||
});
|
||||
|
||||
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;
|
||||
|
||||
})));
|
10
lib/javascripts/moment_locale/de.js
Executable file → Normal file
10
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,9 +7,9 @@
|
||||
;(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) {
|
||||
@ -65,7 +65,7 @@
|
||||
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.
|
||||
@ -75,4 +75,4 @@
|
||||
|
||||
return de;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
11
lib/javascripts/moment_locale/dv.js
Executable file → Normal file
11
lib/javascripts/moment_locale/dv.js
Executable file → Normal file
@ -1,13 +1,13 @@
|
||||
//! 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 = [
|
||||
@ -23,7 +23,8 @@
|
||||
'އޮކްޓޯބަރު',
|
||||
'ނޮވެމްބަރު',
|
||||
'ޑިސެމްބަރު'
|
||||
], weekdays = [
|
||||
];
|
||||
var weekdays = [
|
||||
'އާދިއްތަ',
|
||||
'ހޯމަ',
|
||||
'އަންގާރަ',
|
||||
@ -96,4 +97,4 @@
|
||||
|
||||
return dv;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
14
lib/javascripts/moment_locale/el.js
Executable file → Normal file
14
lib/javascripts/moment_locale/el.js
Executable file → Normal file
@ -1,13 +1,13 @@
|
||||
//! 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) {
|
||||
return input instanceof Function || Object.prototype.toString.call(input) === '[object Function]';
|
||||
@ -18,7 +18,9 @@
|
||||
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,7 +87,7 @@
|
||||
y : 'ένας χρόνος',
|
||||
yy : '%d χρόνια'
|
||||
},
|
||||
ordinalParse: /\d{1,2}η/,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}η/,
|
||||
ordinal: '%dη',
|
||||
week : {
|
||||
dow : 1, // Monday is the first day of the week.
|
||||
@ -95,4 +97,4 @@
|
||||
|
||||
return el;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
15
lib/javascripts/moment_locale/en-au.js
Executable file → Normal file
15
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' :
|
||||
@ -61,6 +62,6 @@
|
||||
}
|
||||
});
|
||||
|
||||
return en_au;
|
||||
return enAu;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
14
lib/javascripts/moment_locale/en-ca.js
Executable file → Normal file
14
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' :
|
||||
@ -58,6 +58,6 @@
|
||||
}
|
||||
});
|
||||
|
||||
return en_ca;
|
||||
return enCa;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
14
lib/javascripts/moment_locale/en-gb.js
Executable file → Normal file
14
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' :
|
||||
@ -62,6 +62,6 @@
|
||||
}
|
||||
});
|
||||
|
||||
return en_gb;
|
||||
return enGb;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
14
lib/javascripts/moment_locale/en-ie.js
Executable file → Normal file
14
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' :
|
||||
@ -62,6 +62,6 @@
|
||||
}
|
||||
});
|
||||
|
||||
return en_ie;
|
||||
return enIe;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
15
lib/javascripts/moment_locale/en-nz.js
Executable file → Normal file
15
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' :
|
||||
@ -61,6 +62,6 @@
|
||||
}
|
||||
});
|
||||
|
||||
return en_nz;
|
||||
return enNz;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
28
lib/javascripts/moment_locale/eo.js
Executable file → Normal file
28
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', {
|
||||
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,7 +60,7 @@
|
||||
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.
|
||||
@ -70,4 +70,4 @@
|
||||
|
||||
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;
|
||||
|
||||
})));
|
18
lib/javascripts/moment_locale/es.js
Executable file → Normal file
18
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', {
|
||||
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,7 +70,7 @@
|
||||
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.
|
||||
@ -78,4 +80,4 @@
|
||||
|
||||
return es;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
10
lib/javascripts/moment_locale/et.js
Executable file → Normal file
10
lib/javascripts/moment_locale/et.js
Executable file → Normal file
@ -1,14 +1,14 @@
|
||||
//! 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) {
|
||||
@ -67,7 +67,7 @@
|
||||
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.
|
||||
@ -77,4 +77,4 @@
|
||||
|
||||
return et;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
10
lib/javascripts/moment_locale/eu.js
Executable file → Normal file
10
lib/javascripts/moment_locale/eu.js
Executable file → Normal file
@ -1,13 +1,13 @@
|
||||
//! 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', {
|
||||
@ -53,7 +53,7 @@
|
||||
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.
|
||||
@ -63,4 +63,4 @@
|
||||
|
||||
return eu;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
15
lib/javascripts/moment_locale/fa.js
Executable file → Normal file
15
lib/javascripts/moment_locale/fa.js
Executable file → Normal file
@ -1,13 +1,13 @@
|
||||
//! 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 = {
|
||||
@ -21,7 +21,8 @@
|
||||
'8': '۸',
|
||||
'9': '۹',
|
||||
'0': '۰'
|
||||
}, numberMap = {
|
||||
};
|
||||
var numberMap = {
|
||||
'۱': '1',
|
||||
'۲': '2',
|
||||
'۳': '3',
|
||||
@ -71,7 +72,7 @@
|
||||
relativeTime : {
|
||||
future : 'در %s',
|
||||
past : '%s پیش',
|
||||
s : 'چندین ثانیه',
|
||||
s : 'چند ثانیه',
|
||||
m : 'یک دقیقه',
|
||||
mm : '%d دقیقه',
|
||||
h : 'یک ساعت',
|
||||
@ -93,7 +94,7 @@
|
||||
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.
|
||||
@ -103,4 +104,4 @@
|
||||
|
||||
return fa;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
14
lib/javascripts/moment_locale/fi.js
Executable file → Normal file
14
lib/javascripts/moment_locale/fi.js
Executable file → Normal file
@ -1,17 +1,17 @@
|
||||
//! 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]
|
||||
];
|
||||
@ -94,7 +94,7 @@
|
||||
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.
|
||||
@ -104,4 +104,4 @@
|
||||
|
||||
return fi;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
10
lib/javascripts/moment_locale/fo.js
Executable file → Normal file
10
lib/javascripts/moment_locale/fo.js
Executable file → Normal file
@ -1,13 +1,13 @@
|
||||
//! 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', {
|
||||
@ -47,7 +47,7 @@
|
||||
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.
|
||||
@ -57,4 +57,4 @@
|
||||
|
||||
return fo;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
32
lib/javascripts/moment_locale/fr-ca.js
Executable file → Normal file
32
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,7 +27,7 @@
|
||||
LLLL : 'dddd D MMMM YYYY HH:mm'
|
||||
},
|
||||
calendar : {
|
||||
sameDay: '[Aujourd\'hui à] LT',
|
||||
sameDay : '[Aujourd’hui à] LT',
|
||||
nextDay : '[Demain à] LT',
|
||||
nextWeek : 'dddd [à] LT',
|
||||
lastDay : '[Hier à] LT',
|
||||
@ -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;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
32
lib/javascripts/moment_locale/fr-ch.js
Executable file → Normal file
32
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,7 +27,7 @@
|
||||
LLLL : 'dddd D MMMM YYYY HH:mm'
|
||||
},
|
||||
calendar : {
|
||||
sameDay: '[Aujourd\'hui à] LT',
|
||||
sameDay : '[Aujourd’hui à] LT',
|
||||
nextDay : '[Demain à] LT',
|
||||
nextWeek : 'dddd [à] LT',
|
||||
lastDay : '[Hier à] LT',
|
||||
@ -49,9 +49,23 @@
|
||||
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.
|
||||
@ -59,6 +73,6 @@
|
||||
}
|
||||
});
|
||||
|
||||
return fr_ch;
|
||||
return frCh;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
33
lib/javascripts/moment_locale/fr.js
Executable file → Normal file
33
lib/javascripts/moment_locale/fr.js
Executable file → Normal file
@ -1,13 +1,13 @@
|
||||
//! 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', {
|
||||
@ -27,7 +27,7 @@
|
||||
LLLL : 'dddd D MMMM YYYY HH:mm'
|
||||
},
|
||||
calendar : {
|
||||
sameDay: '[Aujourd\'hui à] LT',
|
||||
sameDay : '[Aujourd’hui à] LT',
|
||||
nextDay : '[Demain à] LT',
|
||||
nextWeek : 'dddd [à] LT',
|
||||
lastDay : '[Hier à] LT',
|
||||
@ -49,9 +49,28 @@
|
||||
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.
|
||||
@ -61,4 +80,4 @@
|
||||
|
||||
return fr;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
18
lib/javascripts/moment_locale/fy.js
Executable file → Normal file
18
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', {
|
||||
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');
|
||||
},
|
||||
@ -70,4 +72,4 @@
|
||||
|
||||
return fy;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
10
lib/javascripts/moment_locale/gd.js
Executable file → Normal file
10
lib/javascripts/moment_locale/gd.js
Executable file → Normal file
@ -1,13 +1,13 @@
|
||||
//! 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 = [
|
||||
@ -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;
|
||||
@ -73,4 +73,4 @@
|
||||
|
||||
return gd;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
32
lib/javascripts/moment_locale/gl.js
Executable file → Normal file
32
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('_'),
|
||||
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;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
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;
|
||||
|
||||
})));
|
8
lib/javascripts/moment_locale/he.js
Executable file → Normal file
8
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,9 +7,9 @@
|
||||
;(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', {
|
||||
@ -96,4 +96,4 @@
|
||||
|
||||
return he;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
12
lib/javascripts/moment_locale/hi.js
Executable file → Normal file
12
lib/javascripts/moment_locale/hi.js
Executable file → Normal file
@ -1,13 +1,13 @@
|
||||
//! 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 = {
|
||||
@ -21,8 +21,8 @@
|
||||
'8': '८',
|
||||
'9': '९',
|
||||
'0': '०'
|
||||
},
|
||||
numberMap = {
|
||||
};
|
||||
var numberMap = {
|
||||
'१': '1',
|
||||
'२': '2',
|
||||
'३': '3',
|
||||
@ -121,4 +121,4 @@
|
||||
|
||||
return hi;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
10
lib/javascripts/moment_locale/hr.js
Executable file → Normal file
10
lib/javascripts/moment_locale/hr.js
Executable file → Normal file
@ -1,13 +1,13 @@
|
||||
//! 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) {
|
||||
@ -132,7 +132,7 @@
|
||||
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.
|
||||
@ -142,4 +142,4 @@
|
||||
|
||||
return hr;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
12
lib/javascripts/moment_locale/hu.js
Executable file → Normal file
12
lib/javascripts/moment_locale/hu.js
Executable file → Normal file
@ -1,13 +1,13 @@
|
||||
//! 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(' ');
|
||||
@ -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;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
14
lib/javascripts/moment_locale/hy-am.js
Executable file → Normal file
14
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':
|
||||
@ -90,6 +90,6 @@
|
||||
}
|
||||
});
|
||||
|
||||
return hy_am;
|
||||
return hyAm;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
8
lib/javascripts/moment_locale/id.js
Executable file → Normal file
8
lib/javascripts/moment_locale/id.js
Executable file → Normal file
@ -1,14 +1,14 @@
|
||||
//! 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', {
|
||||
@ -80,4 +80,4 @@
|
||||
|
||||
return id;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
10
lib/javascripts/moment_locale/is.js
Executable file → Normal file
10
lib/javascripts/moment_locale/is.js
Executable file → Normal file
@ -1,13 +1,13 @@
|
||||
//! 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) {
|
||||
@ -114,7 +114,7 @@
|
||||
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.
|
||||
@ -124,4 +124,4 @@
|
||||
|
||||
return is;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
16
lib/javascripts/moment_locale/it.js
Executable file → Normal file
16
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', {
|
||||
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,7 +57,7 @@
|
||||
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.
|
||||
@ -67,4 +67,4 @@
|
||||
|
||||
return it;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
22
lib/javascripts/moment_locale/ja.js
Executable file → Normal file
22
lib/javascripts/moment_locale/ja.js
Executable file → Normal file
@ -1,13 +1,13 @@
|
||||
//! 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', {
|
||||
@ -17,12 +17,16 @@
|
||||
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':
|
||||
@ -73,4 +77,4 @@
|
||||
|
||||
return ja;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
8
lib/javascripts/moment_locale/jv.js
Executable file → Normal file
8
lib/javascripts/moment_locale/jv.js
Executable file → Normal file
@ -1,14 +1,14 @@
|
||||
//! 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', {
|
||||
@ -80,4 +80,4 @@
|
||||
|
||||
return jv;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
14
lib/javascripts/moment_locale/ka.js
Executable file → Normal file
14
lib/javascripts/moment_locale/ka.js
Executable file → Normal file
@ -1,13 +1,13 @@
|
||||
//! 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', {
|
||||
@ -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;
|
||||
@ -86,4 +86,4 @@
|
||||
|
||||
return ka;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
10
lib/javascripts/moment_locale/kk.js
Executable file → Normal file
10
lib/javascripts/moment_locale/kk.js
Executable file → Normal file
@ -1,13 +1,13 @@
|
||||
//! 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 = {
|
||||
@ -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;
|
||||
@ -84,4 +84,4 @@
|
||||
|
||||
return kk;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
8
lib/javascripts/moment_locale/km.js
Executable file → Normal file
8
lib/javascripts/moment_locale/km.js
Executable file → Normal file
@ -1,13 +1,13 @@
|
||||
//! 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', {
|
||||
@ -55,4 +55,4 @@
|
||||
|
||||
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;
|
||||
|
||||
})));
|
31
lib/javascripts/moment_locale/ko.js
Executable file → Normal file
31
lib/javascripts/moment_locale/ko.js
Executable file → Normal file
@ -1,17 +1,14 @@
|
||||
//! 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', {
|
||||
@ -21,12 +18,16 @@
|
||||
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) {
|
||||
@ -65,4 +66,4 @@
|
||||
|
||||
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;
|
||||
|
||||
})));
|
13
lib/javascripts/moment_locale/lb.js
Executable file → Normal file
13
lib/javascripts/moment_locale/lb.js
Executable file → Normal file
@ -1,13 +1,14 @@
|
||||
//! 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) {
|
||||
@ -123,7 +124,7 @@
|
||||
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.
|
||||
@ -133,4 +134,4 @@
|
||||
|
||||
return lb;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
10
lib/javascripts/moment_locale/lo.js
Executable file → Normal file
10
lib/javascripts/moment_locale/lo.js
Executable file → Normal file
@ -1,13 +1,13 @@
|
||||
//! 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', {
|
||||
@ -59,7 +59,7 @@
|
||||
y : '1 ປີ',
|
||||
yy : '%d ປີ'
|
||||
},
|
||||
ordinalParse: /(ທີ່)\d{1,2}/,
|
||||
dayOfMonthOrdinalParse: /(ທີ່)\d{1,2}/,
|
||||
ordinal : function (number) {
|
||||
return 'ທີ່' + number;
|
||||
}
|
||||
@ -67,4 +67,4 @@
|
||||
|
||||
return lo;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
13
lib/javascripts/moment_locale/lt.js
Executable file → Normal file
13
lib/javascripts/moment_locale/lt.js
Executable file → Normal file
@ -1,13 +1,13 @@
|
||||
//! 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 = {
|
||||
@ -55,7 +55,8 @@
|
||||
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';
|
||||
},
|
||||
@ -113,4 +114,4 @@
|
||||
|
||||
return lt;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
14
lib/javascripts/moment_locale/lv.js
Executable file → Normal file
14
lib/javascripts/moment_locale/lv.js
Executable file → Normal file
@ -1,14 +1,14 @@
|
||||
//! 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 = {
|
||||
@ -29,11 +29,11 @@
|
||||
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) {
|
||||
@ -84,7 +84,7 @@
|
||||
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.
|
||||
@ -94,4 +94,4 @@
|
||||
|
||||
return lv;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
10
lib/javascripts/moment_locale/me.js
Executable file → Normal file
10
lib/javascripts/moment_locale/me.js
Executable file → Normal file
@ -1,13 +1,13 @@
|
||||
//! 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 = {
|
||||
@ -98,7 +98,7 @@
|
||||
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.
|
||||
@ -108,4 +108,4 @@
|
||||
|
||||
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;
|
||||
|
||||
})));
|
10
lib/javascripts/moment_locale/mk.js
Executable file → Normal file
10
lib/javascripts/moment_locale/mk.js
Executable file → Normal file
@ -1,13 +1,13 @@
|
||||
//! 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', {
|
||||
@ -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;
|
||||
@ -87,4 +87,4 @@
|
||||
|
||||
return mk;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
8
lib/javascripts/moment_locale/ml.js
Executable file → Normal file
8
lib/javascripts/moment_locale/ml.js
Executable file → Normal file
@ -1,13 +1,13 @@
|
||||
//! 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', {
|
||||
@ -78,4 +78,4 @@
|
||||
|
||||
return ml;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
12
lib/javascripts/moment_locale/mr.js
Executable file → Normal file
12
lib/javascripts/moment_locale/mr.js
Executable file → Normal file
@ -1,14 +1,14 @@
|
||||
//! 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 = {
|
||||
@ -22,8 +22,8 @@
|
||||
'8': '८',
|
||||
'9': '९',
|
||||
'0': '०'
|
||||
},
|
||||
numberMap = {
|
||||
};
|
||||
var numberMap = {
|
||||
'१': '1',
|
||||
'२': '2',
|
||||
'३': '3',
|
||||
@ -156,4 +156,4 @@
|
||||
|
||||
return mr;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
13
lib/javascripts/moment_locale/ms-my.js
Executable file → Normal file
13
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('_'),
|
||||
@ -77,6 +78,6 @@
|
||||
}
|
||||
});
|
||||
|
||||
return ms_my;
|
||||
return msMy;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
8
lib/javascripts/moment_locale/ms.js
Executable file → Normal file
8
lib/javascripts/moment_locale/ms.js
Executable file → Normal file
@ -1,13 +1,13 @@
|
||||
//! 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', {
|
||||
@ -79,4 +79,4 @@
|
||||
|
||||
return ms;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
13
lib/javascripts/moment_locale/my.js
Executable file → Normal file
13
lib/javascripts/moment_locale/my.js
Executable file → Normal file
@ -1,13 +1,15 @@
|
||||
//! 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 = {
|
||||
@ -21,7 +23,8 @@
|
||||
'8': '၈',
|
||||
'9': '၉',
|
||||
'0': '၀'
|
||||
}, numberMap = {
|
||||
};
|
||||
var numberMap = {
|
||||
'၁': '1',
|
||||
'၂': '2',
|
||||
'၃': '3',
|
||||
@ -90,4 +93,4 @@
|
||||
|
||||
return my;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
10
lib/javascripts/moment_locale/nb.js
Executable file → Normal file
10
lib/javascripts/moment_locale/nb.js
Executable file → Normal file
@ -1,14 +1,14 @@
|
||||
//! 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', {
|
||||
@ -50,7 +50,7 @@
|
||||
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.
|
||||
@ -60,4 +60,4 @@
|
||||
|
||||
return nb;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
12
lib/javascripts/moment_locale/ne.js
Executable file → Normal file
12
lib/javascripts/moment_locale/ne.js
Executable file → Normal file
@ -1,13 +1,13 @@
|
||||
//! 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 = {
|
||||
@ -21,8 +21,8 @@
|
||||
'8': '८',
|
||||
'9': '९',
|
||||
'0': '०'
|
||||
},
|
||||
numberMap = {
|
||||
};
|
||||
var numberMap = {
|
||||
'१': '1',
|
||||
'२': '2',
|
||||
'३': '3',
|
||||
@ -120,4 +120,4 @@
|
||||
|
||||
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;
|
||||
|
||||
})));
|
35
lib/javascripts/moment_locale/nl.js
Executable file → Normal file
35
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 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');
|
||||
},
|
||||
@ -70,4 +85,4 @@
|
||||
|
||||
return nl;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
10
lib/javascripts/moment_locale/nn.js
Executable file → Normal file
10
lib/javascripts/moment_locale/nn.js
Executable file → Normal file
@ -1,13 +1,13 @@
|
||||
//! 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', {
|
||||
@ -47,7 +47,7 @@
|
||||
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.
|
||||
@ -57,4 +57,4 @@
|
||||
|
||||
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;
|
||||
|
||||
})));
|
20
lib/javascripts/moment_locale/pl.js
Executable file → Normal file
20
lib/javascripts/moment_locale/pl.js
Executable file → Normal file
@ -1,17 +1,17 @@
|
||||
//! 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('_');
|
||||
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);
|
||||
}
|
||||
@ -35,7 +35,9 @@
|
||||
|
||||
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,7 +94,7 @@
|
||||
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.
|
||||
@ -102,4 +104,4 @@
|
||||
|
||||
return pl;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
16
lib/javascripts/moment_locale/pt-br.js
Executable file → Normal file
16
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;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
12
lib/javascripts/moment_locale/pt.js
Executable file → Normal file
12
lib/javascripts/moment_locale/pt.js
Executable file → Normal file
@ -1,13 +1,13 @@
|
||||
//! 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', {
|
||||
@ -15,7 +15,7 @@
|
||||
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,7 +52,7 @@
|
||||
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.
|
||||
@ -62,4 +62,4 @@
|
||||
|
||||
return pt;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
8
lib/javascripts/moment_locale/ro.js
Executable file → Normal file
8
lib/javascripts/moment_locale/ro.js
Executable file → Normal file
@ -1,14 +1,14 @@
|
||||
//! 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) {
|
||||
@ -72,4 +72,4 @@
|
||||
|
||||
return ro;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
26
lib/javascripts/moment_locale/ru.js
Executable file → Normal file
26
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,9 +7,9 @@
|
||||
;(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) {
|
||||
@ -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':
|
||||
@ -172,4 +180,4 @@
|
||||
|
||||
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;
|
||||
|
||||
})));
|
10
lib/javascripts/moment_locale/se.js
Executable file → Normal file
10
lib/javascripts/moment_locale/se.js
Executable file → Normal file
@ -1,13 +1,13 @@
|
||||
//! 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';
|
||||
|
||||
|
||||
|
||||
@ -48,7 +48,7 @@
|
||||
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.
|
||||
@ -58,4 +58,4 @@
|
||||
|
||||
return se;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
10
lib/javascripts/moment_locale/si.js
Executable file → Normal file
10
lib/javascripts/moment_locale/si.js
Executable file → Normal file
@ -1,13 +1,13 @@
|
||||
//! 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*/
|
||||
@ -49,7 +49,7 @@
|
||||
y : 'වසර',
|
||||
yy : 'වසර %d'
|
||||
},
|
||||
ordinalParse: /\d{1,2} වැනි/,
|
||||
dayOfMonthOrdinalParse: /\d{1,2} වැනි/,
|
||||
ordinal : function (number) {
|
||||
return number + ' වැනි';
|
||||
},
|
||||
@ -68,4 +68,4 @@
|
||||
|
||||
return si;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
14
lib/javascripts/moment_locale/sk.js
Executable file → Normal file
14
lib/javascripts/moment_locale/sk.js
Executable file → Normal file
@ -1,18 +1,18 @@
|
||||
//! 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('_');
|
||||
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);
|
||||
}
|
||||
@ -137,7 +137,7 @@
|
||||
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.
|
||||
@ -147,4 +147,4 @@
|
||||
|
||||
return sk;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
10
lib/javascripts/moment_locale/sl.js
Executable file → Normal file
10
lib/javascripts/moment_locale/sl.js
Executable file → Normal file
@ -1,13 +1,13 @@
|
||||
//! 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) {
|
||||
@ -149,7 +149,7 @@
|
||||
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.
|
||||
@ -159,4 +159,4 @@
|
||||
|
||||
return sl;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
14
lib/javascripts/moment_locale/sq.js
Executable file → Normal file
14
lib/javascripts/moment_locale/sq.js
Executable file → Normal file
@ -1,15 +1,15 @@
|
||||
//! 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', {
|
||||
@ -57,7 +57,7 @@
|
||||
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.
|
||||
@ -67,4 +67,4 @@
|
||||
|
||||
return sq;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
14
lib/javascripts/moment_locale/sr-cyrl.js
Executable file → Normal file
14
lib/javascripts/moment_locale/sr-cyrl.js
Executable file → Normal file
@ -1,13 +1,13 @@
|
||||
//! 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 = {
|
||||
@ -33,7 +33,7 @@
|
||||
}
|
||||
};
|
||||
|
||||
var sr_cyrl = moment.defineLocale('sr-cyrl', {
|
||||
var srCyrl = moment.defineLocale('sr-cyrl', {
|
||||
months: 'јануар_фебруар_март_април_мај_јун_јул_август_септембар_октобар_новембар_децембар'.split('_'),
|
||||
monthsShort: 'јан._феб._мар._апр._мај_јун_јул_авг._сеп._окт._нов._дец.'.split('_'),
|
||||
monthsParseExact: true,
|
||||
@ -97,7 +97,7 @@
|
||||
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.
|
||||
@ -105,6 +105,6 @@
|
||||
}
|
||||
});
|
||||
|
||||
return sr_cyrl;
|
||||
return srCyrl;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
10
lib/javascripts/moment_locale/sr.js
Executable file → Normal file
10
lib/javascripts/moment_locale/sr.js
Executable file → Normal file
@ -1,13 +1,13 @@
|
||||
//! 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 = {
|
||||
@ -97,7 +97,7 @@
|
||||
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.
|
||||
@ -107,4 +107,4 @@
|
||||
|
||||
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;
|
||||
|
||||
})));
|
10
lib/javascripts/moment_locale/sv.js
Executable file → Normal file
10
lib/javascripts/moment_locale/sv.js
Executable file → Normal file
@ -1,13 +1,13 @@
|
||||
//! 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', {
|
||||
@ -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' :
|
||||
@ -66,4 +66,4 @@
|
||||
|
||||
return sv;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
8
lib/javascripts/moment_locale/sw.js
Executable file → Normal file
8
lib/javascripts/moment_locale/sw.js
Executable file → Normal file
@ -1,13 +1,13 @@
|
||||
//! 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', {
|
||||
@ -56,4 +56,4 @@
|
||||
|
||||
return sw;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
13
lib/javascripts/moment_locale/ta.js
Executable file → Normal file
13
lib/javascripts/moment_locale/ta.js
Executable file → Normal file
@ -1,13 +1,13 @@
|
||||
//! 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 = {
|
||||
@ -21,7 +21,8 @@
|
||||
'8': '௮',
|
||||
'9': '௯',
|
||||
'0': '௦'
|
||||
}, numberMap = {
|
||||
};
|
||||
var numberMap = {
|
||||
'௧': '1',
|
||||
'௨': '2',
|
||||
'௩': '3',
|
||||
@ -71,7 +72,7 @@
|
||||
y : 'ஒரு வருடம்',
|
||||
yy : '%d ஆண்டுகள்'
|
||||
},
|
||||
ordinalParse: /\d{1,2}வது/,
|
||||
dayOfMonthOrdinalParse: /\d{1,2}வது/,
|
||||
ordinal : function (number) {
|
||||
return number + 'வது';
|
||||
},
|
||||
@ -126,4 +127,4 @@
|
||||
|
||||
return ta;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
10
lib/javascripts/moment_locale/te.js
Executable file → Normal file
10
lib/javascripts/moment_locale/te.js
Executable file → Normal file
@ -1,13 +1,13 @@
|
||||
//! 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', {
|
||||
@ -48,7 +48,7 @@
|
||||
y : 'ఒక సంవత్సరం',
|
||||
yy : '%d సంవత్సరాలు'
|
||||
},
|
||||
ordinalParse : /\d{1,2}వ/,
|
||||
dayOfMonthOrdinalParse : /\d{1,2}వ/,
|
||||
ordinal : '%dవ',
|
||||
meridiemParse: /రాత్రి|ఉదయం|మధ్యాహ్నం|సాయంత్రం/,
|
||||
meridiemHour : function (hour, meridiem) {
|
||||
@ -86,4 +86,4 @@
|
||||
|
||||
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;
|
||||
|
||||
})));
|
20
lib/javascripts/moment_locale/th.js
Executable file → Normal file
20
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', {
|
||||
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) {
|
||||
@ -64,4 +64,4 @@
|
||||
|
||||
return th;
|
||||
|
||||
}));
|
||||
})));
|
||||
|
26
lib/javascripts/moment_locale/tl-ph.js
Executable file → Normal file
26
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;
|
||||
},
|
||||
@ -57,6 +57,6 @@
|
||||
}
|
||||
});
|
||||
|
||||
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