No Description

defaults-ko_KR.js 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /*!
  2. * Bootstrap-select v1.12.4 (http://silviomoreto.github.io/bootstrap-select)
  3. *
  4. * Copyright 2013-2017 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 module === 'object' && module.exports) {
  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(root["jQuery"]);
  20. }
  21. }(this, function (jQuery) {
  22. (function ($) {
  23. $.fn.selectpicker.defaults = {
  24. noneSelectedText: '항목을 선택해주세요',
  25. noneResultsText: '{0} 검색 결과가 없습니다',
  26. countSelectedText: function (numSelected, numTotal) {
  27. return "{0}개를 선택하였습니다";
  28. },
  29. maxOptionsText: function (numAll, numGroup) {
  30. return [
  31. '{n}개까지 선택 가능합니다',
  32. '해당 그룹은 {n}개까지 선택 가능합니다'
  33. ];
  34. },
  35. selectAllText: '전체선택',
  36. deselectAllText: '전체해제',
  37. multipleSeparator: ', '
  38. };
  39. })(jQuery);
  40. }));