No Description

defaults-zh_TW.js 1.2KB

12345678910111213141516171819202122232425262728293031323334353637
  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: '沒有找到符合的結果',
  26. countSelectedText: '已經選取{0}個項目',
  27. maxOptionsText: ['超過限制 (最多選擇{n}項)', '超過限制(最多選擇{n}組)'],
  28. selectAllText: '選取全部',
  29. deselectAllText: '全部取消',
  30. multipleSeparator: ', '
  31. };
  32. })(jQuery);
  33. }));