-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
100 changed files
with
9,447 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
//! moment.js locale configuration | ||
//! 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) : | ||
factory(global.moment) | ||
}(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_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('_'), | ||
meridiemParse: /vm|nm/i, | ||
isPM : function (input) { | ||
return /^nm$/i.test(input); | ||
}, | ||
meridiem : function (hours, minutes, isLower) { | ||
if (hours < 12) { | ||
return isLower ? 'vm' : 'VM'; | ||
} else { | ||
return isLower ? 'nm' : 'NM'; | ||
} | ||
}, | ||
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 : '[Vandag om] LT', | ||
nextDay : '[Môre om] LT', | ||
nextWeek : 'dddd [om] LT', | ||
lastDay : '[Gister om] LT', | ||
lastWeek : '[Laas] dddd [om] LT', | ||
sameElse : 'L' | ||
}, | ||
relativeTime : { | ||
future : 'oor %s', | ||
past : '%s gelede', | ||
s : '\'n paar sekondes', | ||
ss : '%d sekondes', | ||
m : '\'n minuut', | ||
mm : '%d minute', | ||
h : '\'n uur', | ||
hh : '%d ure', | ||
d : '\'n dag', | ||
dd : '%d dae', | ||
M : '\'n maand', | ||
MM : '%d maande', | ||
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'); // Thanks to Joris Röling : https://github.com/jjupiter | ||
}, | ||
week : { | ||
dow : 1, // Maandag is die eerste dag van die week. | ||
doy : 4 // Die week wat die 4de Januarie bevat is die eerste week van die jaar. | ||
} | ||
}); | ||
|
||
return af; | ||
|
||
}))); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
//! 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 : 'ثوان', | ||
ss : '%d ثانية', | ||
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; | ||
|
||
}))); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
//! 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 : 'ثوان', | ||
ss : '%d ثانية', | ||
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; | ||
|
||
}))); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,127 @@ | ||
//! 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'), | ||
ss : 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(/،/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; | ||
|
||
}))); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
//! moment.js locale configuration | ||
//! 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) : | ||
factory(global.moment) | ||
}(this, (function (moment) { 'use strict'; | ||
|
||
|
||
var arMa = moment.defineLocale('ar-ma', { | ||
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 : 'ثوان', | ||
ss : '%d ثانية', | ||
m : 'دقيقة', | ||
mm : '%d دقائق', | ||
h : 'ساعة', | ||
hh : '%d ساعات', | ||
d : 'يوم', | ||
dd : '%d أيام', | ||
M : 'شهر', | ||
MM : '%d أشهر', | ||
y : 'سنة', | ||
yy : '%d سنوات' | ||
}, | ||
week : { | ||
dow : 6, // Saturday is the first day of the week. | ||
doy : 12 // The week that contains Jan 1st is the first week of the year. | ||
} | ||
}); | ||
|
||
return arMa; | ||
|
||
}))); |
Oops, something went wrong.