LANG.js 934 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['<LANG>'] = {
  15. defaultCaption: '{rating} Stars',
  16. starCaptions: {
  17. 0.5: 'Half Star',
  18. 1: 'One Star',
  19. 1.5: 'One & Half Star',
  20. 2: 'Two Stars',
  21. 2.5: 'Two & Half Stars',
  22. 3: 'Three Stars',
  23. 3.5: 'Three & Half Stars',
  24. 4: 'Four Stars',
  25. 4.5: 'Four & Half Stars',
  26. 5: 'Five Stars'
  27. },
  28. clearButtonTitle: 'Clear',
  29. clearCaption: 'Not Rated'
  30. };
  31. })(window.jQuery);