ko.js 876 B

12345678910111213141516171819202122232425262728293031
  1. /*!
  2. * Star Rating <LANG> Translations
  3. *
  4. * This file must be loaded after 'star-rating.js'. Patterns in braces '{}', or
  5. * any HTML markup tags in the messages must not be converted or translated.
  6. *
  7. * NOTE: this file must be saved in UTF-8 encoding.
  8. *
  9. * @see http://github.com/kartik-v/bootstrap-star-rating
  10. * @author Kartik Visweswaran <kartikv2@gmail.com>
  11. */
  12. (function ($) {
  13. "use strict";
  14. $.fn.ratingLocales['ko'] = {
  15. defaultCaption: '{rating} 별점',
  16. starCaptions: {
  17. 0.5: '0.5 점',
  18. 1: '1 점',
  19. 1.5: '1.5 점',
  20. 2: '2 점',
  21. 2.5: '2.5 점',
  22. 3: '3 점',
  23. 3.5: '3.5 점',
  24. 4: '4 점',
  25. 4.5: '4.5 점',
  26. 5: '5 점'
  27. },
  28. clearButtonTitle: '초기화',
  29. clearCaption: '평점 없음'
  30. };
  31. })(window.jQuery);