0
0

es.js 985 B

12345678910111213141516171819202122232425262728293031
  1. /*!
  2. * Star Rating Spanish 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.es = {
  15. defaultCaption: '{rating} Estrellas',
  16. starCaptions: {
  17. 0.5: 'Media Estrella',
  18. 1: 'Una Estrella',
  19. 1.5: 'Una Estrella y Media',
  20. 2: 'Dos Estrellas',
  21. 2.5: 'Dos Estrellas y Media',
  22. 3: 'Tres Estrellas',
  23. 3.5: 'Tres Estrellas y Media',
  24. 4: 'Cuatro Estrellas',
  25. 4.5: 'Cuatro Estrellas y Media',
  26. 5: 'Cinco Estrellas'
  27. },
  28. clearButtonTitle: 'Limpiar',
  29. clearCaption: 'Sin Calificar'
  30. };
  31. })(window.jQuery);