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.
33 lines
1.0 KiB
33 lines
1.0 KiB
import type { Locale } from '../interface';
|
|
|
|
const locale: Locale = {
|
|
locale: 'ar_EG',
|
|
today: 'اليوم',
|
|
now: 'الأن',
|
|
backToToday: 'العودة إلى اليوم',
|
|
ok: 'تأكيد',
|
|
clear: 'مسح',
|
|
month: 'الشهر',
|
|
year: 'السنة',
|
|
timeSelect: 'اختيار الوقت',
|
|
dateSelect: 'اختيار التاريخ',
|
|
monthSelect: 'اختيار الشهر',
|
|
yearSelect: 'اختيار السنة',
|
|
decadeSelect: 'اختيار العقد',
|
|
yearFormat: 'YYYY',
|
|
dateFormat: 'M/D/YYYY',
|
|
dayFormat: 'D',
|
|
dateTimeFormat: 'M/D/YYYY HH:mm:ss',
|
|
monthBeforeYear: true,
|
|
previousMonth: 'الشهر السابق (PageUp)',
|
|
nextMonth: 'الشهر التالى(PageDown)',
|
|
previousYear: 'العام السابق (Control + left)',
|
|
nextYear: 'العام التالى (Control + right)',
|
|
previousDecade: 'العقد السابق',
|
|
nextDecade: 'العقد التالى',
|
|
previousCentury: 'القرن السابق',
|
|
nextCentury: 'القرن التالى',
|
|
};
|
|
|
|
export default locale;
|