ro.js 958 B

12345678910111213141516171819202122232425262728293031
  1. /*!
  2. * Star Rating Romanian 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['ro'] = {
  15. defaultCaption: '{rating} stele',
  16. starCaptions: {
  17. 0.5: 'Jumatate de stea',
  18. 1: 'O Stea',
  19. 1.5: 'O stea si jumatate',
  20. 2: 'Doua stele',
  21. 2.5: 'Doua stele si jumatate',
  22. 3: 'Trei stele',
  23. 3.5: 'Trei stele si jumatate',
  24. 4: 'Patru stele',
  25. 4.5: 'Patru stele si jumatate',
  26. 5: 'Cinci stele'
  27. },
  28. clearButtonTitle: 'Sterge',
  29. clearCaption: 'Fara vot'
  30. };
  31. })(window.jQuery);