bootstrap-table-es-CR.js 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /**
  2. * Bootstrap Table Spanish (Costa Rica) translation
  3. * Author: Dennis Hernández (http://djhvscf.github.io/Blog/)
  4. */
  5. (function ($) {
  6. 'use strict';
  7. $.fn.bootstrapTable.locales['es-CR'] = {
  8. formatLoadingMessage: function () {
  9. return 'Cargando, por favor espere...';
  10. },
  11. formatRecordsPerPage: function (pageNumber) {
  12. return pageNumber + ' registros por página';
  13. },
  14. formatShowingRows: function (pageFrom, pageTo, totalRows) {
  15. return 'Mostrando de ' + pageFrom + ' a ' + pageTo + ' registros de ' + totalRows + ' registros en total';
  16. },
  17. formatSearch: function () {
  18. return 'Buscar';
  19. },
  20. formatNoMatches: function () {
  21. return 'No se encontraron registros';
  22. },
  23. formatRefresh: function () {
  24. return 'Refrescar';
  25. },
  26. formatToggle: function () {
  27. return 'Alternar';
  28. },
  29. formatColumns: function () {
  30. return 'Columnas';
  31. },
  32. formatAllRows: function () {
  33. return 'Todo';
  34. }
  35. };
  36. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['es-CR']);
  37. })(jQuery);