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 (Tunisia) [ar-tn]
//! author : Nader Toukabri : https://github.com/naderio
import moment from '../moment' ;
export default moment . defineLocale ( 'ar-tn' , {
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 : 1 , // Monday is the first day of the week.
doy : 4 , // The week that contains Jan 4th is the first week of the year.
} ,
} ) ;