defaults-ar_AR.js 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /*!
  2. * Bootstrap-select v1.11.2 (http://silviomoreto.github.io/bootstrap-select)
  3. *
  4. * Copyright 2013-2016 bootstrap-select
  5. * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
  6. */
  7. (function (root, factory) {
  8. if (typeof define === 'function' && define.amd) {
  9. // AMD. Register as an anonymous module unless amdModuleId is set
  10. define(["jquery"], function (a0) {
  11. return (factory(a0));
  12. });
  13. } else if (typeof exports === 'object') {
  14. // Node. Does not work with strict CommonJS, but
  15. // only CommonJS-like environments that support module.exports,
  16. // like Node.
  17. module.exports = factory(require("jquery"));
  18. } else {
  19. factory(jQuery);
  20. }
  21. }(this, function (jQuery) {
  22. /*!
  23. * Translated default messages for bootstrap-select.
  24. * Locale: AR (Arabic)
  25. * Author: Yasser Lotfy <y_l@alive.com>
  26. */
  27. (function ($) {
  28. $.fn.selectpicker.defaults = {
  29. noneSelectedText: 'لم يتم إختيار شئ',
  30. noneResultsText: 'لا توجد نتائج مطابقة لـ {0}',
  31. countSelectedText: function (numSelected, numTotal) {
  32. return (numSelected == 1) ? "{0} خيار تم إختياره" : "{0} خيارات تمت إختيارها";
  33. },
  34. maxOptionsText: function (numAll, numGroup) {
  35. return [
  36. (numAll == 1) ? 'تخطى الحد المسموح ({n} خيار بحد أقصى)' : 'تخطى الحد المسموح ({n} خيارات بحد أقصى)',
  37. (numGroup == 1) ? 'تخطى الحد المسموح للمجموعة ({n} خيار بحد أقصى)' : 'تخطى الحد المسموح للمجموعة ({n} خيارات بحد أقصى)'
  38. ];
  39. },
  40. selectAllText: 'إختيار الجميع',
  41. deselectAllText: 'إلغاء إختيار الجميع',
  42. multipleSeparator: '، '
  43. };
  44. })(jQuery);
  45. }));