-
Notifications
You must be signed in to change notification settings - Fork 505
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1340 from djoudi/master
Add Arabic Languge
- Loading branch information
Showing
1 changed file
with
30 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,30 @@ | ||
/* | ||
jTable localization file for 'French' language. | ||
Author: Guillaume Vernet | ||
*/ | ||
(function ($) { | ||
|
||
$.extend(true, $.hik.jtable.prototype.options.messages, { | ||
serverCommunicationError: 'خطأ الإتصال بالخادم', | ||
loadingMessage: 'تحميل البيانات ...', | ||
noDataAvailable: 'لا توجد بيانات !', | ||
addNewRecord: 'إضافة', | ||
editRecord: 'تعديل', | ||
areYouSure: 'هل انت متاكد؟', | ||
deleteConfirmation: 'هل تريد حذف السجل فعلا؟', | ||
save: 'حفظ', | ||
saving: 'جاري الحفظ ...', | ||
cancel: 'إلغاء', | ||
deleteText: 'حذف', | ||
deleting: 'جاري الحذف ...', | ||
error: 'خطأ', | ||
close: 'إغلاق', | ||
cannotLoadOptionsFor: ' {0} تعذر تحميل البيانات من الحقل ', | ||
pagingInfo: 'عرض {0} إلى {1} من {2}', | ||
canNotDeletedRecords: 'لا يمكن حذف {0} من {1} سجل(سجلات) !', | ||
deleteProggress: 'جاري حذف {0} من {1} سجل (سجلات) ...', | ||
pageSizeChangeLabel: 'رقم السجل', | ||
gotoPageLabel: 'اذهب إلى الصفحة' | ||
}); | ||
|
||
})(jQuery); |