-
Notifications
You must be signed in to change notification settings - Fork 170
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
1 changed file
with
89 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,89 @@ | ||
// 文件有效,为国际化做准备 | ||
import 'dayjs/locale/ar_001'; | ||
|
||
export default { | ||
actionSheet: { | ||
cancel: 'الإلغاء', | ||
}, | ||
calendar: { | ||
confirm: 'أكد', | ||
title: 'انتقِ التاريخ', | ||
weekdays: ['يوم الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'], | ||
monthTitle: '{شهر واحد} {سنة واحدة}', | ||
months: [ | ||
'يناير', | ||
'فبراير', | ||
'مارس', | ||
'أبريل', | ||
'مايو', | ||
'يونيو', | ||
'يوليو', | ||
'أغسطس', | ||
'سبتمبر', | ||
'أكتوبر', | ||
'نوفمبر', | ||
'ديسمبر', | ||
], | ||
}, | ||
cascader: { | ||
title: 'العنوان', | ||
placeholder: 'اختر الخيارات', | ||
}, | ||
dropdownMenu: { | ||
reset: 'إعادة الضبط', | ||
confirm: 'أكد', | ||
}, | ||
dateTimePicker: { | ||
title: 'انتقِ التاريخ', | ||
cancel: 'الإلغاء', | ||
confirm: 'أكد', | ||
format: 'DD-MM-YYYY', | ||
yearLabel: 'سنة', | ||
monthLabel: 'الشهر', | ||
dateLabel: 'التاريخ', | ||
hourLabel: 'الساعة', | ||
minuteLabel: 'دقيقة', | ||
secondLabel: 'ثانيا', | ||
}, | ||
picker: { | ||
cancel: 'الإلغاء', | ||
confirm: 'أكد', | ||
}, | ||
pullDownRefresh: { | ||
loadingTexts: ['اسحب للتحديث', 'مرتخية للتجديد', 'منعش', 'اكتمل التحديث'], | ||
}, | ||
rate: { | ||
valueText: '{القيمة} نتيجة', | ||
noValueText: 'لا توجد نقاط', | ||
}, | ||
tabBar: { | ||
newsAriaLabel: 'هناك أخبار جديدة', | ||
moreNewsAriaLabel: 'هناك الكثير من الأخبار السيئة', | ||
haveMoreNewsAriaLabel: 'هناك { قيمة }+ أخبار', | ||
haveNewsAriaLabel: 'هناك { قيمة } أخبار', | ||
}, | ||
table: { | ||
empty: 'البيانات الفارغة', | ||
}, | ||
list: { | ||
loading: 'التحميل...', | ||
loadingMoreText: 'انقر لتحميل المزيد', | ||
pulling: 'اسحب للتحديث...', | ||
loosing: 'مرتخية للتجديد...', | ||
success: 'تم التحديث بنجاح', | ||
}, | ||
upload: { | ||
progress: { | ||
uploadingText: 'جارٍ التحميل...', | ||
waitingText: 'الانتظار', | ||
failText: 'فشل', | ||
successText: 'النجاح', | ||
}, | ||
}, | ||
guide: { | ||
next: 'التالي', | ||
skip: 'تخطي', | ||
finish: 'أنهي', | ||
back: 'العودة', | ||
}, | ||
}; |