it.js 966 B

12345678910111213141516171819202122232425262728293031
  1. /*!
  2. * Star Rating Italian 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['it'] = {
  15. defaultCaption: '{rating} Stelle',
  16. starCaptions: {
  17. 0.5: 'Mezza Stella',
  18. 1: 'Una Stella',
  19. 1.5: 'Una Stella & Mezzo',
  20. 2: 'Due Stelle',
  21. 2.5: 'Due Stelle & Mezzo',
  22. 3: 'Tre Stelle',
  23. 3.5: 'Tre Stelle & Mezzo',
  24. 4: 'Quattro Stelle',
  25. 4.5: 'Quattro Stelle & Mezzo',
  26. 5: 'Cinque Stelle'
  27. },
  28. clearButtonTitle: 'Rimuovi',
  29. clearCaption: 'Nessuna valutazione'
  30. };
  31. })(window.jQuery);