defaults-ar_AR.js 1.9 KB

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