UNPKG

bootstrap-select

Version:

The jQuery plugin that brings select elements into the 21st century with intuitive multiselection, searching, and much more. Now with Bootstrap 4 support.

24 lines (23 loc) 1.1 kB
/*! * Translated default messages for bootstrap-select. * Locale: AR (Arabic) * Author: Yasser Lotfy <y_l@alive.com> */ (function ($) { $.fn.selectpicker.defaults = { noneSelectedText: 'لم يتم إختيار شئ', noneResultsText: 'لا توجد نتائج مطابقة لـ {0}', countSelectedText: function (numSelected, numTotal) { return (numSelected == 1) ? '{0} خيار تم إختياره' : '{0} خيارات تمت إختيارها'; }, maxOptionsText: function (numAll, numGroup) { return [ (numAll == 1) ? 'تخطى الحد المسموح ({n} خيار بحد أقصى)' : 'تخطى الحد المسموح ({n} خيارات بحد أقصى)', (numGroup == 1) ? 'تخطى الحد المسموح للمجموعة ({n} خيار بحد أقصى)' : 'تخطى الحد المسموح للمجموعة ({n} خيارات بحد أقصى)' ]; }, selectAllText: 'إختيار الجميع', deselectAllText: 'إلغاء إختيار الجميع', multipleSeparator: '، ' }; })(jQuery);