diff options
author | Halil İbrahim Kalkan <hikalkan@gmail.com> | 2014-06-08 00:30:31 +0300 |
---|---|---|
committer | Halil İbrahim Kalkan <hikalkan@gmail.com> | 2014-06-08 00:30:31 +0300 |
commit | 410fbcd843913b4c697290fc84b8c5d64f7b9d6c (patch) | |
tree | 2585485adc2cc3084f399e8cffa5067fcaf84056 | |
parent | 40cd1957c58835f95d2ac42a9f7e2cb963861bc3 (diff) | |
parent | 8a67d41c839004f4a2985d1036d802dfb9717bdf (diff) | |
download | jtable-410fbcd843913b4c697290fc84b8c5d64f7b9d6c.zip jtable-410fbcd843913b4c697290fc84b8c5d64f7b9d6c.tar.gz jtable-410fbcd843913b4c697290fc84b8c5d64f7b9d6c.tar.bz2 |
Merge pull request #1340 from djoudi/master
Add Arabic Languge
-rw-r--r-- | lib/localization/jquery.jtable.ar.js | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/lib/localization/jquery.jtable.ar.js b/lib/localization/jquery.jtable.ar.js new file mode 100644 index 0000000..4e53256 --- /dev/null +++ b/lib/localization/jquery.jtable.ar.js @@ -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); |