You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
//! moment.js locale configuration
//! locale : Arabic (Kuwait) [ar-kw]
//! author : Nusret Parlak: https://github.com/nusretparlak
import moment from '../moment' ;
export default 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 12th is the first week of the year.
} ,
} ) ;