bootstrap-table-es-AR.js 863 B

12345678910111213141516171819202122232425262728
  1. /**
  2. * Bootstrap Table Spanish (Argentina) translation
  3. * Author: Felix Vera (felix.vera@gmail.com)
  4. */
  5. (function ($) {
  6. 'use strict';
  7. $.fn.bootstrapTable.locales['es-AR'] = {
  8. formatLoadingMessage: function () {
  9. return 'Cargando, espere por favor...';
  10. },
  11. formatRecordsPerPage: function (pageNumber) {
  12. return pageNumber + ' registros por página';
  13. },
  14. formatShowingRows: function (pageFrom, pageTo, totalRows) {
  15. return 'Mostrando ' + pageFrom + ' a ' + pageTo + ' de ' + totalRows + ' filas';
  16. },
  17. formatSearch: function () {
  18. return 'Buscar';
  19. },
  20. formatNoMatches: function () {
  21. return 'No se encontraron registros';
  22. }
  23. };
  24. $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales['es-AR']);
  25. })(jQuery);